2020-02-07 05:40:52 -09:00
|
|
|
import en from './en'
|
2020-04-13 15:51:03 -08:00
|
|
|
import pt from './pt'
|
2020-02-07 05:40:52 -09:00
|
|
|
|
2020-04-13 15:51:03 -08:00
|
|
|
// When adding a new translation, import it above and add it to the list bellow
|
|
|
|
|
|
|
|
|
|
const allLanguages = { en, pt }
|
|
|
|
|
|
|
|
|
|
// "Hack" to make "albumSongs" resource use the same translations as "song"
|
|
|
|
|
Object.keys(allLanguages).forEach(
|
|
|
|
|
(k) => (allLanguages[k].resources.albumSong = allLanguages[k].resources.song)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export default allLanguages
|