File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2247,8 +2247,8 @@ export class CommandCenter {
2247
2247
2248
2248
const messageWarning = ! discardUntrackedChangesToTrash
2249
2249
? resources . length === 1
2250
- ? '\n\nThis is IRREVERSIBLE!\nThis file will be FOREVER LOST if you proceed.'
2251
- : '\n\nThis is IRREVERSIBLE!\nThese files will be FOREVER LOST if you proceed.'
2250
+ ? '\n\n' + l10n . t ( 'This is IRREVERSIBLE!\nThis file will be FOREVER LOST if you proceed.')
2251
+ : '\n\n' + l10n . t ( 'This is IRREVERSIBLE!\nThese files will be FOREVER LOST if you proceed.')
2252
2252
: '' ;
2253
2253
2254
2254
const message = resources . length === 1
@@ -2258,11 +2258,11 @@ export class CommandCenter {
2258
2258
const messageDetail = discardUntrackedChangesToTrash
2259
2259
? isWindows
2260
2260
? resources . length === 1
2261
- ? 'You can restore this file from the Recycle Bin.'
2262
- : 'You can restore these files from the Recycle Bin.'
2261
+ ? l10n . t ( 'You can restore this file from the Recycle Bin.' )
2262
+ : l10n . t ( 'You can restore these files from the Recycle Bin.' )
2263
2263
: resources . length === 1
2264
- ? 'You can restore this file from the Trash.'
2265
- : 'You can restore these files from the Trash.'
2264
+ ? l10n . t ( 'You can restore this file from the Trash.' )
2265
+ : l10n . t ( 'You can restore these files from the Trash.' )
2266
2266
: '' ;
2267
2267
2268
2268
const primaryAction = discardUntrackedChangesToTrash
You can’t perform that action at this time.
0 commit comments