mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
* Refine locals of some internal pages headlines * Fix tool tip text * Fix 'email' -> 'e-mail' * Syncronize 'metadata.ts' with webapp * Refine e-mail notifications * Adjust notification settings buttons * Refine third party setting * Fix post teaser counter icon tooltips translations * Refine e-mail notifications * Refine third party setting * notification spec snapshot --------- Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>
203 lines
3.5 KiB
Plaintext
203 lines
3.5 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`notifications.vue mount renders 1`] = `
|
|
<article
|
|
class="base-card"
|
|
>
|
|
<h2
|
|
class="title"
|
|
>
|
|
settings.notifications.name
|
|
</h2>
|
|
|
|
<div
|
|
class="ds-space"
|
|
style="margin-top: 16px; margin-bottom: 16px;"
|
|
>
|
|
<div
|
|
class="ds-space"
|
|
style="margin-bottom: 8px;"
|
|
>
|
|
<h4>
|
|
settings.notifications.post
|
|
</h4>
|
|
</div>
|
|
|
|
<div
|
|
class="notifcation-settings-section"
|
|
>
|
|
<div
|
|
class="ds-space"
|
|
style="margin-bottom: 8px;"
|
|
>
|
|
<input
|
|
id="commentOnObservedPost"
|
|
type="checkbox"
|
|
/>
|
|
|
|
<label
|
|
class="label"
|
|
for="commentOnObservedPost"
|
|
>
|
|
|
|
settings.notifications.commentOnObservedPost
|
|
|
|
</label>
|
|
</div>
|
|
<div
|
|
class="ds-space"
|
|
style="margin-bottom: 8px;"
|
|
>
|
|
<input
|
|
id="mention"
|
|
type="checkbox"
|
|
/>
|
|
|
|
<label
|
|
class="label"
|
|
for="mention"
|
|
>
|
|
|
|
settings.notifications.mention
|
|
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="ds-space"
|
|
style="margin-top: 16px; margin-bottom: 16px;"
|
|
>
|
|
<div
|
|
class="ds-space"
|
|
style="margin-bottom: 8px;"
|
|
>
|
|
<h4>
|
|
settings.notifications.group
|
|
</h4>
|
|
</div>
|
|
|
|
<div
|
|
class="notifcation-settings-section"
|
|
>
|
|
<div
|
|
class="ds-space"
|
|
style="margin-bottom: 8px;"
|
|
>
|
|
<input
|
|
id="groupMemberJoined"
|
|
type="checkbox"
|
|
/>
|
|
|
|
<label
|
|
class="label"
|
|
for="groupMemberJoined"
|
|
>
|
|
|
|
settings.notifications.groupMemberJoined
|
|
|
|
</label>
|
|
</div>
|
|
<div
|
|
class="ds-space"
|
|
style="margin-bottom: 8px;"
|
|
>
|
|
<input
|
|
id="groupMemberLeft"
|
|
type="checkbox"
|
|
/>
|
|
|
|
<label
|
|
class="label"
|
|
for="groupMemberLeft"
|
|
>
|
|
|
|
settings.notifications.groupMemberLeft
|
|
|
|
</label>
|
|
</div>
|
|
<div
|
|
class="ds-space"
|
|
style="margin-bottom: 8px;"
|
|
>
|
|
<input
|
|
id="groupMemberRemoved"
|
|
type="checkbox"
|
|
/>
|
|
|
|
<label
|
|
class="label"
|
|
for="groupMemberRemoved"
|
|
>
|
|
|
|
settings.notifications.groupMemberRemoved
|
|
|
|
</label>
|
|
</div>
|
|
<div
|
|
class="ds-space"
|
|
style="margin-bottom: 8px;"
|
|
>
|
|
<input
|
|
id="groupMemberRoleChanged"
|
|
type="checkbox"
|
|
/>
|
|
|
|
<label
|
|
class="label"
|
|
for="groupMemberRoleChanged"
|
|
>
|
|
|
|
settings.notifications.groupMemberRoleChanged
|
|
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
class="ds-space"
|
|
style="margin-top: 24px; margin-bottom: 8px;"
|
|
>
|
|
<button
|
|
class="base-button"
|
|
type="button"
|
|
>
|
|
<!---->
|
|
|
|
<!---->
|
|
|
|
settings.notifications.checkAll
|
|
|
|
</button>
|
|
|
|
<button
|
|
class="base-button"
|
|
type="button"
|
|
>
|
|
<!---->
|
|
|
|
<!---->
|
|
|
|
settings.notifications.uncheckAll
|
|
|
|
</button>
|
|
|
|
<button
|
|
class="save-button base-button --filled"
|
|
disabled="disabled"
|
|
type="button"
|
|
>
|
|
<!---->
|
|
|
|
<!---->
|
|
|
|
actions.save
|
|
|
|
</button>
|
|
</div>
|
|
|
|
<!---->
|
|
</article>
|
|
`;
|