@@ -2,7 +2,6 @@ import '../../../../common/app-translation/translation.extensions.dart';
2
2
3
3
enum FilterPanelTranslationNames implements Translation {
4
4
clearItems,
5
- itemsLeft,
6
5
all,
7
6
active,
8
7
completed
@@ -13,23 +12,18 @@ final Map<String, String> en = <FilterPanelTranslationNames, String>{
13
12
FilterPanelTranslationNames .all: 'All' ,
14
13
FilterPanelTranslationNames .active: 'Active' ,
15
14
FilterPanelTranslationNames .completed: 'Completed' ,
16
- FilterPanelTranslationNames .itemsLeft: '@count items left' ,
17
15
}.st;
18
16
19
17
final Map <String , String > ru = < FilterPanelTranslationNames , String > {
20
18
FilterPanelTranslationNames .clearItems: 'Очистить выполненные' ,
21
19
FilterPanelTranslationNames .all: 'Все' ,
22
20
FilterPanelTranslationNames .active: 'Активные' ,
23
21
FilterPanelTranslationNames .completed: 'Выполненные' ,
24
- FilterPanelTranslationNames .itemsLeft:
25
- '@count элемент остался|@count элемента осталось|@count элементов осталось' ,
26
22
}.st;
27
23
28
24
final Map <String , String > uk = < FilterPanelTranslationNames , String > {
29
25
FilterPanelTranslationNames .clearItems: 'Очистити виконані' ,
30
26
FilterPanelTranslationNames .all: 'Усі' ,
31
27
FilterPanelTranslationNames .active: 'Активні' ,
32
28
FilterPanelTranslationNames .completed: 'Виконані' ,
33
- FilterPanelTranslationNames .itemsLeft:
34
- '@count елемент залишився|@count елементи залишились|@count елементів залишилось' ,
35
29
}.st;
0 commit comments