REQ-024 was updated (issue #779) to require localized sr-only/aria labels instead of German-only. Pin the de/en/es values so they cannot silently drift back to the German source strings. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
72 lines
2.5 KiB
TypeScript
72 lines
2.5 KiB
TypeScript
import { describe, it, expect } from 'vitest';
|
|
import de from '../../messages/de.json';
|
|
import en from '../../messages/en.json';
|
|
import es from '../../messages/es.json';
|
|
|
|
describe('message key parity', () => {
|
|
it('de, en, and es have identical key sets', () => {
|
|
const deKeys = Object.keys(de).sort();
|
|
const enKeys = Object.keys(en).sort();
|
|
const esKeys = Object.keys(es).sort();
|
|
expect(enKeys).toEqual(deKeys);
|
|
expect(esKeys).toEqual(deKeys);
|
|
});
|
|
|
|
it('viewer navigation keys are present in all locales', () => {
|
|
const requiredViewerKeys = [
|
|
'viewer_previous_page',
|
|
'viewer_next_page',
|
|
'viewer_zoom_out',
|
|
'viewer_zoom_in'
|
|
];
|
|
for (const key of requiredViewerKeys) {
|
|
expect(de, `missing key in de: ${key}`).toHaveProperty(key);
|
|
expect(en, `missing key in en: ${key}`).toHaveProperty(key);
|
|
expect(es, `missing key in es: ${key}`).toHaveProperty(key);
|
|
}
|
|
});
|
|
|
|
it('transcribe mark-for-training key is present in all locales', () => {
|
|
expect(de).toHaveProperty('transcribe_mark_for_training');
|
|
expect(en).toHaveProperty('transcribe_mark_for_training');
|
|
expect(es).toHaveProperty('transcribe_mark_for_training');
|
|
});
|
|
|
|
it('layout menu open/close keys are present in all locales', () => {
|
|
expect(de).toHaveProperty('layout_menu_open');
|
|
expect(de).toHaveProperty('layout_menu_close');
|
|
expect(en).toHaveProperty('layout_menu_open');
|
|
expect(en).toHaveProperty('layout_menu_close');
|
|
expect(es).toHaveProperty('layout_menu_open');
|
|
expect(es).toHaveProperty('layout_menu_close');
|
|
});
|
|
|
|
// REQ-024: the timeline layer/life-event labels feed sr-only / aria text, so
|
|
// they are localized per locale (the original German-only MVP decision was
|
|
// reversed for accessibility). Pin the values so en/es can never silently
|
|
// drift back to the German source strings.
|
|
it('timeline layer/derived labels are localized per locale (REQ-024)', () => {
|
|
expect(de).toMatchObject({
|
|
timeline_layer_world: 'Weltgeschehen',
|
|
timeline_layer_family: 'Familie',
|
|
timeline_derived_birth: 'Geburt',
|
|
timeline_derived_death: 'Tod',
|
|
timeline_derived_marriage: 'Heirat'
|
|
});
|
|
expect(en).toMatchObject({
|
|
timeline_layer_world: 'World events',
|
|
timeline_layer_family: 'Family',
|
|
timeline_derived_birth: 'Birth',
|
|
timeline_derived_death: 'Death',
|
|
timeline_derived_marriage: 'Marriage'
|
|
});
|
|
expect(es).toMatchObject({
|
|
timeline_layer_world: 'Acontecimientos mundiales',
|
|
timeline_layer_family: 'Familia',
|
|
timeline_derived_birth: 'Nacimiento',
|
|
timeline_derived_death: 'Fallecimiento',
|
|
timeline_derived_marriage: 'Matrimonio'
|
|
});
|
|
});
|
|
});
|