summaryrefslogtreecommitdiff
path: root/app/Locale/ru_RU/translations.php
blob: 6f891d1c482a6adb9f50edc5d3ef5d173e1a9f9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
<?php

return array(
    // 'number.decimals_separator' => '',
    // 'number.thousands_separator' => '',
    'None' => 'Отсутствует',
    'edit' => 'изменить',
    'Edit' => 'Изменить',
    'remove' => 'удалить',
    'Remove' => 'Удалить',
    'Update' => 'Обновить',
    'Yes' => 'Да',
    'No' => 'Нет',
    'cancel' => 'Отменить',
    'or' => 'или',
    'Yellow' => 'Желтый',
    'Blue' => 'Синий',
    'Green' => 'Зеленый',
    'Purple' => 'Фиолетовый',
    'Red' => 'Красный',
    'Orange' => 'Оранжевый',
    'Grey' => 'Серый',
    // 'Brown' => '',
    // 'Deep Orange' => '',
    // 'Dark Grey' => '',
    // 'Pink' => '',
    // 'Teal' => '',
    // 'Cyan' => '',
    // 'Lime' => '',
    // 'Light Green' => '',
    // 'Amber' => '',
    'Save' => 'Сохранить',
    'Login' => 'Вход',
    'Official website:' => 'Официальный сайт:',
    'Unassigned' => 'Не назначена',
    'View this task' => 'Посмотреть задачу',
    'Remove user' => 'Удалить пользователя',
    'Do you really want to remove this user: "%s"?' => 'Вы точно хотите удалить пользователя: « %s » ?',
    'New user' => 'Новый пользователь',
    'All users' => 'Все пользователи',
    'Username' => 'Имя пользователя',
    'Password' => 'Пароль',
    'Administrator' => 'Администратор',
    'Sign in' => 'Войти',
    'Users' => 'Пользователи',
    'No user' => 'Нет пользователя',
    'Forbidden' => 'Запрещено',
    'Access Forbidden' => 'Доступ запрещен',
    'Edit user' => 'Изменить пользователя',
    'Logout' => 'Выйти',
    'Bad username or password' => 'Неверное имя пользователя или пароль',
    'Edit project' => 'Изменить проект',
    'Name' => 'Имя',
    'Projects' => 'Проекты',
    'No project' => 'Нет проекта',
    'Project' => 'Проект',
    'Status' => 'Статус',
    'Tasks' => 'Задачи',
    'Board' => 'Доска',
    'Actions' => 'Действия',
    'Inactive' => 'Неактивен',
    'Active' => 'Активен',
    'Add this column' => 'Добавить колонку',
    '%d tasks on the board' => 'Задач на доске - %d',
    '%d tasks in total' => 'Задач всего - %d',
    'Unable to update this board.' => 'Не удалось обновить доску.',
    'Edit board' => 'Изменить доски',
    'Disable' => 'Деактивировать',
    'Enable' => 'Активировать',
    'New project' => 'Новый проект',
    'Do you really want to remove this project: "%s"?' => 'Вы точно хотите удалить проект: « %s » ?',
    'Remove project' => 'Удалить проект',
    'Edit the board for "%s"' => 'Изменить доску для « %s »',
    'All projects' => 'Все проекты',
    'Change columns' => 'Изменить колонки',
    'Add a new column' => 'Добавить новую колонку',
    'Title' => 'Название',
    'Nobody assigned' => 'Никто не назначен',
    'Assigned to %s' => 'Исполнитель: %s',
    'Remove a column' => 'Удалить колонку',
    'Remove a column from a board' => 'Удалить колонку с доски',
    'Unable to remove this column.' => 'Не удалось удалить колонку.',
    'Do you really want to remove this column: "%s"?' => 'Вы точно хотите удалить эту колонку: « %s » ?',
    'This action will REMOVE ALL TASKS associated to this column!' => 'Вы УДАЛИТЕ ВСЕ ЗАДАЧИ находящиеся в этой колонке !',
    'Settings' => 'Настройки',
    'Application settings' => 'Настройки приложения',
    'Language' => 'Язык',
    'Webhook token:' => 'Webhooks токен :',
    'API token:' => 'API токен :',
    'Database size:' => 'Размер базы данных :',
    'Download the database' => 'Скачать базу данных',
    'Optimize the database' => 'Оптимизировать базу данных',
    '(VACUUM command)' => '(Команда VACUUM)',
    '(Gzip compressed Sqlite file)' => '(Сжать GZip файл SQLite)',
    'Close a task' => 'Закрыть задачу',
    'Edit a task' => 'Изменить задачу',
    'Column' => 'Колонка',
    'Color' => 'Цвет',
    'Assignee' => 'Назначена',
    'Create another task' => 'Создать другую задачу',
    'New task' => 'Новая задача',
    'Open a task' => 'Открыть задачу',
    'Do you really want to open this task: "%s"?' => 'Вы уверены что хотите открыть задачу: « %s » ?',
    'Back to the board' => 'Вернуться на доску',
    'Created on %B %e, %Y at %k:%M %p' => 'Создано %d/%m/%Y в %H:%M',
    'There is nobody assigned' => 'Никто не назначен',
    'Column on the board:' => 'Колонка на доске : ',
    'Status is open' => 'Статус - открыт',
    'Status is closed' => 'Статус - закрыт',
    'Close this task' => 'Закрыть эту задачу',
    'Open this task' => 'Открыть эту задачу',
    'There is no description.' => 'Нет описания.',
    'Add a new task' => 'Добавить новую задачу',
    'The username is required' => 'Требуется имя пользователя',
    'The maximum length is %d characters' => 'Максимальная длина - %d знаков',
    'The minimum length is %d characters' => 'Минимальная длина - %d знаков',
    'The password is required' => 'Требуется пароль',
    'This value must be an integer' => 'Это значение должно быть целым',
    'The username must be unique' => 'Требуется уникальное имя пользователя',
    'The user id is required' => 'Требуется ID пользователя',
    'Passwords don\'t match' => 'Пароли не совпадают',
    'The confirmation is required' => 'Требуется подтверждение',
    'The project is required' => 'Требуется проект',
    'The id is required' => 'Требуется ID',
    'The project id is required' => 'Требуется ID проекта',
    'The project name is required' => 'Требуется имя проекта',
    'This project must be unique' => 'Проект должен быть уникальным',
    'The title is required' => 'Требуется заголовок',
    'Settings saved successfully.' => 'Параметры успешно сохранены.',
    'Unable to save your settings.' => 'Невозможно сохранить параметры.',
    'Database optimization done.' => 'База данных оптимизирована.',
    'Your project have been created successfully.' => 'Ваш проект успешно создан.',
    'Unable to create your project.' => 'Не удалось создать проект.',
    'Project updated successfully.' => 'Проект успешно обновлен.',
    'Unable to update this project.' => 'Не удалось обновить проект.',
    'Unable to remove this project.' => 'Не удалось удалить проект.',
    'Project removed successfully.' => 'Проект удален.',
    'Project activated successfully.' => 'Проект активирован.',
    'Unable to activate this project.' => 'Невозможно активировать проект.',
    'Project disabled successfully.' => 'Проект успешно деактивирован.',
    'Unable to disable this project.' => 'Не удалось деактивировать проект.',
    'Unable to open this task.' => 'Не удалось открыть задачу.',
    'Task opened successfully.' => 'Задача открыта.',
    'Unable to close this task.' => 'Не удалось закрыть задачу.',
    'Task closed successfully.' => 'Задача закрыта.',
    'Unable to update your task.' => 'Не удалось обновить задачу.',
    'Task updated successfully.' => 'Задача обновлена.',
    'Unable to create your task.' => 'Не удалось создать задачу.',
    'Task created successfully.' => 'Задача создана.',
    'User created successfully.' => 'Пользователь создан.',
    'Unable to create your user.' => 'Не удалось создать пользователя.',
    'User updated successfully.' => 'Пользователь обновлен.',
    'Unable to update your user.' => 'Не удалось обновить пользователя.',
    'User removed successfully.' => 'Пользователь удален.',
    'Unable to remove this user.' => 'Не удалось удалить пользователя.',
    'Board updated successfully.' => 'Доска успешно обновлена.',
    'Ready' => 'Готовые',
    'Backlog' => 'Ожидающие',
    'Work in progress' => 'В процессе',
    'Done' => 'Выполнена',
    'Application version:' => 'Версия приложения:',
    'Completed on %B %e, %Y at %k:%M %p' => 'Завершен %d/%m/%Y в %H:%M',
    '%B %e, %Y at %k:%M %p' => '%d/%m/%Y в %H:%M',
    'Date created' => 'Дата создания',
    'Date completed' => 'Дата завершения',
    'Id' => 'ID',
    '%d closed tasks' => '%d завершенных задач',
    'No task for this project' => 'Нет задач для этого проекта',
    'Public link' => 'Ссылка для просмотра',
    'There is no column in your project!' => 'Нет колонки в вашем проекте!',
    'Change assignee' => 'Сменить назначенного',
    'Change assignee for the task "%s"' => 'Сменить назначенного для задачи « %s »',
    'Timezone' => 'Часовой пояс',
    'Sorry, I didn\'t find this information in my database!' => 'К сожалению, информация в базе данных не найдена !',
    'Page not found' => 'Страница не найдена',
    'Complexity' => 'Сложность',
    'Task limit' => 'Лимит задач',
    'Task count' => 'Количество задач',
    'Edit project access list' => 'Изменить доступ к проекту',
    'Allow this user' => 'Разрешить этого пользователя',
    'Don\'t forget that administrators have access to everything.' => 'Помните, администратор имеет неограниченные права.',
    'Revoke' => 'Отозвать',
    'List of authorized users' => 'Список авторизованных пользователей',
    'User' => 'Пользователь',
    'Nobody have access to this project.' => 'Ни у кого нет доступа к этому проекту',
    'Comments' => 'Комментарии',
    'Write your text in Markdown' => 'Справка по синтаксису Markdown',
    'Leave a comment' => 'Оставить комментарий 2',
    'Comment is required' => 'Нужен комментарий',
    'Leave a description' => 'Напишите описание',
    'Comment added successfully.' => 'Комментарий успешно добавлен.',
    'Unable to create your comment.' => 'Невозможно создать комментарий.',
    'Edit this task' => 'Изменить задачу',
    'Due Date' => 'Сделать до',
    'Invalid date' => 'Неверная дата',
    'Must be done before %B %e, %Y' => 'Должно быть сделано до %d/%m/%Y',
    '%B %e, %Y' => '%d/%m/%Y',
    // '%b %e, %Y' => '',
    'Automatic actions' => 'Автоматические действия',
    'Your automatic action have been created successfully.' => 'Автоматика успешно настроена.',
    'Unable to create your automatic action.' => 'Не удалось создать автоматизированное действие.',
    'Remove an action' => 'Удалить действие',
    'Unable to remove this action.' => 'Не удалось удалить действие',
    'Action removed successfully.' => 'Действие удалено.',
    'Automatic actions for the project "%s"' => 'Автоматические действия для проекта « %s »',
    'Defined actions' => 'Заданные действия',
    'Add an action' => 'Добавить действие',
    'Event name' => 'Имя события',
    'Action name' => 'Имя действия',
    'Action parameters' => 'Параметры действия',
    'Action' => 'Действие',
    'Event' => 'Событие',
    'When the selected event occurs execute the corresponding action.' => 'Когда случится ВЫБРАННОЕ событие выполняется СООТВЕТСТВУЮЩЕЕ действие.',
    'Next step' => 'Следующий шаг',
    'Define action parameters' => 'Задать параметры действия',
    'Save this action' => 'Сохранить это действие',
    'Do you really want to remove this action: "%s"?' => 'Вы точно хотите удалить это действие: « %s » ?',
    'Remove an automatic action' => 'Удалить автоматическое действие',
    'Assign the task to a specific user' => 'Назначить задачу определенному пользователю',
    'Assign the task to the person who does the action' => 'Назначить задачу тому кто выполнит действие',
    'Duplicate the task to another project' => 'Создать дубликат задачи в другом проекте',
    'Move a task to another column' => 'Переместить задачу в другую колонку',
    'Task modification' => 'Изменение задачи',
    'Task creation' => 'Создание задачи',
    'Closing a task' => 'Завершение задачи',
    'Assign a color to a specific user' => 'Назначить определенный цвет пользователю',
    'Column title' => 'Название колонки',
    'Position' => 'Расположение',
    'Move Up' => 'Сдвинуть вверх',
    'Move Down' => 'Сдвинуть вниз',
    'Duplicate to another project' => 'Клонировать в другой проект',
    'Duplicate' => 'Клонировать',
    'link' => 'ссылка',
    'Comment updated successfully.' => 'Комментарий обновлен.',
    'Unable to update your comment.' => 'Не удалось обновить ваш комментарий.',
    'Remove a comment' => 'Удалить комментарий',
    'Comment removed successfully.' => 'Комментарий удален.',
    'Unable to remove this comment.' => 'Не удалось удалить этот комментарий.',
    'Do you really want to remove this comment?' => 'Вы точно хотите удалить этот комментарий?',
    'Only administrators or the creator of the comment can access to this page.' => 'Только администратор и автор комментария имеют доступ к этой странице.',
    'Current password for the user "%s"' => 'Текущий пароль для пользователя « %s »',
    'The current password is required' => 'Требуется текущий пароль',
    'Wrong password' => 'Неверный пароль',
    'Unknown' => 'Неизвестно',
    'Last logins' => 'Последние посещения',
    'Login date' => 'Дата входа',
    'Authentication method' => 'Способ аутентификации',
    'IP address' => 'IP адрес',
    'User agent' => 'User agent',
    'Persistent connections' => 'Постоянные соединения',
    'No session.' => 'Нет сеанса',
    'Expiration date' => 'Дата окончания',
    'Remember Me' => 'Запомнить меня',
    'Creation date' => 'Дата создания',
    'Everybody' => 'Все',
    'Open' => 'Открытый',
    'Closed' => 'Закрытый',
    'Search' => 'Поиск',
    'Nothing found.' => 'Ничего не найдено.',
    'Due date' => 'Срок',
    'Others formats accepted: %s and %s' => 'Другой формат приемлем: %s и %s',
    'Description' => 'Описание',
    '%d comments' => '%d комментариев',
    '%d comment' => '%d комментарий',
    'Email address invalid' => 'Некорректный e-mail адрес',
    // 'Your external account is not linked anymore to your profile.' => '',
    // 'Unable to unlink your external account.' => '',
    // 'External authentication failed' => '',
    // 'Your external account is linked to your profile successfully.' => '',
    'Email' => 'E-mail',
    'Link my Google Account' => 'Привязать мой профиль к Google',
    'Unlink my Google Account' => 'Отвязать мой профиль от Google',
    'Login with my Google Account' => 'Аутентификация через Google',
    'Project not found.' => 'Проект не найден.',
    'Task removed successfully.' => 'Задача удалена.',
    'Unable to remove this task.' => 'Не удалось удалить эту задачу.',
    'Remove a task' => 'Удалить задачу',
    'Do you really want to remove this task: "%s"?' => 'Вы точно хотите удалить эту задачу « %s » ?',
    'Assign automatically a color based on a category' => 'Автоматически назначать цвет по категории',
    'Assign automatically a category based on a color' => 'Автоматически назначать категорию по цвету',
    'Task creation or modification' => 'Создание или изменение задачи',
    'Category' => 'Категория',
    'Category:' => 'Категория:',
    'Categories' => 'Категории',
    'Category not found.' => 'Категория не найдена',
    'Your category have been created successfully.' => 'Категория создана.',
    'Unable to create your category.' => 'Не удалось создать категорию.',
    'Your category have been updated successfully.' => 'Категория обновлена.',
    'Unable to update your category.' => 'Не удалось обновить категорию.',
    'Remove a category' => 'Удалить категорию',
    'Category removed successfully.' => 'Категория удалена.',
    'Unable to remove this category.' => 'Не удалось удалить категорию.',
    'Category modification for the project "%s"' => 'Изменение категории для проекта « %s »',
    'Category Name' => 'Название категории',
    'Add a new category' => 'Добавить новую категорию',
    'Do you really want to remove this category: "%s"?' => 'Вы точно хотите удалить категорию « %s » ?',
    'All categories' => 'Все категории',
    'No category' => 'Нет категории',
    'The name is required' => 'Требуется название',
    'Remove a file' => 'Удалить файл',
    'Unable to remove this file.' => 'Не удалось удалить файл.',
    'File removed successfully.' => 'Файл удален.',
    'Attach a document' => 'Прикрепить файл',
    'Do you really want to remove this file: "%s"?' => 'Вы точно хотите удалить этот файл « %s » ?',
    'open' => 'открыть',
    'Attachments' => 'Приложение',
    'Edit the task' => 'Изменить задачу',
    'Edit the description' => 'Изменить описание',
    'Add a comment' => 'Добавить комментарий',
    'Edit a comment' => 'Изменить комментарий',
    'Summary' => 'Сводка',
    'Time tracking' => 'Отслеживание времени',
    'Estimate:' => 'Приблизительно:',
    'Spent:' => 'Затрачено:',
    'Do you really want to remove this sub-task?' => 'Вы точно хотите удалить подзадачу?',
    'Remaining:' => 'Осталось:',
    'hours' => 'часов',
    'spent' => 'затрачено',
    'estimated' => 'расчетное',
    'Sub-Tasks' => 'Подзадачи',
    'Add a sub-task' => 'Добавить подзадачу',
    'Original estimate' => 'Первичная оценка',
    'Create another sub-task' => 'Создать другую подзадачу',
    'Time spent' => 'Времени затрачено',
    'Edit a sub-task' => 'Изменить подзадачу',
    'Remove a sub-task' => 'Удалить подзадачу',
    'The time must be a numeric value' => 'Время должно быть числом!',
    'Todo' => 'К исполнению',
    'In progress' => 'В процессе',
    'Sub-task removed successfully.' => 'Подзадача удалена.',
    'Unable to remove this sub-task.' => 'Не удалось удалить подзадачу.',
    'Sub-task updated successfully.' => 'Подзадача обновлена.',
    'Unable to update your sub-task.' => 'Не удалось обновить подзадачу.',
    'Unable to create your sub-task.' => 'Не удалось создать подзадачу.',
    'Sub-task added successfully.' => 'Подзадача добавлена.',
    'Maximum size: ' => 'Максимальный размер: ',
    'Unable to upload the file.' => 'Не удалось загрузить файл.',
    'Display another project' => 'Показать другой проект',
    'Login with my Github Account' => 'Аутентификация через Github',
    'Link my Github Account' => 'Привязать мой профиль к Github',
    'Unlink my Github Account' => 'Отвязать мой профиль от Github',
    'Created by %s' => 'Создано %s',
    'Last modified on %B %e, %Y at %k:%M %p' => 'Последнее изменение %d/%m/%Y в %H:%M',
    'Tasks Export' => 'Экспорт задач',
    'Tasks exportation for "%s"' => 'Задача экспортирована для « %s »',
    'Start Date' => 'Дата начала',
    'End Date' => 'Дата завершения',
    'Execute' => 'Выполнить',
    'Task Id' => 'ID задачи',
    'Creator' => 'Автор',
    'Modification date' => 'Дата изменения',
    'Completion date' => 'Дата завершения',
    'Clone' => 'Клонировать',
    'Project cloned successfully.' => 'Проект клонирован.',
    'Unable to clone this project.' => 'Не удалось клонировать проект.',
    'Email notifications' => 'Уведомления по e-mail',
    'Enable email notifications' => 'Включить уведомления по e-mail',
    'Task position:' => 'Позиция задачи:',
    'The task #%d have been opened.' => 'Задача #%d была открыта.',
    'The task #%d have been closed.' => 'Задача #%d была закрыта.',
    'Sub-task updated' => 'Подзадача обновлена',
    'Title:' => 'Название:',
    'Status:' => 'Статус:',
    'Assignee:' => 'Назначена:',
    'Time tracking:' => 'Отслеживание времени:',
    'New sub-task' => 'Новая подзадача',
    'New attachment added "%s"' => 'Добавлено вложение « %s »',
    'Comment updated' => 'Комментарий обновлен',
    'New comment posted by %s' => 'Новый комментарий написан « %s »',
    'New attachment' => 'Новое вложение',
    'New comment' => 'Новый комментарий',
    'New subtask' => 'Новая подзадача',
    'Subtask updated' => 'Подзадача обновлена',
    'Task updated' => 'Задача обновлена',
    'Task closed' => 'Задача закрыта',
    'Task opened' => 'Задача открыта',
    'I want to receive notifications only for those projects:' => 'Я хочу получать уведомления только по этим проектам:',
    'view the task on Kanboard' => 'посмотреть задачу на Kanboard',
    'Public access' => 'Общий доступ',
    'User management' => 'Управление пользователями',
    'Active tasks' => 'Активные задачи',
    'Disable public access' => 'Отключить общий доступ',
    'Enable public access' => 'Включить общий доступ',
    'Public access disabled' => 'Общий доступ отключен',
    'Do you really want to disable this project: "%s"?' => 'Вы точно хотите деактивировать проект: "%s"?',
    'Do you really want to enable this project: "%s"?' => 'Вы точно хотите активировать проект: "%s"?',
    'Project activation' => 'Активация проекта',
    'Move the task to another project' => 'Переместить задачу в другой проект',
    'Move to another project' => 'Переместить в другой проект',
    'Do you really want to duplicate this task?' => 'Вы точно хотите клонировать задачу?',
    'Duplicate a task' => 'Клонировать задачу',
    'External accounts' => 'Внешняя аутентификация',
    'Account type' => 'Тип профиля',
    'Local' => 'Локальный',
    'Remote' => 'Удаленный',
    'Enabled' => 'Включен',
    'Disabled' => 'Выключены',
    'Google account linked' => 'Профиль Google связан',
    'Github account linked' => 'Профиль Github связан',
    'Username:' => 'Имя пользователя:',
    'Name:' => 'Имя:',
    'Email:' => 'E-mail:',
    'Notifications:' => 'Уведомления:',
    'Notifications' => 'Уведомления',
    'Group:' => 'Группа:',
    'Regular user' => 'Обычный пользователь',
    'Account type:' => 'Тип профиля:',
    'Edit profile' => 'Редактировать профиль',
    'Change password' => 'Сменить пароль',
    'Password modification' => 'Изменение пароля',
    'External authentications' => 'Внешняя аутентификация',
    'Google Account' => 'Профиль Google',
    'Github Account' => 'Профиль Github',
    'Never connected.' => 'Ранее не соединялось.',
    'No account linked.' => 'Нет связанных профилей.',
    'Account linked.' => 'Профиль связан.',
    'No external authentication enabled.' => 'Нет активной внешней аутентификации.',
    'Password modified successfully.' => 'Пароль изменен.',
    'Unable to change the password.' => 'Не удалось сменить пароль.',
    'Change category for the task "%s"' => 'Сменить категорию для задачи "%s"',
    'Change category' => 'Смена категории',
    '%s updated the task %s' => '%s обновил задачу %s',
    '%s opened the task %s' => '%s открыл задачу %s',
    '%s moved the task %s to the position #%d in the column "%s"' => '%s переместил задачу %s на позицию #%d в колонке "%s"',
    '%s moved the task %s to the column "%s"' => '%s переместил задачу %s в колонку "%s"',
    '%s created the task %s' => '%s создал задачу %s',
    '%s closed the task %s' => '%s закрыл задачу %s',
    '%s created a subtask for the task %s' => '%s создал подзадачу для задачи %s',
    '%s updated a subtask for the task %s' => '%s обновил подзадачу для задачи %s',
    'Assigned to %s with an estimate of %s/%sh' => 'Назначено %s с окончанием %s/%sh',
    'Not assigned, estimate of %sh' => 'Не назначено, окончание %sh',
    '%s updated a comment on the task %s' => '%s обновил комментарий к задаче %s',
    '%s commented the task %s' => '%s прокомментировал задачу %s',
    '%s\'s activity' => '%s активность',
    'RSS feed' => 'RSS лента',
    '%s updated a comment on the task #%d' => '%s обновил комментарий задачи #%d',
    '%s commented on the task #%d' => '%s прокомментировал задачу #%d',
    '%s updated a subtask for the task #%d' => '%s обновил подзадачу задачи #%d',
    '%s created a subtask for the task #%d' => '%s создал подзадачу для задачи #%d',
    '%s updated the task #%d' => '%s обновил задачу #%d',
    '%s created the task #%d' => '%s создал задачу #%d',
    '%s closed the task #%d' => '%s закрыл задачу #%d',
    '%s open the task #%d' => '%s открыл задачу #%d',
    '%s moved the task #%d to the column "%s"' => '%s переместил задачу #%d в колонку "%s"',
    '%s moved the task #%d to the position %d in the column "%s"' => '%s переместил задачу #%d на позицию %d в колонке "%s"',
    'Activity' => 'Активность',
    'Default values are "%s"' => 'Колонки по умолчанию: "%s"',
    'Default columns for new projects (Comma-separated)' => 'Колонки по умолчанию для новых проектов (разделять запятой)',
    'Task assignee change' => 'Изменен назначенный',
    '%s change the assignee of the task #%d to %s' => '%s сменил назначенного для задачи #%d на %s',
    '%s changed the assignee of the task %s to %s' => '%s сменил назначенного для задачи %s на %s',
    'New password for the user "%s"' => 'Новый пароль для пользователя "%s"',
    'Choose an event' => 'Выберите событие',
    'Github commit received' => 'Github: коммит получен',
    'Github issue opened' => 'Github: новая проблема',
    'Github issue closed' => 'Github: проблема закрыта',
    'Github issue reopened' => 'Github: проблема переоткрыта',
    'Github issue assignee change' => 'Github: сменить ответственного за проблему',
    'Github issue label change' => 'Github: ярлык проблемы изменен',
    'Create a task from an external provider' => 'Создать задачу из внешнего источника',
    'Change the assignee based on an external username' => 'Изменить назначенного основываясь на внешнем имени пользователя',
    'Change the category based on an external label' => 'Изменить категорию основываясь на внешнем ярлыке',
    'Reference' => 'Ссылка',
    'Reference: %s' => 'Ссылка: %s',
    'Label' => 'Ярлык',
    'Database' => 'База данных',
    'About' => 'Информация',
    'Database driver:' => 'Драйвер базы данных',
    'Board settings' => 'Настройки доски',
    'URL and token' => 'URL и токен',
    'Webhook settings' => 'Параметры Webhook',
    'URL for task creation:' => 'URL для создания задачи:',
    'Reset token' => 'Перезагрузить токен',
    'API endpoint:' => 'API endpoint:',
    'Refresh interval for private board' => 'Период обновления для частных досок',
    'Refresh interval for public board' => 'Период обновления для публичных досок',
    'Task highlight period' => 'Время подсвечивания задачи',
    'Period (in second) to consider a task was modified recently (0 to disable, 2 days by default)' => 'Период (в секундах) в течении которого задача считается недавно измененной (0 для выключения, 2 дня по умолчанию)',
    'Frequency in second (60 seconds by default)' => 'Частота в секундах (60 секунд по умолчанию)',
    'Frequency in second (0 to disable this feature, 10 seconds by default)' => 'Частота в секундах (0 для выключения, 10 секунд по умолчанию)',
    'Application URL' => 'URL приложения',
    'Example: http://example.kanboard.net/ (used by email notifications)' => 'Пример: http://example.kanboard.net (используется в email уведомлениях)',
    'Token regenerated.' => 'Токен пересоздан',
    'Date format' => 'Формат даты',
    'ISO format is always accepted, example: "%s" and "%s"' => 'Время должно быть в ISO-формате, например: "%s" или "%s"',
    'New private project' => 'Новый проект с ограниченным доступом',
    'This project is private' => 'Это проект с ограниченным доступом',
    'Type here to create a new sub-task' => 'Печатайте сюда чтобы создать подзадачу',
    'Add' => 'Добавить',
    'Estimated time: %s hours' => 'Планируемое время: %s часов',
    'Time spent: %s hours' => 'Потрачено времени: %s часов',
    'Started on %B %e, %Y' => 'Начато %B %e, %Y',
    'Start date' => 'Дата начала',
    'Time estimated' => 'Планируемое время',
    'There is nothing assigned to you.' => 'Вам ничего не назначено',
    'My tasks' => 'Мои задачи',
    'Activity stream' => 'Текущая активность',
    'Dashboard' => 'Инфопанель',
    'Confirmation' => 'Подтверждение пароля',
    'Allow everybody to access to this project' => 'Разрешить любому',
    'Everybody have access to this project.' => 'Любой может получить доступ к этому проекту.',
    'Webhooks' => 'Webhooks',
    'API' => 'API',
    'Github webhooks' => 'Github webhooks',
    'Help on Github webhooks' => 'Помощь по Github webhooks',
    'Create a comment from an external provider' => 'Создать комментарий из внешнего источника',
    'Github issue comment created' => 'Github issue комментарий создан',
    'Project management' => 'Управление проектом',
    'My projects' => 'Мои проекты',
    'Columns' => 'Колонки',
    'Task' => 'Задача',
    'Your are not member of any project.' => 'Вы не состоите ни в одном проекте.',
    'Percentage' => 'Процент',
    'Number of tasks' => 'Количество задач',
    'Task distribution' => 'Распределение задач',
    'Reportings' => 'Отчетность',
    'Task repartition for "%s"' => 'Распределение задач для "%s"',
    'Analytics' => 'Аналитика',
    'Subtask' => 'Подзадача',
    'My subtasks' => 'Мои подзадачи',
    'User repartition' => 'Перераспределение пользователей',
    'User repartition for "%s"' => 'Перераспределение пользователей для "%s"',
    'Clone this project' => 'Клонировать проект',
    'Column removed successfully.' => 'Колонка успешно удалена.',
    // 'Github Issue' => '',
    'Not enough data to show the graph.' => 'Недостаточно данных, чтобы показать график.',
    'Previous' => 'Предыдущий',
    'The id must be an integer' => 'Этот id должен быть целочисленным',
    'The project id must be an integer' => 'Id проекта должен быть целочисленным',
    'The status must be an integer' => 'Статус должен быть целочисленным',
    'The subtask id is required' => 'Id подзадачи обязателен',
    'The subtask id must be an integer' => 'Id подзадачи должен быть целочисленным',
    'The task id is required' => 'Id задачи обязателен',
    'The task id must be an integer' => 'Id задачи должен быть целочисленным',
    'The user id must be an integer' => 'Id пользователя должен быть целочисленным',
    'This value is required' => 'Это значение обязательно',
    'This value must be numeric' => 'Это значение должно быть цифровым',
    'Unable to create this task.' => 'Невозможно создать задачу.',
    'Cumulative flow diagram' => 'Накопительная диаграма',
    'Cumulative flow diagram for "%s"' => 'Накопительная диаграма для "%s"',
    'Daily project summary' => 'Ежедневное состояние проекта',
    'Daily project summary export' => 'Экспорт ежедневного резюме проекта',
    'Daily project summary export for "%s"' => 'Экспорт ежедневного резюме проекта "%s"',
    'Exports' => 'Экспорт',
    'This export contains the number of tasks per column grouped per day.' => 'Этот экспорт содержит ряд задач в колонках, сгруппированные по дням.',
    'Nothing to preview...' => 'Нет данных для предпросмотра...',
    'Preview' => 'Предпросмотр',
    'Write' => 'Написание',
    'Active swimlanes' => 'Активные ',
    'Add a new swimlane' => 'Добавить новую дорожку',
    'Change default swimlane' => 'Сменить стандартную дорожку',
    'Default swimlane' => 'Стандартная дорожка',
    'Do you really want to remove this swimlane: "%s"?' => 'Вы действительно хотите удалить дорожку "%s"?',
    'Inactive swimlanes' => 'Неактивные дорожки',
    'Set project manager' => 'Установить менеджера проекта',
    'Set project member' => 'Установить участника проекта',
    'Remove a swimlane' => 'Удалить дорожку',
    'Rename' => 'Переименовать',
    'Show default swimlane' => 'Показать стандартную дорожку',
    'Swimlane modification for the project "%s"' => 'Редактирование дорожки для проекта "%s"',
    'Swimlane not found.' => 'Дорожка не найдена.',
    'Swimlane removed successfully.' => 'Дорожка успешно удалена',
    'Swimlanes' => 'Дорожки',
    'Swimlane updated successfully.' => 'Дорожка успешно обновлена.',
    'The default swimlane have been updated successfully.' => 'Стандартная swimlane был успешно обновлен.',
    'Unable to create your swimlane.' => 'Невозможно создать дорожку.',
    'Unable to remove this swimlane.' => 'Невозможно удалить дорожку.',
    'Unable to update this swimlane.' => 'Невозможно обновить дорожку.',
    'Your swimlane have been created successfully.' => 'Ваша дорожка была успешно создан.',
    'Example: "Bug, Feature Request, Improvement"' => 'Например: "Баг, Фича, Улучшение"',
    'Default categories for new projects (Comma-separated)' => 'Стандартные категории для нового проекта (разделяются запятыми)',
    // 'Gitlab commit received' => '',
    'Gitlab issue opened' => 'Gitlab вопрос открыт',
    'Gitlab issue closed' => 'Gitlab вопрос закрыт',
    'Gitlab webhooks' => 'Gitlab webhooks',
    'Help on Gitlab webhooks' => 'Помощь по Gitlab webhooks',
    'Integrations' => 'Интеграции',
    'Integration with third-party services' => 'Интеграция со сторонними сервисами',
    'Role for this project' => 'Роли для этого проекта',
    'Project manager' => 'Менеджер проекта',
    'Project member' => 'Участник проекта',
    'A project manager can change the settings of the project and have more privileges than a standard user.' => 'Менеджер проекта может изменять настройки проекта и имеет больше привелегий чем стандартный пользователь.',
    'Gitlab Issue' => 'Gitlab вопросы',
    'Subtask Id' => 'Id подзадачи',
    'Subtasks' => 'Подзадачи',
    'Subtasks Export' => 'Экспортировать подзадачи',
    'Subtasks exportation for "%s"' => 'Экспорт подзадач для "%s"',
    'Task Title' => 'Загловок задачи',
    'Untitled' => 'Заголовок отсутствует',
    'Application default' => 'Приложение по умолчанию',
    'Language:' => 'Язык:',
    'Timezone:' => 'Временная зона:',
    'All columns' => 'Все колонки',
    'Calendar' => 'Календарь',
    'Next' => 'Следующий',
    // '#%d' => '',
    'All swimlanes' => 'Все дорожки',
    'All colors' => 'Все цвета',
    'All status' => 'Все статусы',
    'Moved to column %s' => 'Перемещена в колонку %s',
    'Change description' => 'Изменить описание',
    'User dashboard' => 'Пользователь панели мониторинга',
    'Allow only one subtask in progress at the same time for a user' => 'Разрешена только одна подзадача в разработке одновременно для одного пользователя',
    'Edit column "%s"' => 'Редактировать колонку "%s"',
    'Select the new status of the subtask: "%s"' => 'Выбрать новый статус для подзадачи: "%s"',
    'Subtask timesheet' => 'Табель времени подзадач',
    'There is nothing to show.' => 'Здесь ничего нет.',
    'Time Tracking' => 'Учет времени',
    'You already have one subtask in progress' => 'У вас уже есть одна задача в разработке',
    'Which parts of the project do you want to duplicate?' => 'Какие части проекта должны быть дублированы?',
    // 'Disallow login form' => '',
    // 'Bitbucket commit received' => '',
    'Bitbucket webhooks' => 'BitBucket webhooks',
    'Help on Bitbucket webhooks' => 'Помощь по BitBucket webhooks',
    'Start' => 'Начало',
    'End' => 'Конец',
    'Task age in days' => 'Возраст задачи в днях',
    'Days in this column' => 'Дней в этой колонке',
    // '%dd' => '',
    'Add a link' => 'Добавить ссылку на другие задачи',
    'Add a new link' => 'Добавление новой ссылки',
    'Do you really want to remove this link: "%s"?' => 'Вы уверены что хотите удалить ссылку: "%s"?',
    'Do you really want to remove this link with task #%d?' => 'Вы уверены что хотите удалить ссылку вместе с задачей #%d?',
    'Field required' => 'Поле обязательно для заполнения',
    'Link added successfully.' => 'Ссылка успешно добавлена',
    'Link updated successfully.' => 'Ссылка успешно обновлена',
    'Link removed successfully.' => 'Ссылка успешно удалена',
    'Link labels' => 'Метки для ссылки',
    'Link modification' => 'Обновление ссылки',
    'Links' => 'Ссылки',
    'Link settings' => 'Настройки ссылки',
    'Opposite label' => 'Ярлык напротив',
    'Remove a link' => 'Удалить ссылку',
    'Task\'s links' => 'Ссылки задачи',
    'The labels must be different' => 'Ярлыки должны быть разными',
    'There is no link.' => 'Это не ссылка',
    'This label must be unique' => 'Этот ярлык должна быть уникальной ',
    'Unable to create your link.' => 'Не удается создать эту ссылку.',
    'Unable to update your link.' => 'Не удается обновить эту ссылку.',
    'Unable to remove this link.' => 'Не удается удалить эту ссылку.',
    'relates to' => 'связана с',
    'blocks' => 'блокирует',
    'is blocked by' => 'заблокирована в',
    'duplicates' => 'дублирует',
    'is duplicated by' => 'дублирована в',
    'is a child of' => 'наследник',
    'is a parent of' => 'родитель',
    'targets milestone' => 'часть этапа',
    'is a milestone of' => 'является частью этапа',
    'fixes' => 'исправляет',
    'is fixed by' => 'исправлено в',
    'This task' => 'Эта задача',
    '<1h' => '<1ч',
    // '%dh' => '',
    // '%b %e' => '',
    'Expand tasks' => 'Развернуть задачи',
    'Collapse tasks' => 'Свернуть задачи',
    'Expand/collapse tasks' => 'Развернуть/свернуть задачи',
    'Close dialog box' => 'Закрыть диалог',
    'Submit a form' => 'Отправить форму',
    'Board view' => 'Просмотр доски',
    'Keyboard shortcuts' => 'Горячие клавиши',
    'Open board switcher' => 'Открыть переключатель доски',
    'Application' => 'Приложение',
    // 'since %B %e, %Y at %k:%M %p' => '',
    'Compact view' => 'Компактный вид',
    'Horizontal scrolling' => 'Широкий вид',
    'Compact/wide view' => 'Компактный/широкий вид',
    'No results match:' => 'Отсутствуют результаты:',
    'Remove hourly rate' => 'Удалить почасовую ставку',
    'Do you really want to remove this hourly rate?' => 'Вы действительно хотите удалить эту почасовую ставку?',
    'Hourly rates' => 'Почасовые ставки',
    'Hourly rate' => 'Почасовая ставка',
    'Currency' => 'Валюта',
    'Effective date' => 'Дата вступления в силу',
    'Add new rate' => 'Добавить новый показатель',
    'Rate removed successfully.' => 'Показатель успешно удален.',
    'Unable to remove this rate.' => 'Не удается удалить этот показатель.',
    'Unable to save the hourly rate.' => 'Не удается сохранить почасовую ставку.',
    'Hourly rate created successfully.' => 'Почасовая ставка успешно создана.',
    'Start time' => 'Время начала',
    'End time' => 'Время завершения',
    'Comment' => 'Комментарий',
    'All day' => 'Весь день',
    'Day' => 'День',
    'Manage timetable' => 'Управление графиками',
    'Overtime timetable' => 'График сверхурочных',
    'Time off timetable' => 'Время в графике',
    'Timetable' => 'График',
    'Work timetable' => 'Work timetable',
    'Week timetable' => 'График на неделю',
    'Day timetable' => 'График на день',
    'From' => 'От кого',
    'To' => 'Кому',
    'Time slot created successfully.' => 'Временной интервал успешно создан.',
    'Unable to save this time slot.' => 'Невозможно сохранить этот временной интервал.',
    'Time slot removed successfully.' => 'Временной интервал успешно удален.',
    'Unable to remove this time slot.' => 'Не удается удалить этот временной интервал.',
    'Do you really want to remove this time slot?' => 'Вы действительно хотите удалить этот период времени?',
    'Remove time slot' => 'Удалить новый интервал времени',
    'Add new time slot' => 'Добавить новый интервал времени',
    // 'This timetable is used when the checkbox "all day" is checked for scheduled time off and overtime.' => '',
    'Files' => 'Файлы',
    'Images' => 'Изображения',
    'Private project' => 'Приватный проект',
    'Amount' => 'Количество',
    'AUD - Australian Dollar' => 'AUD - Австралийский доллар',
    'Budget' => 'Бюджет',
    'Budget line' => 'Статья бюджета',
    'Budget line removed successfully.' => 'Бюджетная статья успешно удалена.',
    'Budget lines' => 'Статьи бюджета',
    'CAD - Canadian Dollar' => 'CAD - Канадский доллар',
    'CHF - Swiss Francs' => 'CHF - Швейцарский Франк',
    'Cost' => 'Стоимость',
    'Cost breakdown' => 'Детализация затрат',
    'Custom Stylesheet' => 'Пользовательский стиль',
    'download' => 'загрузить',
    'Do you really want to remove this budget line?' => 'Вы действительно хотите удалить эту статью бюджета?',
    'EUR - Euro' => 'EUR - Евро',
    'Expenses' => 'Расходы',
    'GBP - British Pound' => 'GBP - Британский фунт',
    'INR - Indian Rupee' => 'INR - Индийский рупий',
    'JPY - Japanese Yen' => 'JPY - Японскай йена',
    'New budget line' => 'Новая статья бюджета',
    'NZD - New Zealand Dollar' => 'NZD - Новозеландский доллар',
    'Remove a budget line' => 'Удалить строку в бюджете',
    'Remove budget line' => 'Удалить статью бюджета',
    'RSD - Serbian dinar' => 'RSD - Сербский динар',
    'The budget line have been created successfully.' => 'Статья бюджета успешно создана.',
    'Unable to create the budget line.' => 'Не удается создать эту статью бюджета.',
    'Unable to remove this budget line.' => 'Не удается удалить эту статью бюджета.',
    'USD - US Dollar' => 'USD - доллар США',
    'Remaining' => 'Прочее',
    'Destination column' => 'Колонка назначения',
    'Move the task to another column when assigned to a user' => 'Переместить задачу в другую колонку, когда она назначена пользователю',
    'Move the task to another column when assignee is cleared' => 'Переместить задачу в другую колонку, когда назначение снято ',
    'Source column' => 'Исходная колонка',
    'Show subtask estimates (forecast of future work)' => 'Показать оценку подзадач (прогноз будущей работы)',
    'Transitions' => 'Перемещения',
    'Executer' => 'Исполнитель',
    'Time spent in the column' => 'Время проведенное в колонке',
    'Task transitions' => 'Перемещения задач',
    'Task transitions export' => 'Экспорт перемещений задач',
    'This report contains all column moves for each task with the date, the user and the time spent for each transition.' => 'Этот отчет содержит все перемещения задач в колонках с датой, пользователем и времени, затраченным для каждого перемещения.',
    'Currency rates' => 'Курсы валют',
    'Rate' => 'Курс',
    'Change reference currency' => 'Изменить справочник валют',
    'Add a new currency rate' => 'Add a new currency rate',
    'Currency rates are used to calculate project budget.' => 'Курсы валют используются для расчета бюджета проекта.',
    'Reference currency' => 'Справочник валют',
    'The currency rate have been added successfully.' => 'Курс валюты был успешно добавлен.',
    'Unable to add this currency rate.' => 'Невозможно добавить этот курс валюты.',
    'Send notifications to a Slack channel' => 'Отправлять уведомления в канал Slack',
    'Webhook URL' => 'Webhook URL',
    'Help on Slack integration' => 'Помощь по интеграции Slack',
    '%s remove the assignee of the task %s' => '%s удалить назначенную задачу %s',
    'Send notifications to Hipchat' => 'Отправлять уведомления в Hipchat',
    'API URL' => 'API URL',
    'Room API ID or name' => 'API ID комнаты или имя',
    'Room notification token' => 'Ключь комнаты для уведомлений',
    'Help on Hipchat integration' => 'Помощь по интеграции Hipchat',
    'Enable Gravatar images' => 'Включить Gravatar изображения',
    'Information' => 'Информация',
    'Check two factor authentication code' => 'Проверка кода двухфакторной авторизации',
    'The two factor authentication code is not valid.' => 'Код двухфакторной авторизации не валиден',
    'The two factor authentication code is valid.' => 'Код двухфакторной авторизации валиден',
    'Code' => 'Код',
    'Two factor authentication' => 'Двухфакторная авторизация',
    'Enable/disable two factor authentication' => 'Включить/выключить двухфакторную авторизацию',
    'This QR code contains the key URI: ' => 'Это QR-код содержит ключевую URI:',
    'Save the secret key in your TOTP software (by example Google Authenticator or FreeOTP).' => 'Сохраните Ваш секретный ключ в TOTP программе (например Google Autentificator или FreeOTP).',
    'Check my code' => 'Проверить мой код',
    'Secret key: ' => 'Секретный ключ: ',
    'Test your device' => 'Проверьте свое устройство',
    'Assign a color when the task is moved to a specific column' => 'Назначить цвет, когда задача перемещается в определенную колонку',
    '%s via Kanboard' => '%s через Канборд',
    // 'uploaded by: %s' => '',
    // 'uploaded on: %s' => '',
    'size: %s' => 'размер: %s',
    'Burndown chart for "%s"' => 'Диаграмма сгорания для « %s »',
    'Burndown chart' => 'Диаграмма сгорания',
    'This chart show the task complexity over the time (Work Remaining).' => 'Эта диаграмма показывают сложность задачи по времени (оставшейся работы).',
    'Screenshot taken %s' => 'Принято скриншотов %s',
    'Add a screenshot' => 'Прикрепить картинку',
    'Take a screenshot and press CTRL+V or ⌘+V to paste here.' => 'Сделайте скриншот и нажмите CTRL+V или ⌘+V для вложения',
    'Screenshot uploaded successfully.' => 'Скриншет успешно загружен',
    'SEK - Swedish Krona' => 'SEK - Шведская крона',
    'The project identifier is an optional alphanumeric code used to identify your project.' => 'Идентификатор проекта - это опциональный буквенно-цифровой код использующийся для идентификации проекта',
    'Identifier' => 'Идентификатор',
    'Postmark (incoming emails)' => 'Postmark (входящие сообщения)',
    'Help on Postmark integration' => 'Справка о Postmark интеграции',
    'Mailgun (incoming emails)' => 'Mailgun (входящие сообщения)',
    'Help on Mailgun integration' => 'Справка о Mailgun интеграции',
    'Sendgrid (incoming emails)' => 'Sendgrid (входящие сообщения)',
    'Help on Sendgrid integration' => 'Справка о Sendgrid интеграции',
    'Disable two factor authentication' => 'Выключить двухфакторную авторизацию',
    'Do you really want to disable the two factor authentication for this user: "%s"?' => 'Вы действительно хотите выключить двухфакторную авторизацию для пользователя "%s"?',
    'Edit link' => 'Редактировать ссылку',
    'Start to type task title...' => 'Начните вводить название задачи...',
    'A task cannot be linked to itself' => 'Задача не может быть связана с собой же',
    'The exact same link already exists' => 'Такая ссылка уже существует',
    'Recurrent task is scheduled to be generated' => 'Периодическая задача запланирована к созданию',
    'Recurring information' => 'Информация о периодичности',
    'Score' => 'Оценка',
    'The identifier must be unique' => 'Идентификатор должен быть уникальным',
    'This linked task id doesn\'t exists' => 'Этот ID звязанной задачи не существует',
    'This value must be alphanumeric' => 'Это значение должно быть буквенно-цифровым',
    'Edit recurrence' => 'Завершить повторение',
    'Generate recurrent task' => 'Создать повторяющуюся задачу',
    'Trigger to generate recurrent task' => 'Триггер для генерации периодической задачи',
    'Factor to calculate new due date' => 'Коэффициент для рассчета новой даты',
    'Timeframe to calculate new due date' => 'Вычисление для рассчета новой даты',
    'Base date to calculate new due date' => 'Базовая дата вычисления новой даты',
    'Action date' => 'Дата действия',
    'Base date to calculate new due date: ' => 'Базовая дата вычисления новой даты: ',
    'This task has created this child task: ' => 'Эта задача создала эту дочернюю задачу:',
    'Day(s)' => 'День(й)',
    'Existing due date' => 'Существующий срок',
    'Factor to calculate new due date: ' => 'Коэффициент для рассчета новой даты: ',
    'Month(s)' => 'Месяц(а)',
    'Recurrence' => 'Повторение',
    'This task has been created by: ' => 'Эта задача была создана: ',
    'Recurrent task has been generated:' => 'Периодическая задача была сформирована:',
    'Timeframe to calculate new due date: ' => 'Вычисление для рассчета новой даты: ',
    'Trigger to generate recurrent task: ' => 'Триггер для генерации периодической задачи: ',
    'When task is closed' => 'Когда задача закрывается',
    'When task is moved from first column' => 'Когда задача перемещается из первой колонки',
    'When task is moved to last column' => 'Когда задача перемещается в последнюю колонку',
    'Year(s)' => 'Год(а)',
    'Jabber (XMPP)' => 'Jabber (XMPP)',
    'Send notifications to Jabber' => 'Отправлять уведомления в Jabber',
    'XMPP server address' => 'Адрес Jabber сервера',
    'Jabber domain' => 'Домен Jabber',
    'Jabber nickname' => 'Имя пользователя Jabber',
    'Multi-user chat room' => 'Многопользовательский чат',
    'Help on Jabber integration' => 'Помощь по интеграции Jabber',
    'The server address must use this format: "tcp://hostname:5222"' => 'Адрес сервера должен быть в формате: tcp://hostname:5222',
    'Calendar settings' => 'Настройки календаря',
    'Project calendar view' => 'Вид календаря проекта',
    'Project settings' => 'Настройки проекта',
    'Show subtasks based on the time tracking' => 'Показать подзадачи, основанные на отслеживании времени',
    'Show tasks based on the creation date' => 'Показать задачи в зависимости от даты создания',
    'Show tasks based on the start date' => 'Показать задачи в зависимости от даты начала',
    'Subtasks time tracking' => 'Отслеживание времени подзадач',
    'User calendar view' => 'Просмотреть календарь пользователя',
    'Automatically update the start date' => 'Автоматическое обновление даты начала',
    'iCal feed' => 'iCal данные',
    'Preferences' => 'Предпочтения',
    'Security' => 'Безопастность',
    'Two factor authentication disabled' => 'Двухфакторная аутентификация отключена',
    'Two factor authentication enabled' => 'Включена двухфакторная аутентификация',
    'Unable to update this user.' => 'Не удается обновить этого пользователя.',
    'There is no user management for private projects.' => 'Там нет управления пользователя для частных проектов',
    // 'User that will receive the email' => '',
    // 'Email subject' => '',
    // 'Date' => '',
    // 'By @%s on Bitbucket' => '',
    // 'Bitbucket Issue' => '',
    // 'Commit made by @%s on Bitbucket' => '',
    // 'Commit made by @%s on Github' => '',
    // 'By @%s on Github' => '',
    // 'Commit made by @%s on Gitlab' => '',
    // 'Add a comment log when moving the task between columns' => '',
    // 'Move the task to another column when the category is changed' => '',
    // 'Send a task by email to someone' => '',
    // 'Reopen a task' => '',
    // 'Bitbucket issue opened' => '',
    // 'Bitbucket issue closed' => '',
    // 'Bitbucket issue reopened' => '',
    // 'Bitbucket issue assignee change' => '',
    // 'Bitbucket issue comment created' => '',
    // 'Column change' => '',
    // 'Position change' => '',
    // 'Swimlane change' => '',
    // 'Assignee change' => '',
    // '[%s] Overdue tasks' => '',
    // 'Notification' => '',
    // '%s moved the task #%d to the first swimlane' => '',
    // '%s moved the task #%d to the swimlane "%s"' => '',
    // 'Swimlane' => '',
    // 'Budget overview' => '',
    // 'Type' => '',
    // 'There is not enough data to show something.' => '',
    // 'Gravatar' => '',
    // 'Hipchat' => '',
    // 'Slack' => '',
    // '%s moved the task %s to the first swimlane' => '',
    // '%s moved the task %s to the swimlane "%s"' => '',
    // 'This report contains all subtasks information for the given date range.' => '',
    // 'This report contains all tasks information for the given date range.' => '',
    // 'Project activities for %s' => '',
    // 'view the board on Kanboard' => '',
    // 'The task have been moved to the first swimlane' => '',
    // 'The task have been moved to another swimlane:' => '',
    // 'Overdue tasks for the project "%s"' => '',
    // 'New title: %s' => '',
    // 'The task is not assigned anymore' => '',
    // 'New assignee: %s' => '',
    // 'There is no category now' => '',
    // 'New category: %s' => '',
    // 'New color: %s' => '',
    // 'New complexity: %d' => '',
    // 'The due date have been removed' => '',
    // 'There is no description anymore' => '',
    // 'Recurrence settings have been modified' => '',
    // 'Time spent changed: %sh' => '',
    // 'Time estimated changed: %sh' => '',
    // 'The field "%s" have been updated' => '',
    // 'The description have been modified' => '',
    // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
    // 'Swimlane: %s' => '',
    // 'I want to receive notifications for:' => '',
    // 'All tasks' => '',
    // 'Only for tasks assigned to me' => '',
    // 'Only for tasks created by me' => '',
    // 'Only for tasks created by me and assigned to me' => '',
    // '%A' => '',
    // '%b %e, %Y, %k:%M %p' => '',
    // 'New due date: %B %e, %Y' => '',
    // 'Start date changed: %B %e, %Y' => '',
    // '%k:%M %p' => '',
    // '%%Y-%%m-%%d' => '',
    // 'Total for all columns' => '',
    // 'You need at least 2 days of data to show the chart.' => '',
    // '<15m' => '',
    // '<30m' => '',
    // 'Stop timer' => '',
    // 'Start timer' => '',
    // 'Add project member' => '',
    // 'Enable notifications' => '',
    // 'My activity stream' => '',
    // 'My calendar' => '',
    // 'Search tasks' => '',
    // 'Back to the calendar' => '',
    // 'Filters' => '',
    // 'Reset filters' => '',
    // 'My tasks due tomorrow' => '',
    // 'Tasks due today' => '',
    // 'Tasks due tomorrow' => '',
    // 'Tasks due yesterday' => '',
    // 'Closed tasks' => '',
    // 'Open tasks' => '',
    // 'Not assigned' => '',
    // 'View advanced search syntax' => '',
    // 'Overview' => '',
    // '%b %e %Y' => '',
    // 'Board/Calendar/List view' => '',
    // 'Switch to the board view' => '',
    // 'Switch to the calendar view' => '',
    // 'Switch to the list view' => '',
    // 'Go to the search/filter box' => '',
    // 'There is no activity yet.' => '',
    // 'No tasks found.' => '',
    // 'Keyboard shortcut: "%s"' => '',
    // 'List' => '',
    // 'Filter' => '',
    // 'Advanced search' => '',
    // 'Example of query: ' => '',
    // 'Search by project: ' => '',
    // 'Search by column: ' => '',
    // 'Search by assignee: ' => '',
    // 'Search by color: ' => '',
    // 'Search by category: ' => '',
    // 'Search by description: ' => '',
    // 'Search by due date: ' => '',
    // 'Lead and Cycle time for "%s"' => '',
    // 'Average time spent into each column for "%s"' => '',
    // 'Average time spent into each column' => '',
    // 'Average time spent' => '',
    // 'This chart show the average time spent into each column for the last %d tasks.' => '',
    // 'Average Lead and Cycle time' => '',
    // 'Average lead time: ' => '',
    // 'Average cycle time: ' => '',
    // 'Cycle Time' => '',
    // 'Lead Time' => '',
    // 'This chart show the average lead and cycle time for the last %d tasks over the time.' => '',
    // 'Average time into each column' => '',
    // 'Lead and cycle time' => '',
    // 'Google Authentication' => '',
    // 'Help on Google authentication' => '',
    // 'Github Authentication' => '',
    // 'Help on Github authentication' => '',
    // 'Channel/Group/User (Optional)' => '',
    // 'Lead time: ' => '',
    // 'Cycle time: ' => '',
    // 'Time spent into each column' => '',
    // 'The lead time is the duration between the task creation and the completion.' => '',
    // 'The cycle time is the duration between the start date and the completion.' => '',
    // 'If the task is not closed the current time is used instead of the completion date.' => '',
    // 'Set automatically the start date' => '',
    // 'Edit Authentication' => '',
    // 'Google Id' => '',
    // 'Github Id' => '',
    // 'Remote user' => '',
    // 'Remote users do not store their password in Kanboard database, examples: LDAP, Google and Github accounts.' => '',
    // 'If you check the box "Disallow login form", credentials entered in the login form will be ignored.' => '',
    // 'By @%s on Gitlab' => '',
    // 'Gitlab issue comment created' => '',
    // 'New remote user' => '',
    // 'New local user' => '',
    // 'Default task color' => '',
    // 'Hide sidebar' => '',
    // 'Expand sidebar' => '',
    // 'This feature does not work with all browsers.' => '',
    // 'There is no destination project available.' => '',
    // 'Trigger automatically subtask time tracking' => '',
    // 'Include closed tasks in the cumulative flow diagram' => '',
    // 'Current swimlane: %s' => '',
    // 'Current column: %s' => '',
    // 'Current category: %s' => '',
    // 'no category' => '',
    // 'Current assignee: %s' => '',
    // 'not assigned' => '',
    // 'Author:' => '',
    // 'contributors' => '',
    // 'License:' => '',
    // 'License' => '',
    // 'Project Administrator' => '',
    // 'Enter the text below' => '',
    // 'Gantt chart for %s' => '',
    // 'Sort by position' => '',
    // 'Sort by date' => '',
    // 'Add task' => '',
    // 'Start date:' => '',
    // 'Due date:' => '',
    // 'There is no start date or due date for this task.' => '',
    // 'Moving or resizing a task will change the start and due date of the task.' => '',
    // 'There is no task in your project.' => '',
    // 'Gantt chart' => '',
    // 'People who are project managers' => '',
    // 'People who are project members' => '',
    // 'NOK - Norwegian Krone' => '',
    // 'Show this column' => '',
    // 'Hide this column' => '',
    // 'open file' => '',
    // 'End date' => '',
    // 'Users overview' => '',
    // 'Managers' => '',
    // 'Members' => '',
    // 'Shared project' => '',
    // 'Project managers' => '',
    // 'Project members' => '',
    // 'Gantt chart for all projects' => '',
    // 'Projects list' => '',
    // 'Gantt chart for this project' => '',
    // 'Project board' => '',
    // 'End date:' => '',
    // 'There is no start date or end date for this project.' => '',
    // 'Projects Gantt chart' => '',
    // 'Start date: %s' => '',
    // 'End date: %s' => '',
);