Clean up translated strings in registration page, dashboard, and track selection flow

This commit is contained in:
Renzo Lucioni
2014-09-16 11:47:19 -04:00
parent 43ce6421cf
commit 66187ab907
11 changed files with 281 additions and 168 deletions

View File

@@ -280,7 +280,7 @@ class IntegrationTest(testutil.TestCase, test.TestCase):
def assert_register_response_before_pipeline_looks_correct(self, response):
"""Asserts a GET of /register not in the pipeline looks correct."""
self.assertEqual(200, response.status_code)
self.assertIn('Sign up with ' + self.PROVIDER_CLASS.NAME, response.content)
self.assertIn('Register with ' + self.PROVIDER_CLASS.NAME, response.content)
self.assert_signin_button_looks_functional(response.content, pipeline.AUTH_ENTRY_REGISTER)
def assert_signin_button_looks_functional(self, content, auth_entry):