mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-08-16 08:31:57 +02:00
10 lines
244 B
TypeScript
10 lines
244 B
TypeScript
import { platform } from "@yaakapp-internal/platform";
|
|
|
|
const os = platform.osType();
|
|
export const revealInFinderText =
|
|
os === "macos"
|
|
? "Reveal in Finder"
|
|
: os === "windows"
|
|
? "Show in Explorer"
|
|
: "Show in File Manager";
|