Skip to content

Commit

Permalink
Disable locales FR, ES, and RU
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-lerch committed Jun 23, 2024
1 parent 65204d2 commit a849a31
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,24 +38,25 @@ export default {
name: 'English',
file: 'en.js',
},
{
code: 'fr',
iso: 'fr-FR',
name: 'Français',
file: 'fr.js',
},
{
code: 'es',
iso: 'es-ES',
name: 'Español',
file: 'es.js',
},
{
code: 'ru',
iso: 'ru-RU',
name: 'Русский',
file: 'ru.js',
},
// Disabled locales without any translated content
// {
// code: 'fr',
// iso: 'fr-FR',
// name: 'Français',
// file: 'fr.js',
// },
// {
// code: 'es',
// iso: 'es-ES',
// name: 'Español',
// file: 'es.js',
// },
// {
// code: 'ru',
// iso: 'ru-RU',
// name: 'Русский',
// file: 'ru.js',
// },
],
defaultLocale: 'de',
noPrefixDefaultLocale: true,
Expand Down

0 comments on commit a849a31

Please sign in to comment.