![]() |
language file creation with Google Spreadsheet - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Best Practices (https://forum.codeigniter.com/forumdisplay.php?fid=12) +--- Thread: language file creation with Google Spreadsheet (/showthread.php?tid=87971) |
language file creation with Google Spreadsheet - JanFromHamburg - 06-29-2023 Hi, I find it quite handy to create language files from a google spreadsheet
A: variable/expression B: translated text / string C: comment (explanation for later translations to other languages; if needed) After that I use this Google Script: Code: function createLanguageFile() { If you want it a bit more comfortable you can add the script to the spreadsheets navigation bar with a second script: Code: function onOpen() { The script creates a new file which you should find in your Google Drive base folder. Let me know if you like it too ;-) |