Editing translation i18n through curl
Hey there,
I'm trying to cURL an endpoint in order to update my translation by editing a json file, but it doesn't work.
curl -u user:password \
-F":contentFile=@/absolute-path/de_DE.json" \
-F":operation=import" \
-F":contentType=json" \
-F":replace=true" \
-F":replaceProperties=true" \
it works with pages, so i'm probably doing something wrong here!
thanks in advance!