With it, I save the names of movies with a path like:
"DIRECTOR'S LAST NAME, Director's First Name/Italian title (year) [original title]"
It works pretty fine, but I’d like to make some changes.
When there are names or titles in Asian languages (or any that use non-Latin characters), I’d like them to be romanized.
The template should be like this:
"DIRECTOR'S LAST NAME, Director's First Name/Italian title <if it exists> <otherwise international title> (Original title <romanized if non-Latin characters are used>) [year]"
I’m not sure if I’ve managed to explain myself or if this modification is even possible.
In any case, thanks for your attention!
Format: Select all
{director.split(/\s/).reverse().join(', ').replaceFirst(/\w+/) { it.upper() }}/{ny} { allOf{ primaryTitle }{ localize.it.n }.joiningDistinct(', ', '[', ']'){ n.contains(it) ? null : it } }