Cola149 c40716b8a9
Adding Russian language (#116)
* Add files via upload

* Add files via upload

* Delete lang/ru-RU.js

* Rename ru-RU(1).js to ru-RU.js

* Update nuxt.config.ts

Adding Russian language

* Update ru-RU.js

* Update ru-RU.js

* Update ru-RU.js

* Update ru-RU.js
2024-05-12 20:55:02 +02:00
..
2024-05-06 14:00:28 +02:00
2024-05-06 14:00:28 +02:00
2024-05-06 14:00:28 +02:00
2024-04-11 21:34:03 +02:00
2024-05-12 20:55:02 +02:00

Add Language

You are very welcome to add more languages! Just copy en-US.js to the correct target Country code and modify the content.

When you are done with the translation add the filename to nuxt.config.ts, in section:

i18n: {
    locales: [
        {
            code: 'de',
            name: 'Deutsch',
            file: 'de-DE.js',
        },
        {
            code: 'en',
            name: 'English',
            file: 'en-US.js',
        },
+        {
+            code: '<SHORT CODE>',
+            name: '<NAME>',
+            file: '<CODE>.js',
+        },
    ],

    ...

And also add the new link paths:

i18n: {
    locales: [...],
    ...
    pages: {
        'player': {
            de: '/wiedergabe',
            en: '/player',
+           <CODE>: /<PATH>,
        },

    ...