From a45d2b2293fd6aa35b8509d22e9b67df052341c8 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 9 Feb 2018 13:20:45 +0900 Subject: wip --- src/web/app/common/-tags/activity-table.tag | 57 ++++ src/web/app/common/-tags/authorized-apps.tag | 35 ++ src/web/app/common/-tags/ellipsis.tag | 24 ++ src/web/app/common/-tags/error.tag | 215 ++++++++++++ src/web/app/common/-tags/file-type-icon.tag | 10 + src/web/app/common/-tags/forkit.tag | 40 +++ src/web/app/common/-tags/index.ts | 30 ++ src/web/app/common/-tags/introduction.tag | 25 ++ src/web/app/common/-tags/messaging/form.tag | 175 ++++++++++ src/web/app/common/-tags/messaging/index.tag | 456 +++++++++++++++++++++++++ src/web/app/common/-tags/messaging/message.tag | 238 +++++++++++++ src/web/app/common/-tags/messaging/room.tag | 319 +++++++++++++++++ src/web/app/common/-tags/nav-links.tag | 10 + src/web/app/common/-tags/number.tag | 16 + src/web/app/common/-tags/poll-editor.tag | 121 +++++++ src/web/app/common/-tags/post-menu.tag | 157 +++++++++ src/web/app/common/-tags/raw.tag | 13 + src/web/app/common/-tags/signin-history.tag | 116 +++++++ src/web/app/common/-tags/signin.tag | 155 +++++++++ src/web/app/common/-tags/signup.tag | 307 +++++++++++++++++ src/web/app/common/-tags/special-message.tag | 27 ++ src/web/app/common/-tags/twitter-setting.tag | 62 ++++ src/web/app/common/-tags/uploader.tag | 199 +++++++++++ src/web/app/common/tags/activity-table.tag | 57 ---- src/web/app/common/tags/authorized-apps.tag | 35 -- src/web/app/common/tags/ellipsis.tag | 24 -- src/web/app/common/tags/error.tag | 215 ------------ src/web/app/common/tags/file-type-icon.tag | 10 - src/web/app/common/tags/forkit.tag | 40 --- src/web/app/common/tags/index.ts | 30 -- src/web/app/common/tags/introduction.tag | 25 -- src/web/app/common/tags/messaging/form.tag | 175 ---------- src/web/app/common/tags/messaging/index.tag | 456 ------------------------- src/web/app/common/tags/messaging/message.tag | 238 ------------- src/web/app/common/tags/messaging/room.tag | 319 ----------------- src/web/app/common/tags/nav-links.tag | 10 - src/web/app/common/tags/number.tag | 16 - src/web/app/common/tags/poll-editor.tag | 121 ------- src/web/app/common/tags/post-menu.tag | 157 --------- src/web/app/common/tags/raw.tag | 13 - src/web/app/common/tags/signin-history.tag | 116 ------- src/web/app/common/tags/signin.tag | 155 --------- src/web/app/common/tags/signup.tag | 307 ----------------- src/web/app/common/tags/special-message.tag | 27 -- src/web/app/common/tags/twitter-setting.tag | 62 ---- src/web/app/common/tags/uploader.tag | 199 ----------- 46 files changed, 2807 insertions(+), 2807 deletions(-) create mode 100644 src/web/app/common/-tags/activity-table.tag create mode 100644 src/web/app/common/-tags/authorized-apps.tag create mode 100644 src/web/app/common/-tags/ellipsis.tag create mode 100644 src/web/app/common/-tags/error.tag create mode 100644 src/web/app/common/-tags/file-type-icon.tag create mode 100644 src/web/app/common/-tags/forkit.tag create mode 100644 src/web/app/common/-tags/index.ts create mode 100644 src/web/app/common/-tags/introduction.tag create mode 100644 src/web/app/common/-tags/messaging/form.tag create mode 100644 src/web/app/common/-tags/messaging/index.tag create mode 100644 src/web/app/common/-tags/messaging/message.tag create mode 100644 src/web/app/common/-tags/messaging/room.tag create mode 100644 src/web/app/common/-tags/nav-links.tag create mode 100644 src/web/app/common/-tags/number.tag create mode 100644 src/web/app/common/-tags/poll-editor.tag create mode 100644 src/web/app/common/-tags/post-menu.tag create mode 100644 src/web/app/common/-tags/raw.tag create mode 100644 src/web/app/common/-tags/signin-history.tag create mode 100644 src/web/app/common/-tags/signin.tag create mode 100644 src/web/app/common/-tags/signup.tag create mode 100644 src/web/app/common/-tags/special-message.tag create mode 100644 src/web/app/common/-tags/twitter-setting.tag create mode 100644 src/web/app/common/-tags/uploader.tag delete mode 100644 src/web/app/common/tags/activity-table.tag delete mode 100644 src/web/app/common/tags/authorized-apps.tag delete mode 100644 src/web/app/common/tags/ellipsis.tag delete mode 100644 src/web/app/common/tags/error.tag delete mode 100644 src/web/app/common/tags/file-type-icon.tag delete mode 100644 src/web/app/common/tags/forkit.tag delete mode 100644 src/web/app/common/tags/index.ts delete mode 100644 src/web/app/common/tags/introduction.tag delete mode 100644 src/web/app/common/tags/messaging/form.tag delete mode 100644 src/web/app/common/tags/messaging/index.tag delete mode 100644 src/web/app/common/tags/messaging/message.tag delete mode 100644 src/web/app/common/tags/messaging/room.tag delete mode 100644 src/web/app/common/tags/nav-links.tag delete mode 100644 src/web/app/common/tags/number.tag delete mode 100644 src/web/app/common/tags/poll-editor.tag delete mode 100644 src/web/app/common/tags/post-menu.tag delete mode 100644 src/web/app/common/tags/raw.tag delete mode 100644 src/web/app/common/tags/signin-history.tag delete mode 100644 src/web/app/common/tags/signin.tag delete mode 100644 src/web/app/common/tags/signup.tag delete mode 100644 src/web/app/common/tags/special-message.tag delete mode 100644 src/web/app/common/tags/twitter-setting.tag delete mode 100644 src/web/app/common/tags/uploader.tag (limited to 'src/web/app/common') diff --git a/src/web/app/common/-tags/activity-table.tag b/src/web/app/common/-tags/activity-table.tag new file mode 100644 index 0000000000..2f716912f3 --- /dev/null +++ b/src/web/app/common/-tags/activity-table.tag @@ -0,0 +1,57 @@ + + + + + + + + diff --git a/src/web/app/common/-tags/authorized-apps.tag b/src/web/app/common/-tags/authorized-apps.tag new file mode 100644 index 0000000000..26efa1316f --- /dev/null +++ b/src/web/app/common/-tags/authorized-apps.tag @@ -0,0 +1,35 @@ + +
+

%fa:info-circle%%i18n:common.tags.mk-authorized-apps.no-apps%

+
+
+
+

{ app.name }

+

{ app.description }

+
+
+ + +
diff --git a/src/web/app/common/-tags/ellipsis.tag b/src/web/app/common/-tags/ellipsis.tag new file mode 100644 index 0000000000..734454e4a0 --- /dev/null +++ b/src/web/app/common/-tags/ellipsis.tag @@ -0,0 +1,24 @@ +... + + diff --git a/src/web/app/common/-tags/error.tag b/src/web/app/common/-tags/error.tag new file mode 100644 index 0000000000..f09c0ce955 --- /dev/null +++ b/src/web/app/common/-tags/error.tag @@ -0,0 +1,215 @@ + + +

%i18n:common.tags.mk-error.title%

+

{ + '%i18n:common.tags.mk-error.description%'.substr(0, '%i18n:common.tags.mk-error.description%'.indexOf('{')) + }{ + '%i18n:common.tags.mk-error.description%'.match(/\{(.+?)\}/)[1] + }{ + '%i18n:common.tags.mk-error.description%'.substr('%i18n:common.tags.mk-error.description%'.indexOf('}') + 1) + }

+ + +

%i18n:common.tags.mk-error.thanks%

+ + +
+ + +

%fa:wrench%%i18n:common.tags.mk-error.troubleshooter.title%

+
+

{ network == null ? '%i18n:common.tags.mk-error.troubleshooter.checking-network%' : '%i18n:common.tags.mk-error.troubleshooter.network%' }

+

{ internet == null ? '%i18n:common.tags.mk-error.troubleshooter.checking-internet%' : '%i18n:common.tags.mk-error.troubleshooter.internet%' }

+

{ server == null ? '%i18n:common.tags.mk-error.troubleshooter.checking-server%' : '%i18n:common.tags.mk-error.troubleshooter.server%' }

+
+

%i18n:common.tags.mk-error.troubleshooter.finding%

+

%fa:exclamation-triangle%%i18n:common.tags.mk-error.troubleshooter.no-network%
%i18n:common.tags.mk-error.troubleshooter.no-network-desc%

+

%fa:exclamation-triangle%%i18n:common.tags.mk-error.troubleshooter.no-internet%
%i18n:common.tags.mk-error.troubleshooter.no-internet-desc%

+

%fa:exclamation-triangle%%i18n:common.tags.mk-error.troubleshooter.no-server%
%i18n:common.tags.mk-error.troubleshooter.no-server-desc%

+

%fa:info-circle%%i18n:common.tags.mk-error.troubleshooter.success%
%i18n:common.tags.mk-error.troubleshooter.success-desc%

+ + + +
diff --git a/src/web/app/common/-tags/file-type-icon.tag b/src/web/app/common/-tags/file-type-icon.tag new file mode 100644 index 0000000000..f630efe118 --- /dev/null +++ b/src/web/app/common/-tags/file-type-icon.tag @@ -0,0 +1,10 @@ + + + + + diff --git a/src/web/app/common/-tags/forkit.tag b/src/web/app/common/-tags/forkit.tag new file mode 100644 index 0000000000..6a8d06e564 --- /dev/null +++ b/src/web/app/common/-tags/forkit.tag @@ -0,0 +1,40 @@ + + + + + + + + diff --git a/src/web/app/common/-tags/index.ts b/src/web/app/common/-tags/index.ts new file mode 100644 index 0000000000..df99d93cc5 --- /dev/null +++ b/src/web/app/common/-tags/index.ts @@ -0,0 +1,30 @@ +require('./error.tag'); +require('./url.tag'); +require('./url-preview.tag'); +require('./time.tag'); +require('./file-type-icon.tag'); +require('./uploader.tag'); +require('./ellipsis.tag'); +require('./raw.tag'); +require('./number.tag'); +require('./special-message.tag'); +require('./signin.tag'); +require('./signup.tag'); +require('./forkit.tag'); +require('./introduction.tag'); +require('./signin-history.tag'); +require('./twitter-setting.tag'); +require('./authorized-apps.tag'); +require('./poll.tag'); +require('./poll-editor.tag'); +require('./messaging/room.tag'); +require('./messaging/message.tag'); +require('./messaging/index.tag'); +require('./messaging/form.tag'); +require('./stream-indicator.tag'); +require('./activity-table.tag'); +require('./reaction-picker.tag'); +require('./reactions-viewer.tag'); +require('./reaction-icon.tag'); +require('./post-menu.tag'); +require('./nav-links.tag'); diff --git a/src/web/app/common/-tags/introduction.tag b/src/web/app/common/-tags/introduction.tag new file mode 100644 index 0000000000..c92cff0d1d --- /dev/null +++ b/src/web/app/common/-tags/introduction.tag @@ -0,0 +1,25 @@ + + + + diff --git a/src/web/app/common/-tags/messaging/form.tag b/src/web/app/common/-tags/messaging/form.tag new file mode 100644 index 0000000000..9a58dc0ce7 --- /dev/null +++ b/src/web/app/common/-tags/messaging/form.tag @@ -0,0 +1,175 @@ + + +
+ + + + + + + +
diff --git a/src/web/app/common/-tags/messaging/index.tag b/src/web/app/common/-tags/messaging/index.tag new file mode 100644 index 0000000000..0432f7e30f --- /dev/null +++ b/src/web/app/common/-tags/messaging/index.tag @@ -0,0 +1,456 @@ + + +
+ +
+

%i18n:common.tags.mk-messaging.no-history%

+

%fa:spinner .pulse .fw%%i18n:common.loading%

+ + +
diff --git a/src/web/app/common/-tags/messaging/message.tag b/src/web/app/common/-tags/messaging/message.tag new file mode 100644 index 0000000000..ba6d26a184 --- /dev/null +++ b/src/web/app/common/-tags/messaging/message.tag @@ -0,0 +1,238 @@ + + + + +
+
+

%i18n:common.tags.mk-messaging-message.is-read%

+ +
+
+
image
+
+
+

%i18n:common.tags.mk-messaging-message.deleted%

+
+
+
+ +
+
+ + +
diff --git a/src/web/app/common/-tags/messaging/room.tag b/src/web/app/common/-tags/messaging/room.tag new file mode 100644 index 0000000000..990f20a8e3 --- /dev/null +++ b/src/web/app/common/-tags/messaging/room.tag @@ -0,0 +1,319 @@ + +
+

%fa:spinner .spin%%i18n:common.loading%

+

%fa:info-circle%%i18n:common.tags.mk-messaging-room.empty%

+

%fa:flag%%i18n:common.tags.mk-messaging-room.no-history%

+ + +
+
+
+
+ +
+ + +
diff --git a/src/web/app/common/-tags/nav-links.tag b/src/web/app/common/-tags/nav-links.tag new file mode 100644 index 0000000000..3f2613c16d --- /dev/null +++ b/src/web/app/common/-tags/nav-links.tag @@ -0,0 +1,10 @@ + + %i18n:common.tags.mk-nav-links.about%%i18n:common.tags.mk-nav-links.stats%%i18n:common.tags.mk-nav-links.status%%i18n:common.tags.mk-nav-links.wiki%%i18n:common.tags.mk-nav-links.donors%%i18n:common.tags.mk-nav-links.repository%%i18n:common.tags.mk-nav-links.develop%Follow us on %fa:B twitter% + + + diff --git a/src/web/app/common/-tags/number.tag b/src/web/app/common/-tags/number.tag new file mode 100644 index 0000000000..9cbbacd2c7 --- /dev/null +++ b/src/web/app/common/-tags/number.tag @@ -0,0 +1,16 @@ + + + + diff --git a/src/web/app/common/-tags/poll-editor.tag b/src/web/app/common/-tags/poll-editor.tag new file mode 100644 index 0000000000..0de26f6547 --- /dev/null +++ b/src/web/app/common/-tags/poll-editor.tag @@ -0,0 +1,121 @@ + +

+ %fa:exclamation-triangle%%i18n:common.tags.mk-poll-editor.no-only-one-choice% +

+ + + + + +
diff --git a/src/web/app/common/-tags/post-menu.tag b/src/web/app/common/-tags/post-menu.tag new file mode 100644 index 0000000000..c2b362e8b5 --- /dev/null +++ b/src/web/app/common/-tags/post-menu.tag @@ -0,0 +1,157 @@ + +
+
+ +
+ + +
+
+ + +
diff --git a/src/web/app/common/-tags/raw.tag b/src/web/app/common/-tags/raw.tag new file mode 100644 index 0000000000..149ac6c4bf --- /dev/null +++ b/src/web/app/common/-tags/raw.tag @@ -0,0 +1,13 @@ + + + + diff --git a/src/web/app/common/-tags/signin-history.tag b/src/web/app/common/-tags/signin-history.tag new file mode 100644 index 0000000000..57ac5ec979 --- /dev/null +++ b/src/web/app/common/-tags/signin-history.tag @@ -0,0 +1,116 @@ + +
+ +
+ + +
+ + +
+ + + { rec.ip } + +
+
{ JSON.stringify(rec.headers, null, 2) }
+ + + + +
diff --git a/src/web/app/common/-tags/signin.tag b/src/web/app/common/-tags/signin.tag new file mode 100644 index 0000000000..89213d1f73 --- /dev/null +++ b/src/web/app/common/-tags/signin.tag @@ -0,0 +1,155 @@ + +
+ + + + +
+ + +
diff --git a/src/web/app/common/-tags/signup.tag b/src/web/app/common/-tags/signup.tag new file mode 100644 index 0000000000..99be10609b --- /dev/null +++ b/src/web/app/common/-tags/signup.tag @@ -0,0 +1,307 @@ + +
+ + + + + + +
+ + +
diff --git a/src/web/app/common/-tags/special-message.tag b/src/web/app/common/-tags/special-message.tag new file mode 100644 index 0000000000..da903c6325 --- /dev/null +++ b/src/web/app/common/-tags/special-message.tag @@ -0,0 +1,27 @@ + +

%i18n:common.tags.mk-special-message.new-year%

+

%i18n:common.tags.mk-special-message.christmas%

+ + +
diff --git a/src/web/app/common/-tags/twitter-setting.tag b/src/web/app/common/-tags/twitter-setting.tag new file mode 100644 index 0000000000..935239f44e --- /dev/null +++ b/src/web/app/common/-tags/twitter-setting.tag @@ -0,0 +1,62 @@ + +

%i18n:common.tags.mk-twitter-setting.description%%i18n:common.tags.mk-twitter-setting.detail%

+ +

+ { I.twitter ? '%i18n:common.tags.mk-twitter-setting.reconnect%' : '%i18n:common.tags.mk-twitter-setting.connect%' } + or + %i18n:common.tags.mk-twitter-setting.disconnect% +

+

Twitter ID: { I.twitter.user_id }

+ + +
diff --git a/src/web/app/common/-tags/uploader.tag b/src/web/app/common/-tags/uploader.tag new file mode 100644 index 0000000000..519b063fac --- /dev/null +++ b/src/web/app/common/-tags/uploader.tag @@ -0,0 +1,199 @@ + +
    +
  1. +
    +

    %fa:spinner .pulse%{ name }

    +

    %i18n:common.tags.mk-uploader.waiting%{ String(Math.floor(progress.value / 1024)).replace(/(\d)(?=(\d\d\d)+(?!\d))/g, '$1,') }KB / { String(Math.floor(progress.max / 1024)).replace(/(\d)(?=(\d\d\d)+(?!\d))/g, '$1,') }KB{ Math.floor((progress.value / progress.max) * 100) }

    + +
    +
    +
  2. +
+ + +
diff --git a/src/web/app/common/tags/activity-table.tag b/src/web/app/common/tags/activity-table.tag deleted file mode 100644 index 2f716912f3..0000000000 --- a/src/web/app/common/tags/activity-table.tag +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - diff --git a/src/web/app/common/tags/authorized-apps.tag b/src/web/app/common/tags/authorized-apps.tag deleted file mode 100644 index 26efa1316f..0000000000 --- a/src/web/app/common/tags/authorized-apps.tag +++ /dev/null @@ -1,35 +0,0 @@ - -
-

%fa:info-circle%%i18n:common.tags.mk-authorized-apps.no-apps%

-
-
-
-

{ app.name }

-

{ app.description }

-
-
- - -
diff --git a/src/web/app/common/tags/ellipsis.tag b/src/web/app/common/tags/ellipsis.tag deleted file mode 100644 index 734454e4a0..0000000000 --- a/src/web/app/common/tags/ellipsis.tag +++ /dev/null @@ -1,24 +0,0 @@ -... - - diff --git a/src/web/app/common/tags/error.tag b/src/web/app/common/tags/error.tag deleted file mode 100644 index f09c0ce955..0000000000 --- a/src/web/app/common/tags/error.tag +++ /dev/null @@ -1,215 +0,0 @@ - - -

%i18n:common.tags.mk-error.title%

-

{ - '%i18n:common.tags.mk-error.description%'.substr(0, '%i18n:common.tags.mk-error.description%'.indexOf('{')) - }{ - '%i18n:common.tags.mk-error.description%'.match(/\{(.+?)\}/)[1] - }{ - '%i18n:common.tags.mk-error.description%'.substr('%i18n:common.tags.mk-error.description%'.indexOf('}') + 1) - }

- - -

%i18n:common.tags.mk-error.thanks%

- - -
- - -

%fa:wrench%%i18n:common.tags.mk-error.troubleshooter.title%

-
-

{ network == null ? '%i18n:common.tags.mk-error.troubleshooter.checking-network%' : '%i18n:common.tags.mk-error.troubleshooter.network%' }

-

{ internet == null ? '%i18n:common.tags.mk-error.troubleshooter.checking-internet%' : '%i18n:common.tags.mk-error.troubleshooter.internet%' }

-

{ server == null ? '%i18n:common.tags.mk-error.troubleshooter.checking-server%' : '%i18n:common.tags.mk-error.troubleshooter.server%' }

-
-

%i18n:common.tags.mk-error.troubleshooter.finding%

-

%fa:exclamation-triangle%%i18n:common.tags.mk-error.troubleshooter.no-network%
%i18n:common.tags.mk-error.troubleshooter.no-network-desc%

-

%fa:exclamation-triangle%%i18n:common.tags.mk-error.troubleshooter.no-internet%
%i18n:common.tags.mk-error.troubleshooter.no-internet-desc%

-

%fa:exclamation-triangle%%i18n:common.tags.mk-error.troubleshooter.no-server%
%i18n:common.tags.mk-error.troubleshooter.no-server-desc%

-

%fa:info-circle%%i18n:common.tags.mk-error.troubleshooter.success%
%i18n:common.tags.mk-error.troubleshooter.success-desc%

- - - -
diff --git a/src/web/app/common/tags/file-type-icon.tag b/src/web/app/common/tags/file-type-icon.tag deleted file mode 100644 index f630efe118..0000000000 --- a/src/web/app/common/tags/file-type-icon.tag +++ /dev/null @@ -1,10 +0,0 @@ - - - - - diff --git a/src/web/app/common/tags/forkit.tag b/src/web/app/common/tags/forkit.tag deleted file mode 100644 index 6a8d06e564..0000000000 --- a/src/web/app/common/tags/forkit.tag +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - diff --git a/src/web/app/common/tags/index.ts b/src/web/app/common/tags/index.ts deleted file mode 100644 index df99d93cc5..0000000000 --- a/src/web/app/common/tags/index.ts +++ /dev/null @@ -1,30 +0,0 @@ -require('./error.tag'); -require('./url.tag'); -require('./url-preview.tag'); -require('./time.tag'); -require('./file-type-icon.tag'); -require('./uploader.tag'); -require('./ellipsis.tag'); -require('./raw.tag'); -require('./number.tag'); -require('./special-message.tag'); -require('./signin.tag'); -require('./signup.tag'); -require('./forkit.tag'); -require('./introduction.tag'); -require('./signin-history.tag'); -require('./twitter-setting.tag'); -require('./authorized-apps.tag'); -require('./poll.tag'); -require('./poll-editor.tag'); -require('./messaging/room.tag'); -require('./messaging/message.tag'); -require('./messaging/index.tag'); -require('./messaging/form.tag'); -require('./stream-indicator.tag'); -require('./activity-table.tag'); -require('./reaction-picker.tag'); -require('./reactions-viewer.tag'); -require('./reaction-icon.tag'); -require('./post-menu.tag'); -require('./nav-links.tag'); diff --git a/src/web/app/common/tags/introduction.tag b/src/web/app/common/tags/introduction.tag deleted file mode 100644 index c92cff0d1d..0000000000 --- a/src/web/app/common/tags/introduction.tag +++ /dev/null @@ -1,25 +0,0 @@ - - - - diff --git a/src/web/app/common/tags/messaging/form.tag b/src/web/app/common/tags/messaging/form.tag deleted file mode 100644 index 9a58dc0ce7..0000000000 --- a/src/web/app/common/tags/messaging/form.tag +++ /dev/null @@ -1,175 +0,0 @@ - - -
- - - - - - - -
diff --git a/src/web/app/common/tags/messaging/index.tag b/src/web/app/common/tags/messaging/index.tag deleted file mode 100644 index 0432f7e30f..0000000000 --- a/src/web/app/common/tags/messaging/index.tag +++ /dev/null @@ -1,456 +0,0 @@ - - -
- -
-

%i18n:common.tags.mk-messaging.no-history%

-

%fa:spinner .pulse .fw%%i18n:common.loading%

- - -
diff --git a/src/web/app/common/tags/messaging/message.tag b/src/web/app/common/tags/messaging/message.tag deleted file mode 100644 index ba6d26a184..0000000000 --- a/src/web/app/common/tags/messaging/message.tag +++ /dev/null @@ -1,238 +0,0 @@ - - - - -
-
-

%i18n:common.tags.mk-messaging-message.is-read%

- -
-
-
image
-
-
-

%i18n:common.tags.mk-messaging-message.deleted%

-
-
-
- -
-
- - -
diff --git a/src/web/app/common/tags/messaging/room.tag b/src/web/app/common/tags/messaging/room.tag deleted file mode 100644 index 990f20a8e3..0000000000 --- a/src/web/app/common/tags/messaging/room.tag +++ /dev/null @@ -1,319 +0,0 @@ - -
-

%fa:spinner .spin%%i18n:common.loading%

-

%fa:info-circle%%i18n:common.tags.mk-messaging-room.empty%

-

%fa:flag%%i18n:common.tags.mk-messaging-room.no-history%

- - -
-
-
-
- -
- - -
diff --git a/src/web/app/common/tags/nav-links.tag b/src/web/app/common/tags/nav-links.tag deleted file mode 100644 index 3f2613c16d..0000000000 --- a/src/web/app/common/tags/nav-links.tag +++ /dev/null @@ -1,10 +0,0 @@ - - %i18n:common.tags.mk-nav-links.about%%i18n:common.tags.mk-nav-links.stats%%i18n:common.tags.mk-nav-links.status%%i18n:common.tags.mk-nav-links.wiki%%i18n:common.tags.mk-nav-links.donors%%i18n:common.tags.mk-nav-links.repository%%i18n:common.tags.mk-nav-links.develop%Follow us on %fa:B twitter% - - - diff --git a/src/web/app/common/tags/number.tag b/src/web/app/common/tags/number.tag deleted file mode 100644 index 9cbbacd2c7..0000000000 --- a/src/web/app/common/tags/number.tag +++ /dev/null @@ -1,16 +0,0 @@ - - - - diff --git a/src/web/app/common/tags/poll-editor.tag b/src/web/app/common/tags/poll-editor.tag deleted file mode 100644 index 0de26f6547..0000000000 --- a/src/web/app/common/tags/poll-editor.tag +++ /dev/null @@ -1,121 +0,0 @@ - -

- %fa:exclamation-triangle%%i18n:common.tags.mk-poll-editor.no-only-one-choice% -

- - - - - -
diff --git a/src/web/app/common/tags/post-menu.tag b/src/web/app/common/tags/post-menu.tag deleted file mode 100644 index c2b362e8b5..0000000000 --- a/src/web/app/common/tags/post-menu.tag +++ /dev/null @@ -1,157 +0,0 @@ - -
-
- -
- - -
-
- - -
diff --git a/src/web/app/common/tags/raw.tag b/src/web/app/common/tags/raw.tag deleted file mode 100644 index 149ac6c4bf..0000000000 --- a/src/web/app/common/tags/raw.tag +++ /dev/null @@ -1,13 +0,0 @@ - - - - diff --git a/src/web/app/common/tags/signin-history.tag b/src/web/app/common/tags/signin-history.tag deleted file mode 100644 index 57ac5ec979..0000000000 --- a/src/web/app/common/tags/signin-history.tag +++ /dev/null @@ -1,116 +0,0 @@ - -
- -
- - -
- - -
- - - { rec.ip } - -
-
{ JSON.stringify(rec.headers, null, 2) }
- - - - -
diff --git a/src/web/app/common/tags/signin.tag b/src/web/app/common/tags/signin.tag deleted file mode 100644 index 89213d1f73..0000000000 --- a/src/web/app/common/tags/signin.tag +++ /dev/null @@ -1,155 +0,0 @@ - -
- - - - -
- - -
diff --git a/src/web/app/common/tags/signup.tag b/src/web/app/common/tags/signup.tag deleted file mode 100644 index 99be10609b..0000000000 --- a/src/web/app/common/tags/signup.tag +++ /dev/null @@ -1,307 +0,0 @@ - -
- - - - - - -
- - -
diff --git a/src/web/app/common/tags/special-message.tag b/src/web/app/common/tags/special-message.tag deleted file mode 100644 index da903c6325..0000000000 --- a/src/web/app/common/tags/special-message.tag +++ /dev/null @@ -1,27 +0,0 @@ - -

%i18n:common.tags.mk-special-message.new-year%

-

%i18n:common.tags.mk-special-message.christmas%

- - -
diff --git a/src/web/app/common/tags/twitter-setting.tag b/src/web/app/common/tags/twitter-setting.tag deleted file mode 100644 index 935239f44e..0000000000 --- a/src/web/app/common/tags/twitter-setting.tag +++ /dev/null @@ -1,62 +0,0 @@ - -

%i18n:common.tags.mk-twitter-setting.description%%i18n:common.tags.mk-twitter-setting.detail%

- -

- { I.twitter ? '%i18n:common.tags.mk-twitter-setting.reconnect%' : '%i18n:common.tags.mk-twitter-setting.connect%' } - or - %i18n:common.tags.mk-twitter-setting.disconnect% -

-

Twitter ID: { I.twitter.user_id }

- - -
diff --git a/src/web/app/common/tags/uploader.tag b/src/web/app/common/tags/uploader.tag deleted file mode 100644 index 519b063fac..0000000000 --- a/src/web/app/common/tags/uploader.tag +++ /dev/null @@ -1,199 +0,0 @@ - -
    -
  1. -
    -

    %fa:spinner .pulse%{ name }

    -

    %i18n:common.tags.mk-uploader.waiting%{ String(Math.floor(progress.value / 1024)).replace(/(\d)(?=(\d\d\d)+(?!\d))/g, '$1,') }KB / { String(Math.floor(progress.max / 1024)).replace(/(\d)(?=(\d\d\d)+(?!\d))/g, '$1,') }KB{ Math.floor((progress.value / progress.max) * 100) }

    - -
    -
    -
  2. -
- - -
-- cgit v1.2.3-freya