From 0cdb04e8ce2ccc0cf6a8d18b44ae81cfc2ceb070 Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Sat, 17 Jul 2010 09:49:12 +0000 Subject: [PATCH] Lite design templates --- Builder/IISMainHandler/build.txt | 2 +- static/css/global.css | 3 + templates/Lite/Board.xslt | 45 ++++ templates/Lite/BoardAsThread.xslt | 127 ++++++++++ templates/Lite/Boards.xslt | 16 ++ templates/Lite/Conversation.xslt | 96 ++++++++ templates/Lite/Conversations.xslt | 38 +++ templates/Lite/Login.xslt | 67 +++++ templates/Lite/MigrateAccount.xslt | 64 +++++ templates/Lite/NewPoll.xslt | 193 +++++++++++++++ templates/Lite/NewThread.xslt | 58 +++++ templates/Lite/PMReply.xslt | 103 ++++++++ templates/Lite/PMReplyToPost.xslt | 108 ++++++++ templates/Lite/PMSend.xslt | 58 +++++ templates/Lite/Poll.xslt | 44 ++++ templates/Lite/Post.xslt | 85 +++++++ templates/Lite/PostEdit.xslt | 94 +++++++ templates/Lite/PostReply.xslt | 111 +++++++++ templates/Lite/Root.xslt | 66 +++++ templates/Lite/Thread.xslt | 34 +++ templates/Lite/UserInfo.xslt | 231 ++++++++++++++++++ templates/Lite/WrongUrl.xslt | 28 +++ templates/Lite/elems/BoardInfo.xslt | 20 ++ templates/Lite/elems/ConversationInfo.xslt | 41 ++++ templates/Lite/elems/Header.xslt | 34 +++ templates/Lite/elems/Main.xslt | 189 ++++++++++++++ templates/Lite/elems/PMInfo.xslt | 42 ++++ templates/Lite/elems/PollInfo.xslt | 164 +++++++++++++ templates/Lite/elems/PollShortInfo.xslt | 28 +++ templates/Lite/elems/PostInfo.xslt | 63 +++++ templates/Lite/elems/TextEditor.xslt | 57 +++++ templates/Lite/elems/ThreadInfo.xslt | 53 ++++ templates/Lite/maintenance/CleanCache.xslt | 49 ++++ templates/Lite/result/Login.xslt | 31 +++ templates/Lite/result/Logout.xslt | 31 +++ templates/Lite/result/MessageCreated.xslt | 48 ++++ templates/Lite/result/MessageEdited.xslt | 48 ++++ templates/Lite/result/MigrateAccount.xslt | 48 ++++ templates/Lite/result/PMSent.xslt | 48 ++++ templates/Lite/result/PollCreated.xslt | 35 +++ templates/Lite/result/SettingsSaved.xslt | 31 +++ templates/Lite/result/Upload.xslt | 38 +++ templates/Lite/result/VoteAccepted.xslt | 31 +++ .../Lite/result/maintenance/CacheCleaned.xslt | 37 +++ 44 files changed, 2836 insertions(+), 1 deletion(-) create mode 100644 templates/Lite/Board.xslt create mode 100644 templates/Lite/BoardAsThread.xslt create mode 100644 templates/Lite/Boards.xslt create mode 100644 templates/Lite/Conversation.xslt create mode 100644 templates/Lite/Conversations.xslt create mode 100644 templates/Lite/Login.xslt create mode 100644 templates/Lite/MigrateAccount.xslt create mode 100644 templates/Lite/NewPoll.xslt create mode 100644 templates/Lite/NewThread.xslt create mode 100644 templates/Lite/PMReply.xslt create mode 100644 templates/Lite/PMReplyToPost.xslt create mode 100644 templates/Lite/PMSend.xslt create mode 100644 templates/Lite/Poll.xslt create mode 100644 templates/Lite/Post.xslt create mode 100644 templates/Lite/PostEdit.xslt create mode 100644 templates/Lite/PostReply.xslt create mode 100644 templates/Lite/Root.xslt create mode 100644 templates/Lite/Thread.xslt create mode 100644 templates/Lite/UserInfo.xslt create mode 100644 templates/Lite/WrongUrl.xslt create mode 100644 templates/Lite/elems/BoardInfo.xslt create mode 100644 templates/Lite/elems/ConversationInfo.xslt create mode 100644 templates/Lite/elems/Header.xslt create mode 100644 templates/Lite/elems/Main.xslt create mode 100644 templates/Lite/elems/PMInfo.xslt create mode 100644 templates/Lite/elems/PollInfo.xslt create mode 100644 templates/Lite/elems/PollShortInfo.xslt create mode 100644 templates/Lite/elems/PostInfo.xslt create mode 100644 templates/Lite/elems/TextEditor.xslt create mode 100644 templates/Lite/elems/ThreadInfo.xslt create mode 100644 templates/Lite/maintenance/CleanCache.xslt create mode 100644 templates/Lite/result/Login.xslt create mode 100644 templates/Lite/result/Logout.xslt create mode 100644 templates/Lite/result/MessageCreated.xslt create mode 100644 templates/Lite/result/MessageEdited.xslt create mode 100644 templates/Lite/result/MigrateAccount.xslt create mode 100644 templates/Lite/result/PMSent.xslt create mode 100644 templates/Lite/result/PollCreated.xslt create mode 100644 templates/Lite/result/SettingsSaved.xslt create mode 100644 templates/Lite/result/Upload.xslt create mode 100644 templates/Lite/result/VoteAccepted.xslt create mode 100644 templates/Lite/result/maintenance/CacheCleaned.xslt diff --git a/Builder/IISMainHandler/build.txt b/Builder/IISMainHandler/build.txt index 24888be..0dd217a 100644 --- a/Builder/IISMainHandler/build.txt +++ b/Builder/IISMainHandler/build.txt @@ -1 +1 @@ -862 \ No newline at end of file +880 \ No newline at end of file diff --git a/static/css/global.css b/static/css/global.css index 2da842b..16876d5 100644 --- a/static/css/global.css +++ b/static/css/global.css @@ -96,3 +96,6 @@ pre background-color:yellow !important; font-weight: bold !important; } +p { + margin:0em; +} diff --git a/templates/Lite/Board.xslt b/templates/Lite/Board.xslt new file mode 100644 index 0000000..5ea0de7 --- /dev/null +++ b/templates/Lite/Board.xslt @@ -0,0 +1,45 @@ + + + + + + + + + +

+ + [ + + + /Board//NewThread/ + + New Post + + ] +

+ + + + + + + + + + + + + + +
ТемаАвтор
+ + страницы: + + /Board// + + +
+
+ +
\ No newline at end of file diff --git a/templates/Lite/BoardAsThread.xslt b/templates/Lite/BoardAsThread.xslt new file mode 100644 index 0000000..28b404a --- /dev/null +++ b/templates/Lite/BoardAsThread.xslt @@ -0,0 +1,127 @@ + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+ + + + + + + + + + + + + +
+
+
+
+
+ + + + +
+ + + + + + + + + + +
+ + страницы: + + /BoardAsThread// + + +
+ + страницы: + + /BoardAsThread// + + +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/Boards.xslt b/templates/Lite/Boards.xslt new file mode 100644 index 0000000..aea3bb4 --- /dev/null +++ b/templates/Lite/Boards.xslt @@ -0,0 +1,16 @@ + + + + + Разделы + + + + + +
+

+ +
+ +
\ No newline at end of file diff --git a/templates/Lite/Conversation.xslt b/templates/Lite/Conversation.xslt new file mode 100644 index 0000000..0b23885 --- /dev/null +++ b/templates/Lite/Conversation.xslt @@ -0,0 +1,96 @@ + + + + + + + + + +
+ + + + +
+ + + + + + + + +
+ + + + +
+ страницы: + + /Conversation// + +
+
+ + + + +
+ страницы: + + /Conversation// + +
+
+
+
+ +
+ + + + + + +
+ + + + +
+ + + + + +
+ + Приватные сообщения + >> + + + + + + + + +
+
+
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/Conversations.xslt b/templates/Lite/Conversations.xslt new file mode 100644 index 0000000..cfbc80c --- /dev/null +++ b/templates/Lite/Conversations.xslt @@ -0,0 +1,38 @@ + + + + + Личные сообщения + +

+ Приватные сообщения + [ + + + /Board//NewThread/ + + New Message + + ] +

+ + + + + + + + + + +
Автор
+ + страницы: + + /Conversations/ + + +
+
+ +
\ No newline at end of file diff --git a/templates/Lite/Login.xslt b/templates/Lite/Login.xslt new file mode 100644 index 0000000..5e4858c --- /dev/null +++ b/templates/Lite/Login.xslt @@ -0,0 +1,67 @@ + + + + Вход + + + + + +
+ + + + + + + + + + +
+ Вход +
+ Введите ваше имя пользователя и пароль для регистрации в форуме. +
+ Если вы ещё не пользовались этим форумом, но пришли со старого форум.локала – вы можете создать пароль в форме миграции. +
+
+ Логин
+
+ Пароль
+
+ +
+
+
+
+ + + + +
+ + + + + + + + + + +
+ Миграция +
+ Если вы пришли со старого форум.локала – введите свой логин. +
+
+ Логин
+
+ +
+
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/MigrateAccount.xslt b/templates/Lite/MigrateAccount.xslt new file mode 100644 index 0000000..f60453b --- /dev/null +++ b/templates/Lite/MigrateAccount.xslt @@ -0,0 +1,64 @@ + + + + Миграция + + + + + +
+ + + + + + + + + + +
+ Миграция пользователя +
+ Введите строку + (fhn:) + (вместе со скобками) в поле биографии в своём профайле на старом форуме. +
+
+ + + + + + + Новый пароль
+
+ Повторите пароль
+
+
+ + + описанная по этой ссылке конституция + . + (обязательно) +
+ + + (обязательно) +
+ + + (обязательно) +
+ +
+

+ Если у вас что-то не получается - прочитайте + инструкцию в картинках +

+
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/NewPoll.xslt b/templates/Lite/NewPoll.xslt new file mode 100644 index 0000000..e343487 --- /dev/null +++ b/templates/Lite/NewPoll.xslt @@ -0,0 +1,193 @@ + + + + + Новый опорос + + + + + + +
+ + + + + + + + + + +
+ Создание нового опроса +
+ Заполните приведенную ниже форму для отправки сообщения в форум. HTML отключен. UBBCode включен, и вы можете использовать UBBCode в ваших сообщениях. Анонимные сообщения разрешены, и вы можете выбрать любое незарегистрированное имя. +
+
+ Пользователь: + +
+
+ Тема: +
+ +
+
+ + +
+ + +
+
+ Вариант 1: +
+ +
+
+ Вариант 2: +
+ +
+
+ Вариант 3: +
+ +
+
+ Вариант 4: +
+ +
+
+ Вариант 5: +
+ +
+
+ Вариант 6: +
+ +
+
+ Вариант 7: +
+ +
+
+ Вариант 8: +
+ +
+
+ Вариант 9: +
+ +
+
+ Вариант 10: +
+ +
+
+ Вариант 11: +
+ +
+
+ Вариант 12: +
+ +
+
+ Вариант 13: +
+ +
+
+ Вариант 14: +
+ +
+
+ Вариант 15: +
+ +
+
+ Вариант 16: +
+ +
+
+ Вариант 17: +
+ +
+
+ Вариант 18: +
+ +
+
+ Вариант 19: +
+ +
+
+ Вариант 20: +
+ +
+
+ + +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/NewThread.xslt b/templates/Lite/NewThread.xslt new file mode 100644 index 0000000..31b6a77 --- /dev/null +++ b/templates/Lite/NewThread.xslt @@ -0,0 +1,58 @@ + + + + + + Новая тема - + + + + + + + +
+ + + + + + + + + + +
+ Создание новой темы - Форум ( + + ) +
+ Заполните приведенную ниже форму для отправки сообщения в форум. HTML отключен. UBBCode включен, и вы можете использовать UBBCode в ваших сообщениях. Анонимные сообщения разрешены, и вы можете выбрать любое незарегистрированное имя. +
+
+ + + + Пользователь: + +
+
+ Тема: +
+ + Слой сообщения: + +
+
+ + + +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/PMReply.xslt b/templates/Lite/PMReply.xslt new file mode 100644 index 0000000..27f7446 --- /dev/null +++ b/templates/Lite/PMReply.xslt @@ -0,0 +1,103 @@ + + + + + + Ответ на личное сообщение - + + + + + + + +
+ + + + + + + + + + +
+ Ответ на личное сообщение ( + + ) +
+ Заполните приведенную ниже форму для отправки личного сообщения. HTML отключен. UBBCode включен, и вы можете использовать UBBCode в ваших сообщениях. Анонимные сообщения разрешены, и вы можете выбрать любое незарегистрированное имя. +
+
+ + + + Пользователь: + +
+
+ Тема: +
+ + + + + + + + Re: + + + + + +
+
+ + + [q] + + [/q] + + + + + +
+
+ +
+ + + + + +
+ + + + + + + + + + +
+ Ответ на сообщение +
+ + Автор: + +
+ Тема: + +
+
+ +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/PMReplyToPost.xslt b/templates/Lite/PMReplyToPost.xslt new file mode 100644 index 0000000..5adee64 --- /dev/null +++ b/templates/Lite/PMReplyToPost.xslt @@ -0,0 +1,108 @@ + + + + + + Личный ответ на сообщение - + + + + + + + +
+ + + + + + + + + + +
+ Ответ на сообщение ( + + ) +
+ Заполните приведенную ниже форму для отправки личного сообщения. +
+
+ + + + Пользователь: + +
+ Получатель: + +
+
+ Тема: +
+ + + + + + + + Re: + + + + + +
+
+ + + + [q] + + [/q] + + + + + + +
+
+ +
+ + + + + +
+ + + + + + + + + + +
+ Ответ на сообщение +
+ + Автор: + +
+ Тема: + +
+
+ +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/PMSend.xslt b/templates/Lite/PMSend.xslt new file mode 100644 index 0000000..dc1075d --- /dev/null +++ b/templates/Lite/PMSend.xslt @@ -0,0 +1,58 @@ + + + + + Новое личное сообщение + + + + + +
+ + + + + + + + + + +
+ Новое личное сообщение +
+ Заполните приведенную ниже форму для отправки личного сообщения. HTML отключен. UBBCode включен, и вы можете использовать UBBCode в ваших сообщениях. Анонимные сообщения разрешены, и вы можете выбрать любое незарегистрированное имя. +
+
+ Пользователь: + +
+ Получатель: + + + + + + + + + + + +
+
+ Тема: +
+ +
+
+ + + +
+
+ +
+ +
\ No newline at end of file diff --git a/templates/Lite/Poll.xslt b/templates/Lite/Poll.xslt new file mode 100644 index 0000000..8714f5c --- /dev/null +++ b/templates/Lite/Poll.xslt @@ -0,0 +1,44 @@ + + + + + + + + + + + + +
+ + + + +
+ + + + +
+ + Опросы + >> + + +
+
+
+
+ + + + +
+ + +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/Post.xslt b/templates/Lite/Post.xslt new file mode 100644 index 0000000..5bc34a0 --- /dev/null +++ b/templates/Lite/Post.xslt @@ -0,0 +1,85 @@ + + + + + + + + + +
+ + + + +
+ + + + +
+
+
+ +
+ + + + + + +
+ + + + +
+ + + + + +
+ + + + + + + + + + + +
+
+
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/PostEdit.xslt b/templates/Lite/PostEdit.xslt new file mode 100644 index 0000000..0d41524 --- /dev/null +++ b/templates/Lite/PostEdit.xslt @@ -0,0 +1,94 @@ + + + + + + Изменение сообщения - + + + + + + + +
+ + + + + + + + + + +
+ Изменение сообщения ( + + ) +
+ Заполните приведенную ниже форму для изменения сообщения +
+
+ + + + Пользователь: + +
+
+ Тема: +
+ + + + Слой сообщения: + +
+
+ + + + + +
+
+ +
+ + + + + +
+ + + + + + + + + + +
+ Ответ на сообщение +
+ + Автор: + +
+ Тема: + +
+
+ +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/PostReply.xslt b/templates/Lite/PostReply.xslt new file mode 100644 index 0000000..8119fdc --- /dev/null +++ b/templates/Lite/PostReply.xslt @@ -0,0 +1,111 @@ + + + + + + Ответ на сообщение - + + + + + + + +
+ + + + + + + + + + +
+ Ответ на сообщение ( + + ) +
+ Заполните приведенную ниже форму для отправки сообщения в форум. HTML отключен. UBBCode включен, и вы можете использовать UBBCode в ваших сообщениях. Анонимные сообщения разрешены, и вы можете выбрать любое незарегистрированное имя. +
+
+ + + + Пользователь: + +
+
+ Тема: +
+ + + + + + + + Re: + + + + + + Слой сообщения: + +
+
+ + + + [q] + + [/q] + + + + + + +
+
+ +
+ + + + + +
+ + + + + + + + + + +
+ Ответ на сообщение +
+ + Автор: + +
+ Тема: + +
+
+ +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/Root.xslt b/templates/Lite/Root.xslt new file mode 100644 index 0000000..dab5fc6 --- /dev/null +++ b/templates/Lite/Root.xslt @@ -0,0 +1,66 @@ + + + + + + + + <xsl:value-of select="title"/> + + +

+ + + Hello, + + + Hello, Guest + + +

+ + https:// + + : + + + + +

+ + 443/Boards/ + Классический + +  |  + + 447/Boards/ + Лайт + +  |  + + 445/Boards/ + Сырой XML + +

+

+ + 445/Boards/ + Raw XML + +  |  + + 447/Boards/ + Lite + +  |  + + 443/Boards/ + Classic + +

+ + +
+ +
+ diff --git a/templates/Lite/Thread.xslt b/templates/Lite/Thread.xslt new file mode 100644 index 0000000..9b56194 --- /dev/null +++ b/templates/Lite/Thread.xslt @@ -0,0 +1,34 @@ + + + + + + + + + +
+ страницы: + + /Thread// + +
+ + + +
+ + /Thread// + +
+
+ + +

+ + + +

+
+ +
\ No newline at end of file diff --git a/templates/Lite/UserInfo.xslt b/templates/Lite/UserInfo.xslt new file mode 100644 index 0000000..eb2def2 --- /dev/null +++ b/templates/Lite/UserInfo.xslt @@ -0,0 +1,231 @@ + + + + + + + + + +
+ + + + +
+ Персональная информация о +
+
+ + + + +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Email + + Not implemented + + Picture + + + /Upload/Item// + + + /static/images/noavatar.gif + + + +
+ Имя + + Not implemented +
+ Титул + + +
+ Итого сообщений + + +
+ Рейтинг + + Not implemented +
+ Домашняя страница + + Not implemented +
+ Род занятий + + Not implemented +
+ Хобби + + Not implemented +
+ Расположение + + +
+ Биография + + +
+ Номер ICQ + + Not implemented +
+ Пол (gender) + + Not implemented +
+ Дата регистрации + + +
+ Последний раз онлайн + + Not implemented +
+ Подпись + + +
+ Симпатии + + +
+ Penalties + + Not implemented +
+ Комментарий + + Not implemented +
+ + + /PMSend// + + + Послать личное сообщение + + | + + + /Conversation// + + + История + + | + + + Добавить в адресную книгу + + | + + /User//Posts/ + + Сообщения + + | + + /User//Replies/ + Ответы + + | + + + Статистика + +
+
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/WrongUrl.xslt b/templates/Lite/WrongUrl.xslt new file mode 100644 index 0000000..be06d8f --- /dev/null +++ b/templates/Lite/WrongUrl.xslt @@ -0,0 +1,28 @@ + + + + Неверный адрес + + + + + +
+ + + + + + + +
+ Неверный адрес +
+ Введённый вами адрес + + не найден +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/elems/BoardInfo.xslt b/templates/Lite/elems/BoardInfo.xslt new file mode 100644 index 0000000..0f51373 --- /dev/null +++ b/templates/Lite/elems/BoardInfo.xslt @@ -0,0 +1,20 @@ + + + + +

+ + + (*) + + + + + + /Board// + + +

+
+ +
\ No newline at end of file diff --git a/templates/Lite/elems/ConversationInfo.xslt b/templates/Lite/elems/ConversationInfo.xslt new file mode 100644 index 0000000..7f9c98e --- /dev/null +++ b/templates/Lite/elems/ConversationInfo.xslt @@ -0,0 +1,41 @@ + + + + + + + + lighttable + + + darktable + + + + + + + + (* + + ) + + + + + /Conversation/ + + / + + p + + + + + + + + + + + \ No newline at end of file diff --git a/templates/Lite/elems/Header.xslt b/templates/Lite/elems/Header.xslt new file mode 100644 index 0000000..b069587 --- /dev/null +++ b/templates/Lite/elems/Header.xslt @@ -0,0 +1,34 @@ + + + +

+ + + /Conversations/? + + + + + new messages + + + + PM + + | + + /do/Logout/?sessionKey= + Выход + + + + | + + /Login/ + Вход + + +

+
+
+ diff --git a/templates/Lite/elems/Main.xslt b/templates/Lite/elems/Main.xslt new file mode 100644 index 0000000..e4434e1 --- /dev/null +++ b/templates/Lite/elems/Main.xslt @@ -0,0 +1,189 @@ + + + + + + + + + + /static/css/.css + + + + + <xsl:call-template name="specificTitle"/> + + + + + + +
+
+ +
+
+ + +
+ + + + + + /Boards/ + + + >> + + + + /Board// + + + >> + + + + /Thread// + + + >> + + + + + + + + + + + + сегодня + + + + + вчера + + + + . + + . + + + + + + + + + + + + + : + + : + + + + + + + + + + + + + -1 + +  |  + + + + + + + + + + + + + + + + + + + -1 + + + + + + + + + + + + + + + -1 + + + + +  |  + + + + all + все + + + + все + + + +  |  + + + Next + + + + + + + Top + +  |  + + + Next + + + + + + + + separate + UG_ + + /User// + + + + +
+ diff --git a/templates/Lite/elems/PMInfo.xslt b/templates/Lite/elems/PMInfo.xslt new file mode 100644 index 0000000..363a45a --- /dev/null +++ b/templates/Lite/elems/PMInfo.xslt @@ -0,0 +1,42 @@ + + + + +
+
+ + + warning + + + lighttable + + + Message + + : + + + (*) + + + + + + + + | + + /PMReply// + Reply + + | + +
+
+ +
+
+
+ +
diff --git a/templates/Lite/elems/PollInfo.xslt b/templates/Lite/elems/PollInfo.xslt new file mode 100644 index 0000000..9e62d4b --- /dev/null +++ b/templates/Lite/elems/PollInfo.xslt @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + +
+ + + + + + +
+ +
+ + + + + + + + + +
+ +
+ + + +

+

+ + + Детализация по голосам в этом опросе открыта + + + Это анонимный опрос + + +

+

+ + + Этот опрос допускает выбор нескольких вариантов ответа + + + Этот опрос допускает выбор только одного варианта ответа + + +

+

+ Всего голосов: + +

+ + + + + + checkbox + + + radio + + + + + + + +
+ +
+
+
+ Для вставки ссылки в форум используйте тэг [poll] + + [/poll] +
+
+
+
+
+
+
+
+
+ + +
+ + + radio + 0 + + + + + + option_ + + checked + + + disabled + + + + + +
+ + height:1em; + width: + + + + % + + + 3px + + + + +
+

+ + голосов ( + + + + + + 0 + + + %) +

+ +

+ +

+
+ + +
+ +
\ No newline at end of file diff --git a/templates/Lite/elems/PollShortInfo.xslt b/templates/Lite/elems/PollShortInfo.xslt new file mode 100644 index 0000000..9dc3533 --- /dev/null +++ b/templates/Lite/elems/PollShortInfo.xslt @@ -0,0 +1,28 @@ + + + + + + + + lighttable + + + darktable + + + + + + /Poll/ + + / + + + + + + + + + \ No newline at end of file diff --git a/templates/Lite/elems/PostInfo.xslt b/templates/Lite/elems/PostInfo.xslt new file mode 100644 index 0000000..440a440 --- /dev/null +++ b/templates/Lite/elems/PostInfo.xslt @@ -0,0 +1,63 @@ + + + + + true +
+ +
+ +
+
+
+
+ + +
\ No newline at end of file diff --git a/templates/Lite/elems/TextEditor.xslt b/templates/Lite/elems/TextEditor.xslt new file mode 100644 index 0000000..b7a64ba --- /dev/null +++ b/templates/Lite/elems/TextEditor.xslt @@ -0,0 +1,57 @@ + + + + + + + + + Сообщение +
+ +
+
+ + + + + +
+ +
+
+
+
+
+ + + + + + +
\ No newline at end of file diff --git a/templates/Lite/elems/ThreadInfo.xslt b/templates/Lite/elems/ThreadInfo.xslt new file mode 100644 index 0000000..839eef6 --- /dev/null +++ b/templates/Lite/elems/ThreadInfo.xslt @@ -0,0 +1,53 @@ + + + + + + + + lighttable + + + darktable + + + + + {a} + + + {l} + + {o} + {g} + + + (* + + ) + + + + + + + + /Thread/ + + / + + p + + + + + + + + + + + + + + \ No newline at end of file diff --git a/templates/Lite/maintenance/CleanCache.xslt b/templates/Lite/maintenance/CleanCache.xslt new file mode 100644 index 0000000..a64bad1 --- /dev/null +++ b/templates/Lite/maintenance/CleanCache.xslt @@ -0,0 +1,49 @@ + + + + Очистка кэша + + + + + +
+ + + + + + + + + + +
+ Очистка кэша +
+ Выберите таблицу и номера +
+
+ Таблица
+ +
+ Начать с ID
+
+ Количество
+
+ +
+
+
+
+ + + + + +
\ No newline at end of file diff --git a/templates/Lite/result/Login.xslt b/templates/Lite/result/Login.xslt new file mode 100644 index 0000000..88da248 --- /dev/null +++ b/templates/Lite/result/Login.xslt @@ -0,0 +1,31 @@ + + + + Вход выполнен + + + + + +
+ + + + + + + +
+ Вход в панель +
+ Авторизация прошла успешно +
+ + /Boards/ + На главную + +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/result/Logout.xslt b/templates/Lite/result/Logout.xslt new file mode 100644 index 0000000..c992d10 --- /dev/null +++ b/templates/Lite/result/Logout.xslt @@ -0,0 +1,31 @@ + + + + Выход выполнен + + + + + +
+ + + + + + + +
+ Выход из панели +
+ Сессия удалена +
+ + /Boards/ + На главную + +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/result/MessageCreated.xslt b/templates/Lite/result/MessageCreated.xslt new file mode 100644 index 0000000..849c4fc --- /dev/null +++ b/templates/Lite/result/MessageCreated.xslt @@ -0,0 +1,48 @@ + + + + Сообщение отправлено + + + + + + + + +
+ + + + +
+ Новое сообщение +
+
+ + + + +
+

Ваше сообщение было успешно создано

+

+ [←] + + /Board// + Вернуться в раздел + + | + + /Thread//p + Просмотреть сообщение + + [→] +

+ +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/result/MessageEdited.xslt b/templates/Lite/result/MessageEdited.xslt new file mode 100644 index 0000000..aa8c69f --- /dev/null +++ b/templates/Lite/result/MessageEdited.xslt @@ -0,0 +1,48 @@ + + + + Сообщение изменено + + + + + + + + +
+ + + + +
+ Изменение сообщения +
+
+ + + + +
+

Ваше сообщение было успешно изменено

+

+ [←] + + /Board// + Вернуться в раздел + + | + + /Thread//p + Просмотреть сообщение + + [→] +

+ +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/result/MigrateAccount.xslt b/templates/Lite/result/MigrateAccount.xslt new file mode 100644 index 0000000..b60e2c9 --- /dev/null +++ b/templates/Lite/result/MigrateAccount.xslt @@ -0,0 +1,48 @@ + + + + Учётная запись смигрирована + + + + + + + + +
+ + + + +
+ Миграция пользователя +
+
+ + + + +
+

Миграция была успешно завершена, теперь вы можете войти в форум, используя свой логин и новый пароль

+

+ [←] + + /Boards/ + Вернуться к списку разделов + + | + + /Login/ + Войти + + [→] +

+ +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/result/PMSent.xslt b/templates/Lite/result/PMSent.xslt new file mode 100644 index 0000000..6665ac8 --- /dev/null +++ b/templates/Lite/result/PMSent.xslt @@ -0,0 +1,48 @@ + + + + Личное сообщение отправлено + + + + + + + + +
+ + + + +
+ Новое приватное сообщение +
+
+ + + + +
+

Ваше сообщение было успешно создано

+

+ [←] + + /Conversations/ + Вернуться к личным сообщениям + + | + + /Conversation//p + Просмотреть сообщение + + [→] +

+ +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/result/PollCreated.xslt b/templates/Lite/result/PollCreated.xslt new file mode 100644 index 0000000..0df196b --- /dev/null +++ b/templates/Lite/result/PollCreated.xslt @@ -0,0 +1,35 @@ + + + + Опрос создан + + + + + +
+ + + + + + + +
+ Создание опроса +
+ Опрос успешно создан. +
+ Теперь вы можете вставлять ссылки на него с помощью тэга [poll] + + [/poll] +
+ + /Poll// + Перейти к опросу + +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/result/SettingsSaved.xslt b/templates/Lite/result/SettingsSaved.xslt new file mode 100644 index 0000000..c1159e3 --- /dev/null +++ b/templates/Lite/result/SettingsSaved.xslt @@ -0,0 +1,31 @@ + + + + Настройки сохранены + + + + + +
+ + + + + + + +
+ Сохранение настроек +
+ Настройки сохранены +
+ + /Boards/ + На главную + +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/result/Upload.xslt b/templates/Lite/result/Upload.xslt new file mode 100644 index 0000000..68551d6 --- /dev/null +++ b/templates/Lite/result/Upload.xslt @@ -0,0 +1,38 @@ + + + + Файл загружен + + + + + +
+ + + + + + + +
+ Загрузка файла +
+ Файл успешно загружен. +
+ Теперь вы можете вставлять ссылки на него с помощью тэга [uploadLink] + + [/uploadLink] +
+ Для вставки картинки воспользуйтесь тэгом [uploadImage] + + [/uploadImage] +
+ + /Upload/Item// + +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/result/VoteAccepted.xslt b/templates/Lite/result/VoteAccepted.xslt new file mode 100644 index 0000000..a5cf35f --- /dev/null +++ b/templates/Lite/result/VoteAccepted.xslt @@ -0,0 +1,31 @@ + + + + Голос принят + + + + + +
+ + + + + + + +
+ Участие в опросе +
+ Ваш голос принят. +
+ + /Poll// + Вернуться к опросу + +
+
+
+ +
\ No newline at end of file diff --git a/templates/Lite/result/maintenance/CacheCleaned.xslt b/templates/Lite/result/maintenance/CacheCleaned.xslt new file mode 100644 index 0000000..2bf67f5 --- /dev/null +++ b/templates/Lite/result/maintenance/CacheCleaned.xslt @@ -0,0 +1,37 @@ + + + + Кэш очищен + + + + + + + + +
+ + + + +
+ Очистка кэша +
+
+ + + + +
+

Выбранные данные обновлены

+
+ + /Maintenance/CleanCache/ + Вернуться к очистке кэша + +
+
+
+ +
\ No newline at end of file