aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/chat_list_item/chat_list_item.js10
-rw-r--r--src/components/checkbox/checkbox.vue2
-rw-r--r--src/components/mobile_nav/mobile_nav.js6
-rw-r--r--src/components/mobile_nav/mobile_nav.vue4
-rw-r--r--src/components/post_status_form/post_status_form.js2
-rw-r--r--src/components/settings_modal/tabs/general_tab.vue10
-rw-r--r--src/components/timeline/timeline.js1
-rw-r--r--src/i18n/ar.json2
-rw-r--r--src/i18n/ca.json2
-rw-r--r--src/i18n/cs.json2
-rw-r--r--src/i18n/de.json2
-rw-r--r--src/i18n/en.json3
-rw-r--r--src/i18n/eo.json2
-rw-r--r--src/i18n/es.json2
-rw-r--r--src/i18n/et.json2
-rw-r--r--src/i18n/eu.json2
-rw-r--r--src/i18n/fi.json64
-rw-r--r--src/i18n/fr.json2
-rw-r--r--src/i18n/ga.json2
-rw-r--r--src/i18n/he.json2
-rw-r--r--src/i18n/hu.json2
-rw-r--r--src/i18n/it.json168
-rw-r--r--src/i18n/ja_easy.json2
-rw-r--r--src/i18n/ja_pedantic.json2
-rw-r--r--src/i18n/ko.json2
-rw-r--r--src/i18n/nb.json2
-rw-r--r--src/i18n/nl.json2
-rw-r--r--src/i18n/oc.json2
-rw-r--r--src/i18n/pl.json2
-rw-r--r--src/i18n/pt.json2
-rw-r--r--src/i18n/ro.json2
-rw-r--r--src/i18n/ru.json2
-rw-r--r--src/i18n/te.json2
-rw-r--r--src/i18n/zh.json2
-rw-r--r--src/modules/config.js2
35 files changed, 224 insertions, 96 deletions
diff --git a/src/components/chat_list_item/chat_list_item.js b/src/components/chat_list_item/chat_list_item.js
index b6b0519a..bee1ad53 100644
--- a/src/components/chat_list_item/chat_list_item.js
+++ b/src/components/chat_list_item/chat_list_item.js
@@ -37,12 +37,14 @@ const ChatListItem = {
}
},
messageForStatusContent () {
- const content = this.chat.lastMessage ? (this.attachmentInfo || this.chat.lastMessage.content) : ''
-
+ const message = this.chat.lastMessage
+ const isYou = message && message.account_id === this.currentUser.id
+ const content = message ? (this.attachmentInfo || message.content) : ''
+ const messagePreview = isYou ? `<i>${this.$t('chats.you')}</i> ${content}` : content
return {
summary: '',
- statusnet_html: content,
- text: content,
+ statusnet_html: messagePreview,
+ text: messagePreview,
attachments: []
}
}
diff --git a/src/components/checkbox/checkbox.vue b/src/components/checkbox/checkbox.vue
index 03375b2f..d28c2cfd 100644
--- a/src/components/checkbox/checkbox.vue
+++ b/src/components/checkbox/checkbox.vue
@@ -52,7 +52,7 @@ export default {
right: 0;
top: 0;
display: block;
- content: '✔';
+ content: '✓';
transition: color 200ms;
width: 1.1em;
height: 1.1em;
diff --git a/src/components/mobile_nav/mobile_nav.js b/src/components/mobile_nav/mobile_nav.js
index cc4d7e38..b2b5d264 100644
--- a/src/components/mobile_nav/mobile_nav.js
+++ b/src/components/mobile_nav/mobile_nav.js
@@ -2,6 +2,7 @@ import SideDrawer from '../side_drawer/side_drawer.vue'
import Notifications from '../notifications/notifications.vue'
import { unseenNotificationsFromStore } from '../../services/notification_utils/notification_utils'
import GestureService from '../../services/gesture_service/gesture_service'
+import { mapGetters } from 'vuex'
const MobileNav = {
components: {
@@ -33,7 +34,8 @@ const MobileNav = {
sitename () { return this.$store.state.instance.name },
isChat () {
return this.$route.name === 'chat'
- }
+ },
+ ...mapGetters(['unreadChatCount'])
},
methods: {
toggleMobileSidebar () {
@@ -67,7 +69,7 @@ const MobileNav = {
this.$refs.notifications.markAsSeen()
},
onScroll ({ target: { scrollTop, clientHeight, scrollHeight } }) {
- if (this.$store.getters.mergedConfig.autoLoad && scrollTop + clientHeight >= scrollHeight) {
+ if (scrollTop + clientHeight >= scrollHeight) {
this.$refs.notifications.fetchOlderNotifications()
}
}
diff --git a/src/components/mobile_nav/mobile_nav.vue b/src/components/mobile_nav/mobile_nav.vue
index e0620fce..abd95f09 100644
--- a/src/components/mobile_nav/mobile_nav.vue
+++ b/src/components/mobile_nav/mobile_nav.vue
@@ -16,6 +16,10 @@
@click.stop.prevent="toggleMobileSidebar()"
>
<i class="button-icon icon-menu" />
+ <div
+ v-if="unreadChatCount"
+ class="alert-dot"
+ />
</a>
<router-link
v-if="!hideSitename"
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js
index b0d94555..1c0accac 100644
--- a/src/components/post_status_form/post_status_form.js
+++ b/src/components/post_status_form/post_status_form.js
@@ -216,7 +216,7 @@ const PostStatusForm = {
methods: {
async postStatus (event, newStatus, opts = {}) {
if (this.posting) { return }
- if (this.submitDisabled) { return }
+ if (this.disableSubmit) { return }
if (this.emojiInputShown) { return }
if (this.submitOnEnter) {
event.stopPropagation()
diff --git a/src/components/settings_modal/tabs/general_tab.vue b/src/components/settings_modal/tabs/general_tab.vue
index f89c0480..7f06d0bd 100644
--- a/src/components/settings_modal/tabs/general_tab.vue
+++ b/src/components/settings_modal/tabs/general_tab.vue
@@ -54,16 +54,6 @@
</Checkbox>
</li>
<li>
- <Checkbox v-model="autoLoad">
- {{ $t('settings.autoload') }}
- </Checkbox>
- </li>
- <li>
- <Checkbox v-model="hoverPreview">
- {{ $t('settings.reply_link_preview') }}
- </Checkbox>
- </li>
- <li>
<Checkbox v-model="emojiReactionsOnTimeline">
{{ $t('settings.emoji_reactions_on_timeline') }}
</Checkbox>
diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js
index bac73022..a829bd02 100644
--- a/src/components/timeline/timeline.js
+++ b/src/components/timeline/timeline.js
@@ -148,7 +148,6 @@ const Timeline = {
const bodyBRect = document.body.getBoundingClientRect()
const height = Math.max(bodyBRect.height, -(bodyBRect.y))
if (this.timeline.loading === false &&
- this.$store.getters.mergedConfig.autoLoad &&
this.$el.offsetHeight > 0 &&
(window.innerHeight + window.pageYOffset) >= (height - 750)) {
this.fetchOlderStatuses()
diff --git a/src/i18n/ar.json b/src/i18n/ar.json
index 8bba2b97..a475d291 100644
--- a/src/i18n/ar.json
+++ b/src/i18n/ar.json
@@ -73,7 +73,6 @@
"settings": {
"attachmentRadius": "المُرفَقات",
"attachments": "المُرفَقات",
- "autoload": "",
"avatar": "الصورة الرمزية",
"avatarAltRadius": "الصور الرمزية (الإشعارات)",
"avatarRadius": "الصور الرمزية",
@@ -147,7 +146,6 @@
"profile_tab": "الملف الشخصي",
"radii_help": "",
"replies_in_timeline": "الردود على الخيط الزمني",
- "reply_link_preview": "",
"reply_visibility_all": "عرض كافة الردود",
"reply_visibility_following": "",
"reply_visibility_self": "",
diff --git a/src/i18n/ca.json b/src/i18n/ca.json
index 42d7745c..c91fc073 100644
--- a/src/i18n/ca.json
+++ b/src/i18n/ca.json
@@ -73,7 +73,6 @@
"settings": {
"attachmentRadius": "Adjunts",
"attachments": "Adjunts",
- "autoload": "Recarrega automàticament en arribar a sota de tot.",
"avatar": "Avatar",
"avatarAltRadius": "Avatars en les notificacions",
"avatarRadius": "Avatars",
@@ -145,7 +144,6 @@
"profile_tab": "Perfil",
"radii_help": "Configura l'arrodoniment de les vores (en píxels)",
"replies_in_timeline": "Replies in timeline",
- "reply_link_preview": "Mostra el missatge citat en passar el ratolí per sobre de l'enllaç de resposta",
"reply_visibility_all": "Mostra totes les respostes",
"reply_visibility_following": "Mostra només les respostes a entrades meves o d'usuàries que jo segueixo",
"reply_visibility_self": "Mostra només les respostes a entrades meves",
diff --git a/src/i18n/cs.json b/src/i18n/cs.json
index 42e75567..4e8cbcda 100644
--- a/src/i18n/cs.json
+++ b/src/i18n/cs.json
@@ -112,7 +112,6 @@
"app_name": "Název aplikace",
"attachmentRadius": "Přílohy",
"attachments": "Přílohy",
- "autoload": "Povolit automatické načítání při rolování dolů",
"avatar": "Avatar",
"avatarAltRadius": "Avatary (oznámení)",
"avatarRadius": "Avatary",
@@ -206,7 +205,6 @@
"profile_tab": "Profil",
"radii_help": "Nastavit zakulacení rohů rozhraní (v pixelech)",
"replies_in_timeline": "Odpovědi v časové ose",
- "reply_link_preview": "Povolit náhledy odkazu pro odpověď při přejetí myši",
"reply_visibility_all": "Zobrazit všechny odpovědi",
"reply_visibility_following": "Zobrazit pouze odpovědi směřované na mě nebo uživatele, které sleduji",
"reply_visibility_self": "Zobrazit pouze odpovědi směřované na mě",
diff --git a/src/i18n/de.json b/src/i18n/de.json
index a44e58cb..4deea07e 100644
--- a/src/i18n/de.json
+++ b/src/i18n/de.json
@@ -131,7 +131,6 @@
"settings": {
"attachmentRadius": "Anhänge",
"attachments": "Anhänge",
- "autoload": "Aktiviere automatisches Laden von älteren Beiträgen beim scrollen",
"avatar": "Avatar",
"avatarAltRadius": "Avatare (Benachrichtigungen)",
"avatarRadius": "Avatare",
@@ -225,7 +224,6 @@
"profile_tab": "Profil",
"radii_help": "Kantenrundung (in Pixel) der Oberfläche anpassen",
"replies_in_timeline": "Antworten in der Zeitleiste",
- "reply_link_preview": "Antwortlink-Vorschau beim Überfahren mit der Maus aktivieren",
"reply_visibility_all": "Alle Antworten zeigen",
"reply_visibility_following": "Zeige nur Antworten an mich oder an Benutzer, denen ich folge",
"reply_visibility_self": "Nur Antworten an mich anzeigen",
diff --git a/src/i18n/en.json b/src/i18n/en.json
index 5cc75460..f5c21b69 100644
--- a/src/i18n/en.json
+++ b/src/i18n/en.json
@@ -265,7 +265,6 @@
"allow_following_move": "Allow auto-follow when following account moves",
"attachmentRadius": "Attachments",
"attachments": "Attachments",
- "autoload": "Enable automatic loading when scrolled to the bottom",
"avatar": "Avatar",
"avatarAltRadius": "Avatars (Notifications)",
"avatarRadius": "Avatars",
@@ -385,7 +384,6 @@
"profile_tab": "Profile",
"radii_help": "Set up interface edge rounding (in pixels)",
"replies_in_timeline": "Replies in timeline",
- "reply_link_preview": "Enable reply-link preview on mouse hover",
"reply_visibility_all": "Show all replies",
"reply_visibility_following": "Only show replies directed at me or users I'm following",
"reply_visibility_self": "Only show replies directed at me",
@@ -786,6 +784,7 @@
"password_reset_required_but_mailer_is_disabled": "You must reset your password, but password reset is disabled. Please contact your instance administrator."
},
"chats": {
+ "you": "You:",
"message_user": "Message {nickname}",
"delete": "Delete",
"chats": "Chats",
diff --git a/src/i18n/eo.json b/src/i18n/eo.json
index 6c5b3a74..fb115872 100644
--- a/src/i18n/eo.json
+++ b/src/i18n/eo.json
@@ -109,7 +109,6 @@
"app_name": "Nomo de aplikaĵo",
"attachmentRadius": "Kunsendaĵoj",
"attachments": "Kunsendaĵoj",
- "autoload": "Ŝalti memfaran enlegadon ĉe subo de paĝo",
"avatar": "Profilbildo",
"avatarAltRadius": "Profilbildoj (sciigoj)",
"avatarRadius": "Profilbildoj",
@@ -203,7 +202,6 @@
"profile_tab": "Profilo",
"radii_help": "Agordi fasadan rondigon de randoj (bildere)",
"replies_in_timeline": "Respondoj en tempolinio",
- "reply_link_preview": "Ŝalti respond-ligilan antaŭvidon dum musa ŝvebo",
"reply_visibility_all": "Montri ĉiujn respondojn",
"reply_visibility_following": "Montri nur respondojn por mi aŭ miaj abonatoj",
"reply_visibility_self": "Montri nur respondojn por mi",
diff --git a/src/i18n/es.json b/src/i18n/es.json
index 931d4c64..8151a799 100644
--- a/src/i18n/es.json
+++ b/src/i18n/es.json
@@ -203,7 +203,6 @@
},
"attachmentRadius": "Adjuntos",
"attachments": "Adjuntos",
- "autoload": "Habilitar carga automática al llegar al final de la página",
"avatar": "Avatar",
"avatarAltRadius": "Avatares (Notificaciones)",
"avatarRadius": "Avatares",
@@ -307,7 +306,6 @@
"profile_tab": "Perfil",
"radii_help": "Establezca el redondeo de las esquinas de la interfaz (en píxeles)",
"replies_in_timeline": "Réplicas en la línea temporal",
- "reply_link_preview": "Activar la previsualización del enlace de responder al pasar el ratón por encima",
"reply_visibility_all": "Mostrar todas las réplicas",
"reply_visibility_following": "Solo mostrar réplicas para mí o usuarios a los que sigo",
"reply_visibility_self": "Solo mostrar réplicas para mí",
diff --git a/src/i18n/et.json b/src/i18n/et.json
index b5ae4275..3368d169 100644
--- a/src/i18n/et.json
+++ b/src/i18n/et.json
@@ -116,7 +116,6 @@
},
"settings": {
"attachments": "Manused",
- "autoload": "Luba ajajoone automaatne uuendamine kui ajajoon on põhja keritud",
"avatar": "Profiilipilt",
"bio": "Bio",
"current_avatar": "Sinu praegune profiilipilt",
@@ -130,7 +129,6 @@
"nsfw_clickthrough": "Peida tööks-mittesobivad(NSFW) manuste hiireklõpsu taha",
"profile_background": "Profiilitaust",
"profile_banner": "Profiilibänner",
- "reply_link_preview": "Luba algpostituse kuvamine vastustes",
"set_new_avatar": "Vali uus profiilipilt",
"set_new_profile_background": "Vali uus profiilitaust",
"set_new_profile_banner": "Vali uus profiilibänner",
diff --git a/src/i18n/eu.json b/src/i18n/eu.json
index 1c75bf75..476f555d 100644
--- a/src/i18n/eu.json
+++ b/src/i18n/eu.json
@@ -203,7 +203,6 @@
},
"attachmentRadius": "Eranskinak",
"attachments": "Eranskinak",
- "autoload": "Gaitu karga automatikoa beheraino mugitzean",
"avatar": "Avatarra",
"avatarAltRadius": "Avatarra (Aipamenak)",
"avatarRadius": "Avatarrak",
@@ -307,7 +306,6 @@
"profile_tab": "Profila",
"radii_help": "Konfiguratu interfazearen ertzen biribiltzea (pixeletan)",
"replies_in_timeline": "Denbora-lerroko erantzunak",
- "reply_link_preview": "Gaitu erantzun-estekaren aurrebista arratoiarekin",
"reply_visibility_all": "Erakutsi erantzun guztiak",
"reply_visibility_following": "Erakutsi bakarrik niri zuzendutako edo nik jarraitutako erabiltzaileen erantzunak",
"reply_visibility_self": "Erakutsi bakarrik niri zuzendutako erantzunak",
diff --git a/src/i18n/fi.json b/src/i18n/fi.json
index c4ad4399..7ab9fe4a 100644
--- a/src/i18n/fi.json
+++ b/src/i18n/fi.json
@@ -28,7 +28,12 @@
"disable": "Poista käytöstä",
"confirm": "Hyväksy",
"verify": "Varmenna",
- "enable": "Ota käyttöön"
+ "enable": "Ota käyttöön",
+ "loading": "Ladataan…",
+ "error_retry": "Yritä uudelleen",
+ "retry": "Yritä uudelleen",
+ "close": "Sulje",
+ "peek": "Kurkkaa"
},
"login": {
"login": "Kirjaudu sisään",
@@ -63,7 +68,8 @@
"who_to_follow": "Seurausehdotukset",
"preferences": "Asetukset",
"administration": "Ylläpito",
- "search": "Haku"
+ "search": "Haku",
+ "bookmarks": "Kirjanmerkit"
},
"notifications": {
"broken_favorite": "Viestiä ei löydetty…",
@@ -126,7 +132,12 @@
"public": "Tämä viesti näkyy kaikille",
"private": "Tämä viesti näkyy vain sinun seuraajillesi",
"unlisted": "Tämä viesti ei näy Julkisella Aikajanalla tai Koko Tunnettu Verkosto -aikajanalla"
- }
+ },
+ "preview": "Esikatselu",
+ "preview_empty": "Tyhjä",
+ "empty_status_error": "Tyhjää viestiä ilman tiedostoja ei voi lähettää",
+ "media_description": "Tiedoston kuvaus",
+ "media_description_error": "Tiedostojen päivitys epäonnistui, yritä uudelleen"
},
"registration": {
"bio": "Kuvaus",
@@ -152,7 +163,6 @@
"settings": {
"attachmentRadius": "Liitteet",
"attachments": "Liitteet",
- "autoload": "Lataa vanhempia viestejä automaattisesti ruudun pohjalla",
"avatar": "Profiilikuva",
"avatarAltRadius": "Profiilikuvat (ilmoitukset)",
"avatarRadius": "Profiilikuvat",
@@ -175,7 +185,7 @@
"data_import_export_tab": "Tietojen tuonti / vienti",
"default_vis": "Oletusnäkyvyysrajaus",
"delete_account": "Poista tili",
- "delete_account_description": "Poista tilisi ja viestisi pysyvästi.",
+ "delete_account_description": "Poista tietosi ja lukitse tili pysyvästi.",
"delete_account_error": "Virhe poistaessa tiliäsi. Jos virhe jatkuu, ota yhteyttä palvelimesi ylläpitoon.",
"delete_account_instructions": "Syötä salasanasi vahvistaaksesi tilin poiston.",
"emoji_reactions_on_timeline": "Näytä emojireaktiot aikajanalla",
@@ -239,7 +249,6 @@
"profile_tab": "Profiili",
"radii_help": "Aseta reunojen pyöristys (pikseleinä)",
"replies_in_timeline": "Keskustelut aikajanalla",
- "reply_link_preview": "Keskusteluiden vastauslinkkien esikatselu",
"reply_visibility_all": "Näytä kaikki vastaukset",
"reply_visibility_following": "Näytä vain vastaukset minulle tai seuraamilleni käyttäjille",
"reply_visibility_self": "Näytä vain vastaukset minulle",
@@ -329,7 +338,7 @@
"post_status_content_type": "Uuden viestin sisällön muoto",
"user_mutes": "Käyttäjät",
"useStreamingApiWarning": "(Kokeellinen)",
- "type_domains_to_mute": "Syötä mykistettäviä sivustoja",
+ "type_domains_to_mute": "Etsi mykistettäviä sivustoja",
"upload_a_photo": "Lataa kuva",
"fun": "Hupi",
"greentext": "Meeminuolet",
@@ -490,7 +499,21 @@
"title": "Versio",
"backend_version": "Palvelimen versio",
"frontend_version": "Käyttöliittymän versio"
- }
+ },
+ "reset_profile_background": "Nollaa taustakuva",
+ "reset_background_confirm": "Haluatko todella nollata taustakuvan?",
+ "mutes_and_blocks": "Mykistykset ja Estot",
+ "bot": "Tämä on bottitili",
+ "profile_fields": {
+ "label": "Profiilin metatiedot",
+ "add_field": "Lisää kenttä",
+ "name": "Nimi",
+ "value": "Sisältö"
+ },
+ "reset_avatar": "Nollaa profiilikuva",
+ "reset_profile_banner": "Nollaa profiilin tausta",
+ "reset_avatar_confirm": "Haluatko todella nollata profiilikuvan?",
+ "reset_banner_confirm": "Haluatko todella nollata profiilin taustan?"
},
"time": {
"day": "{0} päivä",
@@ -536,7 +559,8 @@
"show_new": "Näytä uudet",
"up_to_date": "Ajantasalla",
"no_more_statuses": "Ei enempää viestejä",
- "no_statuses": "Ei viestejä"
+ "no_statuses": "Ei viestejä",
+ "reload": "Päivitä"
},
"status": {
"favorites": "Tykkäykset",
@@ -551,7 +575,15 @@
"mute_conversation": "Mykistä keskustelu",
"unmute_conversation": "Poista mykistys",
"status_unavailable": "Viesti ei saatavissa",
- "copy_link": "Kopioi linkki"
+ "copy_link": "Kopioi linkki",
+ "bookmark": "Lisää kirjanmerkkeihin",
+ "unbookmark": "Poista kirjanmerkeistä",
+ "thread_muted": "Keskustelu mykistetty",
+ "thread_muted_and_words": ", sisältää sanat:",
+ "show_full_subject": "Näytä koko otsikko",
+ "hide_full_subject": "Piilota koko otsikko",
+ "show_content": "Näytä sisältö",
+ "hide_content": "Piilota sisältö"
},
"user_card": {
"approve": "Hyväksy",
@@ -561,7 +593,7 @@
"follow": "Seuraa",
"follow_sent": "Pyyntö lähetetty!",
"follow_progress": "Pyydetään…",
- "follow_again": "Lähetä pyyntö uudestaan",
+ "follow_again": "Lähetä pyyntö uudestaan?",
"follow_unfollow": "Älä seuraa",
"followees": "Seuraa",
"followers": "Seuraajat",
@@ -601,7 +633,7 @@
"subscribe": "Tilaa",
"unsubscribe": "Poista tilaus",
"unblock": "Poista esto",
- "unblock_progress": "Postetaan estoa…",
+ "unblock_progress": "Poistetaan estoa…",
"unmute": "Poista mykistys",
"unmute_progress": "Poistetaan mykistystä…",
"mute_progress": "Mykistetään…",
@@ -625,7 +657,8 @@
"user_settings": "Käyttäjäasetukset",
"add_reaction": "Lisää Reaktio",
"accept_follow_request": "Hyväksy seurauspyyntö",
- "reject_follow_request": "Hylkää seurauspyyntö"
+ "reject_follow_request": "Hylkää seurauspyyntö",
+ "bookmark": "Kirjanmerkki"
},
"upload": {
"error": {
@@ -675,7 +708,7 @@
"mute": "Mykistä",
"unmute": "Poista mykistys",
"mute_progress": "Mykistetään…",
- "unmute_progress": "Poistetaan mykistyst…"
+ "unmute_progress": "Poistetaan mykistystä…"
},
"exporter": {
"export": "Vie",
@@ -743,5 +776,8 @@
"people_talking": "{0} käyttäjää puhuvat",
"person_talking": "{0} käyttäjä puhuu",
"no_results": "Ei tuloksia"
+ },
+ "errors": {
+ "storage_unavailable": "Pleroma ei voinut käyttää selaimen muistia. Kirjautumisesi ja paikalliset asetukset eivät tallennu ja saatat kohdata odottamattomia ongelmia. Yritä sallia evästeet."
}
}
diff --git a/src/i18n/fr.json b/src/i18n/fr.json
index 31b69a0f..f41be424 100644
--- a/src/i18n/fr.json
+++ b/src/i18n/fr.json
@@ -182,7 +182,6 @@
},
"attachmentRadius": "Pièces jointes",
"attachments": "Pièces jointes",
- "autoload": "Charger la suite automatiquement une fois le bas de la page atteint",
"avatar": "Avatar",
"avatarAltRadius": "Avatars (Notifications)",
"avatarRadius": "Avatars",
@@ -282,7 +281,6 @@
"profile_tab": "Profil",
"radii_help": "Vous pouvez ici choisir le niveau d'arrondi des angles de l'interface (en pixels)",
"replies_in_timeline": "Réponses au journal",
- "reply_link_preview": "Afficher un aperçu lors du survol de liens vers une réponse",
"reply_visibility_all": "Montrer toutes les réponses",
"reply_visibility_following": "Afficher uniquement les réponses adressées à moi ou aux personnes que je suis",
"reply_visibility_self": "Afficher uniquement les réponses adressées à moi",
diff --git a/src/i18n/ga.json b/src/i18n/ga.json
index 7a10ba40..74a48bfc 100644
--- a/src/i18n/ga.json
+++ b/src/i18n/ga.json
@@ -73,7 +73,6 @@
"settings": {
"attachmentRadius": "Ceangaltáin",
"attachments": "Ceangaltáin",
- "autoload": "Cumasaigh luchtú uathoibríoch nuair a scrollaítear go bun",
"avatar": "Phictúir phrófíle",
"avatarAltRadius": "Phictúirí phrófíle (Fograí)",
"avatarRadius": "Phictúirí phrófíle",
@@ -147,7 +146,6 @@
"profile_tab": "Próifíl",
"radii_help": "Cruinniú imeall comhéadan a chumrú (i bpicteilíní)",
"replies_in_timeline": "Freagraí sa amlíne",
- "reply_link_preview": "Cumasaigh réamhamharc nasc freagartha ar chlár na luiche",
"reply_visibility_all": "Taispeáin gach freagra",
"reply_visibility_following": "Taispeáin freagraí amháin atá dírithe ar mise nó ar úsáideoirí atá mé ag leanúint",
"reply_visibility_self": "Taispeáin freagraí amháin atá dírithe ar mise",
diff --git a/src/i18n/he.json b/src/i18n/he.json
index 1c034960..b1c9da69 100644
--- a/src/i18n/he.json
+++ b/src/i18n/he.json
@@ -140,7 +140,6 @@
"app_name": "שם האפליקציה",
"attachmentRadius": "צירופים",
"attachments": "צירופים",
- "autoload": "החל טעינה אוטומטית בגלילה לתחתית הדף",
"avatar": "תמונת פרופיל",
"avatarAltRadius": "תמונות פרופיל (התראות)",
"avatarRadius": "תמונות פרופיל",
@@ -240,7 +239,6 @@
"profile_tab": "פרופיל",
"radii_help": "קבע מראש עיגול פינות לממשק (בפיקסלים)",
"replies_in_timeline": "תגובות בציר הזמן",
- "reply_link_preview": "החל תצוגה מקדימה של לינק-תגובה בעת ריחוף עם העכבר",
"reply_visibility_all": "הראה את כל התגובות",
"reply_visibility_following": "הראה תגובות שמופנות אליי או לעקובים שלי בלבד",
"reply_visibility_self": "הראה תגובות שמופנות אליי בלבד",
diff --git a/src/i18n/hu.json b/src/i18n/hu.json
index e98fdc44..41355800 100644
--- a/src/i18n/hu.json
+++ b/src/i18n/hu.json
@@ -38,7 +38,6 @@
},
"settings": {
"attachments": "Csatolmányok",
- "autoload": "Autoatikus betöltés engedélyezése lap aljára görgetéskor",
"avatar": "Avatár",
"bio": "Bio",
"current_avatar": "Jelenlegi avatár",
@@ -52,7 +51,6 @@
"nsfw_clickthrough": "NSFW átkattintási tartalom elrejtésének engedélyezése",
"profile_background": "Profil háttérkép",
"profile_banner": "Profil Banner",
- "reply_link_preview": "Válasz-link előzetes mutatása egér rátételkor",
"set_new_avatar": "Új avatár",
"set_new_profile_background": "Új profil háttér beállítása",
"set_new_profile_banner": "Új profil banner",
diff --git a/src/i18n/it.json b/src/i18n/it.json
index ed78e656..7a8faf68 100644
--- a/src/i18n/it.json
+++ b/src/i18n/it.json
@@ -35,7 +35,8 @@
"search": "Ricerca",
"who_to_follow": "Chi seguire",
"preferences": "Preferenze",
- "bookmarks": "Segnalibri"
+ "bookmarks": "Segnalibri",
+ "chats": "Conversazioni"
},
"notifications": {
"followed_you": "ti segue",
@@ -52,7 +53,6 @@
},
"settings": {
"attachments": "Allegati",
- "autoload": "Abilita caricamento automatico quando raggiungi il fondo pagina",
"avatar": "Icona utente",
"bio": "Introduzione",
"current_avatar": "La tua icona attuale",
@@ -66,7 +66,6 @@
"nsfw_clickthrough": "Fai click per visualizzare gli allegati offuscati",
"profile_background": "Sfondo della tua pagina",
"profile_banner": "Stendardo del tuo profilo",
- "reply_link_preview": "Visualizza le risposte al passaggio del cursore",
"set_new_avatar": "Scegli una nuova icona",
"set_new_profile_background": "Scegli un nuovo sfondo per la tua pagina",
"set_new_profile_banner": "Scegli un nuovo stendardo per il tuo profilo",
@@ -85,7 +84,7 @@
"change_password": "Cambia password",
"change_password_error": "C'è stato un problema durante il cambiamento della password.",
"changed_password": "Password cambiata correttamente!",
- "collapse_subject": "Ripiega messaggi con Oggetto",
+ "collapse_subject": "Ripiega messaggi con oggetto",
"confirm_new_password": "Conferma la nuova password",
"current_password": "La tua password attuale",
"data_import_export_tab": "Importa o esporta dati",
@@ -257,7 +256,12 @@
"panel_header": "Titolo pannello",
"badge_notification": "Notifica",
"popover": "Suggerimenti, menù, sbalzi",
- "toggled": "Scambiato"
+ "toggled": "Scambiato",
+ "chat": {
+ "border": "Bordo",
+ "outgoing": "Inviati",
+ "incoming": "Ricevuti"
+ }
},
"common_colors": {
"rgbo": "Icone, accenti, medaglie",
@@ -398,7 +402,14 @@
"frontend_version": "Versione interfaccia",
"backend_version": "Versione backend",
"title": "Versione"
- }
+ },
+ "reset_avatar": "Azzera icona",
+ "reset_profile_background": "Azzera sfondo profilo",
+ "reset_profile_banner": "Azzera stendardo profilo",
+ "reset_avatar_confirm": "Vuoi veramente azzerare l'icona?",
+ "reset_banner_confirm": "Vuoi veramente azzerare lo stendardo?",
+ "reset_background_confirm": "Vuoi veramente azzerare lo sfondo?",
+ "chatMessageRadius": "Messaggi istantanei"
},
"timeline": {
"error_fetching": "Errore nell'aggiornamento",
@@ -427,7 +438,47 @@
"block": "Blocca",
"blocked": "Bloccato!",
"deny": "Nega",
- "remote_follow": "Segui da remoto"
+ "remote_follow": "Segui da remoto",
+ "admin_menu": {
+ "delete_user_confirmation": "Ne sei completamente sicuro? Quest'azione non può essere annullata.",
+ "delete_user": "Elimina utente",
+ "quarantine": "I messaggi non arriveranno alle altre stanze",
+ "disable_any_subscription": "Rendi utente non seguibile",
+ "disable_remote_subscription": "Blocca i tentativi di seguirlo da altre stanze",
+ "sandbox": "Rendi tutti i messaggi solo per seguaci",
+ "force_unlisted": "Rendi tutti i messaggi invisibili",
+ "strip_media": "Rimuovi ogni allegato ai messaggi",
+ "force_nsfw": "Oscura tutti i messaggi",
+ "delete_account": "Elimina profilo",
+ "deactivate_account": "Disattiva profilo",
+ "activate_account": "Attiva profilo",
+ "revoke_moderator": "Divesti Moderatore",
+ "grant_moderator": "Crea Moderatore",
+ "revoke_admin": "Divesti Amministratore",
+ "grant_admin": "Crea Amministratore",
+ "moderation": "Moderazione"
+ },
+ "show_repeats": "Mostra condivisioni",
+ "hide_repeats": "Nascondi condivisioni",
+ "mute_progress": "Zittisco…",
+ "unmute_progress": "Riabilito…",
+ "unmute": "Riabilita",
+ "block_progress": "Blocco…",
+ "unblock_progress": "Sblocco…",
+ "unblock": "Sblocca",
+ "unsubscribe": "Disdici",
+ "subscribe": "Abbònati",
+ "report": "Segnala",
+ "mention": "Menzioni",
+ "media": "Media",
+ "its_you": "Sei tu!",
+ "hidden": "Nascosto",
+ "follow_unfollow": "Disconosci",
+ "follow_again": "Reinvio richiesta?",
+ "follow_progress": "Richiedo…",
+ "follow_sent": "Richiesta inviata!",
+ "favorites": "Preferiti",
+ "message": "Contatta"
},
"chat": {
"title": "Chat"
@@ -439,7 +490,8 @@
"scope_options": "Opzioni visibilità",
"text_limit": "Lunghezza massima",
"title": "Caratteristiche",
- "who_to_follow": "Chi seguire"
+ "who_to_follow": "Chi seguire",
+ "pleroma_chat_messages": "Chiacchiere"
},
"finder": {
"error_fetching_user": "Errore nel recupero dell'utente",
@@ -493,7 +545,9 @@
"new_status": "Nuovo messaggio",
"empty_status_error": "Non puoi pubblicare messaggi vuoti senza allegati",
"preview_empty": "Vuoto",
- "preview": "Anteprima"
+ "preview": "Anteprima",
+ "media_description_error": "Allegati non caricati, riprova",
+ "media_description": "Descrizione allegati"
},
"registration": {
"bio": "Introduzione",
@@ -517,7 +571,9 @@
"captcha": "CAPTCHA"
},
"user_profile": {
- "timeline_title": "Sequenza dell'Utente"
+ "timeline_title": "Sequenza dell'Utente",
+ "profile_loading_error": "Spiacente, c'è stato un errore nel caricamento del profilo.",
+ "profile_does_not_exist": "Spiacente, questo profilo non esiste."
},
"who_to_follow": {
"more": "Altro",
@@ -626,7 +682,22 @@
"pin": "Intesta al profilo",
"delete": "Elimina messaggio",
"repeats": "Condivisi",
- "favorites": "Preferiti"
+ "favorites": "Preferiti",
+ "hide_content": "Nascondi contenuti",
+ "show_content": "Mostra contenuti",
+ "hide_full_subject": "Nascondi intero oggetto",
+ "show_full_subject": "Mostra intero oggetto",
+ "thread_muted_and_words": ", contiene:",
+ "thread_muted": "Discussione zittita",
+ "copy_link": "Copia collegamento",
+ "status_unavailable": "Messaggio non disponibile",
+ "unmute_conversation": "Riabilita conversazione",
+ "mute_conversation": "Zittisci conversazione",
+ "replies_list": "Risposte:",
+ "reply_to": "Rispondi a",
+ "delete_confirm": "Vuoi veramente eliminare questo messaggio?",
+ "unbookmark": "Rimuovi segnalibro",
+ "bookmark": "Aggiungi segnalibro"
},
"time": {
"years_short": "{0}a",
@@ -661,5 +732,80 @@
"day_short": "{0}g",
"days": "{0} giorni",
"day": "{0} giorno"
+ },
+ "user_reporting": {
+ "title": "Segnalo {0}",
+ "additional_comments": "Osservazioni accessorie",
+ "generic_error": "C'è stato un errore nell'elaborazione della tua richiesta.",
+ "submit": "Invia",
+ "forward_to": "Inoltra a {0}",
+ "forward_description": "Il profilo appartiene ad un'altra stanza. Inviare la segnalazione anche a quella?",
+ "add_comment_description": "La segnalazione sarà inviata ai moderatori della tua stanza. Puoi motivarla qui sotto:"
+ },
+ "password_reset": {
+ "password_reset_required_but_mailer_is_disabled": "Devi reimpostare la tua password, ma non puoi farlo. Contatta il tuo amministratore.",
+ "password_reset_required": "Devi reimpostare la tua password per poter continuare.",
+ "password_reset_disabled": "Non puoi azzerare la tua password. Contatta il tuo amministratore.",
+ "too_many_requests": "Hai raggiunto il numero massimo di tentativi, riprova più tardi.",
+ "not_found": "Non ho trovato questa email o nome utente.",
+ "return_home": "Torna alla pagina principale",
+ "check_email": "Controlla la tua posta elettronica.",
+ "placeholder": "La tua email o nome utente",
+ "instruction": "Inserisci il tuo indirizzo email o il tuo nome utente. Ti invieremo un collegamento per reimpostare la tua password.",
+ "password_reset": "Azzera password",
+ "forgot_password": "Password dimenticata?"
+ },
+ "search": {
+ "no_results": "Nessun risultato",
+ "people_talking": "{count} partecipanti",
+ "person_talking": "{count} partecipante",
+ "hashtags": "Etichette",
+ "people": "Utenti"
+ },
+ "upload": {
+ "file_size_units": {
+ "TiB": "TiB",
+ "GiB": "GiB",
+ "MiB": "MiB",
+ "KiB": "KiB",
+ "B": "B"
+ },
+ "error": {
+ "default": "Riprova in seguito",
+ "file_too_big": "File troppo pesante [{filesize}{filesizeunit} / {allowedsize}{allowedsizeunit}]",
+ "base": "Caricamento fallito."
+ }
+ },
+ "tool_tip": {
+ "bookmark": "Aggiungi segnalibro",
+ "reject_follow_request": "Rifiuta seguace",
+ "accept_follow_request": "Accetta seguace",
+ "user_settings": "Impostazioni utente",
+ "add_reaction": "Reagisci",
+ "favorite": "Gradisci",
+ "reply": "Rispondi",
+ "repeat": "Ripeti",
+ "media_upload": "Carica allegati"
+ },
+ "display_date": {
+ "today": "Oggi"
+ },
+ "file_type": {
+ "file": "File",
+ "image": "Immagine",
+ "video": "Video",
+ "audio": "Audio"
+ },
+ "chats": {
+ "empty_chat_list_placeholder": "Non hai conversazioni. Contatta qualcuno!",
+ "error_sending_message": "Errore. Il messaggio non è stato inviato.",
+ "error_loading_chat": "Errore. La conversazione non è stata caricata.",
+ "delete_confirm": "Vuoi veramente eliminare questo messaggio?",
+ "more": "Altro",
+ "empty_message_error": "Non puoi inviare messaggi vuoti",
+ "new": "Nuova conversazione",
+ "chats": "Conversazioni",
+ "delete": "Elimina",
+ "message_user": "Contatta {nickname}"
}
}
diff --git a/src/i18n/ja_easy.json b/src/i18n/ja_easy.json
index 978e43b3..194068ce 100644
--- a/src/i18n/ja_easy.json
+++ b/src/i18n/ja_easy.json
@@ -234,7 +234,6 @@
},
"attachmentRadius": "ファイル",
"attachments": "ファイル",
- "autoload": "したにスクロールしたとき、じどうてきによみこむ。",
"avatar": "アバター",
"avatarAltRadius": "つうちのアバター",
"avatarRadius": "アバター",
@@ -343,7 +342,6 @@
"profile_tab": "プロフィール",
"radii_help": "インターフェースのまるさをせっていする。",
"replies_in_timeline": "タイムラインのリプライ",
- "reply_link_preview": "カーソルをかさねたとき、リプライのプレビューをみる",
"reply_visibility_all": "すべてのリプライをみる",
"reply_visibility_following": "わたしにあてられたリプライと、フォローしているひとからのリプライをみる",
"reply_visibility_self": "わたしにあてられたリプライをみる",
diff --git a/src/i18n/ja_pedantic.json b/src/i18n/ja_pedantic.json
index 2ca7dca8..0acecf50 100644
--- a/src/i18n/ja_pedantic.json
+++ b/src/i18n/ja_pedantic.json
@@ -203,7 +203,6 @@
},
"attachmentRadius": "ファイル",
"attachments": "ファイル",
- "autoload": "下にスクロールしたとき、自動的に読み込む。",
"avatar": "アバター",
"avatarAltRadius": "通知のアバター",
"avatarRadius": "アバター",
@@ -308,7 +307,6 @@
"profile_tab": "プロフィール",
"radii_help": "インターフェースの丸さを設定する。",
"replies_in_timeline": "タイムラインのリプライ",
- "reply_link_preview": "カーソルを重ねたとき、リプライのプレビューを見る",
"reply_visibility_all": "すべてのリプライを見る",
"reply_visibility_following": "私に宛てられたリプライと、フォローしている人からのリプライを見る",
"reply_visibility_self": "私に宛てられたリプライを見る",
diff --git a/src/i18n/ko.json b/src/i18n/ko.json
index 402a354c..0968949b 100644
--- a/src/i18n/ko.json
+++ b/src/i18n/ko.json
@@ -90,7 +90,6 @@
"settings": {
"attachmentRadius": "첨부물",
"attachments": "첨부물",
- "autoload": "최하단에 도착하면 자동으로 로드 활성화",
"avatar": "아바타",
"avatarAltRadius": "아바타 (알림)",
"avatarRadius": "아바타",
@@ -172,7 +171,6 @@
"profile_tab": "프로필",
"radii_help": "인터페이스 모서리 둥글기 (픽셀 단위)",
"replies_in_timeline": "답글을 타임라인에",
- "reply_link_preview": "마우스를 올려서 답글 링크 미리보기 활성화",
"reply_visibility_all": "모든 답글 보기",
"reply_visibility_following": "나에게 직접 오는 답글이나 내가 팔로우 중인 사람에게서 오는 답글만 표시",
"reply_visibility_self": "나에게 직접 전송 된 답글만 보이기",
diff --git a/src/i18n/nb.json b/src/i18n/nb.json
index 248b05bc..af0f9a45 100644
--- a/src/i18n/nb.json
+++ b/src/i18n/nb.json
@@ -193,7 +193,6 @@
},
"attachmentRadius": "Vedlegg",
"attachments": "Vedlegg",
- "autoload": "Automatisk lasting når du blar ned til bunnen",
"avatar": "Profilbilde",
"avatarAltRadius": "Profilbilde (Varslinger)",
"avatarRadius": "Profilbilde",
@@ -293,7 +292,6 @@
"profile_tab": "Profil",
"radii_help": "Bestem hvor runde hjørnene i brukergrensesnittet skal være (i piksler)",
"replies_in_timeline": "Svar på tidslinje",
- "reply_link_preview": "Vis en forhåndsvisning når du holder musen over svar til en status",
"reply_visibility_all": "Vis alle svar",
"reply_visibility_following": "Vis bare svar som er til meg eller folk jeg følger",
"reply_visibility_self": "Vis bare svar som er til meg",
diff --git a/src/i18n/nl.json b/src/i18n/nl.json
index bf270f87..2f2a1786 100644
--- a/src/i18n/nl.json
+++ b/src/i18n/nl.json
@@ -136,7 +136,6 @@
"settings": {
"attachmentRadius": "Bijlages",
"attachments": "Bijlages",
- "autoload": "Automatisch laden inschakelen wanneer tot de bodem gescrold wordt",
"avatar": "Avatar",
"avatarAltRadius": "Avatars (Meldingen)",
"avatarRadius": "Avatars",
@@ -217,7 +216,6 @@
"profile_tab": "Profiel",
"radii_help": "Stel afronding van hoeken in de interface in (in pixels)",
"replies_in_timeline": "Antwoorden in tijdlijn",
- "reply_link_preview": "Antwoord-link weergave inschakelen bij aanwijzen met muisaanwijzer",
"reply_visibility_all": "Alle antwoorden tonen",
"reply_visibility_following": "Enkel antwoorden tonen die aan mij of gevolgde gebruikers gericht zijn",
"reply_visibility_self": "Enkel antwoorden tonen die aan mij gericht zijn",
diff --git a/src/i18n/oc.json b/src/i18n/oc.json
index 680ad6dd..6606c7f2 100644
--- a/src/i18n/oc.json
+++ b/src/i18n/oc.json
@@ -152,7 +152,6 @@
"app_name": "Nom de l’aplicacion",
"attachmentRadius": "Pèças juntas",
"attachments": "Pèças juntas",
- "autoload": "Activar lo cargament automatic un còp arribat al cap de la pagina",
"avatar": "Avatar",
"avatarAltRadius": "Avatars (Notificacions)",
"avatarRadius": "Avatars",
@@ -252,7 +251,6 @@
"profile_tab": "Perfil",
"radii_help": "Configurar los caires arredondits de l’interfàcia (en pixèls)",
"replies_in_timeline": "Responsas del flux",
- "reply_link_preview": "Activar l’apercebut en passar la mirga",
"reply_visibility_all": "Mostrar totas las responsas",
"reply_visibility_following": "Mostrar pas que las responsas que me son destinada a ieu o un utilizaire que seguissi",
"reply_visibility_self": "Mostrar pas que las responsas que me son destinadas",
diff --git a/src/i18n/pl.json b/src/i18n/pl.json
index 61e09318..ee583016 100644
--- a/src/i18n/pl.json
+++ b/src/i18n/pl.json
@@ -249,7 +249,6 @@
"allow_following_move": "Zezwalaj na automatyczną obserwację gdy obserwowane konto migruje",
"attachmentRadius": "Załączniki",
"attachments": "Załączniki",
- "autoload": "Włącz automatyczne ładowanie po przewinięciu do końca strony",
"avatar": "Awatar",
"avatarAltRadius": "Awatary (powiadomienia)",
"avatarRadius": "Awatary",
@@ -362,7 +361,6 @@
"profile_tab": "Profil",
"radii_help": "Ustaw zaokrąglenie krawędzi interfejsu (w pikselach)",
"replies_in_timeline": "Odpowiedzi na osi czasu",
- "reply_link_preview": "Włącz dymek z podglądem postu po najechaniu na znak odpowiedzi",
"reply_visibility_all": "Pokazuj wszystkie odpowiedzi",
"reply_visibility_following": "Pokazuj tylko odpowiedzi skierowane do mnie i osób które obserwuję",
"reply_visibility_self": "Pokazuj tylko odpowiedzi skierowane do mnie",
diff --git a/src/i18n/pt.json b/src/i18n/pt.json
index 41a34483..1b8694d9 100644
--- a/src/i18n/pt.json
+++ b/src/i18n/pt.json
@@ -109,7 +109,6 @@
"app_name": "Nome do aplicativo",
"attachmentRadius": "Anexos",
"attachments": "Anexos",
- "autoload": "Habilitar carregamento automático quando a rolagem chegar ao fim.",
"avatar": "Avatar",
"avatarAltRadius": "Avatares (Notificações)",
"avatarRadius": "Avatares",
@@ -203,7 +202,6 @@
"profile_tab": "Perfil",
"radii_help": "Arredondar arestas da interface (em pixel)",
"replies_in_timeline": "Respostas na linha do tempo",
- "reply_link_preview": "Habilitar a pré-visualização de de respostas ao passar o mouse.",
"reply_visibility_all": "Mostrar todas as respostas",
"reply_visibility_following": "Só mostrar respostas direcionadas a mim ou a usuários que sigo",
"reply_visibility_self": "Só mostrar respostas direcionadas a mim",
diff --git a/src/i18n/ro.json b/src/i18n/ro.json
index 3cee264f..d800a8d4 100644
--- a/src/i18n/ro.json
+++ b/src/i18n/ro.json
@@ -38,7 +38,6 @@
},
"settings": {
"attachments": "Atașamente",
- "autoload": "Permite încărcarea automată când scrolat la capăt",
"avatar": "Avatar",
"bio": "Bio",
"current_avatar": "Avatarul curent",
@@ -52,7 +51,6 @@
"nsfw_clickthrough": "Permite ascunderea al atașamentelor NSFW",
"profile_background": "Fundalul de profil",
"profile_banner": "Banner de profil",
- "reply_link_preview": "Permite previzualizarea linkului de răspuns la planarea de mouse",
"set_new_avatar": "Setează avatar nou",
"set_new_profile_background": "Setează fundal nou",
"set_new_profile_banner": "Setează banner nou la profil",
diff --git a/src/i18n/ru.json b/src/i18n/ru.json
index 08f05d18..a128d564 100644
--- a/src/i18n/ru.json
+++ b/src/i18n/ru.json
@@ -124,7 +124,6 @@
},
"attachmentRadius": "Прикреплённые файлы",
"attachments": "Вложения",
- "autoload": "Включить автоматическую загрузку при прокрутке вниз",
"avatar": "Аватар",
"avatarAltRadius": "Аватары в уведомлениях",
"avatarRadius": "Аватары",
@@ -211,7 +210,6 @@
"profile_tab": "Профиль",
"radii_help": "Скругление углов элементов интерфейса (в пикселях)",
"replies_in_timeline": "Ответы в ленте",
- "reply_link_preview": "Включить предварительный просмотр ответа при наведении мыши",
"reply_visibility_all": "Показывать все ответы",
"reply_visibility_following": "Показывать только ответы мне или тех на кого я подписан",
"reply_visibility_self": "Показывать только ответы мне",
diff --git a/src/i18n/te.json b/src/i18n/te.json
index 6022349d..bb68d29e 100644
--- a/src/i18n/te.json
+++ b/src/i18n/te.json
@@ -83,7 +83,6 @@
"settings.app_name": "అనువర్తన పేరు",
"settings.attachmentRadius": "జోడింపులు",
"settings.attachments": "జోడింపులు",
- "settings.autoload": "క్రిందికి స్క్రోల్ చేయబడినప్పుడు స్వయంచాలక లోడింగ్ని ప్రారంభించు",
"settings.avatar": "అవతారం",
"settings.avatarAltRadius": "అవతారాలు (ప్రకటనలు)",
"settings.avatarRadius": "అవతారాలు",
@@ -178,7 +177,6 @@
"settings.profile_tab": "Profile",
"settings.radii_help": "Set up interface edge rounding (in pixels)",
"settings.replies_in_timeline": "Replies in timeline",
- "settings.reply_link_preview": "Enable reply-link preview on mouse hover",
"settings.reply_visibility_all": "Show all replies",
"settings.reply_visibility_following": "Only show replies directed at me or users I'm following",
"settings.reply_visibility_self": "Only show replies directed at me",
diff --git a/src/i18n/zh.json b/src/i18n/zh.json
index 7e620bdf..9c345a77 100644
--- a/src/i18n/zh.json
+++ b/src/i18n/zh.json
@@ -199,7 +199,6 @@
},
"attachmentRadius": "附件",
"attachments": "附件",
- "autoload": "启用滚动到底部时的自动加载",
"avatar": "头像",
"avatarAltRadius": "头像(通知)",
"avatarRadius": "头像",
@@ -299,7 +298,6 @@
"profile_tab": "个人资料",
"radii_help": "设置界面边缘的圆角 (单位:像素)",
"replies_in_timeline": "时间线中的回复",
- "reply_link_preview": "启用鼠标悬停时预览回复链接",
"reply_visibility_all": "显示所有回复",
"reply_visibility_following": "只显示发送给我的回复/发送给我关注的用户的回复",
"reply_visibility_self": "只显示发送给我的回复",
diff --git a/src/modules/config.js b/src/modules/config.js
index e0fe72df..409d77a4 100644
--- a/src/modules/config.js
+++ b/src/modules/config.js
@@ -31,9 +31,7 @@ export const defaultState = {
preloadImage: true,
loopVideo: true,
loopVideoSilentOnly: true,
- autoLoad: true,
streaming: false,
- hoverPreview: true,
emojiReactionsOnTimeline: true,
autohideFloatingPostButton: false,
pauseOnUnfocused: true,