mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-13 03:11:46 +00:00
12 lines
176 B
TypeScript
12 lines
176 B
TypeScript
import enJson from './en.json';
|
|
import koJson from './ko.json';
|
|
|
|
export const languageResources = {
|
|
en: {
|
|
translation: enJson
|
|
},
|
|
ko: {
|
|
translation: koJson
|
|
}
|
|
};
|