import { translate } from '@rucken/core';
import { RuI18n } from '../i18n/ru.i18n';
import { ICoreConfig } from './config.interface';
export const config: ICoreConfig = {
app: {
id: 'demo-todo',
title: translate('Rucken: Todo Ionic'),
description: translate('Admin UI for Ionic4 with Angular7+ mobile todo application based on Rucken template'),
languages: [
{
title: translate('Russian'),
code: 'ru',
translations: [RuI18n]
}
]
},
authModal: {
signInInfoMessage: {
text: `
{{user1}}
{{user2}}
{{user3}}
`,
data: {
title: translate('Demo users:'),
user1: translate('Admin: admin@admin.com
Password: 12345678'),
user2: translate('User 1: user1@user1.com
Password: 12345678'),
user3: translate('User 2: user2@user2.com
Password: 12345678')
}
},
signUpInfoMessage: '',
},
oauth: [
{
name: 'facebook',
icon: ['fab', 'facebook-square'],
signInTitle: translate('Sign in with Facebook')
},
{
name: 'google-plus',
icon: ['fab', 'google-plus'],
signInTitle: translate('Sign in with Google+')
}
]
};