Skip to content

A Google App Script that lets you easily access a localization/translation Google spreadsheet in JSON format.

Notifications You must be signed in to change notification settings

nuket/localization-spreadsheet-jsonify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

localization-spreadsheet-jsonify

A Google App Script that lets you easily access a localization/translation Google spreadsheet in JSON format. In other words, you can put together a string translation table in Google Docs, and this script will export it to JSON for you with a minimum of effort.

Step 1

Make spreadsheet like this one:

https://docs.google.com/spreadsheet/ccc?key=0AqrUvD5TZZs3dF9ULUh5X1JlakVJRGFHaWRZQmFuZEE

Step 2

Export it to JSON:

https://script.google.com/macros/s/AKfycbxLnEUyElPtL01qHnL7pD2hmTmaO7Tc1yLhjJzQpitpuBfxxBU/exec?sheet%5fid=0AqrUvD5TZZs3dF9ULUh5X1JlakVJRGFHaWRZQmFuZEE&sheet%5fname=Main

Export it to Django locales (gettext .po catalogs):

  1. Copy the contents of the gettext/ folder to your Django app folder.
  • Edit localize-django-app.py, set SOURCE_URL to your JSONified spreadsheet URL, and run.
  • Run django-admin.py compilemessages
  • Restart your Django instance.
  • Done.

Export it to jquery.localize styled JSON files:

  1. Copy the contents of the jquery.localize/ folder to wherever you're trying to serve translations.
  • Edit generate-language-pack.py, set SOURCE_URL to your JSONified spreadsheet URL, and run.
  • Copy the translation-*.json files to the folder where you'll be serving your page.
  • Follow the instructions of jquery.localize, it should pull in the JSON translation files you've just generated.
  • i.e. Something like $('[data-localize]').localize('translation');

Here's an example of jquery.localize in action.

Export it to ZIP: (work in progress)

Unavailable until Google fixes their ContentService so it doesn't mangle 8-bit "application/zip" or "application/octet-stream" output. :(

More Info

To see more info about invoking the app, go to:

<a="https://script.google.com/macros/s/AKfycbxLnEUyElPtL01qHnL7pD2hmTmaO7Tc1yLhjJzQpitpuBfxxBU/exec">https://script.google.com/macros/s/AKfycbxLnEUyElPtL01qHnL7pD2hmTmaO7Tc1yLhjJzQpitpuBfxxBU/exec

About

A Google App Script that lets you easily access a localization/translation Google spreadsheet in JSON format.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages