[WIP]: /server/:key/tribe/:id/members

- add pl and en translations
This commit is contained in:
Dawid Wysokiński 2020-12-18 07:40:38 +01:00
parent 785657a518
commit 34e2933b8e
4 changed files with 28 additions and 0 deletions

View File

@ -1,6 +1,7 @@
import * as NAMESPACES from '@config/namespaces';
import common from './common';
import indexPage from './index-page';
import membersPage from './members-page';
import historyPage from './history-page';
import ennoblementsPage from './ennoblements-page';
import tribeChangesPage from './tribe-changes-page';
@ -8,6 +9,7 @@ import tribeChangesPage from './tribe-changes-page';
const translations = {
[NAMESPACES.SERVER_PAGE.TRIBE_PAGE.COMMON]: common,
[NAMESPACES.SERVER_PAGE.TRIBE_PAGE.INDEX_PAGE]: indexPage,
[NAMESPACES.SERVER_PAGE.TRIBE_PAGE.MEMBERS_PAGE]: membersPage,
[NAMESPACES.SERVER_PAGE.TRIBE_PAGE.HISTORY_PAGE]: historyPage,
[NAMESPACES.SERVER_PAGE.TRIBE_PAGE.ENNOBLEMENTS_PAGE]: ennoblementsPage,
[NAMESPACES.SERVER_PAGE.TRIBE_PAGE.TRIBE_CHANGES_PAGE]: tribeChangesPage,

View File

@ -0,0 +1,12 @@
const translations = {
title: `{{key}} - {{tag}} members`,
members: {
columns: {
name: 'Name',
points: 'Points',
totalVillages: 'Villages',
},
},
};
export default translations;

View File

@ -1,6 +1,7 @@
import * as NAMESPACES from '@config/namespaces';
import common from './common';
import indexPage from './index-page';
import membersPage from './members-page';
import historyPage from './history-page';
import ennoblementsPage from './ennoblements-page';
import tribeChangesPage from './tribe-changes-page';
@ -8,6 +9,7 @@ import tribeChangesPage from './tribe-changes-page';
const translations = {
[NAMESPACES.SERVER_PAGE.TRIBE_PAGE.COMMON]: common,
[NAMESPACES.SERVER_PAGE.TRIBE_PAGE.INDEX_PAGE]: indexPage,
[NAMESPACES.SERVER_PAGE.TRIBE_PAGE.MEMBERS_PAGE]: membersPage,
[NAMESPACES.SERVER_PAGE.TRIBE_PAGE.HISTORY_PAGE]: historyPage,
[NAMESPACES.SERVER_PAGE.TRIBE_PAGE.ENNOBLEMENTS_PAGE]: ennoblementsPage,
[NAMESPACES.SERVER_PAGE.TRIBE_PAGE.TRIBE_CHANGES_PAGE]: tribeChangesPage,

View File

@ -0,0 +1,12 @@
const translations = {
title: `{{key}} - członkowie {{tag}}`,
members: {
columns: {
name: 'Nazwa',
points: 'Punkty',
totalVillages: 'Wioski',
},
},
};
export default translations;