Update -ngx in django templates / urls

This commit is contained in:
Michael Shamoon 2022-03-02 11:05:34 -08:00
parent f3cda7d551
commit 0f804937f7
4 changed files with 7 additions and 7 deletions

View File

@ -6,7 +6,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>Paperless-ng</title> <title>Paperless-ngx</title>
<base href="{% url 'base' %}"> <base href="{% url 'base' %}">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="username" content="{{username}}"> <meta name="username" content="{{username}}">
@ -19,7 +19,7 @@
<link rel="apple-touch-icon" href="{% static apple_touch_icon %}"> <link rel="apple-touch-icon" href="{% static apple_touch_icon %}">
</head> </head>
<body> <body>
<app-root>{% translate "Paperless-ng is loading..." %}</app-root> <app-root>{% translate "Paperless-ngx is loading..." %}</app-root>
<script src="{% static runtime_js %}" defer></script> <script src="{% static runtime_js %}" defer></script>
<script src="{% static polyfills_js %}" defer></script> <script src="{% static polyfills_js %}" defer></script>
<script src="{% static main_js %}" defer></script> <script src="{% static main_js %}" defer></script>

View File

@ -11,7 +11,7 @@
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors"> <meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
<meta name="generator" content="Jekyll v4.1.1"> <meta name="generator" content="Jekyll v4.1.1">
<meta name="robots" content="noindex,nofollow"> <meta name="robots" content="noindex,nofollow">
<title>{% translate "Paperless-ng signed out" %}</title> <title>{% translate "Paperless-ngx signed out" %}</title>
<!-- Bootstrap core CSS --> <!-- Bootstrap core CSS -->
<link href="{% static 'bootstrap.min.css' %}" rel="stylesheet"> <link href="{% static 'bootstrap.min.css' %}" rel="stylesheet">

View File

@ -12,7 +12,7 @@
<meta name="generator" content="Jekyll v4.1.1"> <meta name="generator" content="Jekyll v4.1.1">
<meta name="robots" content="noindex,nofollow"> <meta name="robots" content="noindex,nofollow">
<title>{% translate "Paperless-ng sign in" %}</title> <title>{% translate "Paperless-ngx sign in" %}</title>
<!-- Bootstrap core CSS --> <!-- Bootstrap core CSS -->
<link href="{% static 'bootstrap.min.css' %}" rel="stylesheet"> <link href="{% static 'bootstrap.min.css' %}" rel="stylesheet">

View File

@ -132,8 +132,8 @@ websocket_urlpatterns = [
] ]
# Text in each page's <h1> (and above login form). # Text in each page's <h1> (and above login form).
admin.site.site_header = "Paperless-ng" admin.site.site_header = "Paperless-ngx"
# Text at the end of each page's <title>. # Text at the end of each page's <title>.
admin.site.site_title = "Paperless-ng" admin.site.site_title = "Paperless-ngx"
# Text at the top of the admin index page. # Text at the top of the admin index page.
admin.site.index_title = _("Paperless-ng administration") admin.site.index_title = _("Paperless-ngx administration")