better english

Massimo Melina committed Apr 2, 2024 at 21:00 UTC feec1ec58d1df1112e6e0e05308bdaf4ac412de3
9 files changed +9 -9
frontend/src/clip.ts
+1 -1
@@ -19,7 +19,7 @@ export function ClipBar() {
19 const there = dirname(clip[0].uri) + '/'
20 return h('div', { id: 'clipBar' },
21 h(Btn, { label: t`Cancel clipboard`, icon: 'close', onClick: cancel }),
22 - h(Btn, { label: t('to_clipboard_source', "To folder"), icon: 'parent', onClick: goBack, disabled: here === there }),
22 + h(Btn, { label: t('to_clipboard_source', "Back to source folder"), icon: 'parent', onClick: goBack, disabled: here === there }),
23 h(Btn, { label: t`Paste`, icon: 'paste', onClick: paste, disabled: here === there || !props?.can_upload }),
24 h('div', { onClick: show, style: { flex: 1 } },
25 clip.length === 1 ? clip[0].name : t('n_items', { n: clip.length }, "{n,plural, one{# item} other{# items}}") ),
src/langs/hfs-lang-en.json
+1 -1
@@ -142,7 +142,7 @@
142 "good_bad": "{good} moved, {bad} failed",
143 "after_cut": "Your selection is now in the clipboard.\nGo to destination folder to paste.",
144 "Cancel clipboard": "Cancel clipboard",
145 - "to_clipboard_source": "To folder",
145 + "to_clipboard_source": "Back to source folder",
146 "Paste": "Paste",
147 "clipboard_list": "Items in clipboard:",
148
src/langs/hfs-lang-es.json
+1 -1
@@ -146,7 +146,7 @@
146 "good_bad": "{good} movido, {bad} fallado",
147 "after_cut": "Su selección está ahora en el portapapeles.\nVaya a la carpeta de destino para pegar.",
148 "Cancel clipboard": "Cancelar portapapeles",
149 - "to_clipboard_source": "A la carpeta",
149 + "to_clipboard_source": "Volver a la carpeta de origen",
150 "Paste": "Pegar",
151 "clipboard_list": "Elementos en el portapapeles:",
152
src/langs/hfs-lang-fi.json
+1 -1
@@ -146,7 +146,7 @@
146 "good_bad": "{good} siirretty, {bad} epäonnistui",
147 "after_cut": "Valintasi on nyt leikepöydällä.\nMene kohdekansioon liittääksesi.",
148 "Cancel clipboard": "Sulje leikepöytä",
149 - "to_clipboard_source": "Takaisin lähdekansioon",
149 + "to_clipboard_source": "Palaa lähdekansioon",
150 "Paste": "Liitä",
151 "clipboard_list": "Kohteet leikepöydällä:",
152
src/langs/hfs-lang-it.json
+1 -1
@@ -134,7 +134,7 @@
134 "good_bad": "{good} spostati, {bad} falliti",
135 "after_cut": "Hai messo negli appunti, ora spostati fino alla destinazione e premi \"Incolla\".",
136 "Cancel clipboard": "Annulla appunti",
137 - "to_clipboard_source": "Torna all'origine'",
137 + "to_clipboard_source": "Torna alla cartella d'origine",
138 "Paste": "Incolla",
139 "clipboard_list": "Elementi negli appunti",
140
src/langs/hfs-lang-nl.json
+1 -1
@@ -127,7 +127,7 @@
127 "good_bad": "{good} verplaatst, {bad} mislukt",
128 "after_cut": "Uw selectie is nu naar het klembord gekopieerd.\nGa naar de bestemmings map om te plakken.",
129 "Cancel clipboard": "Cancel clipboard",
130 - "to_clipboard_source": "Naar map",
130 + "to_clipboard_source": "Ga terug naar de bronmap",
131 "Paste": "Plakken",
132 "clipboard_list": "Items in het klembord:",
133
src/langs/hfs-lang-ru.json
+1 -1
@@ -146,7 +146,7 @@
146 "good_bad": "{good} {good,plural, one{перемещён} other{перемещено}}, {bad} неуспешно",
147 "after_cut": "Выбранное скопировано в буфер обмена.\nПерейдите в папку назначения для вставки.",
148 "Cancel clipboard": "Отменить буфер обмена",
149 - "to_clipboard_source": "В папку",
149 + "to_clipboard_source": "Вернуться в исходную папку",
150 "Paste": "Вставить",
151 "clipboard_list": "Элементы в буфере обмена:",
152 "Close": "Закрыть",
src/langs/hfs-lang-vi.json
+1 -1
@@ -146,7 +146,7 @@
146 "good_bad": "{good} đã di chuyển, {bad} thất bại",
147 "after_cut": "Cái đã chọn đã lưu trong clipboard.\nTới folder khác để dán.",
148 "Cancel clipboard": "Bỏ clipboard",
149 - "to_clipboard_source": "Tới folder",
149 + "to_clipboard_source": "Quay lại thư mục nguồn",
150 "Paste": "Dán",
151 "clipboard_list": "Clipboard:",
152
src/langs/hfs-lang-zh.json
+1 -1
@@ -146,7 +146,7 @@
146 "good_bad": "{good}个已移动, {bad}个失败",
147 "after_cut": "您的选择已成功添加到剪贴板,\n请前往目标文件夹粘贴。",
148 "Cancel clipboard": "取消剪贴板",
149 - "to_clipboard_source": "至文件夹",
149 + "to_clipboard_source": "返回源文件夹",
150 "Paste": "粘贴",
151 "clipboard_list": "剪贴板文件:"
152 }