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

fix(profile): improve assorted profile strings #13610

Merged
merged 1 commit into from
Feb 6, 2025
Merged
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
6 changes: 3 additions & 3 deletions weblate/templates/accounts/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ <h4 class="panel-title">{% trans "Description" %}</h4>
</div>
<div class="panel-body">
<p>
{% blocktrans %}Contact us immediately if you see anything suspicious in the audit log.{% endblocktrans %}
{% blocktrans %}Get in contact immediately if you notice anything suspicious in the audit log.{% endblocktrans %}
</p>
</div>
</div>
Expand Down Expand Up @@ -502,7 +502,7 @@ <h4 class="panel-title">{% trans "Audit log" %}</h4>
</tr>
{% empty %}
<tr>
<td colspan="4">{% trans "No recent activity found!" %}</td>
<td colspan="4">{% trans "No recent activity found." %}</td>
</tr>
{% endfor %}
</tbody>
Expand All @@ -523,7 +523,7 @@ <h4 class="panel-title">{% documentation_icon 'api' right=True %}{% trans "API a
<tr>
<td colspan="2">
<p>
{% blocktrans %}You can control Weblate using the HTTP REST API and your API key is used to authenticate to it.{% endblocktrans %}
{% blocktrans %}The API key can be used to control Weblate via the HTTP REST API and to access Weblate Git repositories.{% endblocktrans %}
</p>
</td>
</tr>
Expand Down
Loading