I've posted a question in another forum thread, because I initially didn't want to create a new forum thread for this. Since there were no replies, I'm trying it here.
I'd like to set input field labels for each language via API. I have approx. 50 input fields and four languages. Doing it "manually", i.e. via GUI, would take ages, as you can imagine.
Is there an API method I can use? a) get/define field, b) set language-specific field label
To clarify: This is not meant to run inside a template, but just once, i.e.
// Bootstrap ProcessWire
include('./index.php');
// Assign API variables to make things a little easier
$fields = wire("fields");
$templates = wire("templates");
etc.