(path)
| 118 | } |
| 119 | |
| 120 | function formatFolderPathForToast(path) { |
| 121 | const key = normalizeFolderToastKey(path); |
| 122 | return key === 'root' ? (t('root_folder') || 'Root') : key; |
| 123 | } |
| 124 | |
| 125 | function movedFolderNameForToast(path) { |
| 126 | const key = normalizeFolderToastKey(path); |
no test coverage detected