Browse Source

Change "Add Users from Other Teams" -> "Add Users from Other Projects"

master
Pēteris Caune 3 years ago
parent
commit
cfd0bd2a6e
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      hc/accounts/tests/test_project.py
  2. +1
    -1
      templates/accounts/project.html

+ 1
- 1
hc/accounts/tests/test_project.py View File

@ -320,7 +320,7 @@ class ProjectTestCase(BaseTestCase):
self.client.login(username="[email protected]", password="password")
r = self.client.get("/projects/%s/settings/" % p2.code)
self.assertContains(r, "Add Users from Other Teams")
self.assertContains(r, "Add Users from Other Projects")
self.assertContains(r, "[email protected]")
def test_it_requires_rw_access_to_update_project_name(self):


+ 1
- 1
templates/accounts/project.html View File

@ -228,7 +228,7 @@
{% if is_manager and invite_suggestions %}
<tr id="suggestions-row">
<td colspan="3">
Add Users from Other Teams
Add Users from Other Projects
</td>
</tr>


Loading…
Cancel
Save