Web:Client:Renamed actions in the main button.

This commit is contained in:
Vlada Gazizova 2023-03-09 17:42:53 +03:00
parent a6ce7bcfa9
commit 666a5775ea

View File

@ -330,7 +330,7 @@ const ArticleMainButtonContent = (props) => {
id: "actions_new-document",
className: "main-button_drop-down",
icon: ActionsDocumentsReactSvgUrl,
label: t("Common:NewDocument"),
label: t("Files:Document"),
onClick: onCreate,
action: "docx",
key: "docx",
@ -339,7 +339,7 @@ const ArticleMainButtonContent = (props) => {
id: "actions_new-spreadsheet",
className: "main-button_drop-down",
icon: SpreadsheetReactSvgUrl,
label: t("Common:NewSpreadsheet"),
label: t("Files:Spreadsheet"),
onClick: onCreate,
action: "xlsx",
key: "xlsx",
@ -348,7 +348,7 @@ const ArticleMainButtonContent = (props) => {
id: "actions_new-presentation",
className: "main-button_drop-down",
icon: ActionsPresentationReactSvgUrl,
label: t("Common:NewPresentation"),
label: t("Files:Presentation"),
onClick: onCreate,
action: "pptx",
key: "pptx",
@ -358,7 +358,7 @@ const ArticleMainButtonContent = (props) => {
id: "actions_new-folder",
className: "main-button_drop-down",
icon: CatalogFolderReactSvgUrl,
label: t("Common:NewFolder"),
label: t("Files:Folder"),
onClick: onCreate,
key: "new-folder",
},