Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates references to "journalists" in Source Interface to more neutral "team" #5175

Merged
merged 1 commit into from
Apr 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion securedrop/source_templates/generate.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h1>{{ gettext('Welcome') }}</h1>
<p>{{ gettext('Please either write this codename down and keep it in a safe place, or memorize it.') }}</p>
</aside>

<p class="explanation">{{ gettext('This codename is what you will use in future visits to receive messages from our journalists in response to what you submit on the next screen.') }}</p>
<p class="explanation">{{ gettext('This codename is what you will use in future visits to receive messages from our team in response to what you submit on the next screen.') }}</p>

<hr class="no-line">

Expand Down
2 changes: 1 addition & 1 deletion securedrop/source_templates/why-journalist-key.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "base.html" %}
{% block body %}
<h1>{{ gettext("Why download the journalist's public key?") }}</h1>
<h1>{{ gettext("Why download the team's public key?") }}</h1>
<p>{{ gettext("SecureDrop encrypts files and messages after they are submitted. Encrypting messages and files before submission can provide an extra layer of security before your data reaches the SecureDrop server.") }}</p>
<p>{{ gettext("If you are already familiar with the GPG encryption software, you may wish to encrypt your submissions yourself. To do so:") }}
<ol>
Expand Down
2 changes: 1 addition & 1 deletion securedrop/tests/test_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ def test_why_journalist_key(source_app):
resp = app.get(url_for('info.why_download_journalist_pubkey'))
assert resp.status_code == 200
text = resp.data.decode('utf-8')
assert "Why download the journalist's public key?" in text
assert "Why download the team's public key?" in text


def test_metadata_route(config, source_app):
Expand Down