vue-finder-senior 2.7.2
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/LICENSE +21 -0
- package/README.md +247 -0
- package/dist/features.js +17 -0
- package/dist/locales/ar.js +105 -0
- package/dist/locales/de.js +105 -0
- package/dist/locales/en.js +105 -0
- package/dist/locales/fa.js +105 -0
- package/dist/locales/fr.js +106 -0
- package/dist/locales/he.js +105 -0
- package/dist/locales/hi.js +105 -0
- package/dist/locales/nl.js +105 -0
- package/dist/locales/pl.js +105 -0
- package/dist/locales/ru.js +105 -0
- package/dist/locales/sv.js +105 -0
- package/dist/locales/tr.js +105 -0
- package/dist/locales/zhCN.js +105 -0
- package/dist/locales/zhTW.js +105 -0
- package/dist/style.css +9 -0
- package/dist/vuefinder.cjs +9 -0
- package/dist/vuefinder.js +5716 -0
- package/package.json +62 -0
package/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2018 Yusuf Özdemir
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
@@ -0,0 +1,247 @@
|
|
1
|
+
## vue-finder-senior File Manager
|
2
|
+
## vue-finder-senior 文件管理器
|
3
|
+
|
4
|
+
[](https://github.com/n1crack/vuefinder/blob/master/LICENSE)
|
5
|
+
[](https://www.npmjs.com/package/vuefinder)
|
6
|
+
|
7
|
+
|
8
|
+
### About
|
9
|
+
Vuefinder is a file manager component for Vue.js version 3.
|
10
|
+
|
11
|
+
vue-finder-senior 是Vue.js版本3的文件管理器组件,是在[Vuefinder](https://github.com/n1crack/vuefinder) 的基础上进行修改,新增更多按键自定义等功能。
|
12
|
+
|
13
|
+
|
14
|
+
### Demo
|
15
|
+
[Live Demo](https://vuefinder.ozdemir.be/) [ [Source](https://github.com/n1crack/vuefinder) ]
|
16
|
+
|
17
|
+
### Installation
|
18
|
+
|
19
|
+
|
20
|
+
```bash
|
21
|
+
npm i vue-finder-senior
|
22
|
+
```
|
23
|
+
|
24
|
+
JS entry point (it can be index.js or main.js)
|
25
|
+
```js
|
26
|
+
import { createApp } from 'vue'
|
27
|
+
import App from './App.vue'
|
28
|
+
|
29
|
+
import 'vuefinder/dist/style.css'
|
30
|
+
import VueFinder from 'vuefinder/dist/vuefinder'
|
31
|
+
|
32
|
+
const app = createApp(App)
|
33
|
+
|
34
|
+
//By default, Vuefinder will use English as the main language.
|
35
|
+
// However, if you want to support multiple languages and customize the localization,
|
36
|
+
// you can import the language files manually during component registration.
|
37
|
+
app.use(VueFinder)
|
38
|
+
|
39
|
+
app.mount('#app')
|
40
|
+
|
41
|
+
```
|
42
|
+
### Localization
|
43
|
+
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.
|
44
|
+
|
45
|
+
```js
|
46
|
+
import en from 'vuefinder/dist/locales/en.js'
|
47
|
+
import tr from 'vuefinder/dist/locales/tr.js'
|
48
|
+
import ru from 'vuefinder/dist/locales/ru.js'
|
49
|
+
|
50
|
+
app.use(VueFinder, {
|
51
|
+
i18n: { en, tr, ru }
|
52
|
+
});
|
53
|
+
```
|
54
|
+
|
55
|
+
### Async Localization
|
56
|
+
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.
|
57
|
+
|
58
|
+
```js
|
59
|
+
app.use(VueFinder, {
|
60
|
+
i18n: {
|
61
|
+
en: async () => await import("vuefinder/dist/locales/en.js"),
|
62
|
+
de: async () => await import("vuefinder/dist/locales/de.js"),
|
63
|
+
// Add more locales as needed
|
64
|
+
}
|
65
|
+
});
|
66
|
+
```
|
67
|
+
|
68
|
+
#### Vue Template
|
69
|
+
|
70
|
+
```vue
|
71
|
+
<div>
|
72
|
+
<vue-finder id='my_vuefinder' :request="request"></vue-finder>
|
73
|
+
</div>
|
74
|
+
...
|
75
|
+
|
76
|
+
<script setup>
|
77
|
+
const request = "http://vuefinder-php.test"
|
78
|
+
|
79
|
+
// Or ...
|
80
|
+
const request = {
|
81
|
+
// ----- CHANGE ME! -----
|
82
|
+
// [REQUIRED] Url for development server endpoint
|
83
|
+
baseUrl: "http://vuefinder-php.test",
|
84
|
+
// ----- CHANGE ME! -----
|
85
|
+
|
86
|
+
// Additional headers & params & body
|
87
|
+
headers: { "X-ADDITIONAL-HEADER": 'yes' },
|
88
|
+
params: { additionalParam1: 'yes' },
|
89
|
+
body: { additionalBody1: ['yes'] },
|
90
|
+
|
91
|
+
// And/or transform request callback
|
92
|
+
transformRequest: req => {
|
93
|
+
if (req.method === 'get') {
|
94
|
+
req.params.vf = "1"
|
95
|
+
}
|
96
|
+
return req;
|
97
|
+
},
|
98
|
+
|
99
|
+
// XSRF Token header name
|
100
|
+
xsrfHeaderName: "X-CSRF-TOKEN",
|
101
|
+
}
|
102
|
+
</script>
|
103
|
+
```
|
104
|
+
|
105
|
+
### Styling
|
106
|
+
Vuefinder uses the BEM (Block Element Modifier) convention for its CSS classes, with default styles applied using TailwindCSS. This structured approach helps maintain a clear and consistent naming convention for CSS classes, making it easier to understand and manage styles across the project.
|
107
|
+
|
108
|
+
To customize or update the styles, simply find the appropriate BEM class in the component’s style section and override the styles as needed.
|
109
|
+
|
110
|
+
### Props
|
111
|
+
|
112
|
+
| Prop | Value | Default | Description |
|
113
|
+
|-------------------|:-------------:|------------|:------------------------------------------------------------|
|
114
|
+
| id | string | _null_ | required |
|
115
|
+
| request | string/object | _object_ | required - backend url or request object, see above |
|
116
|
+
| locale | string | en | optional - default language code |
|
117
|
+
| theme | string | system | optional - default theme, options: "system","light","dark" |
|
118
|
+
| max-file-size | string | 10mb | optional - client side max file upload |
|
119
|
+
| max-height | string | 600px | optional - max height of the component |
|
120
|
+
| features | array | _null_ | optional - array of the enabled features |
|
121
|
+
| path | string | _null_ | optional - initial directory, example: 'media://public' |
|
122
|
+
| persist | boolean | false | optional - keep current directory on page refresh |
|
123
|
+
| full-screen | boolean | false | optional - start in full screen mode |
|
124
|
+
| select-button | object | _object_ | optional - adds select button in status bar, see example |
|
125
|
+
| loading-indicator | string | circular | optional - style of loading indicator: "circular", "linear" |
|
126
|
+
| onError | function | _function_ | optional - a callback to implement custom error handling |
|
127
|
+
|
128
|
+
|
129
|
+
### Events
|
130
|
+
| Event | Description |
|
131
|
+
|-----------------------------------------|:---------------------------------------------------------------------------------------------------------------------------|
|
132
|
+
| `'select': (items: any[]) => void` | The callback function is invoked when the user selects a file or folder, and the selected elements are passed as arguments |
|
133
|
+
| `'update:path': (path: string) => void` | The callback function is invoked when the user opens another folder. |
|
134
|
+
|
135
|
+
### Selection
|
136
|
+
There are 2 ways to select files and folders.
|
137
|
+
|
138
|
+
First one, you can use the select button in the status bar. To enable the select button, you can use the select-button prop.
|
139
|
+
when you set the select-button active to true, the select button will be visible in the status bar.
|
140
|
+
```vue
|
141
|
+
<vue-finder
|
142
|
+
id='my_vuefinder'
|
143
|
+
:request="request"
|
144
|
+
:select-button="handleSelectButton"
|
145
|
+
/>
|
146
|
+
|
147
|
+
<script setup>
|
148
|
+
// other codes
|
149
|
+
|
150
|
+
const handleSelectButton = {
|
151
|
+
// show select button
|
152
|
+
active: true,
|
153
|
+
// allow multiple selection
|
154
|
+
multiple: false,
|
155
|
+
// handle click event
|
156
|
+
click: (items, event) => {
|
157
|
+
if (!items.length) {
|
158
|
+
alert('No item selected');
|
159
|
+
return;
|
160
|
+
}
|
161
|
+
alert('Selected: ' + items[0].path);
|
162
|
+
console.log(items, event);
|
163
|
+
}
|
164
|
+
}
|
165
|
+
</script>
|
166
|
+
```
|
167
|
+
|
168
|
+
Alternatively, you can use the select event to get the selected items.
|
169
|
+
```vue
|
170
|
+
<vue-finder
|
171
|
+
id='my_vuefinder'
|
172
|
+
:request="request"
|
173
|
+
@select="handleSelect"
|
174
|
+
/>
|
175
|
+
|
176
|
+
<script setup>
|
177
|
+
// other codes
|
178
|
+
|
179
|
+
// we can define a ref object to store the selected items
|
180
|
+
const selectedFiles = ref([]);
|
181
|
+
|
182
|
+
// handle select event, and store the selected items
|
183
|
+
const handleSelect = (selection) => {
|
184
|
+
selectedFiles.value = selection
|
185
|
+
}
|
186
|
+
// then with a button click, you can get the selected items easily
|
187
|
+
// you can add this method to the click event of a button.
|
188
|
+
const handleButtonClick = () => {
|
189
|
+
console.log(selectedFiles.value);
|
190
|
+
}
|
191
|
+
</script>
|
192
|
+
```
|
193
|
+
|
194
|
+
### Features
|
195
|
+
- Multi adapter/storage (see https://github.com/thephpleague/flysystem)
|
196
|
+
- File and folder operations
|
197
|
+
- Create a new file
|
198
|
+
- Create a new folder
|
199
|
+
- Rename
|
200
|
+
- Delete
|
201
|
+
- Archive (zip)
|
202
|
+
- Unarchive (unzip)
|
203
|
+
- Text editing
|
204
|
+
- Image Crop Tool
|
205
|
+
- Upload / Download files
|
206
|
+
- Search (deep based on current folder)
|
207
|
+
- Nice UI
|
208
|
+
- Context Menu
|
209
|
+
- Breadcrumb links
|
210
|
+
- Toolbar
|
211
|
+
- File explorer
|
212
|
+
- Status bar
|
213
|
+
- Image thumbnails
|
214
|
+
- Toast notifications
|
215
|
+
- Appearance
|
216
|
+
- Multi language
|
217
|
+
- Full Screen
|
218
|
+
- View Modes: list, grid
|
219
|
+
- Dark Mode
|
220
|
+
- Accessibility
|
221
|
+
- Drag & drop support
|
222
|
+
- Move items (to a folder or up one folder) with drag and drop
|
223
|
+
- Mouse selection
|
224
|
+
|
225
|
+
### Backend
|
226
|
+
- PHP: [VueFinder Php Library](https://github.com/n1crack/vuefinder-php)
|
227
|
+
- Python: [Python WSGI](https://github.com/abichinger/vuefinder-wsgi)
|
228
|
+
- Go: [vuefinder-go](https://github.com/Duke1616/vuefinder-go)
|
229
|
+
- Rust: [vuefinder-rust](https://github.com/boenfu/vuefinder-rust)
|
230
|
+
|
231
|
+
You can use any backend language. Just be sure, the response should be compatible.
|
232
|
+
If you develop a backend library for another language, please let me know to add it here.
|
233
|
+
|
234
|
+
### Collaboration
|
235
|
+
If you want to contribute to the project, please feel free to fork the repository and submit your changes as a pull request. Ensure that the changes you submit are applicable for general use rather than specific to your project.
|
236
|
+
|
237
|
+
### Dependencies
|
238
|
+
- [Vue3](https://vuejs.org/)
|
239
|
+
- [Cropperjs](https://github.com/fengyuanchen/cropperjs) : JavaScript image cropper
|
240
|
+
- [DragSelect](https://github.com/ThibaultJanBeyer/DragSelect/) : Selection utility
|
241
|
+
- [Uppy](https://github.com/transloadit/uppy) : Upload library
|
242
|
+
- [vanilla-lazyload](https://github.com/verlok/vanilla-lazyload) : lightweight and flexible lazy loading for thumbnails
|
243
|
+
- [mitt](https://github.com/developit/mitt) : Tiny 200 byte functional event emitter / pubsub
|
244
|
+
- [OverlayScrollbars](https://kingsora.github.io/OverlayScrollbars) : scrollbar plugin
|
245
|
+
|
246
|
+
### License
|
247
|
+
Copyright (c) 2018 Yusuf ÖZDEMİR, released under [the MIT license](LICENSE)
|
package/dist/features.js
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
export const FEATURES = {
|
2
|
+
EDIT: 'edit',
|
3
|
+
NEW_FILE: 'newfile',
|
4
|
+
NEW_FOLDER: 'newfolder',
|
5
|
+
PREVIEW: 'preview',
|
6
|
+
ARCHIVE: 'archive',
|
7
|
+
UNARCHIVE: 'unarchive',
|
8
|
+
SEARCH: 'search',
|
9
|
+
RENAME: 'rename',
|
10
|
+
UPLOAD: 'upload',
|
11
|
+
DELETE: 'delete',
|
12
|
+
FULL_SCREEN: 'fullscreen',
|
13
|
+
DOWNLOAD: 'download',
|
14
|
+
LANGUAGE: 'language',
|
15
|
+
}
|
16
|
+
|
17
|
+
export const FEATURE_ALL_NAMES = Object.values(FEATURES)
|
@@ -0,0 +1,105 @@
|
|
1
|
+
import uppyLocaleAr from '@uppy/locales/lib/ar_SA.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
|
+
"Folder Name": "اسم المجلد",
|
33
|
+
"File Name": "اسم الملف",
|
34
|
+
"Move files": "نقل الملفات",
|
35
|
+
"Yes, Move!": "نعم, انقل!",
|
36
|
+
"Delete files": "حذف الملفات",
|
37
|
+
"Yes, Delete!": "نعم, احذف!",
|
38
|
+
"Upload Files": "ارفع الملفات",
|
39
|
+
"No files selected!": "لم يتم تحديد أي ملفات",
|
40
|
+
"Select Files": "تحديد ملفات",
|
41
|
+
"Archive the files": "أرشفة الملفات",
|
42
|
+
"Unarchive the files": "إلغاء أرشفة الملفات",
|
43
|
+
"The archive will be unarchived at": "سيتم إلغاء أرشفة الأرشيف في",
|
44
|
+
"Archive name. (.zip file will be created)": "اسم الأرشيف. (سيتم إنشاء ملف zip)",
|
45
|
+
"Vuefinder is a file manager component for vue 3.": "Vuefinder هو أحد مكونات مدير الملفات لـ Vue 3.",
|
46
|
+
"Create a new folder": "إنشاء مجلد جديد",
|
47
|
+
"Create a new file": "إنشاء ملف جديد",
|
48
|
+
"Are you sure you want to delete these files?": "هل أنت متأكد من أنك تريد حذف هذه الملفات؟",
|
49
|
+
"This action cannot be undone.": "لا يمكن التراجع عن هذا الإجراء.",
|
50
|
+
"Search results for": "نتائج البحث عن",
|
51
|
+
"%s item(s) selected.": "تم تحديد %s عنصر.",
|
52
|
+
"%s is renamed.": "%s تمت إعادة تسمية.",
|
53
|
+
"This is a readonly storage.": "هذه مساحة تخزين للقراءة فقط.",
|
54
|
+
"%s is created.": "%s تم إنشاء.",
|
55
|
+
"Files moved.": "تم نقل الملفات.",
|
56
|
+
"Files deleted.": "تم حذف الملفات.",
|
57
|
+
"The file unarchived.": "تم إلغاء أرشفة الملف.",
|
58
|
+
"The file(s) archived.": "تم إلغاء أرشفة الملف (الملفات).",
|
59
|
+
"Updated.": "تم التحديث.",
|
60
|
+
"No search result found.": "لا يوجد نتائج بحث.",
|
61
|
+
"Are you sure you want to move these files?": "هل أنت متأكد من أنك تريد نقل هذه الملفات؟",
|
62
|
+
"File Size": "حجم الملف",
|
63
|
+
"Last Modified": "اّخر تعديل",
|
64
|
+
"Select Folders": "حدد المجلدات",
|
65
|
+
"Clear all": "مسح الجميع",
|
66
|
+
"Clear only successful": "مسح الناجح فقط",
|
67
|
+
"Drag and drop the files/folders to here or click here.": "اسحب وأفلت الملفات/المجلدات إلى هنا أو قم بالنقر هنا.",
|
68
|
+
"Release to drop these files.": "حرر لإسقاط هذه الملفات.",
|
69
|
+
"Canceled": "مُلغى",
|
70
|
+
"Done": "تم",
|
71
|
+
"Network Error, Unable establish connection to the server or interrupted.": "خطأ في الشبكة، تعذر إنشاء اتصال بالخادم أو انقطاعه.",
|
72
|
+
"Pending upload": "في انتظار التحميل",
|
73
|
+
"Please select file to upload first.": "الرجاء تحديد ملف أولاً لرفعه",
|
74
|
+
"About": "حول",
|
75
|
+
"Settings": "الإعدادات",
|
76
|
+
"Shortcuts": "الإختصارات",
|
77
|
+
"Reset": "إعادة ضبط",
|
78
|
+
'Escape': 'إلغاء',
|
79
|
+
'Search': 'بحث',
|
80
|
+
'Toggle Sidebar': 'إظهار/إخفاء الشّريط الجانبي',
|
81
|
+
'Open Settings': 'فتح الإعدادات',
|
82
|
+
"Reset all settings to default": "إعادة ضبط جميع الإعدادات إلى الوضع الافتراضي",
|
83
|
+
"Use Metric Units": "استخدم وحدات القياس المتريّة",
|
84
|
+
"Saved.": "تم الحفظ",
|
85
|
+
"Reset Settings": "إعادة ضبط الإعدادات",
|
86
|
+
"Download doesn\'t work? You can try right-click \"Download\" button, select \"Save link as...\".": "هل التنزيل لا يعمل؟ يمكنك محاولة النقر بزر الفأرة الأيمن على زر \"تنزيل\"، ثم تحديد \"حفظ الرابط باسم...",
|
87
|
+
"Theme": "السمة",
|
88
|
+
"Dark": "مظلم",
|
89
|
+
"Light": "فاتح",
|
90
|
+
"System": "النّظام",
|
91
|
+
"Target Directory": "المجلد الهدف",
|
92
|
+
"Select": "اختيار",
|
93
|
+
"Compact list view": "القائمة المضغوطة",
|
94
|
+
"Show thumbnails": "إظهار صّور المعاينة المصغّرة",
|
95
|
+
"Persist path on reload": "البقاء على المسار عند إعادة التحميل",
|
96
|
+
"Select All": "تحديد الجميع",
|
97
|
+
"Pinned Folders": "المجلدات المثبتة",
|
98
|
+
"No folders pinned": "لا يوجد ملفات مثبّتة",
|
99
|
+
"Pin Folder": "تثبيت المجلّد",
|
100
|
+
"Unpin Folder": "إلغاء تثبيت المجلّد",
|
101
|
+
"Project home": "صفحة المشروع",
|
102
|
+
"Follow on GitHub": "تابعنا على GitHub",
|
103
|
+
"Customize your experience with the following settings": "قم بتخصيص تجربتك بالإعدادات التّالية",
|
104
|
+
"uppy": uppyLocaleAr
|
105
|
+
}
|
@@ -0,0 +1,105 @@
|
|
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
|
+
"Folder Name": "Ordnername",
|
33
|
+
"File Name": "Dateiname",
|
34
|
+
"Move files": "Dateien verschieben",
|
35
|
+
"Yes, Move!": "Ja, Verschieben!",
|
36
|
+
"Delete files": "Dateien löschen",
|
37
|
+
"Yes, Delete!": "Ja, Löschen!",
|
38
|
+
"Upload Files": "Dateien hochladen",
|
39
|
+
"No files selected!": "Keine Dateien ausgewählt!",
|
40
|
+
"Select Files": "Dateien auswählen",
|
41
|
+
"Archive the files": "Dateien archivieren",
|
42
|
+
"Unarchive the files": "Dateien dearchivieren",
|
43
|
+
"The archive will be unarchived at": "Das Archiv wird dearchiviert bei",
|
44
|
+
"Archive name. (.zip file will be created)": "Archivname. (.zip Datei wird erstellt)",
|
45
|
+
"Vuefinder is a file manager component for vue 3.": "Vuefinder ist eine Dateimanager-Komponente für Vue 3.",
|
46
|
+
"Create a new folder": "Einen neuen Ordner erstellen",
|
47
|
+
"Create a new file": "Eine neue Datei erstellen",
|
48
|
+
"Are you sure you want to delete these files?": "Sind Sie sicher, dass Sie diese Dateien löschen möchten?",
|
49
|
+
"This action cannot be undone.": "Diese Aktion kann nicht rückgängig gemacht werden.",
|
50
|
+
"Search results for": "Suchergebnisse für",
|
51
|
+
"%s item(s) selected.": "%s Element(e) ausgewählt.",
|
52
|
+
"%s is renamed.": "%s wurde umbenannt.",
|
53
|
+
"This is a readonly storage.": "Dies ist ein schreibgeschützter Speicher.",
|
54
|
+
"%s is created.": "%s wurde erstellt.",
|
55
|
+
"Files moved.": "Dateien verschoben.",
|
56
|
+
"Files deleted.": "Dateien gelöscht.",
|
57
|
+
"The file unarchived.": "Die Datei wurde dearchiviert.",
|
58
|
+
"The file(s) archived.": "Die Datei(en) wurden archiviert.",
|
59
|
+
"Updated.": "Aktualisiert.",
|
60
|
+
"No search result found.": "Keine Suchergebnisse gefunden.",
|
61
|
+
"Are you sure you want to move these files?": "Sind Sie sicher, dass Sie diese Dateien verschieben möchten?",
|
62
|
+
"File Size": "Dateigröße",
|
63
|
+
"Last Modified": "Zuletzt geändert",
|
64
|
+
"Select Folders": "Ordner auswählen",
|
65
|
+
"Clear all": "Alles löschen",
|
66
|
+
"Clear only successful": "Nur erfolgreiche löschen",
|
67
|
+
"Drag and drop the files/folders to here or click here.": "Ziehen Sie die Dateien/Ordner hierher oder klicken Sie hier.",
|
68
|
+
"Release to drop these files.": "Lassen Sie los, um diese Dateien abzulegen.",
|
69
|
+
"Canceled": "Abgebrochen",
|
70
|
+
"Done": "Fertig",
|
71
|
+
"Network Error, Unable establish connection to the server or interrupted.": "Netzwerkfehler, Verbindung zum Server kann nicht hergestellt oder unterbrochen werden.",
|
72
|
+
"Pending upload": "Ausstehender",
|
73
|
+
"Please select file to upload first.": "Bitte wählen Sie zuerst eine Datei zum Hochladen aus.",
|
74
|
+
"About": "Über",
|
75
|
+
"Settings": "Einstellungen",
|
76
|
+
"Shortcuts": "Verknüpfungen",
|
77
|
+
"Reset": "Zurücksetzen",
|
78
|
+
'Escape': 'Escape',
|
79
|
+
'Search': 'Suche',
|
80
|
+
'Toggle Sidebar': 'Seitenleiste umschalten',
|
81
|
+
'Open Settings': 'Einstellungen öffnen',
|
82
|
+
"Reset all settings to default": "Alle Einstellungen auf Standard zurücksetzen",
|
83
|
+
"Use Metric Units": "Use Metric Units",
|
84
|
+
"Saved.": "Gespeichert.",
|
85
|
+
"Reset Settings": "Einstellungen zurücksetzen",
|
86
|
+
"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.",
|
87
|
+
"Theme": "Thema",
|
88
|
+
"Dark": "Dunkel",
|
89
|
+
"Light": "Licht",
|
90
|
+
"System": "System",
|
91
|
+
"Target Directory": "Zielverzeichnis",
|
92
|
+
"Select": "Auswählen",
|
93
|
+
"Compact list view": "Kompakte Listenansicht",
|
94
|
+
"Show thumbnails": "Miniaturansichten anzeigen",
|
95
|
+
"Persist path on reload": "Pfad beim Neuladen beibehalten",
|
96
|
+
"Select All": "Alle auswählen",
|
97
|
+
"Pinned Folders": "Angeheftete Ordner",
|
98
|
+
"No folders pinned": "Keine Ordner angeheftet",
|
99
|
+
"Pin Folder": "Ordner anheften",
|
100
|
+
"Unpin Folder": "Ordner lösen",
|
101
|
+
"Project home": "Projekt-Startseite",
|
102
|
+
"Follow on GitHub": "Folgen Sie auf GitHub",
|
103
|
+
"Customize your experience with the following settings": "Passen Sie Ihr Erlebnis mit den folgenden Einstellungen an",
|
104
|
+
"uppy": uppyLocaleDe,
|
105
|
+
}
|
@@ -0,0 +1,105 @@
|
|
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
|
+
"Folder Name": "Folder Name",
|
33
|
+
"File Name": "File Name",
|
34
|
+
"Move files": "Move files",
|
35
|
+
"Yes, Move!": "Yes, Move!",
|
36
|
+
"Delete files": "Delete files",
|
37
|
+
"Yes, Delete!": "Yes, Delete!",
|
38
|
+
"Upload Files": "Upload Files",
|
39
|
+
"No files selected!": "No files selected!",
|
40
|
+
"Select Files": "Select Files",
|
41
|
+
"Archive the files": "Archive the files",
|
42
|
+
"Unarchive the files": "Unarchive the files",
|
43
|
+
"The archive will be unarchived at": "The archive will be unarchived at",
|
44
|
+
"Archive name. (.zip file will be created)": "Archive name. (.zip file will be created)",
|
45
|
+
"Vuefinder is a file manager component for vue 3.": "Vuefinder is a file manager component for Vue 3.",
|
46
|
+
"Create a new folder": "Create a new folder",
|
47
|
+
"Create a new file": "Create a new file",
|
48
|
+
"Are you sure you want to delete these files?": "Are you sure you want to delete these files?",
|
49
|
+
"This action cannot be undone.": "This action cannot be undone.",
|
50
|
+
"Search results for": "Search results for",
|
51
|
+
"%s item(s) selected.": "%s item(s) selected.",
|
52
|
+
"%s is renamed.": "%s is renamed.",
|
53
|
+
"This is a readonly storage.": "This is a readonly storage.",
|
54
|
+
"%s is created.": "%s is created.",
|
55
|
+
"Files moved.": "Files moved.",
|
56
|
+
"Files deleted.": "Files deleted.",
|
57
|
+
"The file unarchived.": "The file unarchived.",
|
58
|
+
"The file(s) archived.": "The file(s) archived.",
|
59
|
+
"Updated.": "Updated.",
|
60
|
+
"No search result found.": "No search result found.",
|
61
|
+
"Are you sure you want to move these files?": "Are you sure you want to move these files?",
|
62
|
+
"File Size": "File Size",
|
63
|
+
"Last Modified": "Last Modified",
|
64
|
+
"Select Folders": "Select Folders",
|
65
|
+
"Clear all": "Clear all",
|
66
|
+
"Clear only successful": "Clear only successful",
|
67
|
+
"Drag and drop the files/folders to here or click here.": "Drag and drop the files/folders to here or click here.",
|
68
|
+
"Release to drop these files.": "Release to drop these files.",
|
69
|
+
"Canceled": "Canceled",
|
70
|
+
"Done": "Done",
|
71
|
+
"Network Error, Unable establish connection to the server or interrupted.": "Network Error, Unable establish connection to the server or interrupted.",
|
72
|
+
"Pending upload": "Pending",
|
73
|
+
"Please select file to upload first.": "Please select file to upload first.",
|
74
|
+
"About": "About",
|
75
|
+
"Settings": "Settings",
|
76
|
+
"Shortcuts": "Shortcuts",
|
77
|
+
"Reset": "Reset",
|
78
|
+
'Escape': 'Escape',
|
79
|
+
'Search': 'Search',
|
80
|
+
'Toggle Sidebar': 'Toggle Sidebar',
|
81
|
+
'Open Settings': 'Open Settings',
|
82
|
+
"Reset all settings to default": "Reset all settings to default",
|
83
|
+
"Use Metric Units": "Use Metric Units",
|
84
|
+
"Saved.": "Saved.",
|
85
|
+
"Reset Settings": "Reset Settings",
|
86
|
+
"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...\".",
|
87
|
+
"Theme": "Theme",
|
88
|
+
"Dark": "Dark",
|
89
|
+
"Light": "Light",
|
90
|
+
"System": "System",
|
91
|
+
"Target Directory": "Target Directory",
|
92
|
+
"Select": "Select",
|
93
|
+
"Compact list view": "Compact list view",
|
94
|
+
"Show thumbnails": "Show thumbnails",
|
95
|
+
"Persist path on reload": "Persist path on reload",
|
96
|
+
"Select All": "Select All",
|
97
|
+
"Pinned Folders": "Pinned Folders",
|
98
|
+
"No folders pinned": "No folders pinned",
|
99
|
+
"Pin Folder": "Pin Folder",
|
100
|
+
"Unpin Folder": "Unpin Folder",
|
101
|
+
"Project home": "Project home",
|
102
|
+
"Follow on GitHub": "Follow on GitHub",
|
103
|
+
"Customize your experience with the following settings": "Customize your experience with the following settings",
|
104
|
+
"uppy": uppyLocaleEn
|
105
|
+
}
|