1
1
<!DOCTYPE html>
2
- < html lang ="ru ">
2
+ < html lang ="en ">
3
3
4
4
< head >
5
5
< meta charset ="UTF-8 ">
6
6
< meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
7
7
< meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
8
8
< title > Wallet</ title >
9
9
10
-
10
+ < link rel =" icon " href =" img/wallet.svg " >
11
11
< link rel ="stylesheet " href ="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css "
12
12
integrity ="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w== "
13
13
crossorigin ="anonymous " />
19
19
< main class ="wallet ">
20
20
< aside class ="wallet__panel ">
21
21
< div class ="cards ">
22
- < h2 class ="cards__title "> Ваши карты </ h2 >
22
+ < h2 class ="cards__title "> Your cards </ h2 >
23
23
< div class ="cards__slide-btns ">
24
24
< div id ="cards-prev-btn " class ="cards__slide-btn "> ➜</ div >
25
25
< div id ="cards-next-btn " class ="cards__slide-btn "> ➜</ div >
@@ -30,51 +30,49 @@ <h2 class="cards__title">Ваши карты</h2>
30
30
</ div >
31
31
</ div >
32
32
< div class ="transaction ">
33
- < h2 class ="transaction__title "> Добавить новую транзакцию</ h2 >
34
- < form action ="# " class ="transaction__form ">
35
- < label for ="transaction-amount-input " class ="transaction__label "> Описание транзакции</ label >
36
- < input id ="transaction-descr-input " type ="text " class ="transaction__descr-input "
37
- placeholder ="Описание транзакции ">
38
- < label for ="transaction-amount-input " class ="transaction__label "> Тип транзакции</ label >
33
+ < h2 class ="transaction__title "> Add new transaction</ h2 >
34
+ < form class ="transaction__form ">
35
+ < label for ="transaction-amount-input " class ="transaction__label "> Description</ label >
36
+ < input id ="transaction-descr-input " type ="text " class ="transaction__descr-input " placeholder ="Description ">
37
+ < label for ="transaction-amount-input " class ="transaction__label "> Type</ label >
39
38
< select id ="transaction-type-input " name ="transaction-type " class ="transaction__type-select ">
40
- < option value ="" disabled selected > Выберите категорию </ option >
41
- < option value ="Пополнение " > Пополнение </ option >
42
- < option value ="Переводы " > Переводы </ option >
43
- < option value ="Продукты " > Продукты </ option >
44
- < option value ="Медицина " > Медицина </ option >
45
- < option value ="Рестораны " > Рестораны </ option >
46
- < option value ="Услуги " > Услуги </ option >
47
- < option value ="Развлечения " > Развлечения </ option >
48
- < option value ="Транспорт " > Транспорт </ option >
49
- < option value ="Другое " > Другое </ option >
39
+ < option value ="" disabled selected > Choose category </ option >
40
+ < option value ="Refill " > Refill </ option >
41
+ < option value ="Transfer " > Transfer </ option >
42
+ < option value ="Products " > Products </ option >
43
+ < option value ="Medicine " > Medicine </ option >
44
+ < option value ="Restaurants " > Restaurants </ option >
45
+ < option value ="Services " > Services </ option >
46
+ < option value ="Entertainments " > Entertainments </ option >
47
+ < option value ="Transport " > Transport </ option >
48
+ < option value ="Other " > Other </ option >
50
49
</ select >
51
- < label for ="transaction-amount-input " class ="transaction__label "> Дата транзакции </ label >
52
- < input id ="transaction-date-input " type ="date " class ="transaction__date-input " placeholder =" Дата " >
50
+ < label for ="transaction-amount-input " class ="transaction__label "> Transaction date </ label >
51
+ < input id ="transaction-date-input " type ="date " class ="transaction__date-input ">
53
52
< label for ="transaction-amount-input " class ="transaction__label ">
54
- Сумма транзакции
53
+ Transaction amount
55
54
< br >
56
- (Отрицательное значение - расходы )
55
+ (Negative value - costs )
57
56
</ label >
58
- < input id ="transaction-amount-input " type ="number " class ="transaction__amount-input "
59
- placeholder ="Сумма ">
60
- < button id ="transaction-confirm-btn " class ="transaction__confirm-btn "> Добавить</ button >
57
+ < input id ="transaction-amount-input " type ="number " class ="transaction__amount-input " placeholder ="Amount ">
58
+ < button id ="transaction-confirm-btn " class ="transaction__confirm-btn "> Add transaction</ button >
61
59
</ form >
62
60
</ div >
63
61
</ aside >
64
62
< div class ="wallet__content ">
65
63
< div class ="spendings ">
66
- < h2 class ="spendings__title "> Обзор </ h2 >
64
+ < h2 class ="spendings__title "> Overview </ h2 >
67
65
< div class ="spendings__content ">
68
66
< div class ="spendings__single ">
69
- < p class ="spendings__single-title "> Текущий баланс </ p >
67
+ < p class ="spendings__single-title "> Current balance </ p >
70
68
< div id ="balance-current " class ="spendings__single-amount "> 0</ div >
71
69
</ div >
72
70
< div class ="spendings__single ">
73
- < p class ="spendings__single-title "> Доходы </ p >
71
+ < p class ="spendings__single-title "> Income </ p >
74
72
< div id ="balance-up " class ="spendings__single-amount "> 0</ div >
75
73
</ div >
76
74
< div class ="spendings__single ">
77
- < p class ="spendings__single-title "> Расходы </ p >
75
+ < p class ="spendings__single-title "> Costs </ p >
78
76
< div id ="balance-down " class ="spendings__single-amount "> 0</ div >
79
77
</ div >
80
78
</ div >
@@ -84,13 +82,13 @@ <h2 class="spendings__title">Обзор</h2>
84
82
< canvas id ="myChart " class ="chart " width ="700px " height ="300px "> </ canvas >
85
83
</ div >
86
84
< div class ="transaction-history ">
87
- < h2 class ="transaction-history__title "> Все транзакции </ h2 >
85
+ < h2 class ="transaction-history__title "> All transactions </ h2 >
88
86
< div class ="transaction-history__header ">
89
- < p class ="transaction-history__descr "> Описание </ p >
90
- < p class ="transaction-history__descr "> Тип транзакции </ p >
91
- < p class ="transaction-history__descr "> Карта </ p >
92
- < p class ="transaction-history__descr "> Дата </ p >
93
- < p class ="transaction-history__descr "> Сумма </ p >
87
+ < p class ="transaction-history__descr "> Description </ p >
88
+ < p class ="transaction-history__descr "> Type </ p >
89
+ < p class ="transaction-history__descr "> Card </ p >
90
+ < p class ="transaction-history__descr "> Date </ p >
91
+ < p class ="transaction-history__descr "> Amount </ p >
94
92
</ div >
95
93
< div id ="transaction-history " class ="transaction-history__content ">
96
94
</ div >
0 commit comments