1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-10 22:11:50 +02:00

Chore: Fix locale test (#12201)

This commit is contained in:
Henry Heino
2025-05-01 12:06:56 -07:00
committed by GitHub
parent 3055873406
commit 687516e695

View File

@@ -25,8 +25,8 @@ describe('locale', () => {
it('should translate plurals - fr_FR', () => {
setLocale('fr_FR');
expect(_n('Copy Shareable Link', 'Copy Shareable Links', 1)).toBe('Copier lien partageable');
expect(_n('Copy Shareable Link', 'Copy Shareable Links', 2)).toBe('Copier liens partageables');
expect(_n('Copy Shareable Link', 'Copy Shareable Links', 1)).toBe('Copier le lien partageable');
expect(_n('Copy Shareable Link', 'Copy Shareable Links', 2)).toBe('Copier les liens partageables');
});
it('should translate plurals - pl_PL', () => {