Blame view

src/admin/app.js 1.11 KB
jay committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import AuthLogo from "./extensions/logo.png";
import favicon from "./extensions/favicon.ico";

const config = {
 auth: {
    logo: AuthLogo
  },
  menu: {
    logo: AuthLogo
  },
  head: {
    favicon: favicon
  },

  // Disable video tutorials
  tutorials: false,
  // Disable notifications about new Strapi releases
  notifications: { releases: false },
  translations: {
    en: {
jay committed
21 22
      "app.components.LeftMenu.navbrand.title": "Zango",
      "app.components.LeftMenu.navbrand.title": "Zango",   
jay committed
23
      "app.components.LeftMenu.navbrand.subtitle": "",
jay committed
24
      "Auth.form.welcome.title": "Welcome to Zango",
jay committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
      "Auth.form.welcome.subtitle": "Log in to your App"
    }
  },
  locales: [
    // 'ar',
    // 'fr',
    // 'cs',
    // 'de',
    // 'dk',
    // 'es',
    // 'he',
    // 'id',
    // 'it',
    // 'ja',
    // 'ko',
    // 'ms',
    // 'nl',
    // 'no',
    // 'pl',
    // 'pt-BR',
    // 'pt',
    // 'ru',
    // 'sk',
    // 'sv',
    // 'th',
    // 'tr',
    // 'uk',
    // 'vi',
    // 'zh-Hans',
    // 'zh',
  ],
};

const bootstrap = (app) => {
  console.log(app);
};

export default {
  config,
  bootstrap,
};