@rmdes/indiekit-endpoint-conversations 2.3.0 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/controllers/conversations.js +7 -0
- package/lib/polling/scheduler.js +8 -0
- package/locales/de.json +4 -1
- package/locales/es-419.json +35 -0
- package/locales/es.json +4 -1
- package/locales/fr.json +17 -14
- package/locales/hi.json +35 -0
- package/locales/id.json +35 -0
- package/locales/it.json +35 -0
- package/locales/nl.json +4 -1
- package/locales/pl.json +35 -0
- package/locales/pt-BR.json +35 -0
- package/locales/pt.json +4 -1
- package/locales/sr.json +35 -0
- package/locales/sv.json +8 -5
- package/locales/zh-Hans-CN.json +35 -0
- package/package.json +1 -1
|
@@ -163,6 +163,13 @@ async function apiMentions(request, response) {
|
|
|
163
163
|
items = await getConversationItems(application, null, queryOptions);
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
+
// Filter out self-interactions from own Bluesky account
|
|
167
|
+
const selfBskyHandle = (process.env.BLUESKY_IDENTIFIER || process.env.BLUESKY_HANDLE || "").replace(/^@+/, "").toLowerCase();
|
|
168
|
+
if (selfBskyHandle) {
|
|
169
|
+
const selfBskyUrl = "https://bsky.app/profile/" + selfBskyHandle;
|
|
170
|
+
items = items.filter(item => (item.author?.url || "").toLowerCase() !== selfBskyUrl);
|
|
171
|
+
}
|
|
172
|
+
|
|
166
173
|
const children = items.map(conversationItemToJf2);
|
|
167
174
|
|
|
168
175
|
// Enrich with owner replies from the posts collection
|
package/lib/polling/scheduler.js
CHANGED
|
@@ -429,7 +429,15 @@ async function pollBluesky(indiekit, stateCollection, state, credentials) {
|
|
|
429
429
|
|
|
430
430
|
let stored = 0;
|
|
431
431
|
|
|
432
|
+
// Derive own handle to skip self-interactions
|
|
433
|
+
const ownBskyHandle = (credentials.identifier || "").replace(/^@+/, "").toLowerCase();
|
|
434
|
+
|
|
432
435
|
for (const notification of result.items) {
|
|
436
|
+
// Skip self-interactions (own account liking/reposting a syndicated post)
|
|
437
|
+
if (ownBskyHandle && (notification.author?.handle || "").toLowerCase() === ownBskyHandle) {
|
|
438
|
+
continue;
|
|
439
|
+
}
|
|
440
|
+
|
|
433
441
|
let canonicalUrl = null;
|
|
434
442
|
|
|
435
443
|
if (notification.lookup_url) {
|
package/locales/de.json
CHANGED
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
"itemsReceived": "Elemente empfangen",
|
|
13
13
|
"mastodonHint": "MASTODON_ACCESS_TOKEN und MASTODON_URL setzen zum Aktivieren",
|
|
14
14
|
"blueskyHint": "BLUESKY_IDENTIFIER und BLUESKY_PASSWORD setzen zum Aktivieren",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "Automatisch aktiviert, wenn der ActivityPub-Endpunkt Interaktionen empfängt",
|
|
15
17
|
"webhookTitle": "Webhook / Eingang",
|
|
16
18
|
"webhookHint": "Externe Dienste k\u00f6nnen Webmentions an den Eingangsendpunkt senden",
|
|
17
19
|
"stats": "Statistiken",
|
|
@@ -26,7 +28,8 @@
|
|
|
26
28
|
"source": {
|
|
27
29
|
"webmention": "Webmention",
|
|
28
30
|
"mastodon": "Mastodon",
|
|
29
|
-
"bluesky": "Bluesky"
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
30
33
|
}
|
|
31
34
|
}
|
|
32
35
|
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"conversations": {
|
|
3
|
+
"title": "Conversaciones",
|
|
4
|
+
"dashboard": {
|
|
5
|
+
"connections": "Conexiones",
|
|
6
|
+
"connected": "Conectado",
|
|
7
|
+
"disconnected": "No configurado",
|
|
8
|
+
"ready": "Listo",
|
|
9
|
+
"lastPoll": "Última consulta",
|
|
10
|
+
"lastError": "Error",
|
|
11
|
+
"itemsCollected": "elementos recopilados",
|
|
12
|
+
"itemsReceived": "elementos recibidos",
|
|
13
|
+
"mastodonHint": "Configurar MASTODON_ACCESS_TOKEN y MASTODON_URL para habilitar",
|
|
14
|
+
"blueskyHint": "Configurar BLUESKY_IDENTIFIER y BLUESKY_PASSWORD para habilitar",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "Se habilita automáticamente cuando el endpoint de ActivityPub recibe interacciones",
|
|
17
|
+
"webhookTitle": "Webhook / Ingesta",
|
|
18
|
+
"webhookHint": "Los servicios externos pueden enviar webmentions al endpoint de ingesta",
|
|
19
|
+
"stats": "Estadísticas",
|
|
20
|
+
"totalItems": "Total de elementos",
|
|
21
|
+
"replies": "Respuestas",
|
|
22
|
+
"likes": "Me gusta",
|
|
23
|
+
"reposts": "Republicaciones",
|
|
24
|
+
"pollNow": "Consultar ahora",
|
|
25
|
+
"recentActivity": "Actividad reciente",
|
|
26
|
+
"empty": "Aún no hay interacciones. Configura las credenciales de la plataforma o envía webmentions al endpoint de ingesta."
|
|
27
|
+
},
|
|
28
|
+
"source": {
|
|
29
|
+
"webmention": "Webmention",
|
|
30
|
+
"mastodon": "Mastodon",
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
package/locales/es.json
CHANGED
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
"itemsReceived": "elementos recibidos",
|
|
13
13
|
"mastodonHint": "Configurar MASTODON_ACCESS_TOKEN y MASTODON_URL para activar",
|
|
14
14
|
"blueskyHint": "Configurar BLUESKY_IDENTIFIER y BLUESKY_PASSWORD para activar",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "Se activa automáticamente cuando el endpoint de ActivityPub recibe interacciones",
|
|
15
17
|
"webhookTitle": "Webhook / Ingesta",
|
|
16
18
|
"webhookHint": "Los servicios externos pueden enviar webmentions al punto de ingesta",
|
|
17
19
|
"stats": "Estad\u00edsticas",
|
|
@@ -26,7 +28,8 @@
|
|
|
26
28
|
"source": {
|
|
27
29
|
"webmention": "Webmention",
|
|
28
30
|
"mastodon": "Mastodon",
|
|
29
|
-
"bluesky": "Bluesky"
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
30
33
|
}
|
|
31
34
|
}
|
|
32
35
|
}
|
package/locales/fr.json
CHANGED
|
@@ -3,30 +3,33 @@
|
|
|
3
3
|
"title": "Conversations",
|
|
4
4
|
"dashboard": {
|
|
5
5
|
"connections": "Connexions",
|
|
6
|
-
"connected": "
|
|
7
|
-
"disconnected": "Non
|
|
8
|
-
"ready": "
|
|
6
|
+
"connected": "Connecté",
|
|
7
|
+
"disconnected": "Non configuré",
|
|
8
|
+
"ready": "Prêt",
|
|
9
9
|
"lastPoll": "Dernier sondage",
|
|
10
10
|
"lastError": "Erreur",
|
|
11
|
-
"itemsCollected": "
|
|
12
|
-
"itemsReceived": "
|
|
13
|
-
"mastodonHint": "
|
|
14
|
-
"blueskyHint": "
|
|
15
|
-
"
|
|
16
|
-
"
|
|
11
|
+
"itemsCollected": "éléments collectés",
|
|
12
|
+
"itemsReceived": "éléments reçus",
|
|
13
|
+
"mastodonHint": "Définir MASTODON_ACCESS_TOKEN et MASTODON_URL pour activer",
|
|
14
|
+
"blueskyHint": "Définir BLUESKY_IDENTIFIER et BLUESKY_PASSWORD pour activer",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "Activé automatiquement lorsque le point d'entrée ActivityPub reçoit des interactions",
|
|
17
|
+
"webhookTitle": "Webhook / Ingérer",
|
|
18
|
+
"webhookHint": "Les services externes peuvent envoyer des webmentions au point d'entrée",
|
|
17
19
|
"stats": "Statistiques",
|
|
18
|
-
"totalItems": "Total des
|
|
19
|
-
"replies": "
|
|
20
|
+
"totalItems": "Total des éléments",
|
|
21
|
+
"replies": "Réponses",
|
|
20
22
|
"likes": "J'aime",
|
|
21
23
|
"reposts": "Repartages",
|
|
22
24
|
"pollNow": "Sonder maintenant",
|
|
23
|
-
"recentActivity": "
|
|
24
|
-
"empty": "Aucune interaction pour le moment. Configurez les identifiants de plateforme ou envoyez des webmentions au point d'
|
|
25
|
+
"recentActivity": "Activité récente",
|
|
26
|
+
"empty": "Aucune interaction pour le moment. Configurez les identifiants de plateforme ou envoyez des webmentions au point d'entrée."
|
|
25
27
|
},
|
|
26
28
|
"source": {
|
|
27
29
|
"webmention": "Webmention",
|
|
28
30
|
"mastodon": "Mastodon",
|
|
29
|
-
"bluesky": "Bluesky"
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
30
33
|
}
|
|
31
34
|
}
|
|
32
35
|
}
|
package/locales/hi.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"conversations": {
|
|
3
|
+
"title": "वार्तालाप",
|
|
4
|
+
"dashboard": {
|
|
5
|
+
"connections": "कनेक्शन",
|
|
6
|
+
"connected": "कनेक्ट किया गया",
|
|
7
|
+
"disconnected": "कॉन्फ़िगर नहीं किया गया",
|
|
8
|
+
"ready": "तैयार",
|
|
9
|
+
"lastPoll": "अंतिम पोल",
|
|
10
|
+
"lastError": "त्रुटि",
|
|
11
|
+
"itemsCollected": "आइटम एकत्रित",
|
|
12
|
+
"itemsReceived": "आइटम प्राप्त",
|
|
13
|
+
"mastodonHint": "सक्रिय करने के लिए MASTODON_ACCESS_TOKEN और MASTODON_URL सेट करें",
|
|
14
|
+
"blueskyHint": "सक्रिय करने के लिए BLUESKY_IDENTIFIER और BLUESKY_PASSWORD सेट करें",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "ActivityPub एंडपॉइंट पर इंटरैक्शन प्राप्त होने पर स्वचालित रूप से सक्रिय होता है",
|
|
17
|
+
"webhookTitle": "Webhook / इनजेस्ट",
|
|
18
|
+
"webhookHint": "बाहरी सेवाएँ इनजेस्ट एंडपॉइंट पर वेबमेंशन भेज सकती हैं",
|
|
19
|
+
"stats": "आँकड़े",
|
|
20
|
+
"totalItems": "कुल आइटम",
|
|
21
|
+
"replies": "जवाब",
|
|
22
|
+
"likes": "पसंद",
|
|
23
|
+
"reposts": "रीपोस्ट",
|
|
24
|
+
"pollNow": "अभी पोल करें",
|
|
25
|
+
"recentActivity": "हाल की गतिविधि",
|
|
26
|
+
"empty": "अभी तक कोई इंटरैक्शन नहीं। प्लेटफ़ॉर्म क्रेडेंशियल कॉन्फ़िगर करें या इनजेस्ट एंडपॉइंट पर वेबमेंशन भेजें।"
|
|
27
|
+
},
|
|
28
|
+
"source": {
|
|
29
|
+
"webmention": "Webmention",
|
|
30
|
+
"mastodon": "Mastodon",
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
package/locales/id.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"conversations": {
|
|
3
|
+
"title": "Percakapan",
|
|
4
|
+
"dashboard": {
|
|
5
|
+
"connections": "Koneksi",
|
|
6
|
+
"connected": "Terhubung",
|
|
7
|
+
"disconnected": "Belum dikonfigurasi",
|
|
8
|
+
"ready": "Siap",
|
|
9
|
+
"lastPoll": "Polling terakhir",
|
|
10
|
+
"lastError": "Kesalahan",
|
|
11
|
+
"itemsCollected": "item dikumpulkan",
|
|
12
|
+
"itemsReceived": "item diterima",
|
|
13
|
+
"mastodonHint": "Atur MASTODON_ACCESS_TOKEN dan MASTODON_URL untuk mengaktifkan",
|
|
14
|
+
"blueskyHint": "Atur BLUESKY_IDENTIFIER dan BLUESKY_PASSWORD untuk mengaktifkan",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "Otomatis aktif saat endpoint ActivityPub menerima interaksi",
|
|
17
|
+
"webhookTitle": "Webhook / Ingest",
|
|
18
|
+
"webhookHint": "Layanan eksternal dapat mengirim webmention ke endpoint ingest",
|
|
19
|
+
"stats": "Statistik",
|
|
20
|
+
"totalItems": "Total item",
|
|
21
|
+
"replies": "Balasan",
|
|
22
|
+
"likes": "Suka",
|
|
23
|
+
"reposts": "Repost",
|
|
24
|
+
"pollNow": "Polling sekarang",
|
|
25
|
+
"recentActivity": "Aktivitas terbaru",
|
|
26
|
+
"empty": "Belum ada interaksi. Konfigurasikan kredensial platform atau kirim webmention ke endpoint ingest."
|
|
27
|
+
},
|
|
28
|
+
"source": {
|
|
29
|
+
"webmention": "Webmention",
|
|
30
|
+
"mastodon": "Mastodon",
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
package/locales/it.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"conversations": {
|
|
3
|
+
"title": "Conversazioni",
|
|
4
|
+
"dashboard": {
|
|
5
|
+
"connections": "Connessioni",
|
|
6
|
+
"connected": "Connesso",
|
|
7
|
+
"disconnected": "Non configurato",
|
|
8
|
+
"ready": "Pronto",
|
|
9
|
+
"lastPoll": "Ultimo sondaggio",
|
|
10
|
+
"lastError": "Errore",
|
|
11
|
+
"itemsCollected": "elementi raccolti",
|
|
12
|
+
"itemsReceived": "elementi ricevuti",
|
|
13
|
+
"mastodonHint": "Impostare MASTODON_ACCESS_TOKEN e MASTODON_URL per attivare",
|
|
14
|
+
"blueskyHint": "Impostare BLUESKY_IDENTIFIER e BLUESKY_PASSWORD per attivare",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "Attivato automaticamente quando l'endpoint ActivityPub riceve interazioni",
|
|
17
|
+
"webhookTitle": "Webhook / Ingest",
|
|
18
|
+
"webhookHint": "I servizi esterni possono inviare webmention all'endpoint di ingest",
|
|
19
|
+
"stats": "Statistiche",
|
|
20
|
+
"totalItems": "Totale elementi",
|
|
21
|
+
"replies": "Risposte",
|
|
22
|
+
"likes": "Mi piace",
|
|
23
|
+
"reposts": "Ricondivisioni",
|
|
24
|
+
"pollNow": "Sonda ora",
|
|
25
|
+
"recentActivity": "Attività recente",
|
|
26
|
+
"empty": "Nessuna interazione ancora. Configura le credenziali della piattaforma o invia webmention all'endpoint di ingest."
|
|
27
|
+
},
|
|
28
|
+
"source": {
|
|
29
|
+
"webmention": "Webmention",
|
|
30
|
+
"mastodon": "Mastodon",
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
package/locales/nl.json
CHANGED
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
"itemsReceived": "items ontvangen",
|
|
13
13
|
"mastodonHint": "Stel MASTODON_ACCESS_TOKEN en MASTODON_URL in om te activeren",
|
|
14
14
|
"blueskyHint": "Stel BLUESKY_IDENTIFIER en BLUESKY_PASSWORD in om te activeren",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "Automatisch ingeschakeld wanneer het ActivityPub-eindpunt interacties ontvangt",
|
|
15
17
|
"webhookTitle": "Webhook / Opname",
|
|
16
18
|
"webhookHint": "Externe diensten kunnen webmentions naar het opname-eindpunt sturen",
|
|
17
19
|
"stats": "Statistieken",
|
|
@@ -26,7 +28,8 @@
|
|
|
26
28
|
"source": {
|
|
27
29
|
"webmention": "Webmention",
|
|
28
30
|
"mastodon": "Mastodon",
|
|
29
|
-
"bluesky": "Bluesky"
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
30
33
|
}
|
|
31
34
|
}
|
|
32
35
|
}
|
package/locales/pl.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"conversations": {
|
|
3
|
+
"title": "Konwersacje",
|
|
4
|
+
"dashboard": {
|
|
5
|
+
"connections": "Połączenia",
|
|
6
|
+
"connected": "Połączono",
|
|
7
|
+
"disconnected": "Nie skonfigurowano",
|
|
8
|
+
"ready": "Gotowe",
|
|
9
|
+
"lastPoll": "Ostatnie odpytanie",
|
|
10
|
+
"lastError": "Błąd",
|
|
11
|
+
"itemsCollected": "elementów zebranych",
|
|
12
|
+
"itemsReceived": "elementów otrzymanych",
|
|
13
|
+
"mastodonHint": "Ustaw MASTODON_ACCESS_TOKEN i MASTODON_URL, aby włączyć",
|
|
14
|
+
"blueskyHint": "Ustaw BLUESKY_IDENTIFIER i BLUESKY_PASSWORD, aby włączyć",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "Włączane automatycznie, gdy endpoint ActivityPub odbiera interakcje",
|
|
17
|
+
"webhookTitle": "Webhook / Ingest",
|
|
18
|
+
"webhookHint": "Zewnętrzne usługi mogą wysyłać webmention do endpointu ingest",
|
|
19
|
+
"stats": "Statystyki",
|
|
20
|
+
"totalItems": "Łączna liczba elementów",
|
|
21
|
+
"replies": "Odpowiedzi",
|
|
22
|
+
"likes": "Polubienia",
|
|
23
|
+
"reposts": "Udostępnienia",
|
|
24
|
+
"pollNow": "Odpytaj teraz",
|
|
25
|
+
"recentActivity": "Ostatnia aktywność",
|
|
26
|
+
"empty": "Brak interakcji. Skonfiguruj dane uwierzytelniające platformy lub wyślij webmention do endpointu ingest."
|
|
27
|
+
},
|
|
28
|
+
"source": {
|
|
29
|
+
"webmention": "Webmention",
|
|
30
|
+
"mastodon": "Mastodon",
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"conversations": {
|
|
3
|
+
"title": "Conversas",
|
|
4
|
+
"dashboard": {
|
|
5
|
+
"connections": "Conexões",
|
|
6
|
+
"connected": "Conectado",
|
|
7
|
+
"disconnected": "Não configurado",
|
|
8
|
+
"ready": "Pronto",
|
|
9
|
+
"lastPoll": "Última consulta",
|
|
10
|
+
"lastError": "Erro",
|
|
11
|
+
"itemsCollected": "itens coletados",
|
|
12
|
+
"itemsReceived": "itens recebidos",
|
|
13
|
+
"mastodonHint": "Defina MASTODON_ACCESS_TOKEN e MASTODON_URL para ativar",
|
|
14
|
+
"blueskyHint": "Defina BLUESKY_IDENTIFIER e BLUESKY_PASSWORD para ativar",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "Ativado automaticamente quando o endpoint ActivityPub recebe interações",
|
|
17
|
+
"webhookTitle": "Webhook / Ingestão",
|
|
18
|
+
"webhookHint": "Serviços externos podem enviar webmentions para o endpoint de ingestão",
|
|
19
|
+
"stats": "Estatísticas",
|
|
20
|
+
"totalItems": "Total de itens",
|
|
21
|
+
"replies": "Respostas",
|
|
22
|
+
"likes": "Curtidas",
|
|
23
|
+
"reposts": "Republicações",
|
|
24
|
+
"pollNow": "Consultar agora",
|
|
25
|
+
"recentActivity": "Atividade recente",
|
|
26
|
+
"empty": "Nenhuma interação ainda. Configure as credenciais da plataforma ou envie webmentions para o endpoint de ingestão."
|
|
27
|
+
},
|
|
28
|
+
"source": {
|
|
29
|
+
"webmention": "Webmention",
|
|
30
|
+
"mastodon": "Mastodon",
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
package/locales/pt.json
CHANGED
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
"itemsReceived": "itens recebidos",
|
|
13
13
|
"mastodonHint": "Definir MASTODON_ACCESS_TOKEN e MASTODON_URL para ativar",
|
|
14
14
|
"blueskyHint": "Definir BLUESKY_IDENTIFIER e BLUESKY_PASSWORD para ativar",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "Ativado automaticamente quando o endpoint ActivityPub recebe interações",
|
|
15
17
|
"webhookTitle": "Webhook / Ingesta",
|
|
16
18
|
"webhookHint": "Servi\u00e7os externos podem enviar webmentions para o endpoint de ingesta",
|
|
17
19
|
"stats": "Estat\u00edsticas",
|
|
@@ -26,7 +28,8 @@
|
|
|
26
28
|
"source": {
|
|
27
29
|
"webmention": "Webmention",
|
|
28
30
|
"mastodon": "Mastodon",
|
|
29
|
-
"bluesky": "Bluesky"
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
30
33
|
}
|
|
31
34
|
}
|
|
32
35
|
}
|
package/locales/sr.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"conversations": {
|
|
3
|
+
"title": "Разговори",
|
|
4
|
+
"dashboard": {
|
|
5
|
+
"connections": "Везе",
|
|
6
|
+
"connected": "Повезано",
|
|
7
|
+
"disconnected": "Није конфигурисано",
|
|
8
|
+
"ready": "Спремно",
|
|
9
|
+
"lastPoll": "Последње преузимање",
|
|
10
|
+
"lastError": "Грешка",
|
|
11
|
+
"itemsCollected": "ставки прикупљено",
|
|
12
|
+
"itemsReceived": "ставки примљено",
|
|
13
|
+
"mastodonHint": "Подесите MASTODON_ACCESS_TOKEN и MASTODON_URL да бисте омогућили",
|
|
14
|
+
"blueskyHint": "Подесите BLUESKY_IDENTIFIER и BLUESKY_PASSWORD да бисте омогућили",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "Аутоматски се омогућава када ActivityPub крајња тачка прими интеракције",
|
|
17
|
+
"webhookTitle": "Webhook / Унос",
|
|
18
|
+
"webhookHint": "Спољне услуге могу слати вебменције на крајњу тачку за унос",
|
|
19
|
+
"stats": "Статистика",
|
|
20
|
+
"totalItems": "Укупно ставки",
|
|
21
|
+
"replies": "Одговори",
|
|
22
|
+
"likes": "Свиђања",
|
|
23
|
+
"reposts": "Дељења",
|
|
24
|
+
"pollNow": "Преузми сада",
|
|
25
|
+
"recentActivity": "Недавна активност",
|
|
26
|
+
"empty": "Још нема интеракција. Конфигуришите акредитиве платформе или пошаљите вебменције на крајњу тачку за унос."
|
|
27
|
+
},
|
|
28
|
+
"source": {
|
|
29
|
+
"webmention": "Webmention",
|
|
30
|
+
"mastodon": "Mastodon",
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
package/locales/sv.json
CHANGED
|
@@ -10,10 +10,12 @@
|
|
|
10
10
|
"lastError": "Fel",
|
|
11
11
|
"itemsCollected": "objekt insamlade",
|
|
12
12
|
"itemsReceived": "objekt mottagna",
|
|
13
|
-
"mastodonHint": "Ange MASTODON_ACCESS_TOKEN och MASTODON_URL
|
|
14
|
-
"blueskyHint": "Ange BLUESKY_IDENTIFIER och BLUESKY_PASSWORD
|
|
13
|
+
"mastodonHint": "Ange MASTODON_ACCESS_TOKEN och MASTODON_URL för att aktivera",
|
|
14
|
+
"blueskyHint": "Ange BLUESKY_IDENTIFIER och BLUESKY_PASSWORD för att aktivera",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "Aktiveras automatiskt när ActivityPub-endpointen tar emot interaktioner",
|
|
15
17
|
"webhookTitle": "Webhook / Inmatning",
|
|
16
|
-
"webhookHint": "Externa
|
|
18
|
+
"webhookHint": "Externa tjänster kan skicka webmentions till inmatningsendpointen",
|
|
17
19
|
"stats": "Statistik",
|
|
18
20
|
"totalItems": "Totalt antal objekt",
|
|
19
21
|
"replies": "Svar",
|
|
@@ -21,12 +23,13 @@
|
|
|
21
23
|
"reposts": "Delningar",
|
|
22
24
|
"pollNow": "Polla nu",
|
|
23
25
|
"recentActivity": "Senaste aktivitet",
|
|
24
|
-
"empty": "Inga interaktioner
|
|
26
|
+
"empty": "Inga interaktioner ännu. Konfigurera plattformsuppgifter eller skicka webmentions till inmatningsendpointen."
|
|
25
27
|
},
|
|
26
28
|
"source": {
|
|
27
29
|
"webmention": "Webmention",
|
|
28
30
|
"mastodon": "Mastodon",
|
|
29
|
-
"bluesky": "Bluesky"
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
30
33
|
}
|
|
31
34
|
}
|
|
32
35
|
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"conversations": {
|
|
3
|
+
"title": "对话",
|
|
4
|
+
"dashboard": {
|
|
5
|
+
"connections": "连接",
|
|
6
|
+
"connected": "已连接",
|
|
7
|
+
"disconnected": "未配置",
|
|
8
|
+
"ready": "就绪",
|
|
9
|
+
"lastPoll": "上次轮询",
|
|
10
|
+
"lastError": "错误",
|
|
11
|
+
"itemsCollected": "已收集条目",
|
|
12
|
+
"itemsReceived": "已接收条目",
|
|
13
|
+
"mastodonHint": "设置 MASTODON_ACCESS_TOKEN 和 MASTODON_URL 以启用",
|
|
14
|
+
"blueskyHint": "设置 BLUESKY_IDENTIFIER 和 BLUESKY_PASSWORD 以启用",
|
|
15
|
+
"activitypubTitle": "ActivityPub",
|
|
16
|
+
"activitypubHint": "当 ActivityPub 端点收到互动时自动启用",
|
|
17
|
+
"webhookTitle": "Webhook / 接收",
|
|
18
|
+
"webhookHint": "外部服务可以向接收端点发送 Webmention",
|
|
19
|
+
"stats": "统计",
|
|
20
|
+
"totalItems": "总条目数",
|
|
21
|
+
"replies": "回复",
|
|
22
|
+
"likes": "喜欢",
|
|
23
|
+
"reposts": "转发",
|
|
24
|
+
"pollNow": "立即轮询",
|
|
25
|
+
"recentActivity": "最近活动",
|
|
26
|
+
"empty": "暂无互动。请配置平台凭据或向接收端点发送 Webmention。"
|
|
27
|
+
},
|
|
28
|
+
"source": {
|
|
29
|
+
"webmention": "Webmention",
|
|
30
|
+
"mastodon": "Mastodon",
|
|
31
|
+
"bluesky": "Bluesky",
|
|
32
|
+
"activitypub": "ActivityPub"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rmdes/indiekit-endpoint-conversations",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "Conversation aggregation endpoint for Indiekit. Backend enrichment service that polls Mastodon/Bluesky notifications and serves JF2-compatible data for the interactions page.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"indiekit",
|