diff options
author | Marco <marcoambrosini@icloud.com> | 2023-11-15 14:57:44 +0900 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2023-11-22 14:35:10 +0100 |
commit | 0da90ecba51b7b0ab0ef72a253ae05f997b44989 (patch) | |
tree | 3b93fba2acf83093f7aae0f59ea1fd2366f0d26a /apps/comments/src | |
parent | eefbf6d2dea6b9391cf58fb983472d9509b76b5c (diff) | |
download | nextcloud-server-0da90ecba51b7b0ab0ef72a253ae05f997b44989.tar.gz nextcloud-server-0da90ecba51b7b0ab0ef72a253ae05f997b44989.zip |
Remove quotes from input
Signed-off-by: Marco <marcoambrosini@icloud.com>
Diffstat (limited to 'apps/comments/src')
-rw-r--r-- | apps/comments/src/components/Comment.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/comments/src/components/Comment.vue b/apps/comments/src/components/Comment.vue index af123c36d20..de873fb1024 100644 --- a/apps/comments/src/components/Comment.vue +++ b/apps/comments/src/components/Comment.vue @@ -92,7 +92,7 @@ </div> </div> <div id="tab-comments__editor-description" class="comment__editor-description"> - {{ t('comments', '"@" for mentions, ":" for emoji, "/" for smart picker') }} + {{ t('comments', '@ for mentions, : for emoji, / for smart picker') }} </div> </form> |