google-spreadsheet-translation-sync 1.5.2 → 1.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "google-spreadsheet-translation-sync",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "A plugin to read and write i18n translationsfrom and to google spreadsheets ",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -104,7 +104,11 @@ module.exports = async function () {
104
104
  })) {
105
105
  case 'import':
106
106
  options.spreadsheetId = await prompts.input({
107
- message: 'Which Spreadsheet Id (first sheet for now only)?'
107
+ message: 'Which Spreadsheet Id?'
108
+ });
109
+ options.gid = await prompts.input({
110
+ message: 'Which gid?',
111
+ default: options.gid
108
112
  });
109
113
 
110
114
  const importer = require('./import-from-spreadsheet');