@jshmrtn/vue3-gettext
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "@jshmrtn/vue3-gettext", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Translate your Vue.js applications with gettext", | ||
@@ -5,0 +5,0 @@ "author": "Leo Zurbriggen", |
# vue3-gettext | ||
> :warning: This project is based on the original [vue-gettext](https://github.com/Polyconseil/vue-gettext). It has not yet been used in production. | ||
Translate [Vue.js](http://vuejs.org) applications with [gettext](https://en.wikipedia.org/wiki/Gettext). | ||
@@ -6,0 +4,0 @@ |
@@ -53,3 +53,3 @@ #!/usr/bin/env node | ||
); | ||
fs.chmodSync(potPath, 666); | ||
fs.chmodSync(potPath, 0o666); | ||
console.log(extracted); | ||
@@ -68,3 +68,3 @@ | ||
); | ||
fs.chmodSync(poFile, 666); | ||
fs.chmodSync(poFile, 0o666); | ||
await execShellCommand(`msgattrib --no-wrap --no-obsolete -o ${poFile} ${poFile} || break`); | ||
@@ -71,0 +71,0 @@ } |
128556
462