Web: Files: Fix translation

This commit is contained in:
Alexey Safronov 2022-09-15 20:47:04 +03:00
parent 30618e3e22
commit 6438bca15d
3 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,6 @@
"BackToParentFolderButton": "Back to parent folder",
"ByAuthor": "Author",
"ByCreation": "Created",
"ByCreationDate": "Creation date",
"ByLastModified": "Modified",
"ByOwner": "Owner",
"ByTitle": "Title",

View File

@ -164,7 +164,7 @@ const SingleItem = (props) => {
),
},
{
id: "ByCreationDate",
id: "ByCreation",
title: t("Files:ByCreation"),
content: styledText(parseAndFormatDate(item.created)),
},

View File

@ -807,7 +807,7 @@ const SectionFilterContent = ({
const size = { key: "Size", label: t("Common:Size"), default: true };
const creationDate = {
key: "DateAndTimeCreation",
label: t("ByCreationDate"),
label: t("ByCreation"),
default: true,
};
const authorOption = {