Redirect /i18n to /r/r18n

This commit is contained in:
Keith Mitchell
2011-11-14 11:46:11 -08:00
parent cd25825d07
commit 7bceffaed1
2 changed files with 2 additions and 7 deletions

View File

@@ -78,7 +78,8 @@ def make_map(global_conf={}, app_conf={}):
mc('/awards', controller='front', action='awards')
mc('/i18n', controller='feedback', action='i18n')
mc('/i18n', controller='redirect', action='redirect',
dest='http://www.reddit.com/r/r18n')
mc('/feedback', controller='feedback', action='feedback')
mc('/ad_inq', controller='feedback', action='ad_inq')

View File

@@ -35,9 +35,3 @@ class FeedbackController(RedditController):
return FormPage('feedback',
content = FeedbackBlurb(),
loginbox = False).render()
def GET_i18n(self):
title = _("help translate reddit into your language")
return FormPage(_('help translate'),
content = Feedback(title=title, action='i18n'),
loginbox = False).render()