closes #855 - app.alert strings are now passed through translator so we can finally start getting rid of the remainder of hardcoded strings

This commit is contained in:
psychobunny
2014-01-30 13:30:49 -05:00
parent fa910bac20
commit 303a32dce6
3 changed files with 20 additions and 8 deletions

View File

@@ -113,8 +113,8 @@ var socket,
socket.on('event:banned', function() {
app.alert({
title: 'Banned',
message: 'You are banned you will be logged out!',
title: '[[global:alert.banned]]',
message: '[[global:alert.banned.message]]',
type: 'warning',
timeout: 1000
});
@@ -190,7 +190,10 @@ var socket,
if (params.location == null)
params.location = 'alert_window';
$('#' + params.location).prepend(div.fadeIn('100'));
translator.translate(div.html(), function(translatedHTML) {
div.html(translatedHTML);
$('#' + params.location).prepend(div.fadeIn('100'));
});
if (params.timeout) {
startTimeout(div, params.timeout);
@@ -212,7 +215,7 @@ var socket,
timeout = 2000;
app.alert({
title: 'Success',
title: '[[global:alert.success]]',
message: message,
type: 'success',
timeout: timeout
@@ -224,7 +227,7 @@ var socket,
timeout = 2000;
app.alert({
title: 'Error',
title: '[[global:alert.error]]',
message: message,
type: 'danger',
timeout: timeout