New Client: english translations and misc fixes (#8410)

* misc fixes and add english translations

* add tests
This commit is contained in:
Matteo Pagliazzi
2017-01-14 21:12:11 +01:00
committed by GitHub
parent f888e80b01
commit d8128cc3db
7 changed files with 66 additions and 29 deletions

View File

@@ -16,6 +16,7 @@ Vue.use(VueRouter);
export default new VueRouter({
mode: 'history',
base: process.env.NODE_ENV === 'production' ? '/new-app' : __dirname, // eslint-disable-line no-process-env
linkActiveClass: 'active',
routes: [
{ path: '/', component: UserTasks },
{
@@ -34,11 +35,14 @@ export default new VueRouter({
children: [
{ name: 'tavern', path: 'tavern', component: TavernPage },
{
name: 'inbox',
path: 'inbox',
component: ParentPage,
children: [
{path: '', component: InboxPage},
{
name: 'inbox',
path: '',
component: InboxPage,
},
{
name: 'conversation',
path: 'conversation/:id',