|
@@ -0,0 +1,35 @@
|
|
|
+import messages from './fr.json'
|
|
|
+
|
|
|
+
|
|
|
+function getMessage (keyedPath, alt) {
|
|
|
+ console.log(keyedPath, alt)
|
|
|
+ let message
|
|
|
+ try {
|
|
|
+ message = keyedPath.split('.').reduce((parent, key) => {
|
|
|
+ return parent[key]
|
|
|
+ }, messages)
|
|
|
+ } catch {
|
|
|
+
|
|
|
+ }
|
|
|
+ return message === undefined
|
|
|
+ ? alt === undefined ? keyedPath : alt
|
|
|
+ : message
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ * Allows separtion of static text content from its templates.
|
|
|
+ */
|
|
|
+export default class VueMessages {
|
|
|
+ static install (Vue) {
|
|
|
+
|
|
|
+ Vue.prototype.$t = getMessage
|
|
|
+
|
|
|
+
|
|
|
+ Vue.directive('t', {
|
|
|
+ bind (el, { value }) {
|
|
|
+ el.textContent = getMessage(value)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+}
|