Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.3 KiB
57 lines
2.3 KiB
google.setOnLoadCallback(function() {
|
|
$('.location a').show().toggle(function() {
|
|
$('.hide', $(this).parent()).show();
|
|
}, function() {
|
|
$('.hide', $(this).parent()).hide();
|
|
});
|
|
{% if ENABLE_TRANSLATION_SUGGESTIONS %}
|
|
$('a.suggest').click(function() {
|
|
var a=$(this), str=a.html(); orig=$('.original', a.parents('tr')).html(),trans=$('textarea',a.parent());
|
|
orig = unescape(orig).replace(/<br\s?\/?>/g,'\n').replace(/<code>/g,'').replace(/<\/code>/g,'').replace(/>/g,'>').replace(/</g,'<');
|
|
a.attr('class','suggesting').html('...');
|
|
google.language.translate(orig, "en", '{{rosetta_i18n_lang_code}}', function(result) {
|
|
if (!result.error) {
|
|
trans.val(unescape(result.translation).replace(/'/g,'\'').replace(/"/g,'"').replace(/%\s+(\([^\)]+\))\s*s/g,' %$1s '));
|
|
a.hide();
|
|
} else {
|
|
a.hide().before($('<span class="alert">'+result.error.message+'</span>'));
|
|
}
|
|
});
|
|
return false;
|
|
});
|
|
{% endif %}
|
|
$('td.plural').each(function(i) {
|
|
var td = $(this), trY = parseInt(td.closest('tr').offset().top);
|
|
$('textarea', $(this).closest('tr')).each(function(j) {
|
|
var textareaY= parseInt($(this).offset().top) - trY;
|
|
$($('.part',td).get(j)).css('top',textareaY + 'px');
|
|
});
|
|
});
|
|
|
|
$('.translation textarea').blur(function() {
|
|
if($(this).val()) {
|
|
$('.alert', $(this).parents('tr')).remove();
|
|
var RX = /%(?:\([^\s\)]*\))?[sdf]/g,
|
|
origs=$('.original', $(this).parents('tr')).html().match(RX),
|
|
trads=$(this).val().match(RX),
|
|
error = $('<span class="alert">Unmatched variables</span>');
|
|
if (origs && trads) {
|
|
for (var i = trads.length; i--;){
|
|
var key = trads[i];
|
|
if (-1 == $.inArray(key, origs)) {
|
|
$(this).before(error)
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
} else {
|
|
if (!(origs === null && trads === null)) {
|
|
$(this).before(error);
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
});
|
|
|
|
});
|