Skip to content

Commit

Permalink
fix: locales
Browse files Browse the repository at this point in the history
  • Loading branch information
mnenie committed Aug 15, 2024
1 parent 652c5ad commit 682a261
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/shared/lib/i18n/locales/en-US.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export default {
},
welcome: {
header: {
links: ['About', 'Kanban', 'Members', 'Collaborative', 'Templates', 'Chats'],
links: ['About', 'Kanban', 'Members', 'Templates', 'Collaborative', 'Chats'],
login: 'Log In',
reg: 'Get started'
},
Expand Down
2 changes: 1 addition & 1 deletion src/shared/lib/i18n/locales/ru-RU.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export default {
},
welcome: {
header: {
links: ['О нас', 'Канбан', 'Участники', 'Совместная работа', 'Чаты', 'Планы'],
links: ['О нас', 'Канбан', 'Участники', 'Шаблоны', 'Совместная работа', 'Чаты'],
login: 'Войти',
reg: 'Зарегистрироваться'
},
Expand Down
6 changes: 1 addition & 5 deletions src/shared/lib/i18n/locales/zh-CN.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export default {
},
welcome: {
header: {
links: ['关于我们', '看板', '成员', '协作', '聊天', '计划'],
links: ['关于', '看板', '成员', '模板', '协作', '聊天'],
login: '登录',
reg: '注册'
},
Expand Down Expand Up @@ -210,10 +210,6 @@ export default {
title: '聊天 💬',
description: '沟通、分享、讨论。'
}
// {
// title: '计划 📄',
// description: '升级您的免费计划,享受所有功能。'
// }
]
}
};
4 changes: 2 additions & 2 deletions src/widgets/layout/config/headerNavs.mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const headerLinks = [
{ id: 0, name: 'About', pagePrefix: 'about' },
{ id: 1, name: 'Kanban', pagePrefix: 'kanban' },
{ id: 2, name: 'Members', pagePrefix: 'members' },
{ id: 3, name: 'Collaborative', pagePrefix: 'collaborative' },
{ id: 4, name: 'Templates', pagePrefix: 'templates' },
{ id: 3, name: 'Templates', pagePrefix: 'templates' },
{ id: 4, name: 'Collaborative', pagePrefix: 'collaborative' },
{ id: 5, name: 'Chats', pagePrefix: 'chats' }
] satisfies HeaderNavLink[];

0 comments on commit 682a261

Please sign in to comment.