I have this dashboard and it's locale is currently set to english (see months names). I've tried, as you can see here, to set mac-os and R locale to pt_BR
via:
- name: change macos locale
run: |
export LC_ALL=pt_BR.UTF-8
export LANG=pt_BR.UTF-8
- name: change R locale
run: Sys.setlocale("LC_TIME", "pt_BR.UTF-8")
shell: Rscript {0}
But still can't change it.