diff --git a/packages/client/public/locales/en/ConvertDialog.json b/packages/client/public/locales/en/ConvertDialog.json index 49e9027c45..91aabb7f8f 100644 --- a/packages/client/public/locales/en/ConvertDialog.json +++ b/packages/client/public/locales/en/ConvertDialog.json @@ -8,6 +8,6 @@ "InfoCreateFileIn": "The new '{{fileTitle}}' file is created in '{{folderTitle}}'", "OpenFileMessage": "The document file you open will be converted to the Office Open XML format for quick viewing and editing.", "SaveOriginalFormatMessage": "Save the file copy in the original format", - "ConversionXmlMessage": "The document file you open will be converted to the Office Open XML format (docx, xlsx or pptx) for faster viewing and editing.", + "ConversionXmlMessage": "The document file you open will be converted to the Office Open XML format (docx or xlsx) for faster viewing and editing.", "SelectFileType": "Please select a file type:" } diff --git a/packages/client/src/components/dialogs/ConvertDialog/index.js b/packages/client/src/components/dialogs/ConvertDialog/index.js index 0939f3ba23..76286df1b0 100644 --- a/packages/client/src/components/dialogs/ConvertDialog/index.js +++ b/packages/client/src/components/dialogs/ConvertDialog/index.js @@ -67,10 +67,6 @@ const ConvertDialogComponent = (props) => { label: t("Spreadsheet"), value: ".xlsx", }, - { - label: t("Presentation"), - value: ".pptx", - }, ]; const isXML = convertItem?.fileExst?.includes(".xml");