diff --git a/js/package.json b/js/package.json index a15e4d4a8..7b1050684 100644 --- a/js/package.json +++ b/js/package.json @@ -41,6 +41,7 @@ "@tiptap/extension-mention": "^2.0.0-beta.42", "@tiptap/extension-ordered-list": "^2.0.0-beta.24", "@tiptap/extension-paragraph": "^2.0.0-beta.22", + "@tiptap/extension-placeholder": "^2.0.0-beta.199", "@tiptap/extension-strike": "^2.0.0-beta.26", "@tiptap/extension-text": "^2.0.0-beta.15", "@tiptap/extension-underline": "^2.0.0-beta.7", diff --git a/js/src/components/Comment/CommentTree.vue b/js/src/components/Comment/CommentTree.vue index 320c00b31..5492f48b9 100644 --- a/js/src/components/Comment/CommentTree.vue +++ b/js/src/components/Comment/CommentTree.vue @@ -26,6 +26,7 @@ v-model="newComment.text" :aria-label="t('Comment body')" @submit="createCommentForEvent(newComment)" + :placeholder="t('Write a new comment')" />

{{ t("Comment text can't be empty") }} diff --git a/js/src/components/Comment/EventComment.vue b/js/src/components/Comment/EventComment.vue index d23de5153..48e7fcf36 100644 --- a/js/src/components/Comment/EventComment.vue +++ b/js/src/components/Comment/EventComment.vue @@ -155,6 +155,7 @@ :aria-label="t('Comment body')" class="flex-1" @submit="replyToComment" + :placeholder="t('Write a new reply')" /> - diff --git a/js/src/views/Group/GroupSettings.vue b/js/src/views/Group/GroupSettings.vue index 4d03f6307..20fd776e4 100644 --- a/js/src/views/Group/GroupSettings.vue +++ b/js/src/views/Group/GroupSettings.vue @@ -37,6 +37,7 @@ :aria-label="t('Group description body')" v-if="currentActor" :currentActor="currentActor" + :placeholder="t('A few lines about your group')" />

- {{ $t("Edit post") }} + {{ t("Edit post") }}

- {{ $t("Add a new post") }} + {{ t("Add a new post") }}

-

{{ $t("General information") }}

+

{{ t("General information") }}

-

{{ $t("Who can view this post") }}

+

{{ t("Who can view this post") }}

{{ - $t( + t( "When the post is private, you'll need to share the link around." ) }} @@ -58,7 +59,7 @@ v-model="editablePost.visibility" name="postVisibility" :native-value="PostVisibility.PUBLIC" - >{{ $t("Visible everywhere on the web") }}{{ t("Visible everywhere on the web") }}
@@ -66,7 +67,7 @@ v-model="editablePost.visibility" name="postVisibility" :native-value="PostVisibility.UNLISTED" - >{{ $t("Only accessible through link") }}{{ t("Only accessible through link") }}
@@ -74,7 +75,7 @@ v-model="editablePost.visibility" name="postVisibility" :native-value="PostVisibility.PRIVATE" - >{{ $t("Only accessible to members of the group") }}{{ t("Only accessible to members of the group") }}
@@ -84,14 +85,14 @@ @@ -121,7 +122,7 @@ >
- {{ $t("Only group moderators can create, edit and delete posts.") }} + {{ t("Only group moderators can create, edit and delete posts.") }}
diff --git a/js/yarn.lock b/js/yarn.lock index ea0d8bb9a..756b1807f 100644 --- a/js/yarn.lock +++ b/js/yarn.lock @@ -1585,6 +1585,15 @@ resolved "https://registry.yarnpkg.com/@tiptap/extension-paragraph/-/extension-paragraph-2.0.0-beta.199.tgz#34213e6594a1183a77bb33ced49502bafb0a3d1c" integrity sha512-+BoMCaxlsHqw065zTUNd+ywkvFJzNKbTY461/AlKX2dgHeaO8doXHDQK+9icOpibQvrKaMhOJmuBTgGlJlUUgw== +"@tiptap/extension-placeholder@^2.0.0-beta.199": + version "2.0.0-beta.199" + resolved "https://registry.yarnpkg.com/@tiptap/extension-placeholder/-/extension-placeholder-2.0.0-beta.199.tgz#0208c42f8b92a88e66b726353d07b652f09fd823" + integrity sha512-Tdq0r9XQ6hcu4ASvw2Xko6h8uS/xONmMmOFiTkK/54REB3RRQpkdCtXrhFn/T4DunJVBf6FUOLTjYN3SONhuew== + dependencies: + prosemirror-model "^1.18.1" + prosemirror-state "^1.4.1" + prosemirror-view "^1.28.2" + "@tiptap/extension-strike@^2.0.0-beta.26": version "2.0.0-beta.199" resolved "https://registry.yarnpkg.com/@tiptap/extension-strike/-/extension-strike-2.0.0-beta.199.tgz#5fc6e067728009d92027e58a042f18449f2fa264"