File: sample.html

package info (click to toggle)
node-i18next 19.8.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,416 kB
  • sloc: javascript: 9,893; makefile: 2
file content (44 lines) | stat: -rw-r--r-- 1,413 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<html>
  <head>
    <script src="./i18next.min.js" ></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/i18next-browser-languagedetector/1.0.1/i18nextBrowserLanguageDetector.min.js" ></script>
  </head>

  <body>

    <div>open console</div>

    <script>
      // use plugins and options as needed, for options, detail see
      // http://i18next.com/docs/
      i18next
      .use(window.i18nextBrowserLanguageDetector)
      .init({
        //lng: 'en', // evtl. use language-detector https://github.com/i18next/i18next-browser-languageDetector
        resources: { // evtl. load via xhr https://github.com/i18next/i18next-xhr-backend
          en: {
            translation: {
              input: {
                placeholder: "a placeholder"
              },
              nav: {
                home: 'Home',
                page1: 'Page One',
                page2: 'Page Two'
              }
            }
          }
        },
        debug: true
      }, function(err, t) {
        var fixedT = i18next.getFixedT(null, null);
        console.warn(fixedT('nav.page3', 'support'), fixedT('nav.page3', 'support') === 'support');
        console.warn(i18next.t('input.placeholder'), i18next.t('input.placeholder') === 'a placeholder');
        console.warn(i18next.t('nav.home'), i18next.t('nav.home') === 'Home');
        console.warn(i18next);
      });
    </script>

  </body>

</html>