2021-08-04 09:53:17 +02:00
|
|
|
import AdministrationTranslations from './administration.json'
|
2021-08-15 10:50:39 +02:00
|
|
|
import ApiTranslations from './api.json'
|
2021-08-08 11:49:01 +02:00
|
|
|
import ButtonsTranslations from './buttons.json'
|
2021-08-07 14:28:48 +02:00
|
|
|
import CommonTranslations from './common.json'
|
2021-08-04 09:53:17 +02:00
|
|
|
import DashboardTranslations from './dashboard.json'
|
2021-08-07 14:28:48 +02:00
|
|
|
import ErrorTranslations from './error.json'
|
2021-09-21 08:51:07 +02:00
|
|
|
import SportsTranslations from './sports.json'
|
2021-08-04 09:53:17 +02:00
|
|
|
import StatisticsTranslations from './statistics.json'
|
|
|
|
import UserTranslations from './user.json'
|
|
|
|
import WorkoutsTranslations from './workouts.json'
|
|
|
|
|
|
|
|
export default {
|
2021-10-23 21:34:02 +02:00
|
|
|
admin: AdministrationTranslations,
|
2021-08-15 10:50:39 +02:00
|
|
|
api: ApiTranslations,
|
2021-08-08 11:49:01 +02:00
|
|
|
buttons: ButtonsTranslations,
|
2021-08-07 14:28:48 +02:00
|
|
|
common: CommonTranslations,
|
2021-08-04 09:53:17 +02:00
|
|
|
dashboard: DashboardTranslations,
|
2021-08-07 14:28:48 +02:00
|
|
|
error: ErrorTranslations,
|
2021-09-21 08:51:07 +02:00
|
|
|
sports: SportsTranslations,
|
2021-08-04 09:53:17 +02:00
|
|
|
statistics: StatisticsTranslations,
|
|
|
|
user: UserTranslations,
|
|
|
|
workouts: WorkoutsTranslations,
|
|
|
|
}
|