Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quantum-kittens
GitHub Repository: quantum-kittens/platypus
Path: blob/main/frontend/plugins/i18nStrings.ts
3855 views
1
import { translate } from '../ts/translations'
2
3
const install = function (app: any, options?: any) {
4
app.config.globalProperties.$translate = (str: string, args?: string[]) => translate(str, args, options?.translations)
5
}
6
7
export {
8
install
9
}
10
11