@@ -264,6 +264,7 @@ export interface PickerStoreOptions {
264
264
export interface PickerCustomText {
265
265
// Actions
266
266
Upload ?: string ;
267
+ 'Upload more' ?: string ;
267
268
'Deselect All' ?: string ;
268
269
'View/Edit Selected' ?: string ;
269
270
'Sign Out' ?: string ;
@@ -285,11 +286,15 @@ export interface PickerCustomText {
285
286
'more files' ?: string ;
286
287
287
288
// Cloud
288
- Connect ?: string ;
289
- 'Select Files from' ?: string ;
290
- 'You need to authenticate with ' ?: string ;
289
+ ' Connect {providerName}' ?: string ;
290
+ 'Select Files from {providerName} ' ?: string ;
291
+ 'You need to authenticate with {providerName}. ' ?: string ;
291
292
'A new page will open to connect your account.' ?: string ;
292
293
'We only extract images and never modify or delete them.' ?: string ;
294
+ 'To disconnect from {providerName} click "Sign out" button in the menu.' ?: string ;
295
+ 'Sign in with Google' ?: string ;
296
+ 'Go back' ?: string ;
297
+ 'This folder is empty.' ?: string ;
293
298
294
299
// Summary
295
300
Files ?: string ;
@@ -325,6 +330,7 @@ export interface PickerCustomText {
325
330
'Try now' ?: string ;
326
331
327
332
// Local File Source
333
+ 'Drag and Drop, Copy and Paste Files' ?: string ;
328
334
'or Drag and Drop, Copy and Paste Files' ?: string ;
329
335
'Select Files to Upload' ?: string ;
330
336
'Select From' ?: string ;
@@ -346,6 +352,7 @@ export interface PickerCustomText {
346
352
'File {displayName} is too big. The accepted file size is less than {roundFileSize}' ?: string ;
347
353
'Our file upload limit is {maxFiles} {filesText}' ?: string ;
348
354
'No search results found for "{search}"' ?: string ;
355
+ 'An error occurred. Please try again.' ?: string ;
349
356
}
350
357
351
358
export interface PickerOptions {
@@ -392,10 +399,11 @@ export interface PickerOptions {
392
399
container ?: string | Node ;
393
400
394
401
/**
395
- * Turn on cleaning JPEG image exif. Method can keep image orientation
402
+ * Turn on cleaning JPEG image exif. Method can keep image orientation or color profiles
396
403
*/
397
404
cleanupImageExif ?: boolean | {
398
- keepOrientation : boolean
405
+ keepOrientation ?: boolean ,
406
+ keepICCandAPP ?: boolean
399
407
} ;
400
408
/**
401
409
* Customize the text on the cloud authentication screen in Picker.
0 commit comments