Skip to content

Commit cedb96d

Browse files
committed
Minor improvements to client docs
1 parent f24ca9c commit cedb96d

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

src/sentry/templates/sentry/help/index.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@
1010
{% block helpcontent %}
1111

1212
<div class="crumbs">
13-
<h2>Knowledge Base</h1>
13+
<h2>{% trans "Knowledge Base" %}</h1>
1414
</div>
1515

1616
<div class="row">
1717
<div class="col-md-6">
18-
<h3>User Guide</h2>
18+
<h3>{% trans "User Guide" %}</h2>
1919
<ul>
2020
{% for page in page_list %}
2121
<li><a href="{% url 'sentry-help-page' page.id page.slug %}">{{ page.title }}</a></li>
2222
{% endfor %}
2323
</ul>
2424
</div>
2525
<div class="col-md-6">
26-
<h3>Developer Documentation</h2>
26+
<h3>{% trans "Developer Documentation" %}</h2>
2727
<ul>
2828
<li><a href="{% url 'sentry-api-0-help' %}">Web API Reference</a></li>
2929
<li><a href="http://sentry.readthedocs.org/en/latest/developer/client/index.html">Client API Reference</a></li>
@@ -33,6 +33,8 @@ <h3>Developer Documentation</h2>
3333

3434
<hr>
3535

36+
<h3>{% trans "Languages" %}</h3>
37+
3638
{% include 'sentry/partial/_client_config.html' %}
3739

3840
{% endblock %}

src/sentry/templates/sentry/help/platform_index.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,16 @@
33
{% load i18n %}
44
{% load sentry_helpers %}
55

6-
{% block title %}Platforms | {{ block.super }}{% endblock %}
6+
{% block title %}{% trans "Platforms" %} | {{ block.super }}{% endblock %}
77

88
{% block content %}
9+
<div class="crumbs">
10+
<a href="{% url 'sentry-help' %}" class="back-button icon-arrow-left"></a>
11+
<h2>{% trans "Platforms" %}</h2>
12+
</div>
913

14+
<p>While Sentry is designed to work on any platform, we officially support a subset. If you're looking to integrate Sentry on an unsupported platform please take a look at our <a href="http://sentry.readthedocs.org/en/latest/developer/client/index.html">client API reference</a>.</p>
15+
16+
<h3>Languages</h3>
1017
{% include 'sentry/partial/_client_config.html' %}
1118
{% endblock %}

src/sentry/templates/sentry/partial/_client_config.html

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{% load i18n %}
22

3-
<h2>{% trans "Platforms" %}</h2>
4-
53
<ul class="client-platform-list list-unstyled">
64
<li>
75
<a href="{% url 'sentry-help-platform' 'python' %}">
@@ -53,9 +51,7 @@ <h2>{% trans "Platforms" %}</h2>
5351
</li>
5452
</ul>
5553

56-
<hr>
57-
58-
<h2>{% trans "Frameworks" %}</h2>
54+
<h3>{% trans "Frameworks" %}</h3>
5955

6056
<ul class="client-platform-list list-unstyled">
6157
<li>

0 commit comments

Comments
 (0)