add english translation

This commit is contained in:
lijiejie
2022-04-10 00:08:10 +08:00
parent e5b34be344
commit c004584df0
10 changed files with 483 additions and 90 deletions
+2 -1
View File
@@ -1,6 +1,6 @@
# coding=utf-8
from django.urls import path, re_path
from django.urls import path, re_path, include
from django.contrib import admin
from logview import views
@@ -23,5 +23,6 @@ urlpatterns = [
re_path(r'^rebind/gen$', views.rebind_gen, name='rebind_gen'),
re_path(r'^as_admin/$', views.as_admin, name='as_admin'),
re_path(r'^config/update$', views.config_update, name='config_update'),
path('i18n/', include('django.conf.urls.i18n')),
re_path(r'^.*$', views.index, name='index'),
]