Show More
@@ -424,18 +424,6 b' msgstr "\xd0\xa6\xd0\xb8\xd1\x82\xd0\xb0\xd1\x82\xd0\xb0"' | |||
|
424 | 424 | msgid "You can try pasting the text and previewing the result here:" |
|
425 | 425 | msgstr "Вы можете попробовать вставить текст и проверить результат здесь:" |
|
426 | 426 | |
|
427 | #: templates/boards/tags.html:17 | |
|
428 | msgid "Sections:" | |
|
429 | msgstr "Разделы:" | |
|
430 | ||
|
431 | #: templates/boards/tags.html:30 | |
|
432 | msgid "Other tags:" | |
|
433 | msgstr "Другие метки:" | |
|
434 | ||
|
435 | #: templates/boards/tags.html:43 | |
|
436 | msgid "All tags..." | |
|
437 | msgstr "Все метки..." | |
|
438 | ||
|
439 | 427 | #: templates/boards/thread.html:14 |
|
440 | 428 | msgid "Normal" |
|
441 | 429 | msgstr "Нормальный" |
@@ -424,18 +424,6 b' msgstr "\xd0\xa6\xd0\xb8\xd1\x82\xd0\xb0\xd1\x82\xd0\xb0"' | |||
|
424 | 424 | msgid "You can try pasting the text and previewing the result here:" |
|
425 | 425 | msgstr "Можете спробувати вставити текст і перевірити результат тут:" |
|
426 | 426 | |
|
427 | #: templates/boards/tags.html:17 | |
|
428 | msgid "Sections:" | |
|
429 | msgstr "Розділи:" | |
|
430 | ||
|
431 | #: templates/boards/tags.html:30 | |
|
432 | msgid "Other tags:" | |
|
433 | msgstr "Інші мітки:" | |
|
434 | ||
|
435 | #: templates/boards/tags.html:43 | |
|
436 | msgid "All tags..." | |
|
437 | msgstr "Усі мітки..." | |
|
438 | ||
|
439 | 427 | #: templates/boards/thread.html:14 |
|
440 | 428 | msgid "Normal" |
|
441 | 429 | msgstr "Звичайний" |
@@ -1,24 +1,20 b'' | |||
|
1 | 1 | from django.conf.urls import url |
|
2 | 2 | |
|
3 | import neboard | |
|
4 | ||
|
5 | 3 | from boards import views |
|
6 | 4 | from boards.rss import AllThreadsFeed, TagThreadsFeed, ThreadPostsFeed |
|
7 |
from boards.views import api, tag_threads, all_threads, |
|
|
8 | settings, all_tags, feed, stickers | |
|
5 | from boards.views import api, tag_threads, all_threads, settings, feed, stickers | |
|
9 | 6 | from boards.views.authors import AuthorsView |
|
7 | from boards.views.landing import LandingView | |
|
10 | 8 | from boards.views.notifications import NotificationView |
|
9 | from boards.views.preview import PostPreviewView | |
|
10 | from boards.views.random import RandomImageView | |
|
11 | from boards.views.search import BoardSearchView | |
|
11 | 12 | from boards.views.static import StaticPageView |
|
12 | from boards.views.preview import PostPreviewView | |
|
13 | 13 | from boards.views.sync import get_post_sync_data, response_get, response_list |
|
14 | from boards.views.random import RandomImageView | |
|
15 | 14 | from boards.views.tag_gallery import TagGalleryView |
|
16 | 15 | from boards.views.translation import cached_javascript_catalog |
|
17 | from boards.views.search import BoardSearchView | |
|
18 | from boards.views.landing import LandingView | |
|
19 | 16 | from boards.views.utils import UtilsView |
|
20 | 17 | |
|
21 | ||
|
22 | 18 | js_info_dict = { |
|
23 | 19 | 'packages': ('boards',), |
|
24 | 20 | } |
@@ -44,7 +40,6 b' urlpatterns = [' | |||
|
44 | 40 | url(r'^settings/$', settings.SettingsView.as_view(), name='settings'), |
|
45 | 41 | url(r'^stickers/$', stickers.AliasesView.as_view(), name='stickers'), |
|
46 | 42 | url(r'^stickers/(?P<category>\w+)/$', stickers.AliasesView.as_view(), name='stickers'), |
|
47 | url(r'^tags/$', all_tags.AllTagsView.as_view(), name='tags'), | |
|
48 | 43 | url(r'^authors/$', AuthorsView.as_view(), name='authors'), |
|
49 | 44 | |
|
50 | 45 | url(r'^banned/$', views.banned.BannedView.as_view(), name='banned'), |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now