You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.2 KiB
JavaScript
68 lines
2.2 KiB
JavaScript
9 years ago
|
'use strict';
|
||
|
/*global require*/
|
||
|
|
||
|
var assert = require('assert'),
|
||
|
db = require('./mocks/databasemock'),
|
||
|
translator = require('../public/src/modules/translator.js');
|
||
|
|
||
|
|
||
|
describe('Translator', function(){
|
||
|
describe('.translate()', function(){
|
||
|
it('should handle basic translations', function(done) {
|
||
|
translator.translate('[[global:home]]', function(translated) {
|
||
|
assert.strictEqual(translated, 'Home');
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should handle language keys in regular text', function(done) {
|
||
|
translator.translate('Let\'s go [[global:home]]', function(translated) {
|
||
|
assert.strictEqual(translated, 'Let\'s go Home');
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should accept a language parameter and adjust accordingly', function(done) {
|
||
|
translator.translate('[[global:home]]', 'de', function(translated) {
|
||
|
assert.strictEqual(translated, 'Übersicht');
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should handle language keys in regular text with another language specified', function(done) {
|
||
|
translator.translate('[[global:home]] test', 'de', function(translated) {
|
||
|
assert.strictEqual(translated, 'Übersicht test');
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should handle language keys with parameters', function(done) {
|
||
|
translator.translate('[[global:pagination.out_of, 1, 5]]', function(translated) {
|
||
|
assert.strictEqual(translated, '1 out of 5');
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should handle language keys inside language keys', function(done) {
|
||
|
translator.translate('[[notifications:outgoing_link_message, [[global:guest]]]]', function(translated) {
|
||
|
assert.strictEqual(translated, 'You are now leaving Guest');
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should handle language keys inside language keys with multiple parameters', function(done) {
|
||
|
translator.translate('[[notifications:user_posted_to, [[global:guest]], My Topic]]', function(translated) {
|
||
|
assert.strictEqual(translated, '<strong>Guest</strong> has posted a reply to: <strong>My Topic</strong>');
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should properly handle parameters that contain square brackets', function(done) {
|
||
|
translator.translate('[[global:pagination.out_of, [guest], [[global:home]]]]', function(translated) {
|
||
|
assert.strictEqual(translated, '[guest] out of Home');
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|