Skip to content

Commit d4afc5c

Browse files
committed
fix(i18n): fix bad merge that duplicated a key
1 parent 02d0672 commit d4afc5c

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

app/pages/package-code/[[org]]/[packageName]/v/[version]/[...filePath].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ useCommandPaletteContextCommands(
333333
commands.push({
334334
id: 'code-open-raw',
335335
group: 'links',
336-
label: $t('code.raw'),
336+
label: $t('code.view_raw'),
337337
keywords: [packageName.value, filePath.value],
338338
iconClass: 'i-lucide:file-output',
339339
href: `https://cdn.jsdelivr.net/npm/${packageName.value}@${version.value}/${filePath.value}`,

i18n/locales/en.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,6 @@
939939
"close_tree": "Close file tree",
940940
"copy_content": "Copy file content",
941941
"copy_link": "Copy link",
942-
"raw": "Raw",
943942
"view_raw": "View raw file",
944943
"toggle_container": "Toggle code container width",
945944
"open_raw_file": "Open raw file",

i18n/schema.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2821,9 +2821,6 @@
28212821
"copy_link": {
28222822
"type": "string"
28232823
},
2824-
"raw": {
2825-
"type": "string"
2826-
},
28272824
"view_raw": {
28282825
"type": "string"
28292826
},

0 commit comments

Comments
 (0)