]> Untitled Git - lemmy.git/commitdiff
Merge branch 'master' into master
authorMatteo Guglielmetti <MatteoGgl@users.noreply.github.com>
Mon, 21 Oct 2019 06:50:38 +0000 (08:50 +0200)
committerGitHub <noreply@github.com>
Mon, 21 Oct 2019 06:50:38 +0000 (08:50 +0200)
1  2 
ui/src/i18next.ts
ui/src/utils.ts

index c45270fe8edbd3d5f3785cfea6bb8d44d43f0677,bfe720ff707fb21febbf065aac6bd519f74987d0..a2d743b15a320382dab58c3b7fccb5cdaa202a54
@@@ -9,10 -9,8 +9,9 @@@ import { sv } from './translations/sv'
  import { ru } from './translations/ru';
  import { zh } from './translations/zh';
  import { nl } from './translations/nl';
 +import { it } from './translations/it';
  
  // https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
- // TODO don't forget to add moment locales for new languages.
  const resources = {
    en,
    eo,
    sv,
    ru,
    nl,
- }
 +  it,
+ };
  
  function format(value: any, format: any, lng: any) {
-       if (format === 'uppercase') return value.toUpperCase();
-       return value;
+   if (format === 'uppercase') return value.toUpperCase();
+   return value;
  }
  
- i18n
- .init({
-   debug: true,
+ i18n.init({
+   debug: false,
    // load: 'languageOnly',
  
    // initImmediate: false,
    lng: getLanguage(),
    fallbackLng: 'en',
-       resources,
-       interpolation: {
-     format: format
+   resources,
+   interpolation: {
+     format: format,
 -  },
 +  }
  });
  
  export { i18n, resources };
diff --cc ui/src/utils.ts
index 4fec23f08fb459b96d4324ff369e45bf594e10ea,867ff91e645952a02df087ea593b2aa3b826413e..b6e4aafabcb1792b907c5053c9601975787417dd
@@@ -6,9 -6,15 +6,16 @@@ import 'moment/locale/fr'
  import 'moment/locale/sv';
  import 'moment/locale/ru';
  import 'moment/locale/nl';
 +import 'moment/locale/it';
  
- import { UserOperation, Comment, User, SortType, ListingType, SearchType } from './interfaces';
+ import {
+   UserOperation,
+   Comment,
+   User,
+   SortType,
+   ListingType,
+   SearchType,
+ } from './interfaces';
  import * as markdown_it from 'markdown-it';
  import * as markdownitEmoji from 'markdown-it-emoji/light';
  import * as markdown_it_container from 'markdown-it-container';