diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index d8260b0..f5d0f9a 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -1303,6 +1303,23 @@ The URL where requests are redirected after login when the
 This is used by the :func:`~django.contrib.auth.decorators.login_required`
 decorator, for example.
 
+.. _`note on LOGIN_REDIRECT_URL setting`:
+
+.. note::
+    You can use :func:`~reverse_lazy` to reference
+    URLs by their name instead of providing hardcoded value::
+
+        # urls.py
+        urlpatterns = i18n_patterns('',
+            url(_(r'^home/$'), 'test_app.views.home', name='home'),
+        )
+
+        # settings.py
+        LOGIN_REDIRECT_URL = reverse_lazy('home')
+
+
+    This also works well with :func:`~django.conf.urls.i18n.i18n_patterns`.
+
 .. setting:: LOGIN_URL
 
 LOGIN_URL
@@ -1313,6 +1330,9 @@ Default: ``'/accounts/login/'``
 The URL where requests are redirected for login, especially when using the
 :func:`~django.contrib.auth.decorators.login_required` decorator.
 
+.. note::
+    See the `note on LOGIN_REDIRECT_URL setting`_
+
 .. setting:: LOGOUT_URL
 
 LOGOUT_URL
@@ -1322,6 +1342,9 @@ Default: ``'/accounts/logout/'``
 
 LOGIN_URL counterpart.
 
+.. note::
+    See the `note on LOGIN_REDIRECT_URL setting`_
+
 .. setting:: MANAGERS
 
 MANAGERS
