[WIP]: /server/:key/ranking/player

- add pl translations
This commit is contained in:
Dawid Wysokiński 2020-12-20 09:57:42 +01:00
parent 2ac9fdf71c
commit 2195d937d9
3 changed files with 24 additions and 0 deletions

View File

@ -1,8 +1,10 @@
import * as NAMESPACES from '@config/namespaces';
import common from './common';
import playerPage from './player-page';
const translations = {
[NAMESPACES.SERVER_PAGE.RANKING_PAGE.COMMON]: common,
...playerPage,
};
export default translations;

View File

@ -0,0 +1,14 @@
const translations = {
title: 'Ranking graczy - {{key}}',
ranking: {
columns: {
rank: 'Ranking',
name: 'Nazwa',
points: 'Punkty',
totalVillages: 'Wioski',
dailyGrowth: 'Dzienny przyrost',
},
},
};
export default translations;

View File

@ -0,0 +1,8 @@
import * as NAMESPACES from '@config/namespaces';
import indexPage from './index-page';
const translations = {
[NAMESPACES.SERVER_PAGE.RANKING_PAGE.PLAYER_PAGE.INDEX_PAGE]: indexPage,
};
export default translations;