diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 454fe19..21737b3 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -43,8 +43,8 @@ export default defineUserConfig({ description: "Описание", role: "Роль", technologies: "Технологии", - start: "Начало", - statusOrEnd: "Статус/Окончание", + status: "Статус", + dates: "Даты", }, }, "/eng/": { @@ -64,8 +64,8 @@ export default defineUserConfig({ description: "Description", role: "Role", technologies: "Technologies", - start: "Start", - statusOrEnd: "Status/End", + status: "Status", + dates: "Dates", }, }, }, diff --git a/docs/.vuepress/modules/work/ChronologicalWorksTable/ChronologicalWorksTable.vue b/docs/.vuepress/modules/work/ChronologicalWorksTable/ChronologicalWorksTable.vue index 67c92a9..c82a6c6 100644 --- a/docs/.vuepress/modules/work/ChronologicalWorksTable/ChronologicalWorksTable.vue +++ b/docs/.vuepress/modules/work/ChronologicalWorksTable/ChronologicalWorksTable.vue @@ -1,21 +1,20 @@ - + diff --git a/docs/.vuepress/modules/work/ChronologicalWorksTable/TechnologyList.ts b/docs/.vuepress/modules/work/ChronologicalWorksTable/TechnologyList.ts deleted file mode 100644 index e0c625c..0000000 --- a/docs/.vuepress/modules/work/ChronologicalWorksTable/TechnologyList.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { NonEmptyArray } from "../../../global.ts"; -import { Technology } from "../domain/mod.ts"; -import { AnyNode, TextNode } from "ren/node.ts"; - -export const TechnologyList: (techs: NonEmptyArray) => AnyNode = ( - techs, -) => new TextNode(techs.join(", "));