diff --git a/aleksis/core/menus.py b/aleksis/core/menus.py
index a1b6f32113129085ba390a2ed8a2cc84d3c3eef1..8bc3069501c11a4c5e1575bb2eb0daf44d18fd47 100644
--- a/aleksis/core/menus.py
+++ b/aleksis/core/menus.py
@@ -94,7 +94,7 @@ MENUS = {
                     ],
                 },
                 {
-                    "name": _("Social accounts"),
+                    "name": _("Third-party accounts"),
                     "url": "socialaccount_connections",
                     "icon": "public",
                     "validators": [
diff --git a/aleksis/core/templates/socialaccount/authentication_error.html b/aleksis/core/templates/socialaccount/authentication_error.html
index 95bd2b5aa5767c094974e6f0147160464ed44b20..00901daf7fc3542ba07490381f7903e8f6d14048 100644
--- a/aleksis/core/templates/socialaccount/authentication_error.html
+++ b/aleksis/core/templates/socialaccount/authentication_error.html
@@ -2,18 +2,18 @@
 
 {% load i18n material_form %}
 
-{% block browser_title %}{% trans "Social Network Login Failure" %}{% endblock %}
-{% block page_title %}{% trans "Social Network Login Failure" %}{% endblock %}
+{% block browser_title %}{% trans "Third-party Account Login Failure" %}{% endblock %}
+{% block page_title %}{% trans "Third-party Account Login Failure" %}{% endblock %}
 
 {% block content %}
   <div class="container">
     <div class="card red">
       <div class="card-content white-text">
         <div class="material-icons small left">error_outline</div>
-        <span class="card-title">{% blocktrans %}Social Network Login Failure.{% endblocktrans %}</span>
+        <span class="card-title">{% blocktrans %}Third-party Account Login Failure.{% endblocktrans %}</span>
         <p>
           {% blocktrans %}
-            An error occurred while attempting to login via your social network account.
+            An error occurred while attempting to login via your third-party account.
             Please contact one of your site administrators.
           {% endblocktrans %}
         </p>
diff --git a/aleksis/core/templates/socialaccount/connections.html b/aleksis/core/templates/socialaccount/connections.html
index 2e725ee310b7cbd7fb4c12b8f18f1dc716da7d9d..1ff2c2eb6123e21e15423ec0e6b761eefd869c34 100644
--- a/aleksis/core/templates/socialaccount/connections.html
+++ b/aleksis/core/templates/socialaccount/connections.html
@@ -31,10 +31,10 @@
     </div>
 
   {% else %}
-    <p>{% trans 'You currently have no social network accounts connected to this account.' %}</p>
+    <p>{% trans 'You currently have no third-party accounts connected to this account.' %}</p>
   {% endif %}
 
-  <h5>{% trans 'Add a 3rd Party Account' %}</h5>
+  <h5>{% trans 'Add a Third-party Account' %}</h5>
 
   {% include "socialaccount/snippets/provider_list.html" with process="connect" %}
 
diff --git a/aleksis/core/templates/socialaccount/snippets/provider_list.html b/aleksis/core/templates/socialaccount/snippets/provider_list.html
index e16a81810df696e7c083d07e421fd5e73d0fd43b..9d9a9c87712076d8954ebce192ea2ac38383cc48 100644
--- a/aleksis/core/templates/socialaccount/snippets/provider_list.html
+++ b/aleksis/core/templates/socialaccount/snippets/provider_list.html
@@ -28,9 +28,9 @@
       <div>
         <i class="material-icons left">info</i>
         {% blocktrans %}
-          No 3rd party account providers available.
+          No third-party account providers available.
         {% endblocktrans %}
       </div>
     </div>
   {% endif %}
-</p>
\ No newline at end of file
+</p>
diff --git a/aleksis/core/views.py b/aleksis/core/views.py
index c1f1bcbef755f38a9fbc94f1be11cbd4ae18e1a8..ad762e3ebb7c06a5ffc858d5bdfb9e76589098df 100644
--- a/aleksis/core/views.py
+++ b/aleksis/core/views.py
@@ -1134,13 +1134,13 @@ class SocialAccountDeleteView(DeleteView):
             messages.error(
                 self.request,
                 _(
-                    "The social account could not be disconnected "
+                    "The third-party account could not be disconnected "
                     "because it is the only login method available."
                 ),
             )
         else:
             self.object.delete()
             messages.success(
-                self.request, _("The social account has been successfully disconnected.")
+                self.request, _("The third-party account has been successfully disconnected.")
             )
         return HttpResponseRedirect(success_url)