vuefinder 2.0.1 → 2.1.0
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/README.md +46 -13
- package/dist/locales/de.js +89 -0
- package/dist/locales/en.js +89 -0
- package/dist/locales/fa.js +89 -0
- package/dist/locales/fr.js +90 -0
- package/dist/locales/he.js +89 -0
- package/dist/locales/hi.js +89 -0
- package/dist/locales/ru.js +89 -0
- package/dist/locales/sv.js +89 -0
- package/dist/locales/tr.js +89 -0
- package/dist/locales/zhCN.js +89 -0
- package/dist/locales/zhTW.js +89 -0
- package/dist/style.css +1 -1
- package/dist/vuefinder.cjs +2 -2
- package/dist/vuefinder.js +1960 -1991
- package/package.json +3 -2
- package/dist/de-3f6147f5.js +0 -276
- package/dist/de-e4938207.cjs +0 -1
- package/dist/en-39d37375.cjs +0 -1
- package/dist/en-ffed8966.js +0 -295
- package/dist/fa-64c35e1a.cjs +0 -1
- package/dist/fa-7534f880.js +0 -295
- package/dist/fr-c1251c6e.cjs +0 -1
- package/dist/fr-d570774a.js +0 -241
- package/dist/he-1978fb6e.js +0 -220
- package/dist/he-6b2ea6a2.cjs +0 -1
- package/dist/hi-7d3118ac.cjs +0 -1
- package/dist/hi-ffd5a2ba.js +0 -264
- package/dist/ru-9f317caf.js +0 -232
- package/dist/ru-f208af8a.cjs +0 -1
- package/dist/sv-07e3c393.js +0 -219
- package/dist/sv-acbe2c28.cjs +0 -1
- package/dist/tr-2fed3777.cjs +0 -1
- package/dist/tr-ce32e2ae.js +0 -218
- package/dist/zhCN-040643d9.js +0 -202
- package/dist/zhCN-44a2ca81.cjs +0 -1
- package/dist/zhTW-4aa25a91.js +0 -252
- package/dist/zhTW-73ae00d7.cjs +0 -1
package/README.md
CHANGED
|
@@ -27,14 +27,43 @@ import VueFinder from 'vuefinder/dist/vuefinder'
|
|
|
27
27
|
|
|
28
28
|
const app = createApp(App)
|
|
29
29
|
|
|
30
|
+
//By default, Vuefinder will use English as the main language.
|
|
31
|
+
// However, if you want to support multiple languages and customize the localization,
|
|
32
|
+
// you can import the language files manually during component registration.
|
|
30
33
|
app.use(VueFinder)
|
|
31
34
|
|
|
32
35
|
app.mount('#app')
|
|
33
36
|
|
|
34
37
|
```
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
+
### Localization
|
|
39
|
+
You can manually import the localization files from the package and register them with Vuefinder. The localization files are located in the dist/locales folder.
|
|
40
|
+
|
|
41
|
+
```js
|
|
42
|
+
import en from 'vuefinder/dist/lang/en.json'
|
|
43
|
+
import tr from 'vuefinder/dist/lang/tr.json'
|
|
44
|
+
import ru from 'vuefinder/dist/lang/ru.json'
|
|
45
|
+
|
|
46
|
+
app.use(VueFinder, {
|
|
47
|
+
i18n: { en, tr, ru }
|
|
48
|
+
});
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Async Localization
|
|
52
|
+
Alternatively, you can import the localization files asynchronously during component registration. This can be useful for lazy loading or if you prefer to load the files dynamically.
|
|
53
|
+
|
|
54
|
+
```js
|
|
55
|
+
app.use(VueFinder, {
|
|
56
|
+
i18n: {
|
|
57
|
+
en: async () => await import("vuefinder/dist/locales/en.js"),
|
|
58
|
+
de: async () => await import("vuefinder/dist/locales/de.js"),
|
|
59
|
+
// Add more locales as needed
|
|
60
|
+
}
|
|
61
|
+
});
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
#### Vue Template
|
|
65
|
+
|
|
66
|
+
```vue
|
|
38
67
|
<div>
|
|
39
68
|
<vue-finder id='my_vuefinder' :request="request"></vue-finder>
|
|
40
69
|
</div>
|
|
@@ -71,13 +100,15 @@ Vue Template
|
|
|
71
100
|
|
|
72
101
|
### Props
|
|
73
102
|
|
|
74
|
-
| Prop |
|
|
75
|
-
|
|
76
|
-
| id | string
|
|
77
|
-
| request | object
|
|
78
|
-
| locale | string
|
|
79
|
-
|
|
|
80
|
-
| max-file-size | string
|
|
103
|
+
| Prop | Value | Default | Description |
|
|
104
|
+
|---------------|:------:|---------|:-----------------------------------------------------------|
|
|
105
|
+
| id | string | _null_ | required |
|
|
106
|
+
| request | object | _null_ | required - backend url or request object, see above |
|
|
107
|
+
| locale | string | en | optional - default language code |
|
|
108
|
+
| theme | string | system | optional - default theme, options: "system","light","dark" |
|
|
109
|
+
| max-file-size | string | 10mb | optional - client side max file upload |
|
|
110
|
+
| max-height | string | 600px | optional - max height of the component |
|
|
111
|
+
| features | array | _null_ | optional - array of the enabled features |
|
|
81
112
|
|
|
82
113
|
### Features
|
|
83
114
|
- Multi adapter/storage (see https://github.com/thephpleague/flysystem)
|
|
@@ -117,11 +148,11 @@ Vue Template
|
|
|
117
148
|
- [x] restyle the modals
|
|
118
149
|
- [x] add more languages (only en/tr/ru at the moment. PRs are welcomed.)
|
|
119
150
|
- [x] emit select event, with @select get selected files for online editors like tinymce/ckeditor
|
|
151
|
+
- [x] show/hide components (toolbar/statusbar etc.)
|
|
152
|
+
- [x] drag&drop on folders at address bar
|
|
120
153
|
- [ ] code refactoring (cleanup the duplications, make reusable components)
|
|
121
154
|
- [ ] copy/move to a folder (modal, treeview)
|
|
122
155
|
- [ ] transfer items between filesystem adapters
|
|
123
|
-
- [ ] show/hide components (toolbar/statusbar etc.)
|
|
124
|
-
- [ ] drag&drop on folders at address bar
|
|
125
156
|
- [ ] update DragSelect plugin for using its dropzone support
|
|
126
157
|
|
|
127
158
|
### Dependencies
|
|
@@ -129,7 +160,9 @@ Vue Template
|
|
|
129
160
|
- [Cropperjs](https://github.com/fengyuanchen/cropperjs) : JavaScript image cropper
|
|
130
161
|
- [DragSelect](https://github.com/ThibaultJanBeyer/DragSelect/) : Selection utility
|
|
131
162
|
- [Uppy](https://github.com/transloadit/uppy) : Upload library
|
|
132
|
-
- [vanilla-lazyload](https://github.com/verlok/vanilla-lazyload) : lazy loading for thumbnails
|
|
163
|
+
- [vanilla-lazyload](https://github.com/verlok/vanilla-lazyload) : lightweight and flexible lazy loading for thumbnails
|
|
164
|
+
- [microtip](https://github.com/ghosh/microtip) : Minimal, accessible, ultra lightweight css tooltip library
|
|
165
|
+
- [mitt](https://github.com/developit/mitt) : Tiny 200 byte functional event emitter / pubsub
|
|
133
166
|
|
|
134
167
|
### License
|
|
135
168
|
Copyright (c) 2018 Yusuf ÖZDEMİR, released under [the MIT license](LICENSE)
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import uppyLocaleDe from '@uppy/locales/lib/de_DE.js';
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
"Language": "Sprache",
|
|
5
|
+
"Create": "Erstellen",
|
|
6
|
+
"Close": "Schließen",
|
|
7
|
+
"Cancel": "Abbrechen",
|
|
8
|
+
"Save": "Speichern",
|
|
9
|
+
"Edit": "Bearbeiten",
|
|
10
|
+
"Crop": "Zuschneiden",
|
|
11
|
+
"New Folder": "Neuer Ordner",
|
|
12
|
+
"New File": "Neue Datei",
|
|
13
|
+
"Rename": "Umbenennen",
|
|
14
|
+
"Delete": "Löschen",
|
|
15
|
+
"Upload": "Hochladen",
|
|
16
|
+
"Download": "Herunterladen",
|
|
17
|
+
"Archive": "Archivieren",
|
|
18
|
+
"Unarchive": "Dearchivieren",
|
|
19
|
+
"Open": "Öffnen",
|
|
20
|
+
"Open containing folder": "Enthaltenden Ordner öffnen",
|
|
21
|
+
"Refresh": "Aktualisieren",
|
|
22
|
+
"Preview": "Vorschau",
|
|
23
|
+
"Toggle Full Screen": "Vollbild umschalten",
|
|
24
|
+
"Change View": "Ansicht ändern",
|
|
25
|
+
"Storage": "Speicher",
|
|
26
|
+
"Go up a directory": "Ein Verzeichnis hochgehen",
|
|
27
|
+
"Search anything..": "Suche etwas..",
|
|
28
|
+
"Name": "Name",
|
|
29
|
+
"Size": "Größe",
|
|
30
|
+
"Date": "Datum",
|
|
31
|
+
"Filepath": "Dateipfad",
|
|
32
|
+
"About": "Über",
|
|
33
|
+
"Folder Name": "Ordnername",
|
|
34
|
+
"File Name": "Dateiname",
|
|
35
|
+
"Move files": "Dateien verschieben",
|
|
36
|
+
"Yes, Move!": "Ja, Verschieben!",
|
|
37
|
+
"Delete files": "Dateien löschen",
|
|
38
|
+
"Yes, Delete!": "Ja, Löschen!",
|
|
39
|
+
"Upload Files": "Dateien hochladen",
|
|
40
|
+
"No files selected!": "Keine Dateien ausgewählt!",
|
|
41
|
+
"Select Files": "Dateien auswählen",
|
|
42
|
+
"Archive the files": "Dateien archivieren",
|
|
43
|
+
"Unarchive the files": "Dateien dearchivieren",
|
|
44
|
+
"The archive will be unarchived at": "Das Archiv wird dearchiviert bei",
|
|
45
|
+
"Archive name. (.zip file will be created)": "Archivname. (.zip Datei wird erstellt)",
|
|
46
|
+
"Vuefinder is a file manager component for vue 3.": "Vuefinder ist eine Dateimanager-Komponente für Vue 3.",
|
|
47
|
+
"Create a new folder": "Einen neuen Ordner erstellen",
|
|
48
|
+
"Create a new file": "Eine neue Datei erstellen",
|
|
49
|
+
"Are you sure you want to delete these files?": "Sind Sie sicher, dass Sie diese Dateien löschen möchten?",
|
|
50
|
+
"This action cannot be undone.": "Diese Aktion kann nicht rückgängig gemacht werden.",
|
|
51
|
+
"Search results for": "Suchergebnisse für",
|
|
52
|
+
"%s item(s) selected.": "%s Element(e) ausgewählt.",
|
|
53
|
+
"%s is renamed.": "%s wurde umbenannt.",
|
|
54
|
+
"This is a readonly storage.": "Dies ist ein schreibgeschützter Speicher.",
|
|
55
|
+
"%s is created.": "%s wurde erstellt.",
|
|
56
|
+
"Files moved.": "Dateien verschoben.",
|
|
57
|
+
"Files deleted.": "Dateien gelöscht.",
|
|
58
|
+
"The file unarchived.": "Die Datei wurde dearchiviert.",
|
|
59
|
+
"The file(s) archived.": "Die Datei(en) wurden archiviert.",
|
|
60
|
+
"Updated.": "Aktualisiert.",
|
|
61
|
+
"No search result found.": "Keine Suchergebnisse gefunden.",
|
|
62
|
+
"Are you sure you want to move these files?": "Sind Sie sicher, dass Sie diese Dateien verschieben möchten?",
|
|
63
|
+
"File Size": "Dateigröße",
|
|
64
|
+
"Last Modified": "Zuletzt geändert",
|
|
65
|
+
"Drag&Drop: on": "Drag&Drop: an",
|
|
66
|
+
"Drag&Drop: off": "Drag&Drop: aus",
|
|
67
|
+
"Select Folders": "Ordner auswählen",
|
|
68
|
+
"Clear all": "Alles löschen",
|
|
69
|
+
"Clear only successful": "Nur erfolgreiche löschen",
|
|
70
|
+
"Drag and drop the files/folders to here or click here.": "Ziehen Sie die Dateien/Ordner hierher oder klicken Sie hier.",
|
|
71
|
+
"Release to drop these files.": "Lassen Sie los, um diese Dateien abzulegen.",
|
|
72
|
+
"Canceled": "Abgebrochen",
|
|
73
|
+
"Done": "Fertig",
|
|
74
|
+
"Network Error, Unable establish connection to the server or interrupted.": "Netzwerkfehler, Verbindung zum Server kann nicht hergestellt oder unterbrochen werden.",
|
|
75
|
+
"Pending upload": "Ausstehender",
|
|
76
|
+
"Please select file to upload first.": "Bitte wählen Sie zuerst eine Datei zum Hochladen aus.",
|
|
77
|
+
"About %s": "Über %s",
|
|
78
|
+
"Settings": "Einstellungen",
|
|
79
|
+
"Use Metric Units": "Use Metric Units",
|
|
80
|
+
"Saved.": "Gespeichert.",
|
|
81
|
+
"Reset Settings": "Einstellungen zurücksetzen",
|
|
82
|
+
"Download doesn\'t work? You can try right-click \"Download\" button, select \"Save link as...\".": "Der Download funktioniert nicht? Sie können versuchen, mit der rechten Maustaste auf die Schaltfläche \"Download\" zu klicken und \"Link speichern unter...\" auszuwählen.",
|
|
83
|
+
"Theme": "Thema",
|
|
84
|
+
"Dark": "Dunkel",
|
|
85
|
+
"Light": "Licht",
|
|
86
|
+
"System": "System",
|
|
87
|
+
"Target Directory" : "Zielverzeichnis",
|
|
88
|
+
"uppy" : uppyLocaleDe,
|
|
89
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import uppyLocaleEn from '@uppy/locales/lib/en_US.js';
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
"Language": "Language",
|
|
5
|
+
"Create": "Create",
|
|
6
|
+
"Close": "Close",
|
|
7
|
+
"Cancel": "Cancel",
|
|
8
|
+
"Save": "Save",
|
|
9
|
+
"Edit": "Edit",
|
|
10
|
+
"Crop": "Crop",
|
|
11
|
+
"New Folder": "New Folder",
|
|
12
|
+
"New File": "New File",
|
|
13
|
+
"Rename": "Rename",
|
|
14
|
+
"Delete": "Delete",
|
|
15
|
+
"Upload": "Upload",
|
|
16
|
+
"Download": "Download",
|
|
17
|
+
"Archive": "Archive",
|
|
18
|
+
"Unarchive": "Unarchive",
|
|
19
|
+
"Open": "Open",
|
|
20
|
+
"Open containing folder": "Open containing folder",
|
|
21
|
+
"Refresh": "Refresh",
|
|
22
|
+
"Preview": "Preview",
|
|
23
|
+
"Toggle Full Screen": "Toggle Full Screen",
|
|
24
|
+
"Change View": "Change View",
|
|
25
|
+
"Storage" : "Storage",
|
|
26
|
+
"Go up a directory": "Go up a directory",
|
|
27
|
+
"Search anything..": "Search anything..",
|
|
28
|
+
"Name": "Name",
|
|
29
|
+
"Size": "Size",
|
|
30
|
+
"Date": "Date",
|
|
31
|
+
"Filepath": "Filepath",
|
|
32
|
+
"About": "About",
|
|
33
|
+
"Folder Name": "Folder Name",
|
|
34
|
+
"File Name": "File Name",
|
|
35
|
+
"Move files": "Move files",
|
|
36
|
+
"Yes, Move!": "Yes, Move!",
|
|
37
|
+
"Delete files": "Delete files",
|
|
38
|
+
"Yes, Delete!": "Yes, Delete!",
|
|
39
|
+
"Upload Files" : "Upload Files",
|
|
40
|
+
"No files selected!": "No files selected!",
|
|
41
|
+
"Select Files": "Select Files",
|
|
42
|
+
"Archive the files": "Archive the files",
|
|
43
|
+
"Unarchive the files": "Unarchive the files",
|
|
44
|
+
"The archive will be unarchived at": "The archive will be unarchived at",
|
|
45
|
+
"Archive name. (.zip file will be created)": "Archive name. (.zip file will be created)",
|
|
46
|
+
"Vuefinder is a file manager component for vue 3.": "Vuefinder is a file manager component for Vue 3.",
|
|
47
|
+
"Create a new folder": "Create a new folder",
|
|
48
|
+
"Create a new file": "Create a new file",
|
|
49
|
+
"Are you sure you want to delete these files?": "Are you sure you want to delete these files?",
|
|
50
|
+
"This action cannot be undone.": "This action cannot be undone.",
|
|
51
|
+
"Search results for" : "Search results for",
|
|
52
|
+
"%s item(s) selected.": "%s item(s) selected.",
|
|
53
|
+
"%s is renamed." : "%s is renamed.",
|
|
54
|
+
"This is a readonly storage." : "This is a readonly storage.",
|
|
55
|
+
"%s is created." : "%s is created.",
|
|
56
|
+
"Files moved." : "Files moved.",
|
|
57
|
+
"Files deleted." : "Files deleted.",
|
|
58
|
+
"The file unarchived." : "The file unarchived.",
|
|
59
|
+
"The file(s) archived." : "The file(s) archived.",
|
|
60
|
+
"Updated." : "Updated.",
|
|
61
|
+
"No search result found." : "No search result found.",
|
|
62
|
+
"Are you sure you want to move these files?" : "Are you sure you want to move these files?",
|
|
63
|
+
"File Size": "File Size",
|
|
64
|
+
"Last Modified": "Last Modified",
|
|
65
|
+
"Drag&Drop: on": "Drag&Drop: on",
|
|
66
|
+
"Drag&Drop: off": "Drag&Drop: off",
|
|
67
|
+
"Select Folders": "Select Folders",
|
|
68
|
+
"Clear all": "Clear all",
|
|
69
|
+
"Clear only successful": "Clear only successful",
|
|
70
|
+
"Drag and drop the files/folders to here or click here.": "Drag and drop the files/folders to here or click here.",
|
|
71
|
+
"Release to drop these files.": "Release to drop these files.",
|
|
72
|
+
"Canceled": "Canceled",
|
|
73
|
+
"Done": "Done",
|
|
74
|
+
"Network Error, Unable establish connection to the server or interrupted.": "Network Error, Unable establish connection to the server or interrupted.",
|
|
75
|
+
"Pending upload": "Pending",
|
|
76
|
+
"Please select file to upload first." : "Please select file to upload first.",
|
|
77
|
+
"About %s": "About %s",
|
|
78
|
+
"Settings": "Settings",
|
|
79
|
+
"Use Metric Units": "Use Metric Units",
|
|
80
|
+
"Saved.": "Saved.",
|
|
81
|
+
"Reset Settings": "Reset Settings",
|
|
82
|
+
"Download doesn\'t work? You can try right-click \"Download\" button, select \"Save link as...\".": "Download doesn\'t work? You can try right-click \"Download\" button, select \"Save link as...\".",
|
|
83
|
+
"Theme": "Theme",
|
|
84
|
+
"Dark": "Dark",
|
|
85
|
+
"Light": "Light",
|
|
86
|
+
"System": "System",
|
|
87
|
+
"Target Directory" : "Target Directory",
|
|
88
|
+
"uppy": uppyLocaleEn
|
|
89
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import uppyLocaleFa from '@uppy/locales/lib/fa_IR.js';
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
"Language": "زبان",
|
|
5
|
+
"Create": "ایجاد",
|
|
6
|
+
"Close": "بستن",
|
|
7
|
+
"Cancel": "انصراف",
|
|
8
|
+
"Save": "ذخیره",
|
|
9
|
+
"Edit": "ویرایش",
|
|
10
|
+
"Crop": "برش تصویر",
|
|
11
|
+
"New Folder": "پوشه جدید",
|
|
12
|
+
"New File": "فایل جدید",
|
|
13
|
+
"Rename": "تغییر نام",
|
|
14
|
+
"Delete": "حذف",
|
|
15
|
+
"Upload": "آپلود",
|
|
16
|
+
"Download": "دانلود",
|
|
17
|
+
"Archive": "فشرده سازی",
|
|
18
|
+
"Unarchive": "باز کردن فایل فشرده",
|
|
19
|
+
"Open": "باز کردن",
|
|
20
|
+
"Open containing folder": "محتوای پوشه را باز کن!",
|
|
21
|
+
"Refresh": "بارکذاری مجدد",
|
|
22
|
+
"Preview": "پیشنمایش",
|
|
23
|
+
"Toggle Full Screen": "تمام تصویر کردن",
|
|
24
|
+
"Change View": "تغییر نوع نمایش",
|
|
25
|
+
"Storage" : "فضا",
|
|
26
|
+
"Go up a directory": "برو به پوشه",
|
|
27
|
+
"Search anything..": "به دنبال چه چیزی هستید ؟ جستجو کنید ...",
|
|
28
|
+
"Name": "نام",
|
|
29
|
+
"Size": "سایز",
|
|
30
|
+
"Date": "تاریخ انتشار",
|
|
31
|
+
"Filepath": "مسیر فایل",
|
|
32
|
+
"About": "درباره",
|
|
33
|
+
"Folder Name": "نام پوشه",
|
|
34
|
+
"File Name": "نام فایل",
|
|
35
|
+
"Move files": "انتقال فایل ها",
|
|
36
|
+
"Yes, Move!": "بله، انتقال بده!",
|
|
37
|
+
"Delete files": "پاک کردن فایل ها",
|
|
38
|
+
"Yes, Delete!": "بله، پاک کن!",
|
|
39
|
+
"Upload Files" : "آپلود کردن فایل ها",
|
|
40
|
+
"No files selected!": "هیچ فایلی انتخاب نشده است.",
|
|
41
|
+
"Select Files": "انتخاب فایل ها",
|
|
42
|
+
"Archive the files": "فشرده سازی فایل ها",
|
|
43
|
+
"Unarchive the files": "باز کردن فایل های فشرده",
|
|
44
|
+
"The archive will be unarchived at": "فایل فشرده سازه در این مسیر باز میشود: ",
|
|
45
|
+
"Archive name. (.zip file will be created)": "نام فایل فشرده",
|
|
46
|
+
"Vuefinder is a file manager component for vue 3.": "Vuefinder یک کتابخانه مدیریت فایل ها برای Vue3 میباشد.",
|
|
47
|
+
"Create a new folder": "ایجاد پوشه جدید",
|
|
48
|
+
"Create a new file": "ایجاد فایل جدید",
|
|
49
|
+
"Are you sure you want to delete these files?": "آیا از حذف فایل ها مطمئن هستید ؟",
|
|
50
|
+
"This action cannot be undone.": "این تغییرات قابل بازگشت نیست!",
|
|
51
|
+
"Search results for" : "نتیجه جستجو برای",
|
|
52
|
+
"%s item(s) selected.": "%s آیتم(های) انتخاب شده",
|
|
53
|
+
"%s is renamed." : "تغییر نام برای %s صورت گرفت.",
|
|
54
|
+
"This is a readonly storage." : "این فضا فقط قابل خواندن است!",
|
|
55
|
+
"%s is created." : "%s ساخته شد!",
|
|
56
|
+
"Files moved." : "فایل(ها) انقال یافتند.",
|
|
57
|
+
"Files deleted." : "فایل(ها) حذف شدند.",
|
|
58
|
+
"The file unarchived." : "فایل فشرده شده باز شد.",
|
|
59
|
+
"The file(s) archived." : "فایل(ها) فشرده سازی شدند.",
|
|
60
|
+
"Updated." : "آپدیت شد.",
|
|
61
|
+
"No search result found." : "هیچ نتیجه ای یافت نشد.",
|
|
62
|
+
"Are you sure you want to move these files?" : "آیا برای انتقال فایل ها مطمئن هستید ؟",
|
|
63
|
+
"File Size": "سایز فایل",
|
|
64
|
+
"Last Modified": "آخرین ویرایش",
|
|
65
|
+
"Drag&Drop: on": "Drag&Drop: روشن",
|
|
66
|
+
"Drag&Drop: off": "Drag&Drop: خاموش",
|
|
67
|
+
"Select Folders": "Select Folders",
|
|
68
|
+
"Clear all": "پاک کردن همه",
|
|
69
|
+
"Clear only successful": "پاک کردن فقط موفق",
|
|
70
|
+
"Drag and drop the files/folders to here or click here.": "فایل ها/پوشه ها را به اینجا بکشید یا اینجا کلیک کنید.",
|
|
71
|
+
"Release to drop these files.": "رها کنید تا این فایل ها را رها کنید.",
|
|
72
|
+
"Canceled": "لغو شد",
|
|
73
|
+
"Done": "انجام شد",
|
|
74
|
+
"Network Error, Unable establish connection to the server or interrupted.": "خطای شبکه، اتصال به سرور برقرار نشد یا قطع شد.",
|
|
75
|
+
"Pending upload": "آپلود در حال انتظار",
|
|
76
|
+
"Please select file to upload first." : "لطفا ابتدا فایلی را برای آپلود انتخاب کنید.",
|
|
77
|
+
"About %s": "درباره %s",
|
|
78
|
+
"Settings": "تنظیمات",
|
|
79
|
+
"Use Metric Units": "استفاده از واحد های متریک",
|
|
80
|
+
"Saved.": "ذخیره شد.",
|
|
81
|
+
"Reset Settings": "بازنشانی تنظیمات",
|
|
82
|
+
"Download doesn\'t work? You can try right-click \"Download\" button, select \"Save link as...\".": "دانلود کار نمیکند؟ میتوانید روی دکمه \"دانلود\" راست کلیک کرده و \"ذخیره لینک به عنوان...\" را انتخاب کنید",
|
|
83
|
+
"Theme": "تم",
|
|
84
|
+
"Dark": "تاریک",
|
|
85
|
+
"Light": "روشن",
|
|
86
|
+
"System": "سیستم",
|
|
87
|
+
"Target Directory" : "پوشه مقصد",
|
|
88
|
+
"uppy": uppyLocaleFa
|
|
89
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import uppyLocaleFr from '@uppy/locales/lib/fr_FR.js';
|
|
2
|
+
|
|
3
|
+
// todo : change the values from english to french
|
|
4
|
+
export default {
|
|
5
|
+
"Language": "Langue" ,
|
|
6
|
+
"Create": "Créer",
|
|
7
|
+
"Close": "Fermer",
|
|
8
|
+
"Cancel": "Annuler",
|
|
9
|
+
"Save":"Enregistrer",
|
|
10
|
+
"Edit": "Modifier",
|
|
11
|
+
"Crop": "Recadrer",
|
|
12
|
+
"New Folder": "Nouveau dossier",
|
|
13
|
+
"New File": "Nouveau fichier",
|
|
14
|
+
"Rename": "Renommer",
|
|
15
|
+
"Delete": "Supprimer",
|
|
16
|
+
"Upload": "Télécharger",
|
|
17
|
+
"Download": "Télécharger",
|
|
18
|
+
"Archive": "Archiver",
|
|
19
|
+
"Unarchive": "Désarchiver",
|
|
20
|
+
"Open": "Ouvrir",
|
|
21
|
+
"Open containing folder": "Ouvrir le dossier contenant",
|
|
22
|
+
"Refresh": "Rafraîchir",
|
|
23
|
+
"Preview": "Aperçu",
|
|
24
|
+
"Toggle Full Screen": "Basculer en plein écran",
|
|
25
|
+
"Change View": "Changer de vue",
|
|
26
|
+
"Storage" : "Stockage",
|
|
27
|
+
"Go up a directory": "Remonter d'un répertoire",
|
|
28
|
+
"Search anything..": "Rechercher...",
|
|
29
|
+
"Name": "Nom",
|
|
30
|
+
"Size": "Taille",
|
|
31
|
+
"Date": "Date",
|
|
32
|
+
"Filepath": "Chemin du fichier",
|
|
33
|
+
"About": "À propos",
|
|
34
|
+
"Folder Name": "Nom du dossier",
|
|
35
|
+
"File Name": "Nom du fichier",
|
|
36
|
+
"Move files": "Déplacer les fichiers",
|
|
37
|
+
"Yes, Move!": "Oui, déplacer!",
|
|
38
|
+
"Delete files": "Supprimer les fichiers",
|
|
39
|
+
"Yes, Delete!": "Oui, supprimer!",
|
|
40
|
+
"Upload Files" : "Télécharger des fichiers",
|
|
41
|
+
"No files selected!":"Aucun fichier sélectionné!",
|
|
42
|
+
"Select Files": "Sélectionner des fichiers",
|
|
43
|
+
"Archive the files": "Archiver les fichiers",
|
|
44
|
+
"Unarchive the files": "Désarchiver les fichiers",
|
|
45
|
+
"The archive will be unarchived at": "L'archive sera désarchivée à",
|
|
46
|
+
"Archive name. (.zip file will be created)": "Nom de l'archive. (un fichier .zip sera créé)",
|
|
47
|
+
"Vuefinder is a file manager component for vue 3.": "Vuefinder est un composant de gestionnaire de fichiers pour vue 3.",
|
|
48
|
+
"Create a new folder": "Créer un nouveau dossier",
|
|
49
|
+
"Create a new file": "Créer un nouveau fichier",
|
|
50
|
+
"Are you sure you want to delete these files?": "Êtes-vous sûr de vouloir supprimer ces fichiers?",
|
|
51
|
+
"This action cannot be undone.": "Cette action ne peut pas être annulée.",
|
|
52
|
+
"Search results for" : "Résultats de recherche pour",
|
|
53
|
+
"%s item(s) selected.": "%s élément(s) sélectionné(s).",
|
|
54
|
+
"%s is renamed." : "%s est renommé.",
|
|
55
|
+
"This is a readonly storage." : "C'est un stockage en lecture seule.",
|
|
56
|
+
"%s is created." : "%s est créé.",
|
|
57
|
+
"Files moved." : "Fichiers déplacés.",
|
|
58
|
+
"Files deleted." : "Fichiers supprimés.",
|
|
59
|
+
"The file unarchived." : "Le fichier désarchivé.",
|
|
60
|
+
"The file(s) archived." : "Le(s) fichier(s) archivé(s).",
|
|
61
|
+
"Updated." : "Mis à jour.",
|
|
62
|
+
"No search result found." : "Aucun résultat de recherche trouvé.",
|
|
63
|
+
"Are you sure you want to move these files?" : "Êtes-vous sûr de vouloir déplacer ces fichiers?",
|
|
64
|
+
"File Size": "Taille du fichier",
|
|
65
|
+
"Last Modified": "Dernière modification",
|
|
66
|
+
"Drag&Drop: on": "Drag&Drop: on",
|
|
67
|
+
"Drag&Drop: off": "Drag&Drop: off",
|
|
68
|
+
"Select Folders": "Sélectionner des dossiers",
|
|
69
|
+
"Clear all": "Tout effacer",
|
|
70
|
+
"Clear only successful": "Effacer uniquement les réussites",
|
|
71
|
+
"Drag and drop the files/folders to here or click here.": "Faites glisser les fichiers/dossiers ici ou cliquez ici.",
|
|
72
|
+
"Release to drop these files.": "Relâchez pour déposer ces fichiers.",
|
|
73
|
+
"Canceled": "Annulé",
|
|
74
|
+
"Done": "Terminé",
|
|
75
|
+
"Network Error, Unable establish connection to the server or interrupted.": "Erreur réseau, impossible d'établir une connexion avec le serveur ou interrompue.",
|
|
76
|
+
"Pending upload": "Téléchargement en attente",
|
|
77
|
+
"Please select file to upload first." : "Veuillez d'abord sélectionner le fichier à télécharger.",
|
|
78
|
+
"About %s": "À propos de %s",
|
|
79
|
+
"Settings": "Paramètres",
|
|
80
|
+
"Use Metric Units": "Utiliser les unités métriques",
|
|
81
|
+
"Saved.": "Enregistré.",
|
|
82
|
+
"Reset Settings": "Réinitialiser les paramètres",
|
|
83
|
+
"Download doesn\'t work? You can try right-click \"Download\" button, select \"Save link as...\".": "Le téléchargement ne fonctionne pas? Vous pouvez essayer de cliquer avec le bouton droit sur le bouton \"Télécharger\", puis sélectionner \"Enregistrer le lien sous...\".",
|
|
84
|
+
"Theme": "Thème",
|
|
85
|
+
"Dark": "Sombre",
|
|
86
|
+
"Light": "Clair",
|
|
87
|
+
"System": "Système",
|
|
88
|
+
"Target Directory" : "Répertoire cible",
|
|
89
|
+
"uppy": uppyLocaleFr
|
|
90
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import uppyLocaleHe from '@uppy/locales/lib/he_IL.js';
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
"Language": "שפה",
|
|
5
|
+
"Create": "יצירה",
|
|
6
|
+
"Close": "סגירה",
|
|
7
|
+
"Cancel": "ביטול",
|
|
8
|
+
"Save": "שמירה",
|
|
9
|
+
"Edit": "עריכה",
|
|
10
|
+
"Crop": "חיתוך",
|
|
11
|
+
"New Folder": "תיקייה חדשה",
|
|
12
|
+
"New File": "קובץ חדש",
|
|
13
|
+
"Rename": "שינוי שם",
|
|
14
|
+
"Delete": "מחיקה",
|
|
15
|
+
"Upload": "העלאה",
|
|
16
|
+
"Download": "הורדה",
|
|
17
|
+
"Archive": "לדחוס",
|
|
18
|
+
"Unarchive": "לחלץ",
|
|
19
|
+
"Open": "פתיחה",
|
|
20
|
+
"Open containing folder": "פתיחת מיקום קובץ",
|
|
21
|
+
"Refresh": "רענון",
|
|
22
|
+
"Preview": "תצוגה מקדימה",
|
|
23
|
+
"Toggle Full Screen": "שינוי מצב מסך מלא",
|
|
24
|
+
"Change View": "שינוי תצוגה",
|
|
25
|
+
"Storage": "אחסון",
|
|
26
|
+
"Go up a directory": "מעבר תיקייה אחת למעלה",
|
|
27
|
+
"Search anything..": "חיפוש...",
|
|
28
|
+
"Name": "שם",
|
|
29
|
+
"Size": "גודל",
|
|
30
|
+
"Date": "תאריך",
|
|
31
|
+
"Filepath": "נתיב קובץ",
|
|
32
|
+
"About": "אודות",
|
|
33
|
+
"Folder Name": "שם התיקייה",
|
|
34
|
+
"File Name": "שם הקובץ",
|
|
35
|
+
"Move files": "העברת קבצים",
|
|
36
|
+
"Yes, Move!": "כן, להעביר!",
|
|
37
|
+
"Delete files": "מחיקת קבצים",
|
|
38
|
+
"Yes, Delete!": "כן, למחוק!",
|
|
39
|
+
"Upload Files": "העלאת קבצים",
|
|
40
|
+
"No files selected!": "לא נבחרו קבצים",
|
|
41
|
+
"Select Files": "בחירת קבצים",
|
|
42
|
+
"Archive the files": "דחיסת קבצים אלו",
|
|
43
|
+
"Unarchive the files": "חילוץ קבצים אלו",
|
|
44
|
+
"The archive will be unarchived at": "הארכיןם יוחלץ ל:",
|
|
45
|
+
"Archive name. (.zip file will be created)": "שם הארכיון. (סיומת .zip תווסף)",
|
|
46
|
+
"Vuefinder is a file manager component for vue 3.": "Vuefinder הינו רכיב מנהל קבצים עבור vue 3",
|
|
47
|
+
"Create a new folder": "יצירת תיקייה חדשה",
|
|
48
|
+
"Create a new file": "יצירת קובץ חדש",
|
|
49
|
+
"Are you sure you want to delete these files?": "האם בטוח למחוק קבצים אלה?",
|
|
50
|
+
"This action cannot be undone.": "לא ניתן לבטל פעולה זו.",
|
|
51
|
+
"Search results for": "תוצאות חיפוש עבור",
|
|
52
|
+
"%s item(s) selected.": "%s פריט(ים) נבחרו.",
|
|
53
|
+
"%s is renamed.": "השם של %s השתנה.",
|
|
54
|
+
"This is a readonly storage.": "זהו אחסון לקריאה בלבד.",
|
|
55
|
+
"%s is created.": "%s נוצר",
|
|
56
|
+
"Files moved.": "הקבצים הועברו.",
|
|
57
|
+
"Files deleted.": "הקבצים נמחקו",
|
|
58
|
+
"The file unarchived.": "הקבצים חולצו.",
|
|
59
|
+
"The file(s) archived.": "הקובצים נדחסו.",
|
|
60
|
+
"Updated.": "התעדכן",
|
|
61
|
+
"No search result found.": "לא נמצאו תוצאות לחיפוש.",
|
|
62
|
+
"Are you sure you want to move these files?": "האם בטוח להעביר קבצים אלו?",
|
|
63
|
+
"File Size": "גודל קובץ",
|
|
64
|
+
"Last Modified": "תאריך שינוי",
|
|
65
|
+
"Drag&Drop: on": "מצב גרירה: פעיל",
|
|
66
|
+
"Drag&Drop: off": "מצב גרירה: כבוי",
|
|
67
|
+
"Select Folders": "Select Folders",
|
|
68
|
+
"Clear all": "נקה הכל",
|
|
69
|
+
"Clear only successful": "נקה רק הצלחות",
|
|
70
|
+
"Drag and drop the files/folders to here or click here.": "גרור ושחרר את הקבצים/תיקיות לכאן או לחץ כאן.",
|
|
71
|
+
"Release to drop these files.": "שחרר כדי לשחרר את הקבצים.",
|
|
72
|
+
"Canceled": "בוטל",
|
|
73
|
+
"Done": "הסתיים",
|
|
74
|
+
"Network Error, Unable establish connection to the server or interrupted.": "שגיאת רשת, לא ניתן להתחבר לשרת או החיבור נקטע.",
|
|
75
|
+
"Pending upload": "העלאה ממתינה",
|
|
76
|
+
"Please select file to upload first." : "בחר קובץ להעלאה תחילה.",
|
|
77
|
+
"About %s": "אודות %s",
|
|
78
|
+
"Settings": "הגדרות",
|
|
79
|
+
"Use Metric Units": "השתמש ביחידות מטריות",
|
|
80
|
+
"Saved.": "נשמר",
|
|
81
|
+
"Reset Settings": "איפוס הגדרות",
|
|
82
|
+
"Download doesn\'t work? You can try right-click \"Download\" button, select \"Save link as...\".": "ההורדה לא עובדה? ניתן לנסות ללחוץ ימינה על כפתור \"הורדה\", ולבחור \"שמור קישור בשם...\".",
|
|
83
|
+
"Theme": "ערכת נושא",
|
|
84
|
+
"Dark": "כהה",
|
|
85
|
+
"Light": "בהיר",
|
|
86
|
+
"System": "מערכת",
|
|
87
|
+
"Target Directory" : "תיקיית יעד",
|
|
88
|
+
"uppy": uppyLocaleHe
|
|
89
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import uppyLocaleHi from '@uppy/locales/lib/hi_IN.js';
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
"Language": "भाषा",
|
|
5
|
+
"Create": "बनाएँ",
|
|
6
|
+
"Close": "बंद करें",
|
|
7
|
+
"Cancel": "रद्द करें",
|
|
8
|
+
"Save": "सहेजें",
|
|
9
|
+
"Edit": "संपादित करें",
|
|
10
|
+
"Crop": "कटवा दें",
|
|
11
|
+
"New Folder": "नया फ़ोल्डर",
|
|
12
|
+
"New File": "नया फ़ाइल",
|
|
13
|
+
"Rename": "नाम बदलें",
|
|
14
|
+
"Delete": "हटाएं",
|
|
15
|
+
"Upload": "अपलोड करें",
|
|
16
|
+
"Download": "डाउनलोड करें",
|
|
17
|
+
"Archive": "आर्काइव",
|
|
18
|
+
"Unarchive": "अनआर्काइव",
|
|
19
|
+
"Open": "खोलें",
|
|
20
|
+
"Open containing folder": "धारक फोल्डर खोलें",
|
|
21
|
+
"Refresh": "ताजगी करें",
|
|
22
|
+
"Preview": "पूर्वावलोकन",
|
|
23
|
+
"Toggle Full Screen": "पूर्ण स्क्रीन टॉगल करें",
|
|
24
|
+
"Change View": "दृश्य बदलें",
|
|
25
|
+
"Storage" : "संग्रहण",
|
|
26
|
+
"Go up a directory": "एक निर्देशिका ऊपर जाएं",
|
|
27
|
+
"Search anything..": "कुछ भी खोजें..",
|
|
28
|
+
"Name": "नाम",
|
|
29
|
+
"Size": "आकार",
|
|
30
|
+
"Date": "तारीख",
|
|
31
|
+
"Filepath": "फ़ाइल पथ",
|
|
32
|
+
"About": "के बारे में",
|
|
33
|
+
"Folder Name": "फ़ोल्डर नाम",
|
|
34
|
+
"File Name": "फ़ाइल नाम",
|
|
35
|
+
"Move files": "फ़ाइलें ले जाएं",
|
|
36
|
+
"Yes, Move!": "हां, ले जाएं!",
|
|
37
|
+
"Delete files": "फ़ाइलें हटाएं",
|
|
38
|
+
"Yes, Delete!": "हां, हटाएं!",
|
|
39
|
+
"Upload Files" : "फ़ाइलें अपलोड करें",
|
|
40
|
+
"No files selected!": "कोई फ़ाइलें चयनित नहीं हैं!",
|
|
41
|
+
"Select Files": "फ़ाइलें चयनित करें",
|
|
42
|
+
"Archive the files": "फ़ाइलों को संग्रहित करें",
|
|
43
|
+
"Unarchive the files": "फ़ाइलों को संग्रहण से निकालें",
|
|
44
|
+
"The archive will be unarchived at": "संग्रहण इस तिथि पर से निकाला जाएगा",
|
|
45
|
+
"Archive name. (.zip file will be created)": "संग्रहण का नाम (.zip फ़ाइल बनाई जाएगी)",
|
|
46
|
+
"Vuefinder is a file manager component for vue 3.": "Vuefinder व्यू 3 के लिए एक फ़ाइल प्रबंधक घटक है।",
|
|
47
|
+
"Create a new folder": "नया फ़ोल्डर बनाएं",
|
|
48
|
+
"Create a new file": "नई फ़ाइल बनाएं",
|
|
49
|
+
"Are you sure you want to delete these files?": "क्या आप वाकई इन फ़ाइलों को हटाना चाहते हैं?",
|
|
50
|
+
"This action cannot be undone.": "इस क्रिया को पूर्वस्थित नहीं किया जा सकता है।",
|
|
51
|
+
"Search results for": "के लिए खोज परिणाम",
|
|
52
|
+
"%s item(s) selected.": "%s आइटम(आइटम) चयनित।",
|
|
53
|
+
"%s is renamed.": "%s का नाम बदला गया है।",
|
|
54
|
+
"This is a readonly storage.": "यह एक केवल पठनीय संग्रह है।",
|
|
55
|
+
"%s is created.": "%s बनाया गया है।",
|
|
56
|
+
"Files moved.": "फ़ाइलें मूव की गईं।",
|
|
57
|
+
"Files deleted.": "फ़ाइलें हटा दी गईं।",
|
|
58
|
+
"The file unarchived.": "फ़ाइल अनआर्काइव की गई है।",
|
|
59
|
+
"The file(s) archived.": "फ़ाइल(फ़ाइलें) आर्काइव की गई हैं।",
|
|
60
|
+
"Updated.": "अद्यतित।",
|
|
61
|
+
"No search result found.": "कोई खोज परिणाम नहीं मिले।",
|
|
62
|
+
"Are you sure you want to move these files?" : "क्या आप वाकई इन फ़ाइलों को स्थानांतरित करना चाहते हैं?",
|
|
63
|
+
"File Size": "फ़ाइल का आकार",
|
|
64
|
+
"Last Modified": "अंतिम संशोधित",
|
|
65
|
+
"Drag&Drop: on": "ड्रैग और ड्रॉप: चालू",
|
|
66
|
+
"Drag&Drop: off": "ड्रैग और ड्रॉप: बंद",
|
|
67
|
+
"Select Folders": "फ़ोल्डर चुनें",
|
|
68
|
+
"Clear all": "सब कुछ साफ़ करें",
|
|
69
|
+
"Clear only successful": "केवल सफल साफ़ करें",
|
|
70
|
+
"Drag and drop the files/folders to here or click here.": "फ़ाइलें/फ़ोल्डर्स यहाँ खींचें या यहाँ क्लिक करें।",
|
|
71
|
+
"Release to drop these files.": "इन फ़ाइलों को छोड़ने के लिए रिलीज़ करें।",
|
|
72
|
+
"Canceled": "रद्द कर दिया गया",
|
|
73
|
+
"Done": "हो गया",
|
|
74
|
+
"Network Error, Unable establish connection to the server or interrupted.": "नेटवर्क त्रुटि, सर्वर से कनेक्शन स्थापित नहीं कर सकता या रुका हुआ है।",
|
|
75
|
+
"Pending upload": "अपलोड प्रलंबित",
|
|
76
|
+
"Please select file to upload first." : "कृपया पहले अपलोड करने के लिए फ़ाइल का चयन करें।",
|
|
77
|
+
"About %s": "के बारे में %s",
|
|
78
|
+
"Settings": "सेटिंग्स",
|
|
79
|
+
"Use Metric Units": "मीट्रिक इकाइयों का उपयोग करें",
|
|
80
|
+
"Saved.": "सहेजा गया।",
|
|
81
|
+
"Reset Settings": "सेटिंग्स रीसेट करें",
|
|
82
|
+
"Download doesn\'t work? You can try right-click \"Download\" button, select \"Save link as...\".": "डाउनलोड काम नहीं करता? आप सीधे दायाँ क्लिक करके \"डाउनलोड\" बटन पर क्लिक करके \"लिंक को सहेजें...\" चुन सकते हैं।",
|
|
83
|
+
"Theme": "थीम",
|
|
84
|
+
"Dark": "डार्क",
|
|
85
|
+
"Light": "लाइट",
|
|
86
|
+
"System": "सिस्टम",
|
|
87
|
+
"Target Directory" : "लक्षित निर्देशिका",
|
|
88
|
+
"uppy": uppyLocaleHi
|
|
89
|
+
}
|