See how a minor change to your commit message style can make a difference.
ℹ️ git-conventional-commits A CLI util to ensure this conventions and generate changelogs
See how a minor change to your commit message style can make a difference.
ℹ️ git-conventional-commits A CLI util to ensure this conventions and generate changelogs
| function onOpen() { | |
| const ui = SpreadsheetApp.getUi(); | |
| ui && ui.createMenu('Translate Functions') | |
| .addItem('Translate DE -> EN', 'translateDE2EN') | |
| .addToUi(); | |
| } | |
| async function translateDE2EN() { | |
| return translate('de', 'en'); | |
| } |