diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-07-16 15:23:39 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-07-17 21:35:34 +0200 |
commit | 46687a3cbde38d831cb53d0c9d0e729486798ea6 (patch) | |
tree | e876ead8f3e4c78b32f4bcb5ae066268f19417ba /app/javascript | |
parent | 572009cf5616b2dfab11b14395f4ddc17925c6a5 (diff) |
Shorten status icon tooltip text
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/flavours/glitch/components/status_icons.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/javascript/flavours/glitch/components/status_icons.js b/app/javascript/flavours/glitch/components/status_icons.js index 38e4a863f..ecb426d78 100644 --- a/app/javascript/flavours/glitch/components/status_icons.js +++ b/app/javascript/flavours/glitch/components/status_icons.js @@ -13,12 +13,12 @@ const messages = defineMessages({ collapse: { id: 'status.collapse', defaultMessage: 'Collapse' }, uncollapse: { id: 'status.uncollapse', defaultMessage: 'Uncollapse' }, inReplyTo: { id: 'status.in_reply_to', defaultMessage: 'This toot is a reply' }, - previewCard: { id: 'status.has_preview_card', defaultMessage: 'This toot features an attached preview card' }, - pictures: { id: 'status.has_pictures', defaultMessage: 'This toot features attached pictures' }, + previewCard: { id: 'status.has_preview_card', defaultMessage: 'Features an attached preview card' }, + pictures: { id: 'status.has_pictures', defaultMessage: 'Features attached pictures' }, poll: { id: 'status.is_poll', defaultMessage: 'This toot is a poll' }, - video: { id: 'status.has_video', defaultMessage: 'This toot features attached videos' }, - audio: { id: 'status.has_audio', defaultMessage: 'This toot features attached audio files' }, - localOnly: { id: 'status.local_only', defaultMessage: 'This toot is only visible from youre instance' }, + video: { id: 'status.has_video', defaultMessage: 'Features attached videos' }, + audio: { id: 'status.has_audio', defaultMessage: 'Features attached audio files' }, + localOnly: { id: 'status.local_only', defaultMessage: 'Only visible from your instance' }, }); @injectIntl |