dsh-remote-plugin 0.5.9 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apk/dsh-remote.apk +0 -0
- package/gateway.cjs +133 -0
- package/index.mjs +68 -3
- package/package.json +1 -1
- package/public/admin.html +17 -0
- package/public/admin.js +9 -0
- package/public/app.js +459 -17
- package/public/desktop/desktop.html +160 -15
- package/public/desktop/desktop.js +275 -4
- package/public/donate.png +0 -0
- package/public/index.html +271 -85
- package/public/update.json +4 -3
- package/public/version.json +1 -1
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
<div class="ds-top-right">
|
|
64
64
|
<span class="ds-conn" id="conn-badge" title="">●</span>
|
|
65
65
|
<span class="ds-server" id="server-badge"></span>
|
|
66
|
+
<button id="btn-donate" class="ds-icon-btn" data-i18n-aria="ds.donate" data-i18n-title="ds.donate">🎁</button>
|
|
66
67
|
<button id="btn-stats-top" class="ds-icon-btn" data-i18n-aria="ds.stats" data-i18n-title="ds.stats">📊</button>
|
|
67
68
|
</div>
|
|
68
69
|
</header>
|
|
@@ -79,6 +80,21 @@
|
|
|
79
80
|
<div id="history" class="ds-history" aria-live="polite"></div>
|
|
80
81
|
<div class="ds-composer">
|
|
81
82
|
<textarea id="composer" rows="1" data-i18n-placeholder="ds.composerPlaceholder" placeholder="输入消息…"></textarea>
|
|
83
|
+
<div style="position:relative">
|
|
84
|
+
<button id="btn-cmd" class="ds-btn" data-i18n="ds.commands">指令</button>
|
|
85
|
+
<div id="cmd-menu" class="ds-group-menu hidden" style="width:280px; left:auto; right:0; top:auto; bottom:calc(100% + 8px)">
|
|
86
|
+
<button class="ds-feedback-item" data-ds-cmd="/compact" data-i18n="ds.cmdCompact">/compact 压缩对话历史</button>
|
|
87
|
+
<button class="ds-feedback-item" data-ds-cmd="/export" data-i18n="ds.cmdExport">/export 导出会话日志 ZIP</button>
|
|
88
|
+
<button class="ds-feedback-item" data-ds-cmd="/feedback" data-i18n="ds.cmdFeedback">/feedback 反馈当前会话</button>
|
|
89
|
+
<button class="ds-feedback-item" data-ds-cmd="/goal" data-i18n="ds.cmdGoal">/goal 设置/查看任务目标</button>
|
|
90
|
+
<button class="ds-feedback-item" data-ds-cmd="/permission" data-i18n="ds.cmdPermission">/permission 切换权限预设</button>
|
|
91
|
+
<button class="ds-feedback-item" data-ds-cmd="/plan" data-i18n="ds.cmdPlan">/plan 进入/退出计划模式</button>
|
|
92
|
+
</div>
|
|
93
|
+
</div>
|
|
94
|
+
<div style="position:relative">
|
|
95
|
+
<button id="btn-preset" class="ds-btn" data-i18n="ds.presets">预设</button>
|
|
96
|
+
<div id="preset-menu" class="ds-group-menu hidden" style="width:260px; left:auto; right:0; top:auto; bottom:calc(100% + 8px)"></div>
|
|
97
|
+
</div>
|
|
82
98
|
<button id="btn-send" class="ds-btn primary" data-i18n="ds.send">发送</button>
|
|
83
99
|
</div>
|
|
84
100
|
</section>
|
|
@@ -97,7 +113,64 @@
|
|
|
97
113
|
<!-- 设置 -->
|
|
98
114
|
<section id="view-settings" class="ds-view hidden">
|
|
99
115
|
<div class="ds-section-label" data-i18n="ds.settings">设置</div>
|
|
100
|
-
<div
|
|
116
|
+
<div id="settings-home">
|
|
117
|
+
<div class="ds-settings">
|
|
118
|
+
<div class="ds-setting-row" data-settings-group="general" style="cursor:pointer">
|
|
119
|
+
<div><div class="ds-setting-name" data-i18n="ds.groupGeneral">通用</div><div class="ds-setting-desc" data-i18n="ds.groupGeneralDesc">工具调用、预设提示词</div></div>
|
|
120
|
+
<span class="ds-feedback-item" style="font-size:18px">›</span>
|
|
121
|
+
</div>
|
|
122
|
+
<div class="ds-setting-row" data-settings-group="servers" style="cursor:pointer">
|
|
123
|
+
<div><div class="ds-setting-name" data-i18n="ds.groupServers">服务器</div><div class="ds-setting-desc" data-i18n="ds.groupServersDesc">服务器地址</div></div>
|
|
124
|
+
<span class="ds-feedback-item" style="font-size:18px">›</span>
|
|
125
|
+
</div>
|
|
126
|
+
<div class="ds-setting-row" data-settings-group="notify" style="cursor:pointer">
|
|
127
|
+
<div><div class="ds-setting-name" data-i18n="ds.groupNotify">通知</div><div class="ds-setting-desc" data-i18n="ds.groupNotifyDesc">通知与提醒</div></div>
|
|
128
|
+
<span class="ds-feedback-item" style="font-size:18px">›</span>
|
|
129
|
+
</div>
|
|
130
|
+
<div class="ds-setting-row" data-settings-group="theme" style="cursor:pointer">
|
|
131
|
+
<div><div class="ds-setting-name" data-i18n="ds.groupTheme">皮肤</div><div class="ds-setting-desc" data-i18n="ds.groupThemeDesc">配色主题</div></div>
|
|
132
|
+
<span class="ds-feedback-item" style="font-size:18px">›</span>
|
|
133
|
+
</div>
|
|
134
|
+
<div class="ds-setting-row" data-settings-group="about" style="cursor:pointer">
|
|
135
|
+
<div><div class="ds-setting-name" data-i18n="ds.groupAbout">关于</div><div class="ds-setting-desc" data-i18n="ds.groupAboutDesc">版本信息</div></div>
|
|
136
|
+
<span class="ds-feedback-item" style="font-size:18px">›</span>
|
|
137
|
+
</div>
|
|
138
|
+
</div>
|
|
139
|
+
<div class="ds-settings">
|
|
140
|
+
<div class="ds-setting-row">
|
|
141
|
+
<div><div class="ds-setting-name" data-i18n="ds.tokenTitle">访问令牌</div><div class="ds-setting-desc" id="token-desc"></div></div>
|
|
142
|
+
<button id="btn-copy-token" class="ds-btn" data-i18n="ds.copyToken">复制</button>
|
|
143
|
+
</div>
|
|
144
|
+
<div class="ds-setting-row">
|
|
145
|
+
<div><div class="ds-setting-name" data-i18n="ds.langTitle">语言 / Language</div></div>
|
|
146
|
+
<button id="btn-lang" class="ds-btn">EN</button>
|
|
147
|
+
</div>
|
|
148
|
+
<div class="ds-setting-row">
|
|
149
|
+
<div><div class="ds-setting-name" data-i18n="ds.feedbackTitle">反馈渠道</div><div class="ds-setting-desc" data-i18n="ds.feedbackDesc">GitHub / Gitee / B站:反馈 bug、提建议、唠嗑</div></div>
|
|
150
|
+
</div>
|
|
151
|
+
<div class="ds-feedback-links">
|
|
152
|
+
<a class="ds-btn" href="https://github.com/Blank-not-black/dsh-Remote" target="_blank" rel="noopener">GitHub</a>
|
|
153
|
+
<a class="ds-btn" href="https://gitee.com/Blankneverfails/dsh-Remote" target="_blank" rel="noopener">Gitee</a>
|
|
154
|
+
<a class="ds-btn" href="https://space.bilibili.com/419009275/dynamic" target="_blank" rel="noopener">B站</a>
|
|
155
|
+
</div>
|
|
156
|
+
</div>
|
|
157
|
+
</div>
|
|
158
|
+
|
|
159
|
+
<div id="settings-page-general" class="ds-settings hidden">
|
|
160
|
+
<div class="ds-setting-row" data-settings-back style="cursor:pointer">
|
|
161
|
+
<button class="ds-btn" data-i18n="ds.back">‹ 返回</button>
|
|
162
|
+
<div class="ds-setting-name" data-i18n="ds.groupGeneral">通用</div>
|
|
163
|
+
</div>
|
|
164
|
+
<div class="ds-setting-row">
|
|
165
|
+
<div><div class="ds-setting-name" data-i18n="ds.emptyGroup">暂无设置项</div></div>
|
|
166
|
+
</div>
|
|
167
|
+
</div>
|
|
168
|
+
|
|
169
|
+
<div id="settings-page-servers" class="ds-settings hidden">
|
|
170
|
+
<div class="ds-setting-row" data-settings-back style="cursor:pointer">
|
|
171
|
+
<button class="ds-btn" data-i18n="ds.back">‹ 返回</button>
|
|
172
|
+
<div class="ds-setting-name" data-i18n="ds.groupServers">服务器</div>
|
|
173
|
+
</div>
|
|
101
174
|
<div class="ds-setting-row">
|
|
102
175
|
<div><div class="ds-setting-name" data-i18n="ds.serversTitle">服务器(分组)</div><div class="ds-setting-desc" id="server-desc"></div></div>
|
|
103
176
|
<button id="btn-server-speed" class="ds-btn" data-i18n="ds.speedTest">测速</button>
|
|
@@ -115,25 +188,37 @@
|
|
|
115
188
|
<input id="server-input" type="url" placeholder="http://IP:8787">
|
|
116
189
|
<button id="btn-server-add" class="ds-btn" data-i18n="ds.addServer">添加</button>
|
|
117
190
|
</div>
|
|
191
|
+
</div>
|
|
192
|
+
|
|
193
|
+
<div id="settings-page-notify" class="ds-settings hidden">
|
|
194
|
+
<div class="ds-setting-row" data-settings-back style="cursor:pointer">
|
|
195
|
+
<button class="ds-btn" data-i18n="ds.back">‹ 返回</button>
|
|
196
|
+
<div class="ds-setting-name" data-i18n="ds.groupNotify">通知</div>
|
|
197
|
+
</div>
|
|
118
198
|
<div class="ds-setting-row">
|
|
119
|
-
<div><div class="ds-setting-name" data-i18n="ds.
|
|
120
|
-
|
|
199
|
+
<div><div class="ds-setting-name" data-i18n="ds.emptyGroup">暂无设置项</div></div>
|
|
200
|
+
</div>
|
|
201
|
+
</div>
|
|
202
|
+
|
|
203
|
+
<div id="settings-page-theme" class="ds-settings hidden">
|
|
204
|
+
<div class="ds-setting-row" data-settings-back style="cursor:pointer">
|
|
205
|
+
<button class="ds-btn" data-i18n="ds.back">‹ 返回</button>
|
|
206
|
+
<div class="ds-setting-name" data-i18n="ds.groupTheme">皮肤</div>
|
|
121
207
|
</div>
|
|
122
208
|
<div class="ds-setting-row">
|
|
123
209
|
<div><div class="ds-setting-name" data-i18n="ds.themeTitle">皮肤</div><div class="ds-setting-desc" data-i18n="ds.themeDesc">四套皮肤</div></div>
|
|
124
210
|
<button id="btn-theme" class="ds-btn">默认深空</button>
|
|
125
211
|
</div>
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
<div
|
|
212
|
+
</div>
|
|
213
|
+
|
|
214
|
+
<div id="settings-page-about" class="ds-settings hidden">
|
|
215
|
+
<div class="ds-setting-row" data-settings-back style="cursor:pointer">
|
|
216
|
+
<button class="ds-btn" data-i18n="ds.back">‹ 返回</button>
|
|
217
|
+
<div class="ds-setting-name" data-i18n="ds.groupAbout">关于</div>
|
|
132
218
|
</div>
|
|
133
|
-
<div class="ds-
|
|
134
|
-
<
|
|
135
|
-
<
|
|
136
|
-
<a class="ds-btn" href="https://space.bilibili.com/419009275/dynamic" target="_blank" rel="noopener">B站</a>
|
|
219
|
+
<div class="ds-setting-row" id="btn-donate-about" style="cursor:pointer">
|
|
220
|
+
<div><div class="ds-setting-name" data-i18n="ds.donate">赞赏支持</div><div class="ds-setting-desc" data-i18n="ds.donateDesc">如果 dsh-remote 帮到了你,欢迎赞赏支持开发 ☕</div></div>
|
|
221
|
+
<span class="ds-feedback-item" style="font-size:18px">›</span>
|
|
137
222
|
</div>
|
|
138
223
|
</div>
|
|
139
224
|
</section>
|
|
@@ -191,6 +276,38 @@
|
|
|
191
276
|
</div>
|
|
192
277
|
</div>
|
|
193
278
|
|
|
279
|
+
<!-- 赞赏支持模态 -->
|
|
280
|
+
<div id="modal-donate" class="ds-modal hidden">
|
|
281
|
+
<div class="ds-modal-card">
|
|
282
|
+
<div class="ds-modal-title" data-i18n="ds.donate">赞赏支持</div>
|
|
283
|
+
<div class="ds-modal-body donate-body">
|
|
284
|
+
<img src="../donate.png" alt="" class="donate-img" style="display:block;margin:0 auto;max-width:100%;max-height:60vh;border-radius:8px">
|
|
285
|
+
<p class="donate-thanks" data-i18n="ds.donateThanks" style="text-align:center;margin-top:12px">感谢你的支持 ☕</p>
|
|
286
|
+
</div>
|
|
287
|
+
<div class="ds-modal-actions">
|
|
288
|
+
<button id="btn-donate-close" class="ds-btn" data-i18n="ds.donateClose">关闭</button>
|
|
289
|
+
</div>
|
|
290
|
+
</div>
|
|
291
|
+
</div>
|
|
292
|
+
|
|
293
|
+
<!-- 更新内容模态 -->
|
|
294
|
+
<div id="modal-notes" class="ds-modal hidden">
|
|
295
|
+
<div class="ds-modal-card">
|
|
296
|
+
<div class="ds-modal-title"><span id="notes-version" style="opacity:.75"></span> <span data-i18n="ds.notesTitle">更新内容</span></div>
|
|
297
|
+
<div class="ds-modal-body notes-body">
|
|
298
|
+
<div id="notes-pages" class="notes-pages" style="display:flex;overflow-x:auto;scroll-snap-type:x mandatory;gap:12px;scrollbar-width:none;-ms-overflow-style:none;"></div>
|
|
299
|
+
<div class="notes-nav" style="display:flex;align-items:center;justify-content:center;gap:12px;margin-top:8px;">
|
|
300
|
+
<button id="notes-prev" class="ds-btn" aria-label="‹">‹</button>
|
|
301
|
+
<span id="notes-page" style="opacity:.75">1/1</span>
|
|
302
|
+
<button id="notes-next" class="ds-btn" aria-label="›">›</button>
|
|
303
|
+
</div>
|
|
304
|
+
</div>
|
|
305
|
+
<div class="ds-modal-actions">
|
|
306
|
+
<button id="notes-close" class="ds-btn" data-i18n="ds.notesClose">关闭</button>
|
|
307
|
+
</div>
|
|
308
|
+
</div>
|
|
309
|
+
</div>
|
|
310
|
+
|
|
194
311
|
<div id="toast" class="ds-toast hidden"></div>
|
|
195
312
|
<div id="ds-tip" class="ds-tip hidden" role="tooltip" aria-hidden="true"></div>
|
|
196
313
|
|
|
@@ -199,8 +316,20 @@
|
|
|
199
316
|
zh: {
|
|
200
317
|
'ds.repo': 'GitHub 仓库', 'ds.newSession': '+ 新会话', 'ds.sessions': '会话',
|
|
201
318
|
'ds.files': '文件传输', 'ds.settings': '设置', 'ds.stats': '统计', 'ds.menu': '导航',
|
|
202
|
-
'ds.send': '发送', 'ds.composerPlaceholder': '输入消息,Enter 发送…',
|
|
319
|
+
'ds.send': '发送', 'ds.composerPlaceholder': '输入消息,Enter 发送…', 'ds.presets': '预设',
|
|
320
|
+
'ds.commands': '指令',
|
|
321
|
+
'ds.cmdCompact': '/compact 压缩对话历史', 'ds.cmdExport': '/export 导出会话日志 ZIP',
|
|
322
|
+
'ds.cmdFeedback': '/feedback 反馈当前会话', 'ds.cmdGoal': '/goal 设置/查看任务目标',
|
|
323
|
+
'ds.cmdPermission': '/permission 切换权限预设', 'ds.cmdPlan': '/plan 进入/退出计划模式',
|
|
203
324
|
'ds.fsUp': '上级', 'ds.fsRefresh': '刷新', 'ds.fsEmpty': '目录为空',
|
|
325
|
+
'ds.groupGeneral': '通用', 'ds.groupGeneralDesc': '工具调用、预设提示词',
|
|
326
|
+
'ds.groupServers': '服务器', 'ds.groupServersDesc': '服务器地址',
|
|
327
|
+
'ds.groupNotify': '通知', 'ds.groupNotifyDesc': '通知与提醒',
|
|
328
|
+
'ds.groupTheme': '皮肤', 'ds.groupThemeDesc': '配色主题',
|
|
329
|
+
'ds.groupAbout': '关于', 'ds.groupAboutDesc': '版本信息',
|
|
330
|
+
'ds.donate': '赞赏支持', 'ds.donateDesc': '如果 dsh-remote 帮到了你,欢迎赞赏支持开发 ☕', 'ds.donateThanks': '感谢你的支持 ☕', 'ds.donateClose': '关闭',
|
|
331
|
+
'ds.notesTitle': '更新内容', 'ds.notesClose': '关闭', 'ds.notesPage': '{current}/{total}',
|
|
332
|
+
'ds.back': '‹ 返回', 'ds.emptyGroup': '暂无设置项',
|
|
204
333
|
'ds.serversTitle': '服务器(分组)', 'ds.speedTest': '测速', 'ds.currentGroup': '当前组',
|
|
205
334
|
'ds.addGroup': '+ 组', 'ds.addServer': '添加', 'ds.tokenTitle': '访问令牌', 'ds.copyToken': '复制',
|
|
206
335
|
'ds.themeTitle': '皮肤', 'ds.themeDesc': '默认深空 / 落日 / 易北爱乐厅 / 草原孤塔', 'ds.langTitle': '语言 / Language',
|
|
@@ -218,6 +347,7 @@
|
|
|
218
347
|
'ds.feedbackRateLimited': '提交太频繁,请 5 分钟后再试', 'ds.feedbackSubmitFailed': '提交失败:{msg}', 'ds.feedbackNetworkError': '网络错误',
|
|
219
348
|
'ds.questionTitle': '回答问题', 'ds.ignore': '忽略', 'ds.submit': '提交',
|
|
220
349
|
'ds.connOn': '已连接', 'ds.connOff': '未连接', 'ds.connIng': '连接中',
|
|
350
|
+
'ds.connPollTitle': '当前网络不支持实时推送,已降级为轮询(延迟数秒)',
|
|
221
351
|
'ds.currentServer': '{group} · {url}', 'ds.origin': '当前页面',
|
|
222
352
|
'ds.toastSent': '已发送', 'ds.toastCopied': '令牌已复制', 'ds.toastAuth': '令牌无效',
|
|
223
353
|
'ds.toastConnFailed': '连接失败', 'ds.toastOpFailed': '操作失败',
|
|
@@ -254,6 +384,7 @@
|
|
|
254
384
|
'ds.groupsConfirmDelete': '删除组「{group}」?组内服务器将归入默认组。', 'ds.groupsDeleted': '组已删除',
|
|
255
385
|
'ds.theme.default': '默认深空', 'ds.theme.dark': '落日', 'ds.theme.light': '易北爱乐厅', 'ds.theme.neutral': '草原孤塔',
|
|
256
386
|
'ds.role.me': '我', 'ds.role.dsh': 'DSH', 'ds.toolDefault': '工具',
|
|
387
|
+
'ds.eventSystemReminder': '系统提示',
|
|
257
388
|
'ds.questionOptions': '选项', 'ds.questionCustom': '自定义回答',
|
|
258
389
|
'ds.questionNeedAnswer': '请选择一个选项或填写自定义回答', 'ds.questionSubmitted': '已提交回答',
|
|
259
390
|
'ds.questionFrom': '来自 {server}',
|
|
@@ -261,8 +392,20 @@
|
|
|
261
392
|
en: {
|
|
262
393
|
'ds.repo': 'GitHub repo', 'ds.newSession': '+ New session', 'ds.sessions': 'Sessions',
|
|
263
394
|
'ds.files': 'Files', 'ds.settings': 'Settings', 'ds.stats': 'Stats', 'ds.menu': 'Menu',
|
|
264
|
-
'ds.send': 'Send', 'ds.composerPlaceholder': 'Type a message, Enter to send…',
|
|
395
|
+
'ds.send': 'Send', 'ds.composerPlaceholder': 'Type a message, Enter to send…', 'ds.presets': 'Presets',
|
|
396
|
+
'ds.commands': 'Commands',
|
|
397
|
+
'ds.cmdCompact': '/compact Compress conversation history', 'ds.cmdExport': '/export Export session log ZIP',
|
|
398
|
+
'ds.cmdFeedback': '/feedback Feedback current session', 'ds.cmdGoal': '/goal Set/view task goal',
|
|
399
|
+
'ds.cmdPermission': '/permission Switch permission preset', 'ds.cmdPlan': '/plan Enter/exit plan mode',
|
|
265
400
|
'ds.fsUp': 'Up', 'ds.fsRefresh': 'Refresh', 'ds.fsEmpty': 'Empty directory',
|
|
401
|
+
'ds.groupGeneral': 'General', 'ds.groupGeneralDesc': 'Tool calls, prompt presets',
|
|
402
|
+
'ds.groupServers': 'Servers', 'ds.groupServersDesc': 'Server address',
|
|
403
|
+
'ds.groupNotify': 'Notifications', 'ds.groupNotifyDesc': 'Notifications & reminders',
|
|
404
|
+
'ds.groupTheme': 'Theme', 'ds.groupThemeDesc': 'Color themes',
|
|
405
|
+
'ds.groupAbout': 'About', 'ds.groupAboutDesc': 'Version info',
|
|
406
|
+
'ds.donate': 'Support', 'ds.donateDesc': 'If dsh-remote has been helpful to you, feel free to support development with a coffee ☕', 'ds.donateThanks': 'Thanks for your support ☕', 'ds.donateClose': 'Close',
|
|
407
|
+
'ds.notesTitle': 'What\'s New', 'ds.notesClose': 'Close', 'ds.notesPage': '{current}/{total}',
|
|
408
|
+
'ds.back': '‹ Back', 'ds.emptyGroup': 'No settings here',
|
|
266
409
|
'ds.serversTitle': 'Servers (groups)', 'ds.speedTest': 'Test', 'ds.currentGroup': 'Current group',
|
|
267
410
|
'ds.addGroup': '+ Group', 'ds.addServer': 'Add', 'ds.tokenTitle': 'Access token', 'ds.copyToken': 'Copy',
|
|
268
411
|
'ds.themeTitle': 'Theme', 'ds.themeDesc': 'Deep Space / Sunset / Elbphilharmonie / Prairie Tower', 'ds.langTitle': 'Language',
|
|
@@ -280,6 +423,7 @@
|
|
|
280
423
|
'ds.feedbackRateLimited': 'Too frequent, try again in 5 minutes', 'ds.feedbackSubmitFailed': 'Submit failed: {msg}', 'ds.feedbackNetworkError': 'Network error',
|
|
281
424
|
'ds.questionTitle': 'Answer question', 'ds.ignore': 'Ignore', 'ds.submit': 'Submit',
|
|
282
425
|
'ds.connOn': 'Connected', 'ds.connOff': 'Offline', 'ds.connIng': 'Connecting',
|
|
426
|
+
'ds.connPollTitle': 'Realtime push is unavailable on this network; degraded to polling (a few seconds delay)',
|
|
283
427
|
'ds.currentServer': '{group} · {url}', 'ds.origin': 'this page',
|
|
284
428
|
'ds.toastSent': 'Sent', 'ds.toastCopied': 'Token copied', 'ds.toastAuth': 'Invalid token',
|
|
285
429
|
'ds.toastConnFailed': 'Connection failed', 'ds.toastOpFailed': 'Operation failed',
|
|
@@ -316,6 +460,7 @@
|
|
|
316
460
|
'ds.groupsConfirmDelete': 'Delete group "{group}"? Its servers move to the default group.', 'ds.groupsDeleted': 'Group deleted',
|
|
317
461
|
'ds.theme.default': 'Deep Space', 'ds.theme.dark': 'Sunset', 'ds.theme.light': 'Elbphilharmonie', 'ds.theme.neutral': 'Prairie Tower',
|
|
318
462
|
'ds.role.me': 'Me', 'ds.role.dsh': 'DSH', 'ds.toolDefault': 'tool',
|
|
463
|
+
'ds.eventSystemReminder': 'System reminder',
|
|
319
464
|
'ds.questionOptions': 'Options', 'ds.questionCustom': 'Custom answer',
|
|
320
465
|
'ds.questionNeedAnswer': 'Choose an option or write a custom answer', 'ds.questionSubmitted': 'Answer submitted',
|
|
321
466
|
'ds.questionFrom': 'From {server}',
|