Files
readest/apps/readest-app/src/utils/os.ts
T
2024-12-27 11:33:38 +01:00

11 lines
302 B
TypeScript

import { stubTranslation as _ } from '@/utils/misc';
export const FILE_REVEAL_LABELS = {
macos: _('Reveal in Finder'),
windows: _('Reveal in File Explorer'),
linux: _('Reveal in Folder'),
default: _('Reveal in Folder'),
};
export type FILE_REVEAL_PLATFORMS = keyof typeof FILE_REVEAL_LABELS;