File tree Expand file tree Collapse file tree 5 files changed +9
-5
lines changed
resources/ru/mystamps/i18n
webapp/WEB-INF/views/series
test/java/ru/mystamps/web/tests/cases Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,8 @@ t_enter = Sign in
81
81
82
82
# series/add.html
83
83
t_add_series_ucfirst = Add stamp series
84
+ t_day = Day
85
+ t_month = Month
84
86
t_year = Year
85
87
t_quantity = Quantity
86
88
t_perforated = Perforated
Original file line number Diff line number Diff line change @@ -81,6 +81,8 @@ t_enter = Войти
81
81
82
82
# series/add.html
83
83
t_add_series_ucfirst = Добавить серию марок
84
+ t_day = День
85
+ t_month = Месяц
84
86
t_year = Год
85
87
t_quantity = Количество
86
88
t_perforated = Перфорированная
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ <h3 th:text="#{t_add_series_ucfirst}">
120
120
< div class ="row ">
121
121
< div class ="col-xs-4 ">
122
122
< select class ="form-control " th:field ="*{day} ">
123
- < option value =""> </ option >
123
+ < option value ="" th:text =" #{t_day} " > Day </ option >
124
124
< option value ="1 "> 1</ option >
125
125
< option value ="2 "> 2</ option >
126
126
< option value ="3 "> 3</ option >
@@ -157,7 +157,7 @@ <h3 th:text="#{t_add_series_ucfirst}">
157
157
158
158
< div class ="col-xs-4 ">
159
159
< select class ="form-control " th:field ="*{month} ">
160
- < option value =""> </ option >
160
+ < option value ="" th:text =" #{t_month} " > Month </ option >
161
161
< option value ="1 "> 1</ option >
162
162
< option value ="2 "> 2</ option >
163
163
< option value ="3 "> 3</ option >
@@ -175,7 +175,7 @@ <h3 th:text="#{t_add_series_ucfirst}">
175
175
176
176
< div class ="col-xs-4 ">
177
177
< select class ="form-control " th:field ="*{year} " id ="year ">
178
- < option value =""> </ option >
178
+ < option value ="" th:text =" #{t_year} " > Year </ option >
179
179
<!--/*/
180
180
<option th:each="year : ${years}" th:value="${year.key}" th:text="${year.value}"></option>
181
181
/*/-->
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ public class WhenAdminAddSeries extends WhenAnyUserAtAnyPageWithForm<AddSeriesPa
68
68
private static final String EMPTY_IMAGE_PATH ;
69
69
70
70
static {
71
- EXPECTED_YEARS .add ("" );
71
+ EXPECTED_YEARS .add ("Year " );
72
72
// years in reverse order
73
73
for (int i = CURRENT_YEAR ; i >= SINCE_YEAR ; i --) {
74
74
EXPECTED_YEARS .add (String .valueOf (i ));
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public class WhenUserAddSeries extends WhenAnyUserAtAnyPageWithForm<AddSeriesPag
61
61
private static final String EMPTY_IMAGE_PATH ;
62
62
63
63
static {
64
- EXPECTED_YEARS .add ("" );
64
+ EXPECTED_YEARS .add ("Year " );
65
65
// years in reverse order
66
66
for (int i = CURRENT_YEAR ; i >= SINCE_YEAR ; i --) {
67
67
EXPECTED_YEARS .add (String .valueOf (i ));
You can’t perform that action at this time.
0 commit comments