Fixes localization of string "decline" in big.js

Key is "Decline", not "decline" in lichess_translations
This commit is contained in:
Unihedron 2015-08-11 02:52:25 +08:00
parent e11fe094bf
commit 04d537e033

View file

@ -481,7 +481,7 @@ lichess.storage = {
}
$('.lichess_overboard.joining.' + data.id).each(function() {
if (!$(this).find('a.decline').length) $(this).find('form').append(
declineListener($(data.html).find('a.decline').text($.trans('decline')), function() {
declineListener($(data.html).find('a.decline').text($.trans('Decline')), function() {
location.href = "/";
})
);