i18n russian (#1049)

Signed-off-by: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com>
This commit is contained in:
Denis Bykhov
2022-02-23 23:10:11 +07:00
committed by GitHub
parent 7a8f581741
commit 3e4188dac3
125 changed files with 1055 additions and 329 deletions
+5 -3
View File
@@ -162,7 +162,9 @@ export interface KanbanTemplate extends Doc {
/**
* @public
*/
export interface KanbanTemplateSpace extends Space {
export interface KanbanTemplateSpace extends Doc {
name: IntlString
description: IntlString
icon: AnyComponent
}
@@ -244,11 +246,11 @@ export async function createKanban (
const ranks = [...genRanks(2)]
await Promise.all([
client.createDoc(task.class.WonState, attachedTo, {
title: 'Won' as IntlString,
title: 'Won',
rank: ranks[0]
}),
client.createDoc(task.class.LostState, attachedTo, {
title: 'Lost' as IntlString,
title: 'Lost',
rank: ranks[1]
})
])