Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions src/app/translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ angular.module('auction')
'Unable to place a bid. Check that no more than 2 auctions are simultaneously opened in your browser.': 'Unable to place a bid. Check that no more than 2 auctions are simultaneously opened in your browser.',
'Please use the correct link to view the auction.': 'Please use the correct link to view the auction.',
'Auction has not started and will be rescheduled': 'Auction has not started and will be rescheduled',
'Please wait for the auction start.': 'Please wait for the auction start.'
'Please wait for the auction start.': 'Please wait for the auction start.',
'List of IP addresses of registered participants': 'List of IP addresses of registered participants'
});

$translateProvider.translations('uk', {
Expand Down Expand Up @@ -183,7 +184,8 @@ angular.module('auction')
'Unable to place a bid. Check that no more than 2 auctions are simultaneously opened in your browser.': 'Не вдається зробити ставку. Перевірте, що в переглядачі відкрито не більше 2-ох аукціонів.',
'Please use the correct link to view the auction.': 'Будь ласка, використовуйте правильне посилання для перегляду аукціону.',
'Auction has not started and will be rescheduled': 'Аукціон не розпочався і буде перепланований',
'Please wait for the auction start.': 'Будь ласка, дочекайтесь початку аукціону.'
'Please wait for the auction start.': 'Будь ласка, дочекайтесь початку аукціону.',
'List of IP addresses of registered participants': 'Список IP-адрес зареєстрованих учасників',
});


Expand Down Expand Up @@ -275,6 +277,7 @@ angular.module('auction')
'Unable to place a bid. Check that no more than 2 auctions are simultaneously opened in your browser.': 'Невозможно сделать ставку. Проверьте, что в браузере открыто не более 2-х аукционов.',
'Please use the correct link to view the auction.': 'Пожалуйста, используйте правильную ссылку для просмотра аукциона.',
'Auction has not started and will be rescheduled': 'Аукцион не начался и будет перепланирован',
'Please wait for the auction start.': 'Пожалуйста, дождитесь начала аукциона.'
'Please wait for the auction start.': 'Пожалуйста, дождитесь начала аукциона.',
'List of IP addresses of registered participants': 'Список IP-адресов зарегистрированных участников',
});
}]);
1 change: 1 addition & 0 deletions templates/tender.html
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ <h4>{{ auction_doc.auctionID }}</h4>
</li>

<li ng-if="clients" class="list-group-item">
<p translate>List of IP addresses of registered participants</p>
<p ng-repeat="(id, client) in clients">
<span ng-switch on="id == client_id">
<span ng-switch-when="false" translate>Client</span>
Expand Down