+
{replies.map((reply) => {
const info = replyMap.get(reply.id)
return (
@@ -229,6 +224,11 @@ export default function ReplyNoteList({ event, className }: { event: NEvent; cla
)
})}
+ {!loading && (
+
+ {replies.length > 0 ? t('no more replies') : t('no replies')}
+
+ )}
>
)
diff --git a/src/i18n/locales/ar.ts b/src/i18n/locales/ar.ts
index 3c3c1345..587136a7 100644
--- a/src/i18n/locales/ar.ts
+++ b/src/i18n/locales/ar.ts
@@ -209,6 +209,7 @@ export default {
'Recent Supporters': 'الداعمين الجدد',
'Seen on': 'شوهد على',
'Temporarily display this reply': 'عرض هذا الرد مؤقتاً',
- 'Not found the note': 'لم يتم العثور على الملاحظة'
+ 'Not found the note': 'لم يتم العثور على الملاحظة',
+ 'no more replies': 'لا توجد مزيد من الردود'
}
}
diff --git a/src/i18n/locales/de.ts b/src/i18n/locales/de.ts
index 687ec360..4f5f3008 100644
--- a/src/i18n/locales/de.ts
+++ b/src/i18n/locales/de.ts
@@ -213,6 +213,7 @@ export default {
'Recent Supporters': 'Neueste Unterstützer',
'Seen on': 'Gesehen auf',
'Temporarily display this reply': 'Antwort vorübergehend anzeigen',
- 'Not found the note': 'Die Notiz wurde nicht gefunden'
+ 'Not found the note': 'Die Notiz wurde nicht gefunden',
+ 'no more replies': 'keine weiteren Antworten'
}
}
diff --git a/src/i18n/locales/en.ts b/src/i18n/locales/en.ts
index 52cfe7a8..36b3b7e5 100644
--- a/src/i18n/locales/en.ts
+++ b/src/i18n/locales/en.ts
@@ -209,6 +209,7 @@ export default {
'Recent Supporters': 'Recent Supporters',
'Seen on': 'Seen on',
'Temporarily display this reply': 'Temporarily display this reply',
- 'Not found the note': 'Not found the note'
+ 'Not found the note': 'Not found the note',
+ 'no more replies': 'no more replies'
}
}
diff --git a/src/i18n/locales/es.ts b/src/i18n/locales/es.ts
index ae6a3ca4..9dcf09d0 100644
--- a/src/i18n/locales/es.ts
+++ b/src/i18n/locales/es.ts
@@ -213,6 +213,7 @@ export default {
'Recent Supporters': 'Últimos patrocinadores',
'Seen on': 'Visto en',
'Temporarily display this reply': 'Mostrar temporalmente esta respuesta',
- 'Not found the note': 'No se encontró la nota'
+ 'Not found the note': 'No se encontró la nota',
+ 'no more replies': 'no hay más respuestas'
}
}
diff --git a/src/i18n/locales/fr.ts b/src/i18n/locales/fr.ts
index ff0e16c2..c59b66d8 100644
--- a/src/i18n/locales/fr.ts
+++ b/src/i18n/locales/fr.ts
@@ -212,6 +212,7 @@ export default {
'Recent Supporters': 'Derniers soutiens',
'Seen on': 'Vu sur',
'Temporarily display this reply': 'Afficher temporairement cette réponse',
- 'Not found the note': 'Note introuvable'
+ 'Not found the note': 'Note introuvable',
+ 'no more replies': 'aucune autre réponse'
}
}
diff --git a/src/i18n/locales/ja.ts b/src/i18n/locales/ja.ts
index 89d9af4b..43bdcf7c 100644
--- a/src/i18n/locales/ja.ts
+++ b/src/i18n/locales/ja.ts
@@ -210,6 +210,7 @@ export default {
'Recent Supporters': '最近のサポーター',
'Seen on': '見た',
'Temporarily display this reply': 'この返信を一時的に表示',
- 'Not found the note': 'ノートが見つかりません'
+ 'Not found the note': 'ノートが見つかりません',
+ 'no more replies': 'これ以上の返信はありません'
}
}
diff --git a/src/i18n/locales/pl.ts b/src/i18n/locales/pl.ts
index aa88ee19..c607ac1c 100644
--- a/src/i18n/locales/pl.ts
+++ b/src/i18n/locales/pl.ts
@@ -211,6 +211,7 @@ export default {
'Recent Supporters': 'Ostatni wspierający',
'Seen on': 'Widziany na',
'Temporarily display this reply': 'Tymczasowo wyświetl tę odpowiedź',
- 'Not found the note': 'Nie znaleziono wpisu'
+ 'Not found the note': 'Nie znaleziono wpisu',
+ 'no more replies': 'brak kolejnych odpowiedzi'
}
}
diff --git a/src/i18n/locales/pt-BR.ts b/src/i18n/locales/pt-BR.ts
index 52834e82..2eea3003 100644
--- a/src/i18n/locales/pt-BR.ts
+++ b/src/i18n/locales/pt-BR.ts
@@ -211,6 +211,7 @@ export default {
'Recent Supporters': 'Apoiadores recentes',
'Seen on': 'Visto em',
'Temporarily display this reply': 'Exibir temporariamente esta resposta',
- 'Not found the note': 'Nota não encontrada'
+ 'Not found the note': 'Nota não encontrada',
+ 'no more replies': 'não há mais respostas'
}
}
diff --git a/src/i18n/locales/pt-PT.ts b/src/i18n/locales/pt-PT.ts
index 8d3c4796..7323b866 100644
--- a/src/i18n/locales/pt-PT.ts
+++ b/src/i18n/locales/pt-PT.ts
@@ -212,6 +212,7 @@ export default {
'Recent Supporters': 'Apoiadores Recentes',
'Seen on': 'Visto em',
'Temporarily display this reply': 'Exibir temporariamente esta resposta',
- 'Not found the note': 'Nota não encontrada'
+ 'Not found the note': 'Nota não encontrada',
+ 'no more replies': 'não há mais respostas'
}
}
diff --git a/src/i18n/locales/ru.ts b/src/i18n/locales/ru.ts
index 22d750c9..9e47f5d0 100644
--- a/src/i18n/locales/ru.ts
+++ b/src/i18n/locales/ru.ts
@@ -213,6 +213,7 @@ export default {
'Recent Supporters': 'Недавние спонсоры',
'Seen on': 'Просмотрено на',
'Temporarily display this reply': 'Временно отобразить этот ответ',
- 'Not found the note': 'Заметка не найдена'
+ 'Not found the note': 'Заметка не найдена',
+ 'no more replies': 'больше нет ответов'
}
}
diff --git a/src/i18n/locales/zh.ts b/src/i18n/locales/zh.ts
index d481377f..128511d2 100644
--- a/src/i18n/locales/zh.ts
+++ b/src/i18n/locales/zh.ts
@@ -210,6 +210,7 @@ export default {
'Recent Supporters': '最近的支持者',
'Seen on': '来自',
'Temporarily display this reply': '临时显示此回复',
- 'Not found the note': '未找到该笔记'
+ 'Not found the note': '未找到该笔记',
+ 'no more replies': '没有更多回复了'
}
}