File tree 3 files changed +4
-2
lines changed
resources/ru/mystamps/i18n
webapp/WEB-INF/views/series
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ t_add_comment = Add comment
99
99
t_comment = Comment
100
100
t_image = Image
101
101
t_add_more_images_hint = Later you will be able to add additional images
102
+ t_not_chosen = Not chosen
102
103
103
104
# series/info.html
104
105
t_series_info = Info about series
Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ t_add_comment = Добавить комментарий
99
99
t_comment = Комментарий
100
100
t_image = Изображение
101
101
t_add_more_images_hint = Вы сможете добавить дополнительные изображения позже
102
+ t_not_chosen = Не выбрана
102
103
103
104
# series/info.html
104
105
t_series_info = Информация о серии
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ <h3 th:text="${#strings.capitalize(add_series)}">
124
124
</ label >
125
125
< div class ="col-sm-5 ">
126
126
< select id ="category " class ="form-control " required ="required " th:field ="*{category} ">
127
- < option value =""> </ option >
127
+ < option value ="" th:text =" #{t_not_chosen} " > Not chosen </ option >
128
128
<!--/*/
129
129
<option th:each="category : ${categories}" th:value="${category.id}" th:text="${category.name}"></option>
130
130
/*/-->
@@ -146,7 +146,7 @@ <h3 th:text="${#strings.capitalize(add_series)}">
146
146
</ label >
147
147
< div class ="col-sm-5 ">
148
148
< select id ="country " class ="form-control " th:field ="*{country} ">
149
- < option value =""> </ option >
149
+ < option value ="" th:text =" #{t_not_chosen} " > Not chosen </ option >
150
150
<!--/*/
151
151
<option th:each="country : ${countries}" th:value="${country.id}" th:text="${country.name}"></option>
152
152
/*/-->
You can’t perform that action at this time.
0 commit comments