2021-08-04 09:53:17 +02:00
|
|
|
import AdministrationTranslations from './administration.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-08-04 09:53:17 +02:00
|
|
|
import StatisticsTranslations from './statistics.json'
|
|
|
|
import UserTranslations from './user.json'
|
|
|
|
import WorkoutsTranslations from './workouts.json'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
administration: AdministrationTranslations,
|
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-08-04 09:53:17 +02:00
|
|
|
statistics: StatisticsTranslations,
|
|
|
|
user: UserTranslations,
|
|
|
|
workouts: WorkoutsTranslations,
|
|
|
|
}
|