@fresh-editor/fresh-editor 0.1.75 → 0.1.76
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 +26 -0
- package/README.md +6 -0
- package/package.json +1 -1
- package/plugins/audit_mode.ts +9 -4
- package/plugins/buffer_modified.ts +1 -1
- package/plugins/calculator.ts +1 -1
- package/plugins/check-types.sh +41 -0
- package/plugins/clangd_support.ts +1 -1
- package/plugins/color_highlighter.ts +4 -1
- package/plugins/config-schema.json +44 -2
- package/plugins/diagnostics_panel.i18n.json +52 -52
- package/plugins/diagnostics_panel.ts +168 -540
- package/plugins/find_references.ts +82 -324
- package/plugins/git_blame.i18n.json +260 -247
- package/plugins/git_blame.ts +4 -9
- package/plugins/git_find_file.ts +42 -270
- package/plugins/git_grep.ts +50 -167
- package/plugins/git_gutter.ts +1 -1
- package/plugins/git_log.ts +4 -11
- package/plugins/lib/finder.ts +1499 -0
- package/plugins/lib/fresh.d.ts +93 -17
- package/plugins/lib/index.ts +14 -0
- package/plugins/lib/navigation-controller.ts +1 -1
- package/plugins/lib/panel-manager.ts +7 -13
- package/plugins/lib/results-panel.ts +914 -0
- package/plugins/lib/search-utils.ts +343 -0
- package/plugins/lib/virtual-buffer-factory.ts +3 -2
- package/plugins/live_grep.ts +56 -379
- package/plugins/markdown_compose.ts +1 -17
- package/plugins/merge_conflict.ts +16 -14
- package/plugins/path_complete.ts +1 -1
- package/plugins/search_replace.i18n.json +13 -13
- package/plugins/search_replace.ts +11 -9
- package/plugins/theme_editor.ts +15 -9
- package/plugins/todo_highlighter.ts +1 -0
- package/plugins/vi_mode.ts +9 -5
- package/plugins/welcome.ts +1 -1
|
@@ -13,29 +13,30 @@
|
|
|
13
13
|
"status.no_blame_info": "No blame information available (not a git file or error)",
|
|
14
14
|
"status.failed_open": "Failed to open git blame panel",
|
|
15
15
|
"status.closed": "Git blame closed",
|
|
16
|
-
"status.blame_ready": "Git blame: {count} blocks | b: blame at parent | q: close",
|
|
16
|
+
"status.blame_ready": "Git blame: %{count} blocks | b: blame at parent | q: close",
|
|
17
17
|
"status.move_to_line": "Move cursor to a blame line first",
|
|
18
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}",
|
|
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
|
+
"status.ready": "Git Blame ready",
|
|
25
26
|
|
|
26
27
|
"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"
|
|
28
|
+
"time.minutes_ago": "%{count} minute ago",
|
|
29
|
+
"time.minutes_ago_plural": "%{count} minutes ago",
|
|
30
|
+
"time.hours_ago": "%{count} hour ago",
|
|
31
|
+
"time.hours_ago_plural": "%{count} hours ago",
|
|
32
|
+
"time.days_ago": "%{count} day ago",
|
|
33
|
+
"time.days_ago_plural": "%{count} days ago",
|
|
34
|
+
"time.weeks_ago": "%{count} week ago",
|
|
35
|
+
"time.weeks_ago_plural": "%{count} weeks ago",
|
|
36
|
+
"time.months_ago": "%{count} month ago",
|
|
37
|
+
"time.months_ago_plural": "%{count} months ago",
|
|
38
|
+
"time.years_ago": "%{count} year ago",
|
|
39
|
+
"time.years_ago_plural": "%{count} years ago"
|
|
39
40
|
},
|
|
40
41
|
"cs": {
|
|
41
42
|
"cmd.git_blame": "Git Blame",
|
|
@@ -51,29 +52,30 @@
|
|
|
51
52
|
"status.no_blame_info": "Informace o blame nejsou k dispozici (neni to git soubor nebo doslo k chybe)",
|
|
52
53
|
"status.failed_open": "Nepodarilo se otevrit panel git blame",
|
|
53
54
|
"status.closed": "Git blame zavren",
|
|
54
|
-
"status.blame_ready": "Git blame: {count} bloku | b: blame v rodici | q: zavrit",
|
|
55
|
+
"status.blame_ready": "Git blame: %{count} bloku | b: blame v rodici | q: zavrit",
|
|
55
56
|
"status.move_to_line": "Nejprve presunte kurzor na radek blame",
|
|
56
57
|
"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}",
|
|
58
|
+
"status.loading_parent": "Nacitam blame v %{hash}^...",
|
|
59
|
+
"status.cannot_go_back": "Nelze ziskat blame v %{hash}^ (muze byt pocatecni commit nebo soubor neexistoval)",
|
|
60
|
+
"status.blame_at_parent": "Git blame v %{hash}^ | hloubka: %{depth} | b: jit hloubeji | q: zavrit",
|
|
61
|
+
"status.hash_copied": "Zkopirovano: %{short} (%{full})",
|
|
62
|
+
"status.hash_display": "Hash: %{hash}",
|
|
63
|
+
"status.git_error": "Chyba git blame: %{error}",
|
|
64
|
+
"status.ready": "Git Blame pripraveny",
|
|
63
65
|
|
|
64
66
|
"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"
|
|
67
|
+
"time.minutes_ago": "pred %{count} minutou",
|
|
68
|
+
"time.minutes_ago_plural": "pred %{count} minutami",
|
|
69
|
+
"time.hours_ago": "pred %{count} hodinou",
|
|
70
|
+
"time.hours_ago_plural": "pred %{count} hodinami",
|
|
71
|
+
"time.days_ago": "pred %{count} dnem",
|
|
72
|
+
"time.days_ago_plural": "pred %{count} dny",
|
|
73
|
+
"time.weeks_ago": "pred %{count} tydnem",
|
|
74
|
+
"time.weeks_ago_plural": "pred %{count} tydny",
|
|
75
|
+
"time.months_ago": "pred %{count} mesicem",
|
|
76
|
+
"time.months_ago_plural": "pred %{count} mesici",
|
|
77
|
+
"time.years_ago": "pred %{count} rokem",
|
|
78
|
+
"time.years_ago_plural": "pred %{count} lety"
|
|
77
79
|
},
|
|
78
80
|
"de": {
|
|
79
81
|
"cmd.git_blame": "Git Blame",
|
|
@@ -89,29 +91,30 @@
|
|
|
89
91
|
"status.no_blame_info": "Keine Blame-Informationen verfuegbar (keine Git-Datei oder Fehler)",
|
|
90
92
|
"status.failed_open": "Git blame Panel konnte nicht geoeffnet werden",
|
|
91
93
|
"status.closed": "Git blame geschlossen",
|
|
92
|
-
"status.blame_ready": "Git blame: {count} Bloecke | b: Blame bei Eltern | q: schliessen",
|
|
94
|
+
"status.blame_ready": "Git blame: %{count} Bloecke | b: Blame bei Eltern | q: schliessen",
|
|
93
95
|
"status.move_to_line": "Zuerst Cursor auf eine Blame-Zeile bewegen",
|
|
94
96
|
"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}",
|
|
97
|
+
"status.loading_parent": "Lade blame bei %{hash}^...",
|
|
98
|
+
"status.cannot_go_back": "Kann blame bei %{hash}^ nicht abrufen (moeglicherweise initialer Commit oder Datei existierte nicht)",
|
|
99
|
+
"status.blame_at_parent": "Git blame bei %{hash}^ | Tiefe: %{depth} | b: tiefer gehen | q: schliessen",
|
|
100
|
+
"status.hash_copied": "Kopiert: %{short} (%{full})",
|
|
101
|
+
"status.hash_display": "Hash: %{hash}",
|
|
102
|
+
"status.git_error": "Git blame Fehler: %{error}",
|
|
103
|
+
"status.ready": "Git Blame bereit",
|
|
101
104
|
|
|
102
105
|
"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"
|
|
106
|
+
"time.minutes_ago": "vor %{count} Minute",
|
|
107
|
+
"time.minutes_ago_plural": "vor %{count} Minuten",
|
|
108
|
+
"time.hours_ago": "vor %{count} Stunde",
|
|
109
|
+
"time.hours_ago_plural": "vor %{count} Stunden",
|
|
110
|
+
"time.days_ago": "vor %{count} Tag",
|
|
111
|
+
"time.days_ago_plural": "vor %{count} Tagen",
|
|
112
|
+
"time.weeks_ago": "vor %{count} Woche",
|
|
113
|
+
"time.weeks_ago_plural": "vor %{count} Wochen",
|
|
114
|
+
"time.months_ago": "vor %{count} Monat",
|
|
115
|
+
"time.months_ago_plural": "vor %{count} Monaten",
|
|
116
|
+
"time.years_ago": "vor %{count} Jahr",
|
|
117
|
+
"time.years_ago_plural": "vor %{count} Jahren"
|
|
115
118
|
},
|
|
116
119
|
"es": {
|
|
117
120
|
"cmd.git_blame": "Git Blame",
|
|
@@ -127,29 +130,30 @@
|
|
|
127
130
|
"status.no_blame_info": "No hay informacion de blame disponible (no es un archivo git o hay un error)",
|
|
128
131
|
"status.failed_open": "Error al abrir el panel de git blame",
|
|
129
132
|
"status.closed": "Git blame cerrado",
|
|
130
|
-
"status.blame_ready": "Git blame: {count} bloques | b: blame en padre | q: cerrar",
|
|
133
|
+
"status.blame_ready": "Git blame: %{count} bloques | b: blame en padre | q: cerrar",
|
|
131
134
|
"status.move_to_line": "Primero mueve el cursor a una linea de blame",
|
|
132
135
|
"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}",
|
|
136
|
+
"status.loading_parent": "Cargando blame en %{hash}^...",
|
|
137
|
+
"status.cannot_go_back": "No se puede obtener blame en %{hash}^ (puede ser el commit inicial o el archivo no existia)",
|
|
138
|
+
"status.blame_at_parent": "Git blame en %{hash}^ | profundidad: %{depth} | b: ir mas profundo | q: cerrar",
|
|
139
|
+
"status.hash_copied": "Copiado: %{short} (%{full})",
|
|
140
|
+
"status.hash_display": "Hash: %{hash}",
|
|
141
|
+
"status.git_error": "Error de git blame: %{error}",
|
|
142
|
+
"status.ready": "Git Blame listo",
|
|
139
143
|
|
|
140
144
|
"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"
|
|
145
|
+
"time.minutes_ago": "hace %{count} minuto",
|
|
146
|
+
"time.minutes_ago_plural": "hace %{count} minutos",
|
|
147
|
+
"time.hours_ago": "hace %{count} hora",
|
|
148
|
+
"time.hours_ago_plural": "hace %{count} horas",
|
|
149
|
+
"time.days_ago": "hace %{count} dia",
|
|
150
|
+
"time.days_ago_plural": "hace %{count} dias",
|
|
151
|
+
"time.weeks_ago": "hace %{count} semana",
|
|
152
|
+
"time.weeks_ago_plural": "hace %{count} semanas",
|
|
153
|
+
"time.months_ago": "hace %{count} mes",
|
|
154
|
+
"time.months_ago_plural": "hace %{count} meses",
|
|
155
|
+
"time.years_ago": "hace %{count} ano",
|
|
156
|
+
"time.years_ago_plural": "hace %{count} anos"
|
|
153
157
|
},
|
|
154
158
|
"fr": {
|
|
155
159
|
"cmd.git_blame": "Git Blame",
|
|
@@ -165,29 +169,30 @@
|
|
|
165
169
|
"status.no_blame_info": "Aucune information de blame disponible (pas un fichier git ou erreur)",
|
|
166
170
|
"status.failed_open": "Echec de l'ouverture du panneau git blame",
|
|
167
171
|
"status.closed": "Git blame ferme",
|
|
168
|
-
"status.blame_ready": "Git blame: {count} blocs | b: blame au parent | q: fermer",
|
|
172
|
+
"status.blame_ready": "Git blame: %{count} blocs | b: blame au parent | q: fermer",
|
|
169
173
|
"status.move_to_line": "Deplacez d'abord le curseur sur une ligne de blame",
|
|
170
174
|
"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}",
|
|
175
|
+
"status.loading_parent": "Chargement du blame a %{hash}^...",
|
|
176
|
+
"status.cannot_go_back": "Impossible d'obtenir le blame a %{hash}^ (peut etre le commit initial ou le fichier n'existait pas)",
|
|
177
|
+
"status.blame_at_parent": "Git blame a %{hash}^ | profondeur: %{depth} | b: aller plus loin | q: fermer",
|
|
178
|
+
"status.hash_copied": "Copie: %{short} (%{full})",
|
|
179
|
+
"status.hash_display": "Hash: %{hash}",
|
|
180
|
+
"status.git_error": "Erreur git blame: %{error}",
|
|
181
|
+
"status.ready": "Git Blame pret",
|
|
177
182
|
|
|
178
183
|
"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"
|
|
184
|
+
"time.minutes_ago": "il y a %{count} minute",
|
|
185
|
+
"time.minutes_ago_plural": "il y a %{count} minutes",
|
|
186
|
+
"time.hours_ago": "il y a %{count} heure",
|
|
187
|
+
"time.hours_ago_plural": "il y a %{count} heures",
|
|
188
|
+
"time.days_ago": "il y a %{count} jour",
|
|
189
|
+
"time.days_ago_plural": "il y a %{count} jours",
|
|
190
|
+
"time.weeks_ago": "il y a %{count} semaine",
|
|
191
|
+
"time.weeks_ago_plural": "il y a %{count} semaines",
|
|
192
|
+
"time.months_ago": "il y a %{count} mois",
|
|
193
|
+
"time.months_ago_plural": "il y a %{count} mois",
|
|
194
|
+
"time.years_ago": "il y a %{count} an",
|
|
195
|
+
"time.years_ago_plural": "il y a %{count} ans"
|
|
191
196
|
},
|
|
192
197
|
"it": {
|
|
193
198
|
"cmd.git_blame": "Git Blame",
|
|
@@ -203,29 +208,30 @@
|
|
|
203
208
|
"status.no_blame_info": "Nessuna informazione di blame disponibile (non è un file git o errore)",
|
|
204
209
|
"status.failed_open": "Impossibile aprire il pannello git blame",
|
|
205
210
|
"status.closed": "Git blame chiuso",
|
|
206
|
-
"status.blame_ready": "Git blame: {count} blocchi | b: blame al genitore | q: chiudi",
|
|
211
|
+
"status.blame_ready": "Git blame: %{count} blocchi | b: blame al genitore | q: chiudi",
|
|
207
212
|
"status.move_to_line": "Sposta prima il cursore su una riga di blame",
|
|
208
213
|
"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}",
|
|
214
|
+
"status.loading_parent": "Caricamento blame a %{hash}^...",
|
|
215
|
+
"status.cannot_go_back": "Impossibile ottenere il blame a %{hash}^ (potrebbe essere il commit iniziale o il file non esisteva)",
|
|
216
|
+
"status.blame_at_parent": "Git blame a %{hash}^ | profondità: %{depth} | b: vai più a fondo | q: chiudi",
|
|
217
|
+
"status.hash_copied": "Copiato: %{short} (%{full})",
|
|
218
|
+
"status.hash_display": "Hash: %{hash}",
|
|
219
|
+
"status.git_error": "Errore git blame: %{error}",
|
|
220
|
+
"status.ready": "Git Blame pronto",
|
|
215
221
|
|
|
216
222
|
"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"
|
|
223
|
+
"time.minutes_ago": "%{count} minuto fa",
|
|
224
|
+
"time.minutes_ago_plural": "%{count} minuti fa",
|
|
225
|
+
"time.hours_ago": "%{count} ora fa",
|
|
226
|
+
"time.hours_ago_plural": "%{count} ore fa",
|
|
227
|
+
"time.days_ago": "%{count} giorno fa",
|
|
228
|
+
"time.days_ago_plural": "%{count} giorni fa",
|
|
229
|
+
"time.weeks_ago": "%{count} settimana fa",
|
|
230
|
+
"time.weeks_ago_plural": "%{count} settimane fa",
|
|
231
|
+
"time.months_ago": "%{count} mese fa",
|
|
232
|
+
"time.months_ago_plural": "%{count} mesi fa",
|
|
233
|
+
"time.years_ago": "%{count} anno fa",
|
|
234
|
+
"time.years_ago_plural": "%{count} anni fa"
|
|
229
235
|
},
|
|
230
236
|
"ja": {
|
|
231
237
|
"cmd.git_blame": "Git Blame",
|
|
@@ -241,29 +247,30 @@
|
|
|
241
247
|
"status.no_blame_info": "blame情報がありません(gitファイルではないかエラーです)",
|
|
242
248
|
"status.failed_open": "Git blameパネルを開けませんでした",
|
|
243
249
|
"status.closed": "Git blameを閉じました",
|
|
244
|
-
"status.blame_ready": "Git blame: {count}ブロック | b: 親でblame | q: 閉じる",
|
|
250
|
+
"status.blame_ready": "Git blame: %{count}ブロック | b: 親でblame | q: 閉じる",
|
|
245
251
|
"status.move_to_line": "まずカーソルをblame行に移動してください",
|
|
246
252
|
"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
|
+
"status.loading_parent": "%{hash}^でblameを読み込み中...",
|
|
254
|
+
"status.cannot_go_back": "%{hash}^でblameを取得できません(初期コミットかファイルが存在しなかった可能性があります)",
|
|
255
|
+
"status.blame_at_parent": "Git blame %{hash}^ | 深さ: %{depth} | b: さらに深く | q: 閉じる",
|
|
256
|
+
"status.hash_copied": "コピーしました: %{short} (%{full})",
|
|
257
|
+
"status.hash_display": "ハッシュ: %{hash}",
|
|
258
|
+
"status.git_error": "Git blameエラー: %{error}",
|
|
259
|
+
"status.ready": "Git Blame準備完了",
|
|
253
260
|
|
|
254
261
|
"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}年前"
|
|
262
|
+
"time.minutes_ago": "%{count}分前",
|
|
263
|
+
"time.minutes_ago_plural": "%{count}分前",
|
|
264
|
+
"time.hours_ago": "%{count}時間前",
|
|
265
|
+
"time.hours_ago_plural": "%{count}時間前",
|
|
266
|
+
"time.days_ago": "%{count}日前",
|
|
267
|
+
"time.days_ago_plural": "%{count}日前",
|
|
268
|
+
"time.weeks_ago": "%{count}週間前",
|
|
269
|
+
"time.weeks_ago_plural": "%{count}週間前",
|
|
270
|
+
"time.months_ago": "%{count}ヶ月前",
|
|
271
|
+
"time.months_ago_plural": "%{count}ヶ月前",
|
|
272
|
+
"time.years_ago": "%{count}年前",
|
|
273
|
+
"time.years_ago_plural": "%{count}年前"
|
|
267
274
|
},
|
|
268
275
|
"ko": {
|
|
269
276
|
"cmd.git_blame": "Git Blame",
|
|
@@ -279,29 +286,30 @@
|
|
|
279
286
|
"status.no_blame_info": "blame 정보를 사용할 수 없습니다 (git 파일이 아니거나 오류)",
|
|
280
287
|
"status.failed_open": "git blame 패널을 열지 못했습니다",
|
|
281
288
|
"status.closed": "Git blame 닫힘",
|
|
282
|
-
"status.blame_ready": "Git blame: {count}개 블록 | b: 부모에서 blame | q: 닫기",
|
|
289
|
+
"status.blame_ready": "Git blame: %{count}개 블록 | b: 부모에서 blame | q: 닫기",
|
|
283
290
|
"status.move_to_line": "먼저 커서를 blame 줄로 이동하세요",
|
|
284
291
|
"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}",
|
|
292
|
+
"status.loading_parent": "%{hash}^에서 blame 로딩 중...",
|
|
293
|
+
"status.cannot_go_back": "%{hash}^에서 blame을 가져올 수 없습니다 (초기 커밋이거나 파일이 존재하지 않았을 수 있음)",
|
|
294
|
+
"status.blame_at_parent": "Git blame %{hash}^ | 깊이: %{depth} | b: 더 깊이 | q: 닫기",
|
|
295
|
+
"status.hash_copied": "복사됨: %{short} (%{full})",
|
|
296
|
+
"status.hash_display": "해시: %{hash}",
|
|
297
|
+
"status.git_error": "Git blame 오류: %{error}",
|
|
298
|
+
"status.ready": "Git Blame 준비됨",
|
|
291
299
|
|
|
292
300
|
"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}년 전"
|
|
301
|
+
"time.minutes_ago": "%{count}분 전",
|
|
302
|
+
"time.minutes_ago_plural": "%{count}분 전",
|
|
303
|
+
"time.hours_ago": "%{count}시간 전",
|
|
304
|
+
"time.hours_ago_plural": "%{count}시간 전",
|
|
305
|
+
"time.days_ago": "%{count}일 전",
|
|
306
|
+
"time.days_ago_plural": "%{count}일 전",
|
|
307
|
+
"time.weeks_ago": "%{count}주 전",
|
|
308
|
+
"time.weeks_ago_plural": "%{count}주 전",
|
|
309
|
+
"time.months_ago": "%{count}개월 전",
|
|
310
|
+
"time.months_ago_plural": "%{count}개월 전",
|
|
311
|
+
"time.years_ago": "%{count}년 전",
|
|
312
|
+
"time.years_ago_plural": "%{count}년 전"
|
|
305
313
|
},
|
|
306
314
|
"pt-BR": {
|
|
307
315
|
"cmd.git_blame": "Git Blame",
|
|
@@ -317,29 +325,30 @@
|
|
|
317
325
|
"status.no_blame_info": "Nenhuma informacao de blame disponivel (nao e um arquivo git ou erro)",
|
|
318
326
|
"status.failed_open": "Falha ao abrir o painel git blame",
|
|
319
327
|
"status.closed": "Git blame fechado",
|
|
320
|
-
"status.blame_ready": "Git blame: {count} blocos | b: blame no pai | q: fechar",
|
|
328
|
+
"status.blame_ready": "Git blame: %{count} blocos | b: blame no pai | q: fechar",
|
|
321
329
|
"status.move_to_line": "Primeiro mova o cursor para uma linha de blame",
|
|
322
330
|
"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}",
|
|
331
|
+
"status.loading_parent": "Carregando blame em %{hash}^...",
|
|
332
|
+
"status.cannot_go_back": "Nao foi possivel obter blame em %{hash}^ (pode ser commit inicial ou arquivo nao existia)",
|
|
333
|
+
"status.blame_at_parent": "Git blame em %{hash}^ | profundidade: %{depth} | b: ir mais fundo | q: fechar",
|
|
334
|
+
"status.hash_copied": "Copiado: %{short} (%{full})",
|
|
335
|
+
"status.hash_display": "Hash: %{hash}",
|
|
336
|
+
"status.git_error": "Erro git blame: %{error}",
|
|
337
|
+
"status.ready": "Git Blame pronto",
|
|
329
338
|
|
|
330
339
|
"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"
|
|
340
|
+
"time.minutes_ago": "ha %{count} minuto",
|
|
341
|
+
"time.minutes_ago_plural": "ha %{count} minutos",
|
|
342
|
+
"time.hours_ago": "ha %{count} hora",
|
|
343
|
+
"time.hours_ago_plural": "ha %{count} horas",
|
|
344
|
+
"time.days_ago": "ha %{count} dia",
|
|
345
|
+
"time.days_ago_plural": "ha %{count} dias",
|
|
346
|
+
"time.weeks_ago": "ha %{count} semana",
|
|
347
|
+
"time.weeks_ago_plural": "ha %{count} semanas",
|
|
348
|
+
"time.months_ago": "ha %{count} mes",
|
|
349
|
+
"time.months_ago_plural": "ha %{count} meses",
|
|
350
|
+
"time.years_ago": "ha %{count} ano",
|
|
351
|
+
"time.years_ago_plural": "ha %{count} anos"
|
|
343
352
|
},
|
|
344
353
|
"ru": {
|
|
345
354
|
"cmd.git_blame": "Git Blame",
|
|
@@ -355,29 +364,30 @@
|
|
|
355
364
|
"status.no_blame_info": "Net informatsii blame (ne git fayl ili oshibka)",
|
|
356
365
|
"status.failed_open": "Ne udalos' otkryt' panel' git blame",
|
|
357
366
|
"status.closed": "Git blame zakryt",
|
|
358
|
-
"status.blame_ready": "Git blame: {count} blokov | b: blame v roditelye | q: zakryt'",
|
|
367
|
+
"status.blame_ready": "Git blame: %{count} blokov | b: blame v roditelye | q: zakryt'",
|
|
359
368
|
"status.move_to_line": "Snachala peremesstite kursor na stroku blame",
|
|
360
369
|
"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}",
|
|
370
|
+
"status.loading_parent": "Zagruzka blame v %{hash}^...",
|
|
371
|
+
"status.cannot_go_back": "Ne udalos' poluchit' blame v %{hash}^ (vozmozhno nachal'nyy kommit ili fayl ne sushchestvoval)",
|
|
372
|
+
"status.blame_at_parent": "Git blame v %{hash}^ | glubina: %{depth} | b: glubzhe | q: zakryt'",
|
|
373
|
+
"status.hash_copied": "Skopirovano: %{short} (%{full})",
|
|
374
|
+
"status.hash_display": "Khesh: %{hash}",
|
|
375
|
+
"status.git_error": "Oshibka git blame: %{error}",
|
|
376
|
+
"status.ready": "Git Blame gotov",
|
|
367
377
|
|
|
368
378
|
"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"
|
|
379
|
+
"time.minutes_ago": "%{count} minutu nazad",
|
|
380
|
+
"time.minutes_ago_plural": "%{count} minut nazad",
|
|
381
|
+
"time.hours_ago": "%{count} chas nazad",
|
|
382
|
+
"time.hours_ago_plural": "%{count} chasov nazad",
|
|
383
|
+
"time.days_ago": "%{count} den' nazad",
|
|
384
|
+
"time.days_ago_plural": "%{count} dney nazad",
|
|
385
|
+
"time.weeks_ago": "%{count} nedelyu nazad",
|
|
386
|
+
"time.weeks_ago_plural": "%{count} nedel' nazad",
|
|
387
|
+
"time.months_ago": "%{count} mesyats nazad",
|
|
388
|
+
"time.months_ago_plural": "%{count} mesyatsev nazad",
|
|
389
|
+
"time.years_ago": "%{count} god nazad",
|
|
390
|
+
"time.years_ago_plural": "%{count} let nazad"
|
|
381
391
|
},
|
|
382
392
|
"th": {
|
|
383
393
|
"cmd.git_blame": "Git Blame",
|
|
@@ -393,29 +403,30 @@
|
|
|
393
403
|
"status.no_blame_info": "ไม่มีข้อมูล blame (ไม่ใช่ไฟล์ git หรือมีข้อผิดพลาด)",
|
|
394
404
|
"status.failed_open": "ไม่สามารถเปิดแผง git blame ได้",
|
|
395
405
|
"status.closed": "ปิด Git blame แล้ว",
|
|
396
|
-
"status.blame_ready": "Git blame: {count} บล็อก | b: blame ที่หลัก | q: ปิด",
|
|
406
|
+
"status.blame_ready": "Git blame: %{count} บล็อก | b: blame ที่หลัก | q: ปิด",
|
|
397
407
|
"status.move_to_line": "กรุณาเลื่อนเคอร์เซอร์ไปที่บรรทัด blame ก่อน",
|
|
398
408
|
"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}",
|
|
409
|
+
"status.loading_parent": "กำลังโหลด blame ที่ %{hash}^...",
|
|
410
|
+
"status.cannot_go_back": "ไม่สามารถรับ blame ที่ %{hash}^ (อาจเป็นคอมมิตแรกหรือไฟล์ไม่เคยมีอยู่)",
|
|
411
|
+
"status.blame_at_parent": "Git blame ที่ %{hash}^ | ความลึก: %{depth} | b: ลึกขึ้น | q: ปิด",
|
|
412
|
+
"status.hash_copied": "คัดลอกแล้ว: %{short} (%{full})",
|
|
413
|
+
"status.hash_display": "แฮช: %{hash}",
|
|
414
|
+
"status.git_error": "ข้อผิดพลาด Git blame: %{error}",
|
|
415
|
+
"status.ready": "Git Blame พร้อม",
|
|
405
416
|
|
|
406
417
|
"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} ปีที่แล้ว"
|
|
418
|
+
"time.minutes_ago": "%{count} นาทีที่แล้ว",
|
|
419
|
+
"time.minutes_ago_plural": "%{count} นาทีที่แล้ว",
|
|
420
|
+
"time.hours_ago": "%{count} ชั่วโมงที่แล้ว",
|
|
421
|
+
"time.hours_ago_plural": "%{count} ชั่วโมงที่แล้ว",
|
|
422
|
+
"time.days_ago": "%{count} วันที่แล้ว",
|
|
423
|
+
"time.days_ago_plural": "%{count} วันที่แล้ว",
|
|
424
|
+
"time.weeks_ago": "%{count} สัปดาห์ที่แล้ว",
|
|
425
|
+
"time.weeks_ago_plural": "%{count} สัปดาห์ที่แล้ว",
|
|
426
|
+
"time.months_ago": "%{count} เดือนที่แล้ว",
|
|
427
|
+
"time.months_ago_plural": "%{count} เดือนที่แล้ว",
|
|
428
|
+
"time.years_ago": "%{count} ปีที่แล้ว",
|
|
429
|
+
"time.years_ago_plural": "%{count} ปีที่แล้ว"
|
|
419
430
|
},
|
|
420
431
|
"uk": {
|
|
421
432
|
"cmd.git_blame": "Git Blame",
|
|
@@ -431,29 +442,30 @@
|
|
|
431
442
|
"status.no_blame_info": "Nemaye informatsiyi blame (ne git fayl abo pomylka)",
|
|
432
443
|
"status.failed_open": "Ne vdalosya vidkryty panel' git blame",
|
|
433
444
|
"status.closed": "Git blame zakryto",
|
|
434
|
-
"status.blame_ready": "Git blame: {count} blokiv | b: blame v bat'ka | q: zakryty",
|
|
445
|
+
"status.blame_ready": "Git blame: %{count} blokiv | b: blame v bat'ka | q: zakryty",
|
|
435
446
|
"status.move_to_line": "Spochatku peremistit' kursor na ryadok blame",
|
|
436
447
|
"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}",
|
|
448
|
+
"status.loading_parent": "Zavantazhennya blame v %{hash}^...",
|
|
449
|
+
"status.cannot_go_back": "Ne vdalosya otrymaty blame v %{hash}^ (mozhe buty pochatkovyy komit abo fayl ne isnuvav)",
|
|
450
|
+
"status.blame_at_parent": "Git blame v %{hash}^ | hlybyna: %{depth} | b: hlybshe | q: zakryty",
|
|
451
|
+
"status.hash_copied": "Skopiyovano: %{short} (%{full})",
|
|
452
|
+
"status.hash_display": "Khesh: %{hash}",
|
|
453
|
+
"status.git_error": "Pomylka git blame: %{error}",
|
|
454
|
+
"status.ready": "Git Blame hotovyy",
|
|
443
455
|
|
|
444
456
|
"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
|
+
"time.minutes_ago": "%{count} khvylynu tomu",
|
|
458
|
+
"time.minutes_ago_plural": "%{count} khvylyn tomu",
|
|
459
|
+
"time.hours_ago": "%{count} hodynu tomu",
|
|
460
|
+
"time.hours_ago_plural": "%{count} hodyn tomu",
|
|
461
|
+
"time.days_ago": "%{count} den' tomu",
|
|
462
|
+
"time.days_ago_plural": "%{count} dniv tomu",
|
|
463
|
+
"time.weeks_ago": "%{count} tyzhden' tomu",
|
|
464
|
+
"time.weeks_ago_plural": "%{count} tyzhniv tomu",
|
|
465
|
+
"time.months_ago": "%{count} misyats' tomu",
|
|
466
|
+
"time.months_ago_plural": "%{count} misyatsiv tomu",
|
|
467
|
+
"time.years_ago": "%{count} rik tomu",
|
|
468
|
+
"time.years_ago_plural": "%{count} rokiv tomu"
|
|
457
469
|
},
|
|
458
470
|
"zh-CN": {
|
|
459
471
|
"cmd.git_blame": "Git Blame",
|
|
@@ -469,28 +481,29 @@
|
|
|
469
481
|
"status.no_blame_info": "没有可用的blame信息(不是git文件或出错)",
|
|
470
482
|
"status.failed_open": "无法打开git blame面板",
|
|
471
483
|
"status.closed": "Git blame已关闭",
|
|
472
|
-
"status.blame_ready": "Git blame: {count}个块 | b: 在父提交blame | q: 关闭",
|
|
484
|
+
"status.blame_ready": "Git blame: %{count}个块 | b: 在父提交blame | q: 关闭",
|
|
473
485
|
"status.move_to_line": "请先将光标移动到blame行",
|
|
474
486
|
"status.not_committed": "此行尚未提交",
|
|
475
|
-
"status.loading_parent": "
|
|
476
|
-
"status.cannot_go_back": "
|
|
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}",
|
|
487
|
+
"status.loading_parent": "正在加载%{hash}^的blame...",
|
|
488
|
+
"status.cannot_go_back": "无法获取%{hash}^的blame(可能是初始提交或文件不存在)",
|
|
489
|
+
"status.blame_at_parent": "Git blame %{hash}^ | 深度: %{depth} | b: 更深入 | q: 关闭",
|
|
490
|
+
"status.hash_copied": "已复制: %{short} (%{full})",
|
|
491
|
+
"status.hash_display": "哈希: %{hash}",
|
|
492
|
+
"status.git_error": "Git blame错误: %{error}",
|
|
493
|
+
"status.ready": "Git Blame就绪",
|
|
481
494
|
|
|
482
495
|
"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}年前"
|
|
496
|
+
"time.minutes_ago": "%{count}分钟前",
|
|
497
|
+
"time.minutes_ago_plural": "%{count}分钟前",
|
|
498
|
+
"time.hours_ago": "%{count}小时前",
|
|
499
|
+
"time.hours_ago_plural": "%{count}小时前",
|
|
500
|
+
"time.days_ago": "%{count}天前",
|
|
501
|
+
"time.days_ago_plural": "%{count}天前",
|
|
502
|
+
"time.weeks_ago": "%{count}周前",
|
|
503
|
+
"time.weeks_ago_plural": "%{count}周前",
|
|
504
|
+
"time.months_ago": "%{count}个月前",
|
|
505
|
+
"time.months_ago_plural": "%{count}个月前",
|
|
506
|
+
"time.years_ago": "%{count}年前",
|
|
507
|
+
"time.years_ago_plural": "%{count}年前"
|
|
495
508
|
}
|
|
496
509
|
}
|