I need to make an urlpattern different for each language, but following to the same view.
for example:
url(r'^category/(?P<slug>[\w-]+)/, 'news.views.category', name='category'), in english
url(r'^kategoria/(?P<slug>[\w-]+)/, 'news.views.category', name='category'), in polish
if you have EN set, "kategoria" won't work. Is it possible?