summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/utils.txt11
-rw-r--r--docs/releases/2.1.txt2
2 files changed, 2 insertions, 11 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt
index 55a733f376..c9fa10e0e5 100644
--- a/docs/ref/utils.txt
+++ b/docs/ref/utils.txt
@@ -1057,17 +1057,6 @@ functions without the ``u``.
See :ref:`lazy translations documentation <lazy-translations>`.
-.. function:: string_concat(*strings)
-
- .. deprecated:: 1.11
-
- Use :meth:`django.utils.text.format_lazy` instead.
- ``string_concat(*strings)`` can be replaced by
- ``format_lazy('{}' * len(strings), *strings)``.
-
- Lazy variant of string concatenation, needed for translations that are
- constructed from multiple parts.
-
.. function:: activate(language)
Fetches the translation object for a given language and activates it as
diff --git a/docs/releases/2.1.txt b/docs/releases/2.1.txt
index 560eee4fd3..7f1330b756 100644
--- a/docs/releases/2.1.txt
+++ b/docs/releases/2.1.txt
@@ -234,3 +234,5 @@ how to remove usage of these features.
is removed.
* ``django.test.runner.setup_databases()`` is removed.
+
+* ``django.utils.translation.string_concat()`` is removed.