Skip to content

Commit ffd3667

Browse files
committed
Move colon from translation to Thymeleaf expression.
Should be in c5e733b commit. No functional changes.
1 parent 2a5098c commit ffd3667

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ t_need_authentication_to_add_series_to_collection = \
138138
In order to add this series to your collection you should <a href="{0}">register</a> or <a href="{1}">pass authentication</a>.
139139
t_add_image = Add image
140140
t_add_image_error = This series has enough images. Please, contact with admin if you want to add more images
141-
t_who_selling_series = Who was selling/buying this series:
141+
t_who_selling_series = Who was selling/buying this series
142142
t_was_selling_for = was selling for
143143
t_sold_to = sold to
144144
t_sold_for = for

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ t_need_authentication_to_add_series_to_collection = \
138138
Для того, чтобы добавить эту серию в свою коллекцию вы должны <a href="{0}">зарегистрироваться</a> или <a href="{1}">пройти идентификацию</a>.
139139
t_add_image = Добавить изображение
140140
t_add_image_error = Эта серия содержит все необходимые изображения. Пожалуйста, свяжитесь с администратором, если вы хотите добавить больше изображений
141-
t_who_selling_series = Покупки и продажи этой серии:
141+
t_who_selling_series = Покупки и продажи этой серии
142142
t_was_selling_for = продавал за
143143
t_sold_to = продал
144144
t_sold_for = за

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@
274274
<div class="col-sm-4">
275275
<div class="row" th:if="${not #lists.isEmpty(purchasesAndSales)}" togglz:active="PURCHASES_AND_SALES" sec:authorize="hasAuthority('VIEW_SERIES_SALES')">
276276
<div class="col-sm-12">
277-
<h5 th:text="#{t_who_selling_series}">Who was selling/buying this series:</h5>
277+
<h5 th:text="|#{t_who_selling_series}:|">Who was selling/buying this series:</h5>
278278
<ul th:remove="all-but-first">
279279
<li th:each="transaction : ${purchasesAndSales}"
280280
th:with="firstPrice=${#numbers.formatDecimal(transaction.firstPrice, 0, 'DEFAULT', 2, 'DEFAULT') + '&nbsp;' + transaction.firstCurrency},

0 commit comments

Comments
 (0)