Skip to content

Commit a84c4f3

Browse files
committed
Standardize on "Gold membership"
- Remove "gold subscription" - Membership is not capitalized unless in a title - Don't use "gold" without member or membership
1 parent 478cfac commit a84c4f3

17 files changed

+42
-40
lines changed

docs/advertising/ad-blocking.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Going ad-free
5353
-------------
5454

5555
Users can go completely ad-free
56-
by becoming a `Gold Member <https://readthedocs.org/accounts/gold/>`_
56+
by becoming a `Gold member <https://readthedocs.org/accounts/gold/>`_
5757
or a `Supporter <https://readthedocs.org/sustainability/#donations>`_.
5858
Thank you for supporting Read the Docs.
5959

docs/advertising/ethical-advertising.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,9 @@ Opting Out
156156
We have added multiple ways to opt out of the advertising on Read the Docs.
157157

158158
1. You can go completely ad-free
159-
by becoming a `Gold Member <https://readthedocs.org/accounts/gold/>`_
159+
by becoming a `Gold member <https://readthedocs.org/accounts/gold/>`_
160160
or a `Supporter <https://readthedocs.org/sustainability/#donations>`_.
161-
Additionally, Gold Members may remove advertising from their projects for all visitors.
161+
Additionally, Gold members may remove advertising from their projects for all visitors.
162162

163163
2. You can opt out of seeing paid advertisements on documentation pages:
164164

docs/advertising/index.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ that respects user privacy.
2323
We recognize that advertising is not for everyone.
2424
You may :ref:`opt out of paid advertising <advertising/ethical-advertising:Opting Out>`
2525
although you will still see :ref:`community ads <advertising/ethical-advertising:Community Ads>`.
26-
You can go ad-free by `becoming a Gold Member`_ or a `Supporter`_ of Read the Docs.
27-
Gold Members can also remove advertising from their projects for all visitors.
26+
You can go ad-free by `becoming a Gold member`_ or a `Supporter`_ of Read the Docs.
27+
Gold members can also remove advertising from their projects for all visitors.
2828

2929
For businesses looking to remove advertising,
3030
please consider :doc:`Read the Docs for Business </commercial/index>`.
3131

32-
.. _becoming a Gold Member: https://readthedocs.org/accounts/gold/
32+
.. _becoming a Gold member: https://readthedocs.org/accounts/gold/
3333
.. _Supporter: https://readthedocs.org/sustainability/#donations
3434

3535
.. toctree::

docs/privacy-policy.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@ and we encourage you to check back periodically.
166166
Payment processing
167167
++++++++++++++++++
168168

169-
Should you choose to become a `Supporter`_, purchase a `Gold Membership`_,
169+
Should you choose to become a `Supporter`_, purchase a `Gold membership`_,
170170
or become a subscriber to Read the Docs' commercial hosting product,
171171
your payment information and details will be processed by Stripe.
172172
Read the Docs does not store your payment information.
173173

174-
.. _Gold Membership: https://readthedocs.org/accounts/gold/
174+
.. _Gold membership: https://readthedocs.org/accounts/gold/
175175
.. _Supporter: https://readthedocs.org/sustainability/
176176

177177
Site monitoring

readthedocs/gold/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# -*- coding: utf-8 -*-
22

33
"""
4-
A Django app for Gold Membership.
4+
A Django app for Gold membership.
55
6-
Gold Membership is Read the Docs' program for recurring, monthly donations.
6+
Gold membership is Read the Docs' program for recurring, monthly donations.
77
"""
88
default_app_config = 'readthedocs.gold.apps.GoldAppConfig'

readthedocs/gold/admin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
"""Django admin configuration for the Gold Membership app."""
3+
"""Django admin configuration for the Gold membership app."""
44

55
from django.contrib import admin
66

readthedocs/gold/apps.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
"""Django app configuration for the Gold Membership app."""
3+
"""Django app configuration for the Gold membership app."""
44

55
from django.apps import AppConfig
66

readthedocs/gold/models.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Django models for recurring donations aka Gold Membership."""
1+
"""Django models for recurring donations aka Gold membership."""
22
import math
33
from datetime import datetime
44

@@ -25,7 +25,7 @@
2525

2626
class GoldUser(models.Model):
2727

28-
"""A user subscription for gold membership."""
28+
"""A user subscription for Gold membership."""
2929

3030
pub_date = models.DateTimeField(_('Publication date'), auto_now_add=True)
3131
modified_date = models.DateTimeField(_('Modified date'), auto_now=True)

readthedocs/gold/templates/gold/projects.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<h3>{% trans "Gold Projects" %}</h3>
1313
<p>
1414
{% blocktrans trimmed %}
15-
Gold Members may completely remove advertising for all visitors to their projects.
15+
Gold members may completely remove advertising for all visitors to their projects.
1616
{% endblocktrans %}
1717
</p>
1818

@@ -46,8 +46,9 @@ <h3>{% trans "Make a project ad-free" %}</h3>
4646
</form>
4747
{% else %}
4848
<p>
49-
{% blocktrans trimmed with gold_level=gold_user.get_level_display %}
50-
You have already adopted all the projects you can with your current Gold Membership of {{ gold_level }}.
49+
{% blocktrans trimmed with gold_level=gold_user.get_level_display gold_projects_count=gold_user.num_supported_projects %}
50+
You can't make any more projects ad-free with your current Gold membership of {{ gold_level }}.
51+
You can either increase the level of your membership or change which projects you make ad-free.
5152
{% endblocktrans %}
5253
</p>
5354
{% endif %}

readthedocs/gold/templates/gold/subscription_confirm_delete.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33

44
{% block profile-admin-gold-edit %}active{% endblock %}
55

6-
{% block title %}Cancel Gold{% endblock %}
6+
{% block title %}Cancel Gold membership{% endblock %}
77

88
{% block edit_content %}
9-
<h2>Cancel Gold Subscription</h2>
9+
<h2>Cancel Gold membership</h2>
1010

1111
<p>
1212
{% blocktrans trimmed %}
13-
Are you sure you want to cancel your subscription?
13+
Are you sure you want to cancel your Gold membership?
1414
{% endblocktrans %}
1515
</p>
1616

1717
<form method="post" action="{% url "gold_cancel" %}">
1818
{% csrf_token %}
19-
<input type="submit" value="{% trans "Cancel Subscription" %}">
19+
<input type="submit" value="{% trans "Cancel Gold membership" %}">
2020
</form>
2121
{% endblock %}

readthedocs/gold/templates/gold/subscription_detail.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
{% block profile-admin-gold-edit %}active{% endblock %}
66

7-
{% block title %}{% trans "Gold Subscription" %}{% endblock %}
7+
{% block title %}{% trans "Gold Membership" %}{% endblock %}
88

99
{% block extra_scripts %}
1010
<script src="https://js.stripe.com/v2/" type="text/javascript"></script>
@@ -28,7 +28,7 @@
2828

2929
{% block edit_content %}
3030
<div class="gold-subscription">
31-
<h2>{% trans "Gold Subscription" %}</h2>
31+
<h2>{% trans "Gold Membership" %}</h2>
3232

3333
<p>
3434
{% blocktrans trimmed %}
@@ -47,11 +47,11 @@ <h2>{% trans "Gold Subscription" %}</h2>
4747
</p>
4848

4949
<form method="get" action="{% url "gold_subscription" %}" class="subscription-update">
50-
<button>{% trans "Update Subscription" %}</button>
50+
<button>{% trans "Update membership" %}</button>
5151
</form>
5252

5353
<form method="get" action="{% url "gold_cancel" %}" class="subscription-cancel">
54-
<button>{% trans "Cancel Subscription" %}</button>
54+
<button>{% trans "Cancel membership" %}</button>
5555
</form>
5656

5757
<h3>{% trans "Gold projects" %}</h3>

readthedocs/gold/templates/gold/subscription_form.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
{% block edit_content %}
3636
<div>
37-
<h2>Read the Docs Gold</h2>
37+
<h2>{% trans 'Read the Docs Gold Membership' %}</h2>
3838

3939
<p>
4040
{% blocktrans trimmed %}
@@ -46,8 +46,8 @@ <h2>Read the Docs Gold</h2>
4646

4747
<p>
4848
{% blocktrans trimmed %}
49-
Becoming a Gold Member makes Read the Docs ad-free when you are logged-in.
50-
Gold Members may also completely remove advertising for all visitors to their projects.
49+
Becoming a Gold member makes Read the Docs ad-free when you are logged-in.
50+
Gold members may also completely remove advertising for all visitors to their projects.
5151
{% endblocktrans %}
5252
</p>
5353

@@ -67,12 +67,12 @@ <h2>Read the Docs Gold</h2>
6767

6868
<p>
6969
{% blocktrans trimmed %}
70-
For any questions about our Gold Membership program,
70+
For any questions about our Gold membership program,
7171
please <a href="mailto:[email protected]?subject=Gold%20membership%20questions">email us</a>.
7272
{% endblocktrans %}
7373
</p>
7474

75-
{% trans "Become a Gold Member" as subscription_title %}
75+
{% trans "Become a Gold member" as subscription_title %}
7676
{% if golduser %}
7777
{% trans "Update Your Subscription" as subscription_title %}
7878
{% endif %}

readthedocs/templates/profiles/base_profile_edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <h2>
5151
<li class="{% block profile-admin-change-email %}{% endblock %}"><a href="{% url 'account_email' %}">{% trans "Change Email" %}</a></li>
5252
<li class="{% block profile-admin-tokens %}{% endblock %}"><a href="{% url 'profiles_tokens' %}">{% trans "API Tokens" %}</a></li>
5353
<li class="{% block profile-admin-delete-account %}{% endblock %}"><a href="{% url 'delete_account' %}">{% trans "Delete Account" %}</a></li>
54-
<li class="{% block profile-admin-gold-edit %}{% endblock %}"><a href="{% url 'gold_detail' %}">{% trans "Gold" %}</a></li>
54+
<li class="{% block profile-admin-gold-edit %}{% endblock %}"><a href="{% url 'gold_detail' %}">{% trans "Gold Membership" %}</a></li>
5555
{% if USE_PROMOS %}
5656
<li class="{% block profile-admin-advertising %}{% endblock %}"><a href="{% url 'account_advertising' %}">{% trans "Advertising" %}</a></li>
5757
{% endif %}

readthedocs/templates/profiles/private/advertising_profile.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
{% if request.user.gold.exists or request.user.goldonce.exists %}
1414
<p>
1515
{% blocktrans trimmed %}
16-
Since you are a Gold Member or Supporter, you are <strong>ad-free</strong> for as long as you are logged-in.
16+
Since you are a Gold member or Supporter, you are <strong>ad-free</strong> for as long as you are logged-in.
1717
Thank you for supporting Read the Docs.
1818
{% endblocktrans%}
1919
</p>
@@ -39,7 +39,7 @@
3939
{% url "gold_detail" as gold_detail %}
4040
{% url "donate" as donate_url %}
4141
{% blocktrans trimmed %}
42-
You can <strong>go ad-free</strong> by becoming a <a href="{{ gold_detail }}">Gold Member</a> or <a href="{{ donate_url }}">Supporter</a> of Read the Docs</a>.
42+
You can <strong>go ad-free</strong> by becoming a <a href="{{ gold_detail }}">Gold member</a> or <a href="{{ donate_url }}">Supporter</a> of Read the Docs</a>.
4343
{% endblocktrans %}
4444
</p>
4545

readthedocs/templates/projects/project_advertising.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h4>{% trans "Opting out" %}</h4>
7979
<li class="module-item">
8080
{% url "gold_detail" as gold_detail %}
8181
{% blocktrans trimmed %}
82-
By becoming a <a href="{{ gold_detail }}">Gold Member</a> to Read the Docs,
82+
By becoming a <a href="{{ gold_detail }}">Gold member</a> to Read the Docs,
8383
you may remove advertising from your projects for all visitors.
8484
{% endblocktrans %}
8585
</li>
@@ -95,7 +95,7 @@ <h4>{% trans "Opting out" %}</h4>
9595
<li class="module-item">
9696
{% blocktrans trimmed %}
9797
If you would like to completely remove advertising from your open source project,
98-
but both Read the Docs for Business and our Gold Memberships don't seem like the right fit,
98+
but both Read the Docs for Business and our Gold memberships don't seem like the right fit,
9999
please <a href="mailto:[email protected]?subject=Alternatives%20to%20advertising">get in touch</a>
100100
to discuss alternatives to advertising.
101101
{% endblocktrans %}
@@ -113,7 +113,7 @@ <h4>{% trans "Opting out" %}</h4>
113113
{% blocktrans trimmed %}
114114
If you are a company hosting commercial documentation on our community site,
115115
we do not allow removing paid advertisements on your documentation.
116-
Please consider Read the Docs for Business or a Gold Membership.
116+
Please consider Read the Docs for Business or a Gold membership.
117117
{% endblocktrans %}
118118
</small>
119119
</p>

readthedocs/templates/projects/project_dashboard.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ <h3>Support Read the Docs</h3>
1010
Read the Docs depends on users like you to help us keep the site sustainable.
1111
</p>
1212
<p>
13-
We now offer <a href="{% url "gold_detail" %}">Read the Docs Gold</a> to allow folks to support us. Gold subscriptions allow us to keep the site running, and improving all the time.
14-
If you find value in Read the Docs, please consider getting a subscription.
13+
We now offer <a href="{% url "gold_detail" %}">Read the Docs Gold membership</a> to allow folks to support us.
14+
Gold members allow us to keep the site running, and improving all the time.
15+
If you find value in Read the Docs, please consider becoming a member.
1516
</p>
1617

1718
<form method="get" action="{% url "gold_detail" %}">

readthedocs/templates/support.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
Read the Docs is supported by community contributions and advertising.
3030
We hope to bring in enough money
31-
with our `Gold`_ and `Ethical Ads`_ programs to keep Read the Docs sustainable.
31+
with our `Gold membership`_ and `Ethical Ads`_ programs to keep Read the Docs sustainable.
3232

3333
**All people answering your questions are doing it with their own time,
3434
so please be kind and provide as much information as possible.**
@@ -67,7 +67,7 @@
6767

6868
.. _Stack Overflow: http://stackoverflow.com/questions/tagged/read-the-docs
6969
.. _Github Issue Tracker: https://github.com/readthedocs/readthedocs.org/issues
70-
.. _Gold: https://readthedocs.org/accounts/gold/
70+
.. _Gold membership: https://readthedocs.org/accounts/gold/
7171
.. _Ethical Ads: https://docs.readthedocs.io/page/advertising/ethical-advertising.html
7272
.. _Read the Docs for Business: https://readthedocs.com
7373

0 commit comments

Comments
 (0)