Clean up i18n: translate 404 page Chinese text and remove placeholder German locale

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 21:02:33 +08:00
parent 8d358516b8
commit d7db387edf
3 changed files with 5 additions and 17 deletions

View File

@@ -15,13 +15,13 @@ describe('404 Not Found Page', () => {
loginWithFixtures();
cy.visit('/this-page-does-not-exist');
cy.contains('404').should('be.visible');
cy.contains('您想找的頁面不存在').should('be.visible');
cy.contains('The page you are looking for does not exist.').should('be.visible');
});
it('has a link back to Files page', () => {
loginWithFixtures();
cy.visit('/some/random/path');
cy.contains('a', '回到 Files')
cy.contains('a', 'Go to Files')
.should('be.visible')
.should('have.attr', 'href', '/files');
});