Skip to content

Commit 0b423b4

Browse files
aarexerphp-coder
authored andcommitted
Fix Russian translation on series info page.
Fix #520
1 parent e103524 commit 0b423b4

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/main/resources/ru/mystamps/i18n/Messages.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ t_add_info = Add info
146146
t_was_selling_for = was selling for
147147
t_sold_to = sold to
148148
t_sold_for = for
149+
t_not_chosen_masculine = Not chosen
149150

150151
# category/add.html
151152

src/main/resources/ru/mystamps/i18n/Messages_ru.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ t_add_info = Добавить
146146
t_was_selling_for = продавал за
147147
t_sold_to = продал
148148
t_sold_for = за
149+
t_not_chosen_masculine = Не выбран
149150

150151
# category/add.html
151152

src/main/webapp/WEB-INF/views/series/info.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ <h5 th:text="|#{t_add_info_who_selling_series}:|">Add info about selling/buying
387387
</label>
388388
<div class="col-sm-6">
389389
<select id="seller" class="form-control" required="required" th:field="*{sellerId}">
390-
<option value="" th:text="#{t_not_chosen}">Not chosen</option>
390+
<option value="" th:text="#{t_not_chosen_masculine}">Not chosen</option>
391391
<!--/*/
392392
<option th:each="seller : ${sellers}" th:value="${seller.id}" th:text="${seller.name}"></option>
393393
/*/-->
@@ -480,7 +480,7 @@ <h5 th:text="|#{t_add_info_who_selling_series}:|">Add info about selling/buying
480480
</label>
481481
<div class="col-sm-6">
482482
<select id="buyer" class="form-control" th:field="*{buyerId}">
483-
<option value="" th:text="#{t_not_chosen}">Not chosen</option>
483+
<option value="" th:text="#{t_not_chosen_masculine}">Not chosen</option>
484484
<!--/*/
485485
<option th:each="buyer : ${buyers}" th:value="${buyer.id}" th:text="${buyer.name}"></option>
486486
/*/-->

0 commit comments

Comments
 (0)