Search found 3 matches

by 4go3jm92
12 Jun 2015, 17:19
Forum: Episode / Movie Naming Scheme
Topic: "Original Name" issues & swapping first name last name
Replies: 7
Views: 8159

Re: "Original Name" issues & swapping first name last name

ok i made a donation!

and for future reference here is the code:

Code: Select all

{director.split(/\s/).reverse().join(', ')} - {y} - {n == primaryTitle ? n : "$primaryTitle ($n)"}
that creates:

Kusturica, Emir - 1985 - Otac na sluzbenom putu (When Father Was Away on Business)

thanks again
by 4go3jm92
12 Jun 2015, 16:48
Forum: Episode / Movie Naming Scheme
Topic: "Original Name" issues & swapping first name last name
Replies: 7
Views: 8159

Re: "Original Name" issues & swapping first name last name

Easy, just use conditions: {n == primaryTitle ? n : "$primaryTitle ($n)"} thanks rednoah, The repeating english title is solved. Works great, and is it possible to swap first name, last name of director ie. Kusturica, Emir - 1985 - Otac na sluzbenom putu (When Father Was Away on Business)
by 4go3jm92
12 Jun 2015, 15:09
Forum: Episode / Movie Naming Scheme
Topic: "Original Name" issues & swapping first name last name
Replies: 7
Views: 8159

"Original Name" issues & swapping first name last name

Hello, Firstly, thanks for such great software! I have a lot of foreign films and currently I am using this: {director} - {y} - {info.OriginalName} ({n}) which gives me this: Emir Kusturica - 1985 - Otac na sluzbenom putu (When Father Was Away on Business) However for my english language films it gi...