Skip to content

Commit

Permalink
- fixed: Hungarian translation, thanks alanwww1.
Browse files Browse the repository at this point in the history
- fixed: addic7ed would fail on That '70s Show, we remove "'" to fix the search
  • Loading branch information
amet committed Dec 28, 2010
1 parent 8d5107b commit 2124e9f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions script.xbmc.subtitles/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
2.2.3
- fixed: Hungarian translation, thanks alanwww1.
- fixed: addic7ed would fail on That '70s Show, we remove "'" to fix the search

2.2.2
-added Itasa (Italiansubs.net), thx mr_blobby
-added: Itasa (Italiansubs.net), thx mr_blobby

2.2.1
-added Swesub.nu, thx mr_blobby
-added: Swesub.nu, thx mr_blobby

2.2.0
- simplify services code
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@
<string id="30103">Szolgáltastások</string>
<string id="30104">- Podnapisi.net felhasználónév</string>
<string id="30105">- Podnapisi.net jelszó</string>
<string id="30106">Különleges beállítások</string>
<string id="30106">Egyéb</string>
<string id="30107">Feliratmappa megeggyezik a film mappájával</string>
<string id="30108">- Egyedi feliratmappa megadása</string>
<string id="30110">Keresési szöveg manuális megadása</string>
<string id="30111">Harmadik nyelv</string>
<string id="30113">Alapértelmezett szolgáltatás választása mozifilmekre</string>
<string id="30114">Alapértelmezett szolgáltatás választása TV sorozatokra</string>
<string id="30113">Szolgáltatás mozifilmekre</string>
<string id="30114">Szolgáltatás TV sorozatokra</string>
<string id="30118">Fájlnév megjelenítése a találatok között</string>
<string id="30119">Keresés mappanév használatával</string>
<string id="30121">Nyelv hozzáadása a fájlnévhez </string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def get_url(url):

def query_TvShow(name, season, episode, file_original_path, langs):
sublinks = []
name = name.lower().replace(" ", "_").replace("$#*!","shit") #need this for $#*! My Dad Says
name = name.lower().replace(" ", "_").replace("$#*!","shit").replace("'","") # need this for $#*! My Dad Says and That 70s show
searchurl = "%s/serie/%s/%s/%s/addic7ed" %(self_host, name, season, episode)
socket.setdefaulttimeout(3)
page = urllib2.urlopen(searchurl)
Expand Down

0 comments on commit 2124e9f

Please sign in to comment.