vuefinder 4.0.5 → 4.0.7

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 CHANGED
@@ -15,7 +15,7 @@ If you like it, please follow and ⭐ star on GitHub.
15
15
 
16
16
  ### Demo
17
17
 
18
- [Live Demo](https://vuefinder.ozdemir.be/) [ [Source](https://github.com/n1crack/vuefinder.ozdemir.be) ]
18
+ [Live Demo](https://vuefinder.ozdemir.be/)
19
19
 
20
20
  ### Installation
21
21
 
@@ -333,7 +333,7 @@ const handleFolderDoubleClick = (folder) => {
333
333
  - Multi language (17 languages supported)
334
334
  - Full Screen mode
335
335
  - View Modes: list, grid
336
- - 12 Beautiful Themes: light, dark, midnight, latte, rose, mythril, lime, sky, ocean, palenight, arctic, code
336
+ - 12 Beautiful Themes: silver, valorite, midnight, latte, rose, mythril, lime, sky, ocean, palenight, arctic, code
337
337
  - Accessibility
338
338
  - Drag & drop support
339
339
  - Move items (to a folder or up one folder) with drag and drop
@@ -0,0 +1,199 @@
1
+ import type { DefineComponent } from 'vue';
2
+
3
+ // Component exports
4
+ export const VueFinder: DefineComponent;
5
+ export const VueFinderProvider: DefineComponent;
6
+
7
+ // Plugin export
8
+ export const VueFinderPlugin: {
9
+ install(app: any, options?: { i18n?: Record<string, unknown>; locale?: string }): void;
10
+ };
11
+
12
+ // Default export
13
+ export default VueFinderPlugin;
14
+
15
+ // Driver classes
16
+ export class RemoteDriver {
17
+ constructor(config?: import('./adapters/types').RemoteDriverConfig);
18
+ list(params?: import('./adapters/types').ListParams): Promise<import('./types').FsData>;
19
+ delete(
20
+ params: import('./adapters/types').DeleteParams
21
+ ): Promise<import('./adapters/types').DeleteResult>;
22
+ rename(
23
+ params: import('./adapters/types').RenameParams
24
+ ): Promise<import('./adapters/types').FileOperationResult>;
25
+ copy(
26
+ params: import('./adapters/types').TransferParams
27
+ ): Promise<import('./adapters/types').FileOperationResult>;
28
+ move(
29
+ params: import('./adapters/types').TransferParams
30
+ ): Promise<import('./adapters/types').FileOperationResult>;
31
+ archive(
32
+ params: import('./adapters/types').ArchiveParams
33
+ ): Promise<import('./adapters/types').FileOperationResult>;
34
+ unarchive(params: {
35
+ item: string;
36
+ path: string;
37
+ }): Promise<import('./adapters/types').FileOperationResult>;
38
+ createFile(params: {
39
+ path: string;
40
+ name: string;
41
+ }): Promise<import('./adapters/types').FileOperationResult>;
42
+ createFolder(params: {
43
+ path: string;
44
+ name: string;
45
+ }): Promise<import('./adapters/types').FileOperationResult>;
46
+ getContent(params: { path: string }): Promise<import('./adapters/types').FileContentResult>;
47
+ getPreviewUrl(params: { path: string }): string;
48
+ getDownloadUrl(params: { path: string }): string;
49
+ search(params: import('./adapters/types').SearchParams): Promise<import('./types').DirEntry[]>;
50
+ save(params: import('./adapters/types').SaveParams): Promise<string>;
51
+ }
52
+
53
+ export class ArrayDriver {
54
+ constructor(config: import('./adapters/ArrayDriver').ArrayDriverConfig);
55
+ list(params?: import('./adapters/types').ListParams): Promise<import('./types').FsData>;
56
+ delete(
57
+ params: import('./adapters/types').DeleteParams
58
+ ): Promise<import('./adapters/types').DeleteResult>;
59
+ rename(
60
+ params: import('./adapters/types').RenameParams
61
+ ): Promise<import('./adapters/types').FileOperationResult>;
62
+ copy(
63
+ params: import('./adapters/types').TransferParams
64
+ ): Promise<import('./adapters/types').FileOperationResult>;
65
+ move(
66
+ params: import('./adapters/types').TransferParams
67
+ ): Promise<import('./adapters/types').FileOperationResult>;
68
+ archive(
69
+ params: import('./adapters/types').ArchiveParams
70
+ ): Promise<import('./adapters/types').FileOperationResult>;
71
+ unarchive(params: {
72
+ item: string;
73
+ path: string;
74
+ }): Promise<import('./adapters/types').FileOperationResult>;
75
+ createFile(params: {
76
+ path: string;
77
+ name: string;
78
+ }): Promise<import('./adapters/types').FileOperationResult>;
79
+ createFolder(params: {
80
+ path: string;
81
+ name: string;
82
+ }): Promise<import('./adapters/types').FileOperationResult>;
83
+ getContent(params: { path: string }): Promise<import('./adapters/types').FileContentResult>;
84
+ getPreviewUrl(params: { path: string }): string;
85
+ getDownloadUrl(params: { path: string }): string;
86
+ search(params: import('./adapters/types').SearchParams): Promise<import('./types').DirEntry[]>;
87
+ save(params: import('./adapters/types').SaveParams): Promise<string>;
88
+ }
89
+
90
+ export class IndexedDBDriver {
91
+ constructor(config?: import('./adapters/types').IndexedDBDriverConfig);
92
+ list(params?: import('./adapters/types').ListParams): Promise<import('./types').FsData>;
93
+ delete(
94
+ params: import('./adapters/types').DeleteParams
95
+ ): Promise<import('./adapters/types').DeleteResult>;
96
+ rename(
97
+ params: import('./adapters/types').RenameParams
98
+ ): Promise<import('./adapters/types').FileOperationResult>;
99
+ copy(
100
+ params: import('./adapters/types').TransferParams
101
+ ): Promise<import('./adapters/types').FileOperationResult>;
102
+ move(
103
+ params: import('./adapters/types').TransferParams
104
+ ): Promise<import('./adapters/types').FileOperationResult>;
105
+ archive(
106
+ params: import('./adapters/types').ArchiveParams
107
+ ): Promise<import('./adapters/types').FileOperationResult>;
108
+ unarchive(params: {
109
+ item: string;
110
+ path: string;
111
+ }): Promise<import('./adapters/types').FileOperationResult>;
112
+ createFile(params: {
113
+ path: string;
114
+ name: string;
115
+ }): Promise<import('./adapters/types').FileOperationResult>;
116
+ createFolder(params: {
117
+ path: string;
118
+ name: string;
119
+ }): Promise<import('./adapters/types').FileOperationResult>;
120
+ getContent(params: { path: string }): Promise<import('./adapters/types').FileContentResult>;
121
+ getPreviewUrl(params: { path: string }): string;
122
+ getDownloadUrl(params: { path: string }): string;
123
+ search(params: import('./adapters/types').SearchParams): Promise<import('./types').DirEntry[]>;
124
+ save(params: import('./adapters/types').SaveParams): Promise<string>;
125
+ }
126
+
127
+ // Context menu exports
128
+ export const contextMenuItems: import('./utils/contextmenu').Item[];
129
+ export const ContextMenuIds: {
130
+ readonly new_folder: 'new_folder';
131
+ readonly selectAll: 'selectAll';
132
+ readonly pinFolder: 'pinFolder';
133
+ readonly unpinFolder: 'unpinFolder';
134
+ readonly delete: 'delete';
135
+ readonly refresh: 'refresh';
136
+ readonly preview: 'preview';
137
+ readonly open: 'open';
138
+ readonly openDir: 'openDir';
139
+ readonly download: 'download';
140
+ readonly download_archive: 'download_archive';
141
+ readonly archive: 'archive';
142
+ readonly unarchive: 'unarchive';
143
+ readonly rename: 'rename';
144
+ readonly move: 'move';
145
+ readonly copy: 'copy';
146
+ readonly paste: 'paste';
147
+ };
148
+
149
+ // Type exports from types.ts
150
+ export type {
151
+ DirEntry,
152
+ ItemDclickEvent,
153
+ VueFinderProps,
154
+ FsData,
155
+ SelectEvent,
156
+ UpdatePathEvent,
157
+ } from './types';
158
+
159
+ // Export context menu item type
160
+ export type { Item } from './utils/contextmenu';
161
+
162
+ // Type exports from adapters/types.ts
163
+ export type {
164
+ Driver,
165
+ ListParams,
166
+ DeleteParams,
167
+ RenameParams,
168
+ TransferParams,
169
+ ArchiveParams,
170
+ SearchParams,
171
+ SaveParams,
172
+ FileContentResult,
173
+ DeleteResult,
174
+ FileOperationResult,
175
+ RemoteDriverConfig,
176
+ RemoteDriverUrls,
177
+ UploaderContext,
178
+ } from './adapters/types';
179
+
180
+ // Type exports from adapters/ArrayDriver.ts
181
+ export type { ArrayDriverConfig } from './adapters/ArrayDriver';
182
+
183
+ // Type exports from adapters/IndexedDBDriver.ts
184
+ export type { IndexedDBDriverConfig } from './adapters/IndexedDBDriver';
185
+
186
+ // Type exports from features.ts
187
+ export type { FeaturesConfig, FeaturesPreset, FeatureName } from './features';
188
+
189
+ // Type exports from stores/config.ts
190
+ export type {
191
+ ConfigStore,
192
+ ConfigState,
193
+ ConfigDefaults,
194
+ PersistenceConfigState,
195
+ NonPersistenceConfigState,
196
+ } from './stores/config';
197
+
198
+ // Type exports from stores/theme.ts
199
+ export type { Theme } from './stores/theme';
@@ -94,9 +94,6 @@ export default {
94
94
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
95
95
  'هل التنزيل لا يعمل؟ يمكنك محاولة النقر بزر الفأرة الأيمن على زر "تنزيل"، ثم تحديد "حفظ الرابط باسم...',
96
96
  Theme: 'السمة',
97
- Dark: 'مظلم',
98
- Light: 'فاتح',
99
- System: 'النّظام',
100
97
  'Target Directory': 'المجلد الهدف',
101
98
  Select: 'اختيار',
102
99
  'Compact list view': 'القائمة المضغوطة',
@@ -161,7 +158,7 @@ export default {
161
158
  'Small (< 1MB)': 'صغير (< 1MB)',
162
159
  'Medium (1-10MB)': 'متوسط (1-10MB)',
163
160
  'Large (> 10MB)': 'كبير (> 10MB)',
164
- 'Search helper text':
161
+ 'Start typing to search files. Use options to filter or include subfolders.':
165
162
  'ابدأ بالكتابة للبحث عن الملفات. استخدم الخيارات للتصفية أو تضمين المجلدات الفرعية.',
166
163
  uppy: uppyLocaleAr,
167
164
  };
@@ -96,9 +96,6 @@ export default {
96
96
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
97
97
  '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.',
98
98
  Theme: 'Thema',
99
- Dark: 'Dunkel',
100
- Light: 'Licht',
101
- System: 'System',
102
99
  'Target Directory': 'Zielverzeichnis',
103
100
  Select: 'Auswählen',
104
101
  'Compact list view': 'Kompakte Listenansicht',
@@ -166,7 +163,7 @@ export default {
166
163
  'Small (< 1MB)': 'Klein (< 1MB)',
167
164
  'Medium (1-10MB)': 'Mittel (1-10MB)',
168
165
  'Large (> 10MB)': 'Groß (> 10MB)',
169
- 'Search helper text':
166
+ 'Start typing to search files. Use options to filter or include subfolders.':
170
167
  'Beginnen Sie zu tippen, um Dateien zu suchen. Verwenden Sie Optionen zum Filtern oder zum Einbeziehen von Unterordnern.',
171
168
  uppy: uppyLocaleDe,
172
169
  };
@@ -93,9 +93,6 @@ export default {
93
93
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
94
94
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".',
95
95
  Theme: 'Theme',
96
- Dark: 'Dark',
97
- Light: 'Light',
98
- System: 'System',
99
96
  'Target Directory': 'Target Directory',
100
97
  Select: 'Select',
101
98
  'Compact list view': 'Compact list view',
@@ -165,7 +162,7 @@ export default {
165
162
  'Small (< 1MB)': 'Small (< 1MB)',
166
163
  'Medium (1-10MB)': 'Medium (1-10MB)',
167
164
  'Large (> 10MB)': 'Large (> 10MB)',
168
- 'Search helper text':
165
+ 'Start typing to search files. Use options to filter or include subfolders.':
169
166
  'Start typing to search files. Use options to filter or include subfolders.',
170
167
  uppy: uppyLocaleEn,
171
168
  };
@@ -97,9 +97,6 @@ export default {
97
97
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
98
98
  '¿La descarga no funciona? Puedes intentar hacer clic derecho en el botón "Descargar", seleccionar "Guardar enlace como...".',
99
99
  Theme: 'Tema',
100
- Dark: 'Oscuro',
101
- Light: 'Claro',
102
- System: 'Sistema',
103
100
  'Target Directory': 'Directorio de destino',
104
101
  Select: 'Seleccionar',
105
102
  'Compact list view': 'Vista de lista compacta',
@@ -167,7 +164,7 @@ export default {
167
164
  'Small (< 1MB)': 'Pequeño (< 1MB)',
168
165
  'Medium (1-10MB)': 'Mediano (1-10MB)',
169
166
  'Large (> 10MB)': 'Grande (> 10MB)',
170
- 'Search helper text':
167
+ 'Start typing to search files. Use options to filter or include subfolders.':
171
168
  'Comienza a escribir para buscar archivos. Usa las opciones para filtrar o incluir subcarpetas.',
172
169
  uppy: uppyLocaleEs,
173
170
  };
@@ -92,9 +92,6 @@ export default {
92
92
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
93
93
  'دانلود کار نمیکند؟ میتوانید روی دکمه "دانلود" راست کلیک کرده و "ذخیره لینک به عنوان..." را انتخاب کنید',
94
94
  Theme: 'تم',
95
- Dark: 'تاریک',
96
- Light: 'روشن',
97
- System: 'سیستم',
98
95
  'Target Directory': 'پوشه مقصد',
99
96
  Select: 'انتخاب',
100
97
  'Compact list view': 'نمایش لیست کوچک',
@@ -161,7 +158,7 @@ export default {
161
158
  'Small (< 1MB)': 'کوچک (< 1MB)',
162
159
  'Medium (1-10MB)': 'متوسط (1-10MB)',
163
160
  'Large (> 10MB)': 'بزرگ (> 10MB)',
164
- 'Search helper text':
161
+ 'Start typing to search files. Use options to filter or include subfolders.':
165
162
  'برای جستجوی فایل‌ها شروع به تایپ کنید. از گزینه‌ها برای فیلتر کردن یا شامل کردن زیرپوشه‌ها استفاده کنید.',
166
163
  uppy: uppyLocaleFa,
167
164
  };
@@ -97,9 +97,6 @@ export default {
97
97
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
98
98
  '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...".',
99
99
  Theme: 'Thème',
100
- Dark: 'Sombre',
101
- Light: 'Clair',
102
- System: 'Système',
103
100
  'Target Directory': 'Répertoire cible',
104
101
  Select: 'Sélectionner',
105
102
  'Compact list view': 'Vue en liste compacte',
@@ -166,7 +163,7 @@ export default {
166
163
  'Small (< 1MB)': 'Petit (< 1MB)',
167
164
  'Medium (1-10MB)': 'Moyen (1-10MB)',
168
165
  'Large (> 10MB)': 'Grand (> 10MB)',
169
- 'Search helper text':
166
+ 'Start typing to search files. Use options to filter or include subfolders.':
170
167
  'Commencez à taper pour rechercher des fichiers. Utilisez les options pour filtrer ou inclure des sous-dossiers.',
171
168
  uppy: uppyLocaleFr,
172
169
  };
@@ -92,9 +92,6 @@ export default {
92
92
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
93
93
  'ההורדה לא עובדה? ניתן לנסות ללחוץ ימינה על כפתור "הורדה", ולבחור "שמור קישור בשם...".',
94
94
  Theme: 'ערכת נושא',
95
- Dark: 'כהה',
96
- Light: 'בהיר',
97
- System: 'מערכת',
98
95
  'Target Directory': 'תיקיית יעד',
99
96
  Select: 'בחר',
100
97
  'Compact list view': 'תצוגת רשימה קומפקטית',
@@ -159,7 +156,7 @@ export default {
159
156
  'Small (< 1MB)': 'קטן (< 1MB)',
160
157
  'Medium (1-10MB)': 'בינוני (1-10MB)',
161
158
  'Large (> 10MB)': 'גדול (> 10MB)',
162
- 'Search helper text':
159
+ 'Start typing to search files. Use options to filter or include subfolders.':
163
160
  'התחל להקליד כדי לחפש קבצים. השתמש באפשרויות כדי לסנן או לכלול תיקיות משנה.',
164
161
  uppy: uppyLocaleHe,
165
162
  };
@@ -93,9 +93,6 @@ export default {
93
93
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
94
94
  'डाउनलोड काम नहीं करता? आप सीधे दायाँ क्लिक करके "डाउनलोड" बटन पर क्लिक करके "लिंक को सहेजें..." चुन सकते हैं।',
95
95
  Theme: 'थीम',
96
- Dark: 'डार्क',
97
- Light: 'लाइट',
98
- System: 'सिस्टम',
99
96
  'Target Directory': 'लक्षित निर्देशिका',
100
97
  Select: 'चयन',
101
98
  'Compact list view': 'संक्षिप्त सूची दृश्य',
@@ -161,7 +158,7 @@ export default {
161
158
  'Small (< 1MB)': 'छोटी (< 1MB)',
162
159
  'Medium (1-10MB)': 'मध्यम (1-10MB)',
163
160
  'Large (> 10MB)': 'बड़ी (> 10MB)',
164
- 'Search helper text':
161
+ 'Start typing to search files. Use options to filter or include subfolders.':
165
162
  'फ़ाइलों को खोजने के लिए टाइप करना शुरू करें। फ़िल्टर करने या उपफ़ोल्डरों को शामिल करने के लिए विकल्पों का उपयोग करें।',
166
163
  uppy: uppyLocaleHi,
167
164
  };
@@ -94,9 +94,6 @@ export default {
94
94
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
95
95
  'Il download non funziona? Puoi provare a fare clic destro sul pulsante "Scarica", selezionare "Salva collegamento come...".',
96
96
  Theme: 'Tema',
97
- Dark: 'Scuro',
98
- Light: 'Chiaro',
99
- System: 'Sistema',
100
97
  'Target Directory': 'Directory di destinazione',
101
98
  Select: 'Seleziona',
102
99
  'Compact list view': 'Vista elenco compatta',
@@ -163,7 +160,7 @@ export default {
163
160
  'Small (< 1MB)': 'Piccolo (< 1MB)',
164
161
  'Medium (1-10MB)': 'Medio (1-10MB)',
165
162
  'Large (> 10MB)': 'Grande (> 10MB)',
166
- 'Search helper text':
163
+ 'Start typing to search files. Use options to filter or include subfolders.':
167
164
  'Inizia a digitare per cercare i file. Usa le opzioni per filtrare o includere le sottocartelle.',
168
165
  uppy: uppyLocaleIt,
169
166
  };
@@ -95,9 +95,6 @@ export default {
95
95
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
96
96
  'ダウンロードが機能しませんか?「ダウンロード」ボタンを右クリックして「リンクを名前を付けて保存...」を選択してみてください。',
97
97
  Theme: 'テーマ',
98
- Dark: 'ダーク',
99
- Light: 'ライト',
100
- System: 'システム',
101
98
  'Target Directory': 'ターゲットディレクトリ',
102
99
  Select: '選択',
103
100
  'Compact list view': 'コンパクトリスト表示',
@@ -163,7 +160,7 @@ export default {
163
160
  'Small (< 1MB)': '小さい (< 1MB)',
164
161
  'Medium (1-10MB)': '中程度 (1-10MB)',
165
162
  'Large (> 10MB)': '大きい (> 10MB)',
166
- 'Search helper text':
163
+ 'Start typing to search files. Use options to filter or include subfolders.':
167
164
  'ファイルを検索するには入力を開始してください。オプションでフィルタしたり、サブフォルダを含めたりできます。',
168
165
  uppy: uppyLocaleJa,
169
166
  };
@@ -95,9 +95,6 @@ export default {
95
95
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
96
96
  "Werkt downloaden niet? Klik met de rechtermuisknop op de knop 'Downloaden' en selecteer 'Link opslaan als...'.",
97
97
  Theme: 'Thema',
98
- Dark: 'Donker',
99
- Light: 'Licht',
100
- System: 'Systeem',
101
98
  'Target Directory': 'Doelmap',
102
99
  Select: 'Selecteren',
103
100
  'Compact list view': 'Compacte lijstweergave',
@@ -164,7 +161,7 @@ export default {
164
161
  'Small (< 1MB)': 'Klein (< 1MB)',
165
162
  'Medium (1-10MB)': 'Gemiddeld (1-10MB)',
166
163
  'Large (> 10MB)': 'Groot (> 10MB)',
167
- 'Search helper text':
164
+ 'Start typing to search files. Use options to filter or include subfolders.':
168
165
  'Begin met typen om bestanden te zoeken. Gebruik opties om te filteren of submappen op te nemen.',
169
166
  uppy: uppyLocaleNl,
170
167
  };
@@ -93,9 +93,6 @@ export default {
93
93
  "Download doesn't work? You can try right-click 'Download' button, select 'Save link as...'.":
94
94
  "Pobieranie nie działa? Możesz spróbować kliknąć prawym przyciskiem na przycisk 'Pobierz', wybrać 'Zapisz link jako...'.",
95
95
  Theme: 'Motyw',
96
- Dark: 'Ciemny',
97
- Light: 'Jasny',
98
- System: 'System',
99
96
  'Target Directory': 'Docelowy katalog',
100
97
  Select: 'Wybierz',
101
98
  'Compact list view': 'Widok listy w formacie kompaktowym',
@@ -161,7 +158,7 @@ export default {
161
158
  'Small (< 1MB)': 'Małe (< 1MB)',
162
159
  'Medium (1-10MB)': 'Średnie (1-10MB)',
163
160
  'Large (> 10MB)': 'Duże (> 10MB)',
164
- 'Search helper text':
161
+ 'Start typing to search files. Use options to filter or include subfolders.':
165
162
  'Zacznij pisać, aby wyszukać pliki. Użyj opcji, aby filtrować lub uwzględniać podfoldery.',
166
163
  uppy: uppyLocalePl,
167
164
  };
@@ -96,9 +96,6 @@ export default {
96
96
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
97
97
  'O download não funciona? Você pode tentar clicar com o botão direito no botão "Baixar", selecionar "Salvar link como...".',
98
98
  Theme: 'Tema',
99
- Dark: 'Escuro',
100
- Light: 'Claro',
101
- System: 'Sistema',
102
99
  'Target Directory': 'Diretório de destino',
103
100
  Select: 'Selecionar',
104
101
  'Compact list view': 'Visualização de lista compacta',
@@ -164,7 +161,7 @@ export default {
164
161
  'Small (< 1MB)': 'Pequeno (< 1MB)',
165
162
  'Medium (1-10MB)': 'Médio (1-10MB)',
166
163
  'Large (> 10MB)': 'Grande (> 10MB)',
167
- 'Search helper text':
164
+ 'Start typing to search files. Use options to filter or include subfolders.':
168
165
  'Comece a digitar para pesquisar arquivos. Use as opções para filtrar ou incluir subpastas.',
169
166
  uppy: uppyLocalePt,
170
167
  };
@@ -95,9 +95,6 @@ export default {
95
95
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
96
96
  'Загрузка не работает? Вы можете попробовать щелкнуть правой кнопкой мыши по кнопке "Скачать", выбрать "Сохранить ссылку как...".',
97
97
  Theme: 'Тема',
98
- Dark: 'Темный',
99
- Light: 'Светлый',
100
- System: 'Система',
101
98
  'Target Directory': 'Целевая директория',
102
99
  Select: 'Выбрать',
103
100
  'Compact list view': 'Компактный вид списка',
@@ -164,7 +161,7 @@ export default {
164
161
  'Small (< 1MB)': 'Маленькие (< 1MB)',
165
162
  'Medium (1-10MB)': 'Средние (1-10MB)',
166
163
  'Large (> 10MB)': 'Большие (> 10MB)',
167
- 'Search helper text':
164
+ 'Start typing to search files. Use options to filter or include subfolders.':
168
165
  'Начните вводить, чтобы искать файлы. Используйте параметры для фильтрации или включения вложенных папок.',
169
166
  uppy: uppyLocaleRu,
170
167
  };
@@ -92,9 +92,6 @@ export default {
92
92
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
93
93
  'Fungerar inte nedladdningen? Du kan högerklicka på "Ladda ner"-knappen, välja "Spara länk som...".',
94
94
  Theme: 'Tema',
95
- Dark: 'Mörk',
96
- Light: 'Ljus',
97
- System: 'System',
98
95
  'Target Directory': 'Mål katalog',
99
96
  Select: 'Välj',
100
97
  'Compact list view': 'Kompakt listvy',
@@ -160,7 +157,7 @@ export default {
160
157
  'Small (< 1MB)': 'Små (< 1MB)',
161
158
  'Medium (1-10MB)': 'Medelstora (1-10MB)',
162
159
  'Large (> 10MB)': 'Stora (> 10MB)',
163
- 'Search helper text':
160
+ 'Start typing to search files. Use options to filter or include subfolders.':
164
161
  'Börja skriva för att söka efter filer. Använd alternativen för att filtrera eller inkludera undermappar.',
165
162
  uppy: uppyLocaleSv,
166
163
  };
@@ -91,9 +91,6 @@ export default {
91
91
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
92
92
  'Download çalışmıyor mu? "İndir" düğmesine sağ tıklayarak, "Farklı kaydet..." seçebilirsiniz.',
93
93
  Theme: 'Tema',
94
- Dark: 'Koyu',
95
- Light: 'Açık',
96
- System: 'Sistem',
97
94
  'Target Directory': 'Hedef Klasör',
98
95
  Select: 'Seç',
99
96
  'Compact list view': 'Kompakt liste görünümü',
@@ -163,7 +160,7 @@ export default {
163
160
  'Small (< 1MB)': 'Küçük (< 1MB)',
164
161
  'Medium (1-10MB)': 'Orta (1-10MB)',
165
162
  'Large (> 10MB)': 'Büyük (> 10MB)',
166
- 'Search helper text':
163
+ 'Start typing to search files. Use options to filter or include subfolders.':
167
164
  'Dosyaları aramak için yazmaya başlayın. Filtrelemek veya alt klasörleri dahil etmek için seçenekleri kullanın.',
168
165
  uppy: uppyLocaleTr,
169
166
  };
@@ -91,9 +91,6 @@ export default {
91
91
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
92
92
  '下载不管用?您可以尝试右键点击“下载”按钮,选择“链接另存为...”。',
93
93
  Theme: '主题',
94
- Dark: '深色',
95
- Light: '浅色',
96
- System: '系统',
97
94
  'Target Directory': '目标目录',
98
95
  Select: '选择',
99
96
  'Compact list view': '紧凑列表视图',
@@ -158,6 +155,7 @@ export default {
158
155
  'Small (< 1MB)': '小文件 (< 1MB)',
159
156
  'Medium (1-10MB)': '中等文件 (1-10MB)',
160
157
  'Large (> 10MB)': '大文件 (> 10MB)',
161
- 'Search helper text': '开始输入以搜索文件。使用选项进行筛选或包含子文件夹。',
158
+ 'Start typing to search files. Use options to filter or include subfolders.':
159
+ '开始输入以搜索文件。使用选项进行筛选或包含子文件夹。',
162
160
  uppy: uppyLocalezhCN,
163
161
  };
@@ -91,9 +91,6 @@ export default {
91
91
  'Download doesn\'t work? You can try right-click "Download" button, select "Save link as...".':
92
92
  '下載不管用?您可以嘗試右鍵點擊“下載”按鈕,選擇“另存連結為...”。',
93
93
  Theme: '主題',
94
- Dark: '深色',
95
- Light: '淺色',
96
- System: '系統',
97
94
  'Target Directory': '目標目錄',
98
95
  Select: '選擇',
99
96
  'Compact list view': '緊湊列表視圖',
@@ -158,6 +155,7 @@ export default {
158
155
  'Small (< 1MB)': '小檔案 (< 1MB)',
159
156
  'Medium (1-10MB)': '中等檔案 (1-10MB)',
160
157
  'Large (> 10MB)': '大檔案 (> 10MB)',
161
- 'Search helper text': '開始輸入以搜尋檔案。使用選項來篩選或包含子資料夾。',
158
+ 'Start typing to search files. Use options to filter or include subfolders.':
159
+ '開始輸入以搜尋檔案。使用選項來篩選或包含子資料夾。',
162
160
  uppy: uppyLocalezhTW,
163
161
  };