(path)
| 27 | } |
| 28 | |
| 29 | function formatFolderPathForToast(path) { |
| 30 | const key = normalizeFolderToastKey(path); |
| 31 | return key === 'root' ? (t('root_folder') || 'Root') : key; |
| 32 | } |
| 33 | |
| 34 | function movedFolderNameForToast(path) { |
| 35 | const key = normalizeFolderToastKey(path); |
no test coverage detected