Bläddra i källkod

Finish up embed modal feature (#4759)

* Add embed button to dropdowns of in-timeline statuses

* yarn run manage:translations
master
Eugen Rochko 6 år sedan
committed by GitHub
förälder
incheckning
9c04fadec9
35 ändrade filer med 130 tillägg och 0 borttagningar
  1. +1
    -0
      app/javascript/mastodon/components/status.js
  2. +7
    -0
      app/javascript/mastodon/components/status_action_bar.js
  3. +4
    -0
      app/javascript/mastodon/containers/status_container.js
  4. +3
    -0
      app/javascript/mastodon/locales/ar.json
  5. +3
    -0
      app/javascript/mastodon/locales/bg.json
  6. +3
    -0
      app/javascript/mastodon/locales/ca.json
  7. +3
    -0
      app/javascript/mastodon/locales/de.json
  8. +25
    -0
      app/javascript/mastodon/locales/defaultMessages.json
  9. +3
    -0
      app/javascript/mastodon/locales/en.json
  10. +3
    -0
      app/javascript/mastodon/locales/eo.json
  11. +3
    -0
      app/javascript/mastodon/locales/es.json
  12. +3
    -0
      app/javascript/mastodon/locales/fa.json
  13. +3
    -0
      app/javascript/mastodon/locales/fi.json
  14. +3
    -0
      app/javascript/mastodon/locales/fr.json
  15. +3
    -0
      app/javascript/mastodon/locales/he.json
  16. +3
    -0
      app/javascript/mastodon/locales/hr.json
  17. +3
    -0
      app/javascript/mastodon/locales/hu.json
  18. +3
    -0
      app/javascript/mastodon/locales/id.json
  19. +3
    -0
      app/javascript/mastodon/locales/io.json
  20. +3
    -0
      app/javascript/mastodon/locales/it.json
  21. +3
    -0
      app/javascript/mastodon/locales/ja.json
  22. +3
    -0
      app/javascript/mastodon/locales/ko.json
  23. +3
    -0
      app/javascript/mastodon/locales/nl.json
  24. +3
    -0
      app/javascript/mastodon/locales/no.json
  25. +3
    -0
      app/javascript/mastodon/locales/oc.json
  26. +3
    -0
      app/javascript/mastodon/locales/pl.json
  27. +3
    -0
      app/javascript/mastodon/locales/pt-BR.json
  28. +3
    -0
      app/javascript/mastodon/locales/pt.json
  29. +3
    -0
      app/javascript/mastodon/locales/ru.json
  30. +3
    -0
      app/javascript/mastodon/locales/th.json
  31. +3
    -0
      app/javascript/mastodon/locales/tr.json
  32. +3
    -0
      app/javascript/mastodon/locales/uk.json
  33. +3
    -0
      app/javascript/mastodon/locales/zh-CN.json
  34. +3
    -0
      app/javascript/mastodon/locales/zh-HK.json
  35. +3
    -0
      app/javascript/mastodon/locales/zh-TW.json

+ 1
- 0
app/javascript/mastodon/components/status.js Visa fil

@@ -32,6 +32,7 @@ export default class Status extends ImmutablePureComponent {
onOpenMedia: PropTypes.func,
onOpenVideo: PropTypes.func,
onBlock: PropTypes.func,
onEmbed: PropTypes.func,
onHeightChange: PropTypes.func,
me: PropTypes.number,
boostModal: PropTypes.bool,


+ 7
- 0
app/javascript/mastodon/components/status_action_bar.js Visa fil

@@ -23,6 +23,7 @@ const messages = defineMessages({
unmuteConversation: { id: 'status.unmute_conversation', defaultMessage: 'Unmute conversation' },
pin: { id: 'status.pin', defaultMessage: 'Pin on profile' },
unpin: { id: 'status.unpin', defaultMessage: 'Unpin from profile' },
embed: { id: 'status.embed', defaultMessage: 'Embed' },
});

@injectIntl
@@ -42,6 +43,7 @@ export default class StatusActionBar extends ImmutablePureComponent {
onMute: PropTypes.func,
onBlock: PropTypes.func,
onReport: PropTypes.func,
onEmbed: PropTypes.func,
onMuteConversation: PropTypes.func,
onPin: PropTypes.func,
me: PropTypes.number,
@@ -100,6 +102,10 @@ export default class StatusActionBar extends ImmutablePureComponent {
this.context.router.history.push(`/statuses/${this.props.status.get('id')}`);
}

handleEmbed = () => {
this.props.onEmbed(this.props.status);
}

handleReport = () => {
this.props.onReport(this.props.status);
}
@@ -120,6 +126,7 @@ export default class StatusActionBar extends ImmutablePureComponent {
let replyTitle;

menu.push({ text: intl.formatMessage(messages.open), action: this.handleOpen });
menu.push({ text: intl.formatMessage(messages.embed), action: this.handleEmbed });
menu.push(null);

if (withDismiss) {


+ 4
- 0
app/javascript/mastodon/containers/status_container.js Visa fil

@@ -82,6 +82,10 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
}
},

onEmbed (status) {
dispatch(openModal('EMBED', { url: status.get('url') }));
},

onDelete (status) {
if (!this.deleteModal) {
dispatch(deleteStatus(status.get('id')));


+ 3
- 0
app/javascript/mastodon/locales/ar.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "هل أنت متأكد أنك تريد كتم {name} ؟",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "الأنشطة",
"emoji_button.flags": "الأعلام",
"emoji_button.food": "الطعام والشراب",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "تعذرت ترقية هذا المنشور",
"status.delete": "إحذف",
"status.embed": "Embed",
"status.favourite": "أضف إلى المفضلة",
"status.load_more": "حمّل المزيد",
"status.media_hidden": "الصورة مستترة",


+ 3
- 0
app/javascript/mastodon/locales/bg.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Are you sure you want to mute {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activity",
"emoji_button.flags": "Flags",
"emoji_button.food": "Food & Drink",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "This post cannot be boosted",
"status.delete": "Изтриване",
"status.embed": "Embed",
"status.favourite": "Предпочитани",
"status.load_more": "Load more",
"status.media_hidden": "Media hidden",


+ 3
- 0
app/javascript/mastodon/locales/ca.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Estàs segur que vols silenciar {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activitat",
"emoji_button.flags": "Flags",
"emoji_button.food": "Menjar i Beure",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "Aquesta publicació no pot ser retootejada",
"status.delete": "Esborrar",
"status.embed": "Embed",
"status.favourite": "Favorit",
"status.load_more": "Carrega més",
"status.media_hidden": "Multimèdia amagat",


+ 3
- 0
app/javascript/mastodon/locales/de.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Are you sure you want to mute {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activity",
"emoji_button.flags": "Flags",
"emoji_button.food": "Food & Drink",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "This post cannot be boosted",
"status.delete": "Löschen",
"status.embed": "Embed",
"status.favourite": "Favorisieren",
"status.load_more": "Weitere laden",
"status.media_hidden": "Medien versteckt",


+ 25
- 0
app/javascript/mastodon/locales/defaultMessages.json Visa fil

@@ -197,6 +197,10 @@
{
"defaultMessage": "Unpin from profile",
"id": "status.unpin"
},
{
"defaultMessage": "Embed",
"id": "status.embed"
}
],
"path": "app/javascript/mastodon/components/status_action_bar.json"
@@ -1051,6 +1055,10 @@
{
"defaultMessage": "Unpin from profile",
"id": "status.unpin"
},
{
"defaultMessage": "Embed",
"id": "status.embed"
}
],
"path": "app/javascript/mastodon/features/status/components/action_bar.json"
@@ -1127,6 +1135,23 @@
{
"descriptors": [
{
"defaultMessage": "Embed",
"id": "status.embed"
},
{
"defaultMessage": "Embed this status on your website by copying the code below.",
"id": "embed.instructions"
},
{
"defaultMessage": "Here is what it will look like:",
"id": "embed.preview"
}
],
"path": "app/javascript/mastodon/features/ui/components/embed_modal.json"
},
{
"descriptors": [
{
"defaultMessage": "Close",
"id": "lightbox.close"
},


+ 3
- 0
app/javascript/mastodon/locales/en.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Are you sure you want to mute {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activity",
"emoji_button.flags": "Flags",
"emoji_button.food": "Food & Drink",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "This post cannot be boosted",
"status.delete": "Delete",
"status.embed": "Embed",
"status.favourite": "Favourite",
"status.load_more": "Load more",
"status.media_hidden": "Media hidden",


+ 3
- 0
app/javascript/mastodon/locales/eo.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Are you sure you want to mute {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activity",
"emoji_button.flags": "Flags",
"emoji_button.food": "Food & Drink",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "This post cannot be boosted",
"status.delete": "Forigi",
"status.embed": "Embed",
"status.favourite": "Favori",
"status.load_more": "Load more",
"status.media_hidden": "Media hidden",


+ 3
- 0
app/javascript/mastodon/locales/es.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Are you sure you want to mute {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activity",
"emoji_button.flags": "Flags",
"emoji_button.food": "Food & Drink",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "This post cannot be boosted",
"status.delete": "Borrar",
"status.embed": "Embed",
"status.favourite": "Favorito",
"status.load_more": "Load more",
"status.media_hidden": "Media hidden",


+ 3
- 0
app/javascript/mastodon/locales/fa.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "آیا واقعاً می‌خواهید {name} را بی‌صدا کنید؟",
"confirmations.unfollow.confirm": "لغو پیگیری",
"confirmations.unfollow.message": "آیا واقعاً می‌خواهید به پیگیری از {name} پایان دهید؟",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "فعالیت",
"emoji_button.flags": "پرچم‌ها",
"emoji_button.food": "غذا و نوشیدنی",
@@ -162,6 +164,7 @@
"standalone.public_title": "نگاهی به کاربران این سرور...",
"status.cannot_reblog": "این نوشته را نمی‌شود بازبوقید",
"status.delete": "پاک‌کردن",
"status.embed": "Embed",
"status.favourite": "پسندیدن",
"status.load_more": "بیشتر نشان بده",
"status.media_hidden": "تصویر پنهان شده",


+ 3
- 0
app/javascript/mastodon/locales/fi.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Are you sure you want to mute {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activity",
"emoji_button.flags": "Flags",
"emoji_button.food": "Food & Drink",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "This post cannot be boosted",
"status.delete": "Poista",
"status.embed": "Embed",
"status.favourite": "Tykkää",
"status.load_more": "Load more",
"status.media_hidden": "Media hidden",


+ 3
- 0
app/javascript/mastodon/locales/fr.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Confirmez vous le masquage de {name} ?",
"confirmations.unfollow.confirm": "Ne plus suivre",
"confirmations.unfollow.message": "Vous voulez-vous arrêter de suivre {name} ?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activités",
"emoji_button.flags": "Drapeaux",
"emoji_button.food": "Boire et manger",
@@ -162,6 +164,7 @@
"standalone.public_title": "Jeter un coup d’œil…",
"status.cannot_reblog": "Cette publication ne peut être boostée",
"status.delete": "Effacer",
"status.embed": "Embed",
"status.favourite": "Ajouter aux favoris",
"status.load_more": "Charger plus",
"status.media_hidden": "Média caché",


+ 3
- 0
app/javascript/mastodon/locales/he.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "להשתיק את {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "פעילות",
"emoji_button.flags": "דגלים",
"emoji_button.food": "אוכל ושתיה",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "לא ניתן להדהד הודעה זו",
"status.delete": "מחיקה",
"status.embed": "Embed",
"status.favourite": "חיבוב",
"status.load_more": "עוד",
"status.media_hidden": "מדיה מוסתרת",


+ 3
- 0
app/javascript/mastodon/locales/hr.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Jesi li siguran da želiš utišati {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Aktivnost",
"emoji_button.flags": "Zastave",
"emoji_button.food": "Hrana & Piće",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "Ovaj post ne može biti podignut",
"status.delete": "Obriši",
"status.embed": "Embed",
"status.favourite": "Označi omiljenim",
"status.load_more": "Učitaj više",
"status.media_hidden": "Sakriven media sadržaj",


+ 3
- 0
app/javascript/mastodon/locales/hu.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Are you sure you want to mute {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activity",
"emoji_button.flags": "Flags",
"emoji_button.food": "Food & Drink",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "This post cannot be boosted",
"status.delete": "Törlés",
"status.embed": "Embed",
"status.favourite": "Kedvenc",
"status.load_more": "Load more",
"status.media_hidden": "Media hidden",


+ 3
- 0
app/javascript/mastodon/locales/id.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Apa anda yakin ingin membisukan {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Aktivitas",
"emoji_button.flags": "Bendera",
"emoji_button.food": "Makanan & Minuman",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "This post cannot be boosted",
"status.delete": "Hapus",
"status.embed": "Embed",
"status.favourite": "Difavoritkan",
"status.load_more": "Tampilkan semua",
"status.media_hidden": "Media disembunyikan",


+ 3
- 0
app/javascript/mastodon/locales/io.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Are you sure you want to mute {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activity",
"emoji_button.flags": "Flags",
"emoji_button.food": "Food & Drink",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "This post cannot be boosted",
"status.delete": "Efacar",
"status.embed": "Embed",
"status.favourite": "Favorizar",
"status.load_more": "Kargar pluse",
"status.media_hidden": "Kontenajo celita",


+ 3
- 0
app/javascript/mastodon/locales/it.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Are you sure you want to mute {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activity",
"emoji_button.flags": "Flags",
"emoji_button.food": "Food & Drink",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "This post cannot be boosted",
"status.delete": "Elimina",
"status.embed": "Embed",
"status.favourite": "Apprezzato",
"status.load_more": "Mostra di più",
"status.media_hidden": "Allegato nascosto",


+ 3
- 0
app/javascript/mastodon/locales/ja.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "本当に{name}をミュートしますか?",
"confirmations.unfollow.confirm": "フォロー解除",
"confirmations.unfollow.message": "本当に{name}をフォロー解除しますか?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "活動",
"emoji_button.flags": "国旗",
"emoji_button.food": "食べ物",
@@ -162,6 +164,7 @@
"standalone.public_title": "今こんな話をしています",
"status.cannot_reblog": "この投稿はブーストできません",
"status.delete": "削除",
"status.embed": "Embed",
"status.favourite": "お気に入り",
"status.load_more": "もっと見る",
"status.media_hidden": "非表示のメディア",


+ 3
- 0
app/javascript/mastodon/locales/ko.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "정말로 {name}를 뮤트하시겠습니까?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "활동",
"emoji_button.flags": "국기",
"emoji_button.food": "음식",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "이 포스트는 부스트 할 수 없습니다",
"status.delete": "삭제",
"status.embed": "Embed",
"status.favourite": "즐겨찾기",
"status.load_more": "더 보기",
"status.media_hidden": "미디어 숨겨짐",


+ 3
- 0
app/javascript/mastodon/locales/nl.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Weet je het zeker dat je {name} wilt negeren?",
"confirmations.unfollow.confirm": "Ontvolgen",
"confirmations.unfollow.message": "Weet je het zeker dat je {name} wilt ontvolgen?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activiteiten",
"emoji_button.flags": "Vlaggen",
"emoji_button.food": "Eten en drinken",
@@ -162,6 +164,7 @@
"standalone.public_title": "Een kijkje binnenin...",
"status.cannot_reblog": "Deze toot kan niet geboost worden",
"status.delete": "Verwijderen",
"status.embed": "Embed",
"status.favourite": "Favoriet",
"status.load_more": "Meer laden",
"status.media_hidden": "Media verborgen",


+ 3
- 0
app/javascript/mastodon/locales/no.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Er du sikker på at du vil dempe {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Aktivitet",
"emoji_button.flags": "Flagg",
"emoji_button.food": "Mat og drikke",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "Denne posten kan ikke fremheves",
"status.delete": "Slett",
"status.embed": "Embed",
"status.favourite": "Lik",
"status.load_more": "Last mer",
"status.media_hidden": "Media skjult",


+ 3
- 0
app/javascript/mastodon/locales/oc.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Sètz segur de voler metre en silenci {name} ?",
"confirmations.unfollow.confirm": "Quitar de sègre",
"confirmations.unfollow.message": "Volètz vertadièrament quitar de sègre {name} ?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activitats",
"emoji_button.flags": "Drapèus",
"emoji_button.food": "Beure e manjar",
@@ -162,6 +164,7 @@
"standalone.public_title": "Una ulhada dedins…",
"status.cannot_reblog": "Aqueste estatut pòt pas èsser partejat",
"status.delete": "Escafar",
"status.embed": "Embed",
"status.favourite": "Apondre als favorits",
"status.load_more": "Cargar mai",
"status.media_hidden": "Mèdia rescondut",


+ 3
- 0
app/javascript/mastodon/locales/pl.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Czy na pewno chcesz wyciszyć {name}?",
"confirmations.unfollow.confirm": "Przestań śledzić",
"confirmations.unfollow.message": "Czy na pewno zamierzasz przestać śledzić {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Aktywność",
"emoji_button.flags": "Flagi",
"emoji_button.food": "Żywność i napoje",
@@ -162,6 +164,7 @@
"standalone.public_title": "Spojrzenie w głąb…",
"status.cannot_reblog": "Ten post nie może zostać podbity",
"status.delete": "Usuń",
"status.embed": "Embed",
"status.favourite": "Ulubione",
"status.load_more": "Załaduj więcej",
"status.media_hidden": "Zawartość multimedialna ukryta",


+ 3
- 0
app/javascript/mastodon/locales/pt-BR.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Você tem certeza de que quer silenciar {name}?",
"confirmations.unfollow.confirm": "Deixar de seguir",
"confirmations.unfollow.message": "Você tem certeza de que quer deixar de seguir {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activity",
"emoji_button.flags": "Flags",
"emoji_button.food": "Food & Drink",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "This post cannot be boosted",
"status.delete": "Eliminar",
"status.embed": "Embed",
"status.favourite": "Adicionar aos favoritos",
"status.load_more": "Carregar mais",
"status.media_hidden": "Media escondida",


+ 3
- 0
app/javascript/mastodon/locales/pt.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Are you sure you want to mute {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activity",
"emoji_button.flags": "Flags",
"emoji_button.food": "Food & Drink",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "This post cannot be boosted",
"status.delete": "Eliminar",
"status.embed": "Embed",
"status.favourite": "Adicionar aos favoritos",
"status.load_more": "Carregar mais",
"status.media_hidden": "Media escondida",


+ 3
- 0
app/javascript/mastodon/locales/ru.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Вы уверены, что хотите заглушить {name}?",
"confirmations.unfollow.confirm": "Отписаться",
"confirmations.unfollow.message": "Вы уверены, что хотите отписаться от {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Занятия",
"emoji_button.flags": "Флаги",
"emoji_button.food": "Еда и напитки",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "Этот статус не может быть продвинут",
"status.delete": "Удалить",
"status.embed": "Embed",
"status.favourite": "Нравится",
"status.load_more": "Показать еще",
"status.media_hidden": "Медиаконтент скрыт",


+ 3
- 0
app/javascript/mastodon/locales/th.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Are you sure you want to mute {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Activity",
"emoji_button.flags": "Flags",
"emoji_button.food": "Food & Drink",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "This post cannot be boosted",
"status.delete": "Delete",
"status.embed": "Embed",
"status.favourite": "Favourite",
"status.load_more": "Load more",
"status.media_hidden": "Media hidden",


+ 3
- 0
app/javascript/mastodon/locales/tr.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "{name} kullanıcısını sessize almak istiyor musunuz?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Aktivite",
"emoji_button.flags": "Bayraklar",
"emoji_button.food": "Yiyecek ve İçecek",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "Bu gönderi boost edilemez",
"status.delete": "Sil",
"status.embed": "Embed",
"status.favourite": "Favorilere ekle",
"status.load_more": "Daha fazla",
"status.media_hidden": "Gizli görsel",


+ 3
- 0
app/javascript/mastodon/locales/uk.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "Ви впевнені, що хочете заглушити {name}?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "Заняття",
"emoji_button.flags": "Прапори",
"emoji_button.food": "Їжа та напої",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "Цей допис не може бути передмухнутий",
"status.delete": "Видалити",
"status.embed": "Embed",
"status.favourite": "Подобається",
"status.load_more": "Завантажити більше",
"status.media_hidden": "Медіаконтент приховано",


+ 3
- 0
app/javascript/mastodon/locales/zh-CN.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "想好了,真的要静音 {name}?",
"confirmations.unfollow.confirm": "取消关注",
"confirmations.unfollow.message": "确定要取消关注 {name}吗?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "活动",
"emoji_button.flags": "旗帜",
"emoji_button.food": "食物和饮料",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "没法转嘟这条嘟文啦……",
"status.delete": "删除",
"status.embed": "Embed",
"status.favourite": "赞",
"status.load_more": "加载更多",
"status.media_hidden": "隐藏媒体内容",


+ 3
- 0
app/javascript/mastodon/locales/zh-HK.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "你確定要將{name}靜音嗎?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "活動",
"emoji_button.flags": "旗幟",
"emoji_button.food": "飲飲食食",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "這篇文章無法被轉推",
"status.delete": "刪除",
"status.embed": "Embed",
"status.favourite": "喜歡",
"status.load_more": "載入更多",
"status.media_hidden": "隱藏媒體內容",


+ 3
- 0
app/javascript/mastodon/locales/zh-TW.json Visa fil

@@ -63,6 +63,8 @@
"confirmations.mute.message": "你確定要消音 {name} ?",
"confirmations.unfollow.confirm": "Unfollow",
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
"embed.instructions": "Embed this status on your website by copying the code below.",
"embed.preview": "Here is what it will look like:",
"emoji_button.activity": "活動",
"emoji_button.flags": "旗幟",
"emoji_button.food": "食物與飲料",
@@ -162,6 +164,7 @@
"standalone.public_title": "A look inside...",
"status.cannot_reblog": "此貼文無法轉推",
"status.delete": "刪除",
"status.embed": "Embed",
"status.favourite": "喜愛",
"status.load_more": "載入更多",
"status.media_hidden": "媒體已隱藏",


Laddar…
Avbryt
Spara