Search found 12 matches

by InMemoriam
03 Oct 2021, 16:24
Forum: Windows
Topic: remove only the primaryTitle year
Replies: 22
Views: 25870

Re: remove only the primaryTitle year

this is my current method { primaryTitle.replaceTrailingBrackets() } {primaryTitle == localize.Brazilian.n?'':'- ' + [[localize.Brazilian.n]].unique().join(' - ') }/{episode.special ? 'Specials' : 'Season '+s.pad(2)}/{ primaryTitle.replaceTrailingBrackets() } - {episode.special ? 'S00E'+special.pad(...
by InMemoriam
03 Oct 2021, 16:12
Forum: Windows
Topic: remove only the primaryTitle year
Replies: 22
Views: 25870

Re: remove only the primaryTitle year

then this should do it { [n, PrimaryTitle != localize.por.n ? localize.por.n : primaryTitle].unique().join(' - ') } Using default English language preferences, so n is in English PrimaryTitle = PrimaryTitle (probably English) Portuguese = localize.por.n unique = if same only use n aka English retur...
by InMemoriam
02 Oct 2021, 09:33
Forum: Windows
Topic: remove only the primaryTitle year
Replies: 22
Views: 25870

Re: remove only the primaryTitle year

the goal would be to have a dual name in the folder if the names were different from the primarytitle. I'll try to describe a case, I put the code above trying to find a logic but it seems that complicated was more. The main name is immutable. we assume that: PrimaryTittle = MovieA Portuguese = Movi...
by InMemoriam
01 Oct 2021, 15:02
Forum: Windows
Topic: remove only the primaryTitle year
Replies: 22
Views: 25870

Re: remove only the primaryTitle year

Look here again to bother me a little more... You have the possibility to use this logic in FileBot, I'll try to describe what I have in mind as clearly as possible... Where do I want to use dual titles in two languages Using default English language preferences, so n is in English. /media/PrimaryTi...
by InMemoriam
15 Jun 2021, 19:24
Forum: Windows
Topic: remove only the primaryTitle year
Replies: 22
Views: 25870

Re: remove only the primaryTitle year

Does TheTVDB have separate episode listings for Portuguese and Brazilian Portuguese? Some titles have both languages, I'll send you images... Original Title... https://i.ibb.co/2gcMvgr/imagem-2021-06-15-161940.png Portugues Portugal https://i.ibb.co/7Nx3KJF/imagem-2021-06-15-162208.png Portugues Br...
by InMemoriam
15 Jun 2021, 18:28
Forum: Windows
Topic: remove only the primaryTitle year
Replies: 22
Views: 25870

Re: remove only the primaryTitle year

e.g. English Name - Brazilian Name or just English Name { [n, localize.Brazilian.n].unique().join(' - ') } :idea: Using default English language preferences, so n is in English. this command does not have the same tv show effect when searching thetvdb, only tv show themoviedb, is there any special ...
by InMemoriam
14 Jun 2021, 15:55
Forum: Windows
Topic: remove only the primaryTitle year
Replies: 22
Views: 25870

Re: remove only the primaryTitle year

YOU IS MY HERO!!!!
by InMemoriam
14 Jun 2021, 15:01
Forum: Windows
Topic: remove only the primaryTitle year
Replies: 22
Views: 25870

Re: remove only the primaryTitle year

rename my media with two names, the first would be english and the second in pt_br, if the first is equal to the second, do not insert the second. Many titles are doing well with the primarytitle, however when titles like Chinese, Japanese and others are these characters of their nationalities, I tr...
by InMemoriam
14 Jun 2021, 14:37
Forum: Windows
Topic: remove only the primaryTitle year
Replies: 22
Views: 25870

Re: remove only the primaryTitle year

the vestment

Code: Select all

String.transliterate(identifier)
I tried to use it but I'm not able to, little knowledge in programming.
wouldn't that be the solution? I put the .ascii but it is still some characters complicated to understand.
by InMemoriam
13 Jun 2021, 17:24
Forum: Windows
Topic: remove only the primaryTitle year
Replies: 22
Views: 25870

Re: remove only the primaryTitle year

I came across a complicated situation, usually the primarytitle gets the data in English, but here in this situation no, is there a way to configure it to pull in English only? I'm doing dual name... the first one was getting in English as I wanted, but in this situation these 'special' characters w...
by InMemoriam
12 Jun 2021, 17:23
Forum: Windows
Topic: remove only the primaryTitle year
Replies: 22
Views: 25870

Re: remove only the primaryTitle year

THANK YOU!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
by InMemoriam
12 Jun 2021, 10:28
Forum: Windows
Topic: remove only the primaryTitle year
Replies: 22
Views: 25870

remove only the primaryTitle year

already I searched for the forum and I didn't find it. I just wanted to remove the year from primaryTitle. currently the one I use .../{primaryTitle} ({y}) {primaryTitle == n ?' ': [n]}/{episode.special ? 'Specials' : 'Season '+s.pad(2)}/{primaryTitle} - {episode.special ? 'S00E'+special.pad(2) : s0...