2023-01-18 15:21:17 +03:00
|
|
|
const assert = require('assert');
|
|
|
|
|
|
|
|
const i18n = require('../');
|
|
|
|
|
2023-03-01 11:10:11 +03:00
|
|
|
describe('i18n', function () {
|
|
|
|
describe('Can use Portal resources', function () {
|
2023-03-30 19:20:39 +03:00
|
|
|
describe('Dutch', function () {
|
2023-03-01 11:10:11 +03:00
|
|
|
let t;
|
2023-01-18 15:21:17 +03:00
|
|
|
|
2023-03-01 11:10:11 +03:00
|
|
|
before(function () {
|
|
|
|
t = i18n('nl', 'portal').t;
|
|
|
|
});
|
2023-01-18 15:21:17 +03:00
|
|
|
|
2023-03-01 11:10:11 +03:00
|
|
|
it('can translate `Name`', function () {
|
|
|
|
assert.equal(t('Name'), 'Naam');
|
|
|
|
});
|
2023-01-18 15:21:17 +03:00
|
|
|
});
|
|
|
|
});
|
2023-06-02 12:02:52 +03:00
|
|
|
|
|
|
|
describe('Can use Signup-form resources', function () {
|
|
|
|
describe('Afrikaans', function () {
|
|
|
|
let t;
|
|
|
|
|
|
|
|
before(function () {
|
|
|
|
t = i18n('af', 'signup-form').t;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('can translate `Now check your email!`', function () {
|
2023-06-05 14:57:56 +03:00
|
|
|
assert.equal(t('Now check your email!'), 'Kyk nou in jou e-pos!');
|
2023-06-02 12:02:52 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2023-01-18 15:21:17 +03:00
|
|
|
});
|