This commit is contained in:
mano3m
2014-04-20 10:18:44 +02:00
parent 0eac041a26
commit 72383592ba
2 changed files with 4 additions and 3 deletions
@@ -250,9 +250,9 @@ var Movie = new Class({
getUnprefixedTitle: function(t){
if(t.substr(0, 4).toLowerCase() == 'the ')
t = t.substr(4) + ', The';
if(t.substr(0, 3).toLowerCase() == 'an ')
else if(t.substr(0, 3).toLowerCase() == 'an ')
t = t.substr(3) + ', An';
if(t.substr(0, 2).toLowerCase() == 'a ')
else if(t.substr(0, 2).toLowerCase() == 'a ')
t = t.substr(2) + ', A';
return t;
},
+2 -1
View File
@@ -292,7 +292,8 @@ class Renamer(Plugin):
name_the = movie_name
for prefix in ['the ', 'an ', 'a ']:
if prefix == movie_name[:len(prefix)].lower():
name_the = movie_name[len(prefix):] + ', ' + prefix.strip().capitalize()
name_the = movie_name[len(prefix):] + ', ' + prefix.strip().capitalize()
break
replacements = {
'ext': 'mkv',