import { translationAtom } from "@/atoms/translations-atom"; import { useAtomValue } from "jotai"; import React from "react"; function RightPaneInfo({ version, batchMode }) { const t = useAtomValue(translationAtom); return (

{batchMode ? t("APP.INFOS.RIGHT_PANE_INFO.SELECT_FOLDER") : t("APP.INFOS.RIGHT_PANE_INFO.SELECT_IMAGE")}

{batchMode ? (

{t("APP.INFOS.RIGHT_PANE_INFO.NOTE_SPECIFIC_FORMATS_IN_FOLDER")}

) : (

{t("APP.INFOS.RIGHT_PANE_INFO.SELECT_IMAGES")}

)}

{t("APP.INFOS.RIGHT_PANE_INFO.APP_VERSION", { version })}

); } export default RightPaneInfo;