2023-06-21 11:56:59 +03:00
|
|
|
const assert = require('assert/strict');
|
2023-06-27 09:45:42 +03:00
|
|
|
const fs = require('fs/promises');
|
|
|
|
const path = require('path');
|
2023-01-18 15:21:17 +03:00
|
|
|
|
|
|
|
const i18n = require('../');
|
|
|
|
|
2023-03-01 11:10:11 +03:00
|
|
|
describe('i18n', function () {
|
2023-06-27 09:45:42 +03:00
|
|
|
it('does not have mismatched brackets in variables', async function () {
|
|
|
|
for (const locale of i18n.SUPPORTED_LOCALES) {
|
|
|
|
const translationFiles = await fs.readdir(path.join(`./locales/`, locale));
|
|
|
|
|
|
|
|
for (const file of translationFiles) {
|
|
|
|
const translationFile = require(path.join(`../locales/`, locale, file));
|
|
|
|
|
|
|
|
for (const key of Object.keys(translationFile)) {
|
|
|
|
const keyStartCount = key.match(/{{/g)?.length;
|
|
|
|
assert.equal(keyStartCount, key.match(/}}/g)?.length, `[${locale}/${file}] mismatched brackets in ${key}`);
|
|
|
|
|
|
|
|
const value = translationFile[key];
|
|
|
|
if (typeof value === 'string') {
|
|
|
|
const valueStartCount = value.match(/{{/g)?.length;
|
|
|
|
assert.equal(valueStartCount, value.match(/}}/g)?.length, `[${locale}/${file}] mismatched brackets in ${value}`);
|
|
|
|
|
|
|
|
// Maybe enable in the future if we want to enforce this
|
|
|
|
//if (value !== '') {
|
|
|
|
// assert.equal(keyStartCount, valueStartCount, `[${locale}/${file}] mismatched brackets between ${key} and ${value}`);
|
|
|
|
//}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-08-23 14:52:57 +03:00
|
|
|
it('is uses default export if available', async function () {
|
|
|
|
const translationFile = require(path.join(`../locales/`, 'nl', 'portal.json'));
|
|
|
|
translationFile.Name = undefined;
|
|
|
|
translationFile.default = {
|
|
|
|
Name: 'Naam'
|
|
|
|
};
|
|
|
|
|
|
|
|
const t = i18n('nl', 'portal').t;
|
|
|
|
assert.equal(t('Name'), 'Naam');
|
|
|
|
});
|
|
|
|
|
2023-03-01 11:10:11 +03:00
|
|
|
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
|
|
|
});
|