From 66011940b3e40fc2c3dcc833c8becf69ba1627ec Mon Sep 17 00:00:00 2001 From: David Date: Sat, 11 Jul 2026 00:55:52 +0200 Subject: [PATCH 1/4] Fix comments' 'Show replies' button duplicating results when spam clicking --- .../CommentSection/CommentSection.vue | 45 +++++++++++-------- 1 file changed, 27 insertions(+), 18 deletions(-) diff --git a/src/renderer/components/CommentSection/CommentSection.vue b/src/renderer/components/CommentSection/CommentSection.vue index 51a3bf1d83db2..5150aec924cfa 100644 --- a/src/renderer/components/CommentSection/CommentSection.vue +++ b/src/renderer/components/CommentSection/CommentSection.vue @@ -380,6 +380,7 @@ const props = defineProps({ }) const isLoading = ref(false) +const isCommentRepliesLoading = ref(false) const showComments = ref(false) const nextPageToken = shallowRef(null) @@ -563,16 +564,22 @@ function toggleCommentReplies(index) { /** * @param {number} index */ -function getCommentReplies(index) { +async function getCommentReplies(index) { + if (isCommentRepliesLoading.value) return + + isCommentRepliesLoading.value = true + if (!process.env.SUPPORTS_LOCAL_API || commentData.value[index].dataType === 'invidious') { if (!props.isPostComments) { - getCommentRepliesInvidious(index) + await getCommentRepliesInvidious(index) } else { - getPostCommentRepliesInvidious(index) + await getPostCommentRepliesInvidious(index) } } else { - getCommentRepliesLocal(index) + await getCommentRepliesLocal(index) } + + isCommentRepliesLoading.value = false } /** @type {Map} */ @@ -649,9 +656,9 @@ async function getCommentDataLocal(more = false) { localCommentsInstance = undefined showToast(t('Falling back to Invidious API')) if (props.isPostComments) { - getPostCommentsInvidious() + await getPostCommentsInvidious() } else { - getCommentDataInvidious() + await getCommentDataInvidious() } } else { isLoading.value = false @@ -701,7 +708,7 @@ async function getCommentRepliesLocal(index) { }) if (backendFallback.value && backendPreference.value === 'local') { showToast(t('Falling back to Invidious API')) - getCommentDataInvidious() + await getCommentDataInvidious() } else { isLoading.value = false } @@ -752,7 +759,7 @@ async function getCommentDataInvidious() { if (process.env.SUPPORTS_LOCAL_API && backendFallback.value && backendPreference.value === 'invidious') { showToast(t('Falling back to Local API')) - getCommentDataLocal() + await getCommentDataLocal() } else { isLoading.value = false } @@ -793,13 +800,15 @@ async function getCommentRepliesInvidious(index) { } } -function getPostCommentsInvidious() { - const fetchComments = nextPageToken.value == null - ? getInvidiousCommunityPostComments({ postId: props.id, authorId: props.postAuthorId }) - : getInvidiousCommunityPostCommentReplies({ postId: props.id, replyToken: nextPageToken.value, authorId: props.postAuthorId }) +async function getPostCommentsInvidious() { + try { + const fetchComments = nextPageToken.value == null + ? getInvidiousCommunityPostComments({ postId: props.id, authorId: props.postAuthorId }) + : getInvidiousCommunityPostCommentReplies({ postId: props.id, replyToken: nextPageToken.value, authorId: props.postAuthorId }) - fetchComments.then(({ response, commentData: comments, continuation }) => { - comments = comments.map(({ replyToken, ...comment }) => { + const { response, commentData: comments, continuation } = await fetchComments + + const parsedComments = comments.map(({ replyToken, ...comment }) => { if (comment.hasReplyToken) { replyTokens.set(comment.id, replyToken) } else { @@ -809,11 +818,11 @@ function getPostCommentsInvidious() { return comment }) - commentData.value = commentData.value.concat(comments) + commentData.value = commentData.value.concat(parsedComments) nextPageToken.value = response?.continuation ?? continuation isLoading.value = false showComments.value = true - }).catch((err) => { + } catch (err) { console.error(err) const errorMessage = t('Invidious API Error (Click to copy)') showToast(`${errorMessage}: ${err}`, 10000, () => { @@ -822,11 +831,11 @@ function getPostCommentsInvidious() { if (process.env.SUPPORTS_LOCAL_API && backendFallback.value && backendPreference.value === 'invidious') { showToast(t('Falling back to Local API')) - getCommentDataLocal() + await getCommentDataLocal() } else { isLoading.value = false } - }) + } } async function getPostCommentRepliesInvidious(index) { From 3fceb7f99cc846b8e7c1a7a40acaeae6748fff93 Mon Sep 17 00:00:00 2001 From: David Date: Sat, 11 Jul 2026 19:28:28 +0200 Subject: [PATCH 2/4] Fix comment replies not being able to be loaded in parallel --- src/renderer/components/CommentSection/CommentSection.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/renderer/components/CommentSection/CommentSection.vue b/src/renderer/components/CommentSection/CommentSection.vue index 5150aec924cfa..e5cb53f2a912d 100644 --- a/src/renderer/components/CommentSection/CommentSection.vue +++ b/src/renderer/components/CommentSection/CommentSection.vue @@ -380,7 +380,7 @@ const props = defineProps({ }) const isLoading = ref(false) -const isCommentRepliesLoading = ref(false) +const commentRepliesLoading = new Set() const showComments = ref(false) const nextPageToken = shallowRef(null) @@ -565,9 +565,9 @@ function toggleCommentReplies(index) { * @param {number} index */ async function getCommentReplies(index) { - if (isCommentRepliesLoading.value) return + if (commentRepliesLoading.has(index)) return - isCommentRepliesLoading.value = true + commentRepliesLoading.add(index) if (!process.env.SUPPORTS_LOCAL_API || commentData.value[index].dataType === 'invidious') { if (!props.isPostComments) { @@ -579,7 +579,7 @@ async function getCommentReplies(index) { await getCommentRepliesLocal(index) } - isCommentRepliesLoading.value = false + commentRepliesLoading.delete(index) } /** @type {Map} */ From 816a2f1c8b2406635e4cb17215177e102febf42b Mon Sep 17 00:00:00 2001 From: David Date: Sat, 11 Jul 2026 20:04:04 +0200 Subject: [PATCH 3/4] Fix 'Fetch more comments' button duplicating results when spam clicking --- .../CommentSection/CommentSection.vue | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/renderer/components/CommentSection/CommentSection.vue b/src/renderer/components/CommentSection/CommentSection.vue index e5cb53f2a912d..5bdd85f57057f 100644 --- a/src/renderer/components/CommentSection/CommentSection.vue +++ b/src/renderer/components/CommentSection/CommentSection.vue @@ -381,6 +381,7 @@ const props = defineProps({ const isLoading = ref(false) const commentRepliesLoading = new Set() +const isMoreCommentsLoading = ref(false) const showComments = ref(false) const nextPageToken = shallowRef(null) @@ -421,7 +422,7 @@ const canPerformInitialCommentLoading = computed(() => { }) const canPerformMoreCommentLoading = computed(() => { - return commentData.value.length > 0 && !isLoading.value && showComments.value && !!nextPageToken.value + return commentData.value.length > 0 && !isLoading.value && showComments.value && !!nextPageToken.value && !isMoreCommentsLoading.value }) const observeVisibilityOptions = computed(() => { @@ -514,19 +515,25 @@ function getCommentData() { } } -function getMoreComments() { +async function getMoreComments() { if (commentData.value.length === 0 || nextPageToken.value == null) { showToast(t('Comments.There are no more comments for this video')) } else { + if (isMoreCommentsLoading.value) return + + isMoreCommentsLoading.value = true + if (!process.env.SUPPORTS_LOCAL_API || backendPreference.value === 'invidious') { if (!props.isPostComments) { - getCommentDataInvidious() + await getCommentDataInvidious() } else { - getPostCommentsInvidious() + await getPostCommentsInvidious() } } else { - getCommentDataLocal(true) + await getCommentDataLocal(true) } + + isMoreCommentsLoading.value = false } } From ff5c06eb5d68e79401fa36e87fe6073b5ddef416 Mon Sep 17 00:00:00 2001 From: David Date: Mon, 13 Jul 2026 09:36:21 +0200 Subject: [PATCH 4/4] Show loading state instead of displaying toast message --- .../CommentSection/CommentSection.css | 11 ++++++ .../CommentSection/CommentSection.vue | 34 ++++++++++++------- static/locales/ar.yaml | 1 - static/locales/awa.yaml | 1 - static/locales/be.yaml | 1 - static/locales/bg.yaml | 1 - static/locales/br.yaml | 1 - static/locales/ckb.yaml | 1 - static/locales/cs.yaml | 1 - static/locales/cy.yaml | 1 - static/locales/da.yaml | 1 - static/locales/de-DE.yaml | 1 - static/locales/el.yaml | 1 - static/locales/en-GB.yaml | 1 - static/locales/en-US.yaml | 2 +- static/locales/eo.yaml | 1 - static/locales/es-MX.yaml | 1 - static/locales/es.yaml | 1 - static/locales/et.yaml | 1 - static/locales/eu.yaml | 1 - static/locales/fa.yaml | 1 - static/locales/fi.yaml | 1 - static/locales/fr-FR.yaml | 1 - static/locales/gl.yaml | 1 - static/locales/he.yaml | 1 - static/locales/hr.yaml | 1 - static/locales/hu.yaml | 1 - static/locales/id.yaml | 1 - static/locales/is.yaml | 1 - static/locales/it.yaml | 1 - static/locales/ja.yaml | 1 - static/locales/ko.yaml | 1 - static/locales/lt.yaml | 1 - static/locales/lv.yaml | 1 - static/locales/ms.yaml | 1 - static/locales/my.yaml | 1 - static/locales/nb-NO.yaml | 1 - static/locales/nl.yaml | 1 - static/locales/nn.yaml | 1 - static/locales/pl.yaml | 1 - static/locales/pt-BR.yaml | 1 - static/locales/pt-PT.yaml | 1 - static/locales/pt.yaml | 1 - static/locales/ro.yaml | 1 - static/locales/ru.yaml | 1 - static/locales/sk.yaml | 1 - static/locales/sl.yaml | 1 - static/locales/sm.yaml | 1 - static/locales/sq.yaml | 1 - static/locales/sr.yaml | 1 - static/locales/sv.yaml | 1 - static/locales/ta.yaml | 1 - static/locales/th.yaml | 1 - static/locales/tr.yaml | 1 - static/locales/uk.yaml | 1 - static/locales/ur.yaml | 1 - static/locales/uz.yaml | 1 - static/locales/vi.yaml | 1 - static/locales/vls.yaml | 1 - static/locales/xh.yaml | 1 - static/locales/zh-CN.yaml | 1 - static/locales/zh-TW.yaml | 1 - 62 files changed, 34 insertions(+), 72 deletions(-) diff --git a/src/renderer/components/CommentSection/CommentSection.css b/src/renderer/components/CommentSection/CommentSection.css index 8dca3e6acd4f8..69398ec962d60 100644 --- a/src/renderer/components/CommentSection/CommentSection.css +++ b/src/renderer/components/CommentSection/CommentSection.css @@ -183,6 +183,12 @@ color: var(--title-color); } +.commentLoadingMoreReplies { + font-size: 11px; + margin-inline-start: 5px; + color: var(--title-color); +} + .commentReplies { margin-inline-start: 30px; } @@ -194,6 +200,11 @@ text-decoration: underline; } +.loadingMoreReplies { + margin-inline-start: 30px; + font-size: 15px; +} + .getMoreComments { padding-block-end: 1em; text-align: center; diff --git a/src/renderer/components/CommentSection/CommentSection.vue b/src/renderer/components/CommentSection/CommentSection.vue index 5bdd85f57057f..94a4fe089b43e 100644 --- a/src/renderer/components/CommentSection/CommentSection.vue +++ b/src/renderer/components/CommentSection/CommentSection.vue @@ -156,7 +156,7 @@ /> + + + {{ $t("Comments.Loading replies") }} + +

{{ $t("Comments.Show More Replies") }}
+
+ {{ $t("Comments.Loading replies") }} +
@@ -380,7 +396,7 @@ const props = defineProps({ }) const isLoading = ref(false) -const commentRepliesLoading = new Set() +const commentRepliesLoading = ref(new Set()) const isMoreCommentsLoading = ref(false) const showComments = ref(false) const nextPageToken = shallowRef(null) @@ -572,9 +588,9 @@ function toggleCommentReplies(index) { * @param {number} index */ async function getCommentReplies(index) { - if (commentRepliesLoading.has(index)) return + if (commentRepliesLoading.value.has(index)) return - commentRepliesLoading.add(index) + commentRepliesLoading.value.add(index) if (!process.env.SUPPORTS_LOCAL_API || commentData.value[index].dataType === 'invidious') { if (!props.isPostComments) { @@ -586,7 +602,7 @@ async function getCommentReplies(index) { await getCommentRepliesLocal(index) } - commentRepliesLoading.delete(index) + commentRepliesLoading.value.delete(index) } /** @type {Map} */ @@ -677,8 +693,6 @@ async function getCommentDataLocal(more = false) { * @param {number} index */ async function getCommentRepliesLocal(index) { - showToast(t('Comments.Getting comment replies, please wait')) - try { const comment = commentData.value[index] /** @type {import('youtubei.js').YTNodes.CommentThread} */ @@ -777,8 +791,6 @@ async function getCommentDataInvidious() { * @param {number} index */ async function getCommentRepliesInvidious(index) { - showToast(t('Comments.Getting comment replies, please wait')) - const comment = commentData.value[index] const replyToken = replyTokens.get(comment.id) @@ -846,8 +858,6 @@ async function getPostCommentsInvidious() { } async function getPostCommentRepliesInvidious(index) { - showToast(t('Comments.Getting comment replies, please wait')) - const comment = commentData.value[index] const replyToken = replyTokens.get(comment.id) diff --git a/static/locales/ar.yaml b/static/locales/ar.yaml index 5ad766fdd477c..7be687971f42e 100644 --- a/static/locales/ar.yaml +++ b/static/locales/ar.yaml @@ -908,7 +908,6 @@ Mini Player: 'المشغل المصغّر' Comments: Comments: 'التعليقات' Click to View Comments: 'انقر لمشاهدة التعليقات' - Getting comment replies, please wait: 'جاري الحصول على ردود التعليق, يرجى الانتظار' Hide Comments: 'إخفاء التعليقات' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'لا يتوفر تعليقات لهذا الفيديو' diff --git a/static/locales/awa.yaml b/static/locales/awa.yaml index 9b81c16d82e6b..57dbd0cc6c0f4 100644 --- a/static/locales/awa.yaml +++ b/static/locales/awa.yaml @@ -896,7 +896,6 @@ Mini Player: '' Comments: Comments: '' Click to View Comments: '' - Getting comment replies, please wait: '' There are no more comments for this video: '' Hide Comments: '' Top comments: '' diff --git a/static/locales/be.yaml b/static/locales/be.yaml index a4a0fb8fb080f..69f22ebf3c32b 100644 --- a/static/locales/be.yaml +++ b/static/locales/be.yaml @@ -905,7 +905,6 @@ Mini Player: 'Міні плэер' Comments: Comments: 'Каментарыі' Click to View Comments: 'Націсніце, каб праглядзець каментарыі' - Getting comment replies, please wait: 'Атрымліваюцца адказы на каментарыі, пачакайце' There are no more comments for this video: 'Да гэтага відэа больш няма каментарыяў' Hide Comments: 'Схаваць каментарыі' Top comments: 'Папулярныя каментарыі' diff --git a/static/locales/bg.yaml b/static/locales/bg.yaml index 800b89a323b78..2de941742802e 100644 --- a/static/locales/bg.yaml +++ b/static/locales/bg.yaml @@ -908,7 +908,6 @@ Mini Player: 'Мини плейър' Comments: Comments: 'Коментари' Click to View Comments: 'Щракнете, за да видите коментарите' - Getting comment replies, please wait: 'Получаване на отговори на коментара, моля изчакайте' There are no more comments for this video: 'Към това видео няма повече коментари' Hide Comments: 'Скриване на коментарите' # Context: View 10 Replies, View 1 Reply diff --git a/static/locales/br.yaml b/static/locales/br.yaml index 34724cdb59cfc..36f757f4f7bdd 100644 --- a/static/locales/br.yaml +++ b/static/locales/br.yaml @@ -984,7 +984,6 @@ Mini Player: 'Lenner bihan' Comments: Comments: 'Evezhiadennoù' Click to View Comments: 'Klikit amañ evit gwelet an evezhiadennoù' - Getting comment replies, please wait: 'O kerc''hat respontoù an evezhiadennoù, gortozit mar plij' There are no more comments for this video: 'Evezhiadenn ouzhpenn ebet evit ar video-mañ' Hide Comments: 'Kuzhat an evezhiadennoù' Top comments: 'Evezhiadennoù gwellañ' diff --git a/static/locales/ckb.yaml b/static/locales/ckb.yaml index 253beaf5958fd..f376849262073 100644 --- a/static/locales/ckb.yaml +++ b/static/locales/ckb.yaml @@ -752,7 +752,6 @@ Mini Player: 'لێدەری گچکە' Comments: Comments: '' Click to View Comments: '' - Getting comment replies, please wait: '' There are no more comments for this video: '' Hide Comments: '' Top comments: '' diff --git a/static/locales/cs.yaml b/static/locales/cs.yaml index f3a6fd3322ca3..0757d5857c650 100644 --- a/static/locales/cs.yaml +++ b/static/locales/cs.yaml @@ -917,7 +917,6 @@ Mini Player: 'Mini přehrávač' Comments: Comments: 'Komentáře' Click to View Comments: 'Kliknutím zobrazíte komentáře' - Getting comment replies, please wait: 'Načítání odpovědí na komentář, čekejte prosím' There are no more comments for this video: 'U tohoto videa nejsou žádné další komentáře' Hide Comments: 'Skrýt komentáře' Top comments: 'Nejlepší komentáře' diff --git a/static/locales/cy.yaml b/static/locales/cy.yaml index fd61913b6ae21..3055dd8b9ca5d 100644 --- a/static/locales/cy.yaml +++ b/static/locales/cy.yaml @@ -932,7 +932,6 @@ Mini Player: 'Chwaraewr Bach' Comments: Comments: 'Sylwadau' Click to View Comments: 'Cliciwch i Weld Sylwadau' - Getting comment replies, please wait: 'Yn derbyn atebion sylwadau, arhoswch' There are no more comments for this video: 'Nid oes mwy o sylwadau ar gyfer y fideo hwn' Hide Comments: 'Cuddio Sylwadau' Top comments: 'Sylwadau poblogaidd' diff --git a/static/locales/da.yaml b/static/locales/da.yaml index cf05c7b8b341b..3dbb03bfee449 100644 --- a/static/locales/da.yaml +++ b/static/locales/da.yaml @@ -883,7 +883,6 @@ Mini Player: 'Miniafspiller' Comments: Comments: 'Kommentarer' Click to View Comments: 'Klik for at vise kommentarer' - Getting comment replies, please wait: 'Henter kommentarsvar; vent venligst' There are no more comments for this video: 'Der er ikke flere kommentarer til denne video' Hide Comments: 'Skjul kommentarer' # Context: View 10 Replies, View 1 Reply diff --git a/static/locales/de-DE.yaml b/static/locales/de-DE.yaml index 916013408747b..ec2d9f125dcbd 100644 --- a/static/locales/de-DE.yaml +++ b/static/locales/de-DE.yaml @@ -868,7 +868,6 @@ Mini Player: Mini-Video-Player Comments: Comments: Kommentare Click to View Comments: Kommentare anzeigen - Getting comment replies, please wait: Antworten auf Kommentare werden geladen, bitte warten Hide Comments: Kommentare ausblenden # Context: View 10 Replies, View 1 Reply There are no comments available for this video: Keine Kommentare zu diesem Video vorhanden diff --git a/static/locales/el.yaml b/static/locales/el.yaml index 38ea91f92c5e5..266c784305ad5 100644 --- a/static/locales/el.yaml +++ b/static/locales/el.yaml @@ -905,7 +905,6 @@ Mini Player: 'Μικρή πλατφόρμα αναπαραγωγής' Comments: Comments: 'Σχόλια' Click to View Comments: 'Κάντε κλικ για να δείτε σχόλια' - Getting comment replies, please wait: 'Λήψη απαντήσεων σε σχόλια, παρακαλώ περιμένετε' Hide Comments: 'Απόκρυψη σχολίων' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Δεν υπάρχουν διαθέσιμα σχόλια γι αυτό το βίντεο' diff --git a/static/locales/en-GB.yaml b/static/locales/en-GB.yaml index 5a2f3d7e7ceb8..49cbc0ef9386f 100644 --- a/static/locales/en-GB.yaml +++ b/static/locales/en-GB.yaml @@ -914,7 +914,6 @@ Mini Player: 'Mini Player' Comments: Comments: 'Comments' Click to View Comments: 'Click to View Comments' - Getting comment replies, please wait: 'Getting comment replies, please wait' There are no more comments for this video: 'There are no more comments for this video' Hide Comments: 'Hide Comments' # Context: View 10 Replies, View 1 Reply diff --git a/static/locales/en-US.yaml b/static/locales/en-US.yaml index f7384a4400b14..0d3272a8a429f 100644 --- a/static/locales/en-US.yaml +++ b/static/locales/en-US.yaml @@ -1008,13 +1008,13 @@ Mini Player: Mini Player Comments: Comments: Comments Click to View Comments: Click to View Comments - Getting comment replies, please wait: Getting comment replies, please wait There are no more comments for this video: There are no more comments for this video Hide Comments: Hide Comments Top comments: Top comments Newest first: Newest First View {replyCount} replies: View 1 reply | View {replyCount} replies Hide {replyCount} replies: Hide 1 reply | Hide {replyCount} replies + Loading replies: Loading replies... View 1 reply from {channelName}: View 1 reply from {channelName} View {replyCount} replies from {channelName} and others: View {replyCount} replies from {channelName} and others Show More Replies: Show More Replies diff --git a/static/locales/eo.yaml b/static/locales/eo.yaml index a2aac153db0ef..9bc06027d8841 100644 --- a/static/locales/eo.yaml +++ b/static/locales/eo.yaml @@ -977,7 +977,6 @@ Mini Player: Ludileto Comments: Comments: Komentoj Click to View Comments: Alklaku por vidi komentojn - Getting comment replies, please wait: Venigado de respondoj, bonvolu atendi There are no more comments for this video: Ne estas pli da komentoj por tiu ĉi videaĵo Hide Comments: Kaŝi komentojn Top comments: Plej bonaj komentoj diff --git a/static/locales/es-MX.yaml b/static/locales/es-MX.yaml index 848a4a0a2ec9a..105bd2c3df4aa 100644 --- a/static/locales/es-MX.yaml +++ b/static/locales/es-MX.yaml @@ -576,7 +576,6 @@ Mini Player: 'Mini reproductor' Comments: Comments: 'Comentarios' Click to View Comments: 'Presione para Ver Comentarios' - Getting comment replies, please wait: 'Recibiendo respuestas de comentarios, por favor espere' Hide Comments: 'Esconde comentarios' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'No hay comentarios disponibles para este video' diff --git a/static/locales/es.yaml b/static/locales/es.yaml index 92fdcebabb945..83411fc1db79c 100644 --- a/static/locales/es.yaml +++ b/static/locales/es.yaml @@ -908,7 +908,6 @@ Mini Player: 'Minirreproductor' Comments: Comments: 'Comentarios' Click to View Comments: 'Pulse para ver comentarios' - Getting comment replies, please wait: 'Obteniendo las respuestas. Espere' Hide Comments: 'Ocultar comentarios' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Aún no hay comentarios' diff --git a/static/locales/et.yaml b/static/locales/et.yaml index b18a0b87b0e57..be1335d117b54 100644 --- a/static/locales/et.yaml +++ b/static/locales/et.yaml @@ -912,7 +912,6 @@ Mini Player: 'Kompaktne vaade' Comments: Comments: 'Kommentaarid' Click to View Comments: 'Kommentaaride vaatamiseks klõpsi' - Getting comment replies, please wait: 'Laadin kommentaari vastuseid, palun oota' There are no more comments for this video: 'Sellel videol ei ole rohkem kommentaare' Hide Comments: 'Peida kommentaarid' # Context: View 10 Replies, View 1 Reply diff --git a/static/locales/eu.yaml b/static/locales/eu.yaml index 6eca2c6251c5c..431f1c5d0db7a 100644 --- a/static/locales/eu.yaml +++ b/static/locales/eu.yaml @@ -914,7 +914,6 @@ Mini Player: 'Erreproduzitzaile txikia' Comments: Comments: 'Iruzkinak' Click to View Comments: 'Egin klik iruzkinak ikusteko' - Getting comment replies, please wait: 'Iruzkinen erantzunak eskuratzen. Itxaron mesedez' There are no more comments for this video: 'Ez dago iruzkin gehiagorik bideo honentzat' Hide Comments: 'Ezkutatu iruzkinak' Top comments: 'Iruzkin nagusiak' diff --git a/static/locales/fa.yaml b/static/locales/fa.yaml index 5dd5abcaf5692..2d71cc4da23d7 100644 --- a/static/locales/fa.yaml +++ b/static/locales/fa.yaml @@ -879,7 +879,6 @@ Comments: Load More Comments: بارگذاری نظرات بیشتر There are no comments available for this video: هیچ نظری برای این ویدیو موجود نیست Comments: نظرات - Getting comment replies, please wait: در حال دریافت پاسخ نظرات، لطفا صبر کنید There are no more comments for this video: هیچ نظر دیگری برای این ویدیو وجود ندارد Hide Comments: پنهان کردن نظرات Top comments: نظرات برتر diff --git a/static/locales/fi.yaml b/static/locales/fi.yaml index 4c410abf51a43..b78368deeedcf 100644 --- a/static/locales/fi.yaml +++ b/static/locales/fi.yaml @@ -857,7 +857,6 @@ Mini Player: 'Pieni soitin' Comments: Comments: 'Kommentit' Click to View Comments: 'Napsauta avataksesi kommentit' - Getting comment replies, please wait: 'Haetaan vastauksia, odota hetki' Hide Comments: 'Piilota kommentit' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Tähän videoon ei ole yhtään kommenttia' diff --git a/static/locales/fr-FR.yaml b/static/locales/fr-FR.yaml index 880b0e41516a1..70eba26786735 100644 --- a/static/locales/fr-FR.yaml +++ b/static/locales/fr-FR.yaml @@ -869,7 +869,6 @@ Mini Player: 'Mini-lecteur' Comments: Comments: 'Commentaires' Click to View Comments: 'Afficher les commentaires' - Getting comment replies, please wait: 'Récupération des commentaires, veuillez patienter' Hide Comments: 'Masquer les commentaires' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Il n''y a aucun commentaire pour cette vidéo' diff --git a/static/locales/gl.yaml b/static/locales/gl.yaml index e0763e14f9a2a..d972a6af53601 100644 --- a/static/locales/gl.yaml +++ b/static/locales/gl.yaml @@ -908,7 +908,6 @@ Mini Player: 'Mini-reprodutor' Comments: Comments: 'Comentarios' Click to View Comments: 'Premer para ver comentarios' - Getting comment replies, please wait: 'Obtendo respostas ao comentario. Por favor, agarda' There are no more comments for this video: 'Non hai máis comentarios neste vídeo' Hide Comments: 'Agochar comentarios' Top comments: 'Comentarios destacados' diff --git a/static/locales/he.yaml b/static/locales/he.yaml index efce06376255b..5b41be9fbd8c0 100644 --- a/static/locales/he.yaml +++ b/static/locales/he.yaml @@ -909,7 +909,6 @@ Mini Player: 'נגן מזערי' Comments: Comments: 'תגובות' Click to View Comments: 'לחיצה לצפייה בתגובות' - Getting comment replies, please wait: 'תשובות לתגובה נטענות, נא להמתין' There are no more comments for this video: 'לסרטון הזה אין תגובות' Hide Comments: 'הסתרת תגובות' # Context: View 10 Replies, View 1 Reply diff --git a/static/locales/hr.yaml b/static/locales/hr.yaml index b1e6b16bdc58f..eb35f3532766e 100644 --- a/static/locales/hr.yaml +++ b/static/locales/hr.yaml @@ -905,7 +905,6 @@ Mini Player: 'Mali player' Comments: Comments: 'Komentari' Click to View Comments: 'Pritisni za prikaz komentara' - Getting comment replies, please wait: 'Preuzimaju se odgovori na komentare. Pričekaj' Hide Comments: 'Sakrij komentare' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Za ovaj video nema komentara' diff --git a/static/locales/hu.yaml b/static/locales/hu.yaml index 5e970e38090ba..828488f250b46 100644 --- a/static/locales/hu.yaml +++ b/static/locales/hu.yaml @@ -918,7 +918,6 @@ Mini Player: 'Minilejátszó' Comments: Comments: 'Hozzászólások' Click to View Comments: 'Hozzászólások megtekintése' - Getting comment replies, please wait: 'Hozzászólásra adott válaszok beolvasása, várjon' There are no more comments for this video: 'Ehhez a videóhoz nincsenek további hozzászólások' Hide Comments: 'Hozzászólások elrejtése' # Context: View 10 Replies, View 1 Reply diff --git a/static/locales/id.yaml b/static/locales/id.yaml index 1cad7993a364a..56ffe64df92fe 100644 --- a/static/locales/id.yaml +++ b/static/locales/id.yaml @@ -913,7 +913,6 @@ Mini Player: 'Pemutar Kecil' Comments: Comments: 'Komentar' Click to View Comments: 'Klik untuk Melihat Komentar' - Getting comment replies, please wait: 'Memuat balasan komentar, harap tunggu' Hide Comments: 'Sembunyikan Komentar' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Tidak ada komentar tersedia untuk video ini' diff --git a/static/locales/is.yaml b/static/locales/is.yaml index 381a45df459e1..34e4de80646d1 100644 --- a/static/locales/is.yaml +++ b/static/locales/is.yaml @@ -909,7 +909,6 @@ Mini Player: 'Smáspilari' Comments: Comments: 'Athugasemdir' Click to View Comments: 'Smelltu til að skoða athugasemdir' - Getting comment replies, please wait: 'Sæki svör við athugasemdum, bíddu aðeins' There are no more comments for this video: 'Það eru engar fleiri athugasemdir við þetta myndskeið' Hide Comments: 'Fela athugasemdir' Top comments: 'Efstu athugasemdir' diff --git a/static/locales/it.yaml b/static/locales/it.yaml index 24b8d7cc18833..616d9b619cd37 100644 --- a/static/locales/it.yaml +++ b/static/locales/it.yaml @@ -869,7 +869,6 @@ Mini Player: 'Mini visualizzatore' Comments: Comments: 'Commenti' Click to View Comments: 'Fai clic per vedere i commenti' - Getting comment replies, please wait: 'Sto scaricando le risposte ai commenti, per favore attendi' Hide Comments: 'Nascondi i commenti' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Non ci sono commenti disponibili per questo video' diff --git a/static/locales/ja.yaml b/static/locales/ja.yaml index ee151ff7fe063..e52e9b6094745 100644 --- a/static/locales/ja.yaml +++ b/static/locales/ja.yaml @@ -865,7 +865,6 @@ Mini Player: 'ミニプレーヤー' Comments: Comments: 'コメント' Click to View Comments: 'コメント表示' - Getting comment replies, please wait: 'コメント返信を取得中。お待ちください' Hide Comments: 'コメント非表示' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'この動画にはコメントがありません' diff --git a/static/locales/ko.yaml b/static/locales/ko.yaml index 70f87d69424dd..dd4e727a575d2 100644 --- a/static/locales/ko.yaml +++ b/static/locales/ko.yaml @@ -584,7 +584,6 @@ Mini Player: '미니 플레이어' Comments: Comments: '댓글' Click to View Comments: '댓글을 보려면 클릭하세요' - Getting comment replies, please wait: '댓글의 답글을 받는 중입니다. 잠시만 기다려 주세요' There are no more comments for this video: '이 영상에 대한 댓글이 더 이상 없습니다' Hide Comments: '댓글 숨기기' Top comments: '인기 댓글' diff --git a/static/locales/lt.yaml b/static/locales/lt.yaml index 1203b96c5ce43..c30a023d97774 100644 --- a/static/locales/lt.yaml +++ b/static/locales/lt.yaml @@ -566,7 +566,6 @@ Mini Player: 'Mini grotuvas' Comments: Comments: 'Komentarai' Click to View Comments: 'Spustelėkite norėdami peržiūrėti komentarus' - Getting comment replies, please wait: 'Gaunami atsakymai į komentarus, palaukite' There are no more comments for this video: 'Šiame vaizdo įraše nėra daugiau komentarų' Hide Comments: 'Slėpti komentarus' Top comments: 'Top komentarai' diff --git a/static/locales/lv.yaml b/static/locales/lv.yaml index e740382414085..f273cf45dc4b4 100644 --- a/static/locales/lv.yaml +++ b/static/locales/lv.yaml @@ -775,7 +775,6 @@ Mini Player: '' Comments: Comments: 'Komentāri' Click to View Comments: 'Rādīt komentārus' - Getting comment replies, please wait: 'Notiek komentāra atbilžu ielāde, lūdzu, uzgaidiet' There are no more comments for this video: 'Šim video nav vairāk komentāru' Hide Comments: 'Paslēpt komentārus' Top comments: 'Populārākos augšgalā' diff --git a/static/locales/ms.yaml b/static/locales/ms.yaml index 1f90e7dbe7e53..33999c50037d1 100644 --- a/static/locales/ms.yaml +++ b/static/locales/ms.yaml @@ -950,7 +950,6 @@ Mini Player: '' Comments: Comments: '' Click to View Comments: '' - Getting comment replies, please wait: '' There are no more comments for this video: '' Hide Comments: '' Top comments: '' diff --git a/static/locales/my.yaml b/static/locales/my.yaml index 2d4918edd150a..7f7322ac66f30 100644 --- a/static/locales/my.yaml +++ b/static/locales/my.yaml @@ -887,7 +887,6 @@ Mini Player: '' Comments: Comments: '' Click to View Comments: '' - Getting comment replies, please wait: '' There are no more comments for this video: '' Hide Comments: '' Top comments: '' diff --git a/static/locales/nb-NO.yaml b/static/locales/nb-NO.yaml index 6187829014a16..66beac199709e 100644 --- a/static/locales/nb-NO.yaml +++ b/static/locales/nb-NO.yaml @@ -864,7 +864,6 @@ Mini Player: 'Miniavspiller' Comments: Comments: 'Kommentarer' Click to View Comments: 'Klikk her for å vise kommentarer' - Getting comment replies, please wait: 'Henter kommentarsvar...' Hide Comments: 'Skjul kommentarer' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Det er ingen kommentarer tilgjengelig på denne videoen' diff --git a/static/locales/nl.yaml b/static/locales/nl.yaml index 2a20e8c78dadb..0d746473686ee 100644 --- a/static/locales/nl.yaml +++ b/static/locales/nl.yaml @@ -858,7 +858,6 @@ Mini Player: 'Mini­speler' Comments: Comments: 'Opmerkingen' Click to View Comments: 'Klik om reacties te tonen' - Getting comment replies, please wait: 'Reacties worden verzameld, even geduld aub' Hide Comments: 'Opmerkingen verbergen' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Er zijn geen reacties beschikbaar voor deze video' diff --git a/static/locales/nn.yaml b/static/locales/nn.yaml index 3c92751274dc3..37d26af4ee4d4 100644 --- a/static/locales/nn.yaml +++ b/static/locales/nn.yaml @@ -558,7 +558,6 @@ Mini Player: 'Miniavspelar' Comments: Comments: 'Kommentarar' Click to View Comments: 'Klikk her for å vise kommentarar' - Getting comment replies, please wait: 'Laster inn kommentarar. Ver venleg og vent' There are no more comments for this video: 'Det finst ingen fleire kommentarar for denne videoen' Hide Comments: 'Skjul kommentarar' Top comments: 'Toppkommentarar' diff --git a/static/locales/pl.yaml b/static/locales/pl.yaml index 6ac6e936cc7c8..4eadf3a999176 100644 --- a/static/locales/pl.yaml +++ b/static/locales/pl.yaml @@ -869,7 +869,6 @@ Mini Player: 'Mini odtwarzacz' Comments: Comments: 'Komentarze' Click to View Comments: 'Kliknij, aby zobaczyć komentarze' - Getting comment replies, please wait: 'Pobieranie odpowiedzi do komentarza, proszę poczekać' Hide Comments: 'Schowaj komentarze' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Nie ma żadnych komentarzy odnośnie tego filmu' diff --git a/static/locales/pt-BR.yaml b/static/locales/pt-BR.yaml index e2a808f1fea8a..2d6cb8209cc86 100644 --- a/static/locales/pt-BR.yaml +++ b/static/locales/pt-BR.yaml @@ -864,7 +864,6 @@ Mini Player: 'Mini Player' Comments: Comments: 'Comentários' Click to View Comments: 'Mostrar comentários' - Getting comment replies, please wait: 'Buscando respostas, por favor, aguarde' Hide Comments: 'Ocultar comentários' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Não há comentários disponíveis neste vídeo' diff --git a/static/locales/pt-PT.yaml b/static/locales/pt-PT.yaml index 3a8351956c536..6af1afe50db59 100644 --- a/static/locales/pt-PT.yaml +++ b/static/locales/pt-PT.yaml @@ -911,7 +911,6 @@ Mini Player: Mini-reprodutor Comments: Comments: Comentários Click to View Comments: Clicar para ver os comentários - Getting comment replies, please wait: A obter respostas ao comentário, por favor aguarde There are no more comments for this video: Não há mais comentários para este vídeo Hide Comments: Ocultar comentários Top comments: Melhores comentários diff --git a/static/locales/pt.yaml b/static/locales/pt.yaml index cc839fc0d2299..e25431aeadd4c 100644 --- a/static/locales/pt.yaml +++ b/static/locales/pt.yaml @@ -908,7 +908,6 @@ Mini Player: 'Mini-reprodutor' Comments: Comments: 'Comentários' Click to View Comments: 'Clicar para ver os comentários' - Getting comment replies, please wait: 'A obter respostas ao comentário, por favor aguarde' Hide Comments: 'Ocultar comentários' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Este vídeo não tem comentários' diff --git a/static/locales/ro.yaml b/static/locales/ro.yaml index 1a3b8c1a59e3d..2ecdb6ee1fc58 100644 --- a/static/locales/ro.yaml +++ b/static/locales/ro.yaml @@ -885,7 +885,6 @@ Mini Player: 'Mini Player' Comments: Comments: 'Comentarii' Click to View Comments: 'Faceți clic pentru a vedea comentariile' - Getting comment replies, please wait: 'Se obțin răspunsurile comentariului, vă rugăm să așteptați' There are no more comments for this video: 'Nu mai există niciun comentariu pentru acest videoclip' Hide Comments: 'Ascundeți comentariile' # Context: View 10 Replies, View 1 Reply diff --git a/static/locales/ru.yaml b/static/locales/ru.yaml index 5153b2064050b..348618b91a66d 100644 --- a/static/locales/ru.yaml +++ b/static/locales/ru.yaml @@ -866,7 +866,6 @@ Mini Player: 'Мини-проигрыватель' Comments: Comments: 'Комментарии' Click to View Comments: 'Нажмите, чтобы просмотреть комментарии' - Getting comment replies, please wait: 'Получение ответов на комментарии, пожалуйста, подождите' Hide Comments: 'Скрыть комментарии' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'К этому видео нет комментариев' diff --git a/static/locales/sk.yaml b/static/locales/sk.yaml index f55f3b93a009a..7ae526a753973 100644 --- a/static/locales/sk.yaml +++ b/static/locales/sk.yaml @@ -863,7 +863,6 @@ Mini Player: 'Mini prehrávač' Comments: Comments: 'Komentáre' Click to View Comments: 'Kliknutím zobrazíte komentáre' - Getting comment replies, please wait: 'Získavanie odpovedí na komentáre, čakajte prosím' Hide Comments: 'Skryť komentáre' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Pre toto video nie sú dostupné žiadne komentáre' diff --git a/static/locales/sl.yaml b/static/locales/sl.yaml index 02f3c906bd8f9..d3f6b87f9e844 100644 --- a/static/locales/sl.yaml +++ b/static/locales/sl.yaml @@ -476,7 +476,6 @@ Mini Player: 'Mini predvajalnik' Comments: Comments: 'Komentarji' Click to View Comments: 'Kliknite za prikaz komentarjev' - Getting comment replies, please wait: 'Pridobivanje odgovorov na komentar. Prosimo, počakajte' There are no more comments for this video: 'Za ta posnetek ni več komentarjev' Hide Comments: 'Skrij komentarje' # Context: View 10 Replies, View 1 Reply diff --git a/static/locales/sm.yaml b/static/locales/sm.yaml index a51d0a459cc5a..e0a115cc21cda 100644 --- a/static/locales/sm.yaml +++ b/static/locales/sm.yaml @@ -632,7 +632,6 @@ Mini Player: '' Comments: Comments: '' Click to View Comments: '' - Getting comment replies, please wait: '' There are no more comments for this video: '' Hide Comments: '' Top comments: '' diff --git a/static/locales/sq.yaml b/static/locales/sq.yaml index 2d89c957cc99d..25d948ad74c7d 100644 --- a/static/locales/sq.yaml +++ b/static/locales/sq.yaml @@ -938,7 +938,6 @@ Mini Player: '' Comments: Comments: '' Click to View Comments: '' - Getting comment replies, please wait: '' There are no more comments for this video: '' Hide Comments: '' Top comments: '' diff --git a/static/locales/sr.yaml b/static/locales/sr.yaml index cebcaf4f6b3c5..d766a3ef81e4b 100644 --- a/static/locales/sr.yaml +++ b/static/locales/sr.yaml @@ -906,7 +906,6 @@ Comments: Click to View Comments: Кликни да видиш коментаре Top comments: Топ коментари Subscribed: Пратите - Getting comment replies, please wait: Набављање одговора на коментаре, сачекајте Load More Comments: Учитај више коментара Hide Comments: Сакриј коментаре Show More Replies: Прикажи више одговора diff --git a/static/locales/sv.yaml b/static/locales/sv.yaml index db2c3c71fe14a..60a95f4508097 100644 --- a/static/locales/sv.yaml +++ b/static/locales/sv.yaml @@ -913,7 +913,6 @@ Mini Player: 'Minispelare' Comments: Comments: 'Kommentarer' Click to View Comments: 'Klicka för att visa kommentarer' - Getting comment replies, please wait: 'Hämtar svar på kommentarer, vänta' There are no more comments for this video: 'Det finns inga fler kommentarer för videon' Hide Comments: 'Dölj kommentarer' # Context: View 10 Replies, View 1 Reply diff --git a/static/locales/ta.yaml b/static/locales/ta.yaml index 7ac6bca72dd20..f0e92bb636824 100644 --- a/static/locales/ta.yaml +++ b/static/locales/ta.yaml @@ -1000,7 +1000,6 @@ Mini Player: 'மினி பிளேயர்' Comments: Comments: 'கருத்துகள்' Click to View Comments: 'கருத்துகளைக் காண சொடுக்கு செய்க' - Getting comment replies, please wait: 'கருத்து பதில்களைப் பெறுதல், தயவுசெய்து காத்திருங்கள்' There are no more comments for this video: 'இந்த வீடியோவுக்கு இனி கருத்துகள் இல்லை' Hide Comments: 'கருத்துகளை மறைக்கவும்' Top comments: 'சிறந்த கருத்துகள்' diff --git a/static/locales/th.yaml b/static/locales/th.yaml index 29f6deb0217ec..aa99b99b84052 100644 --- a/static/locales/th.yaml +++ b/static/locales/th.yaml @@ -965,7 +965,6 @@ Mini Player: '' Comments: Comments: '' Click to View Comments: '' - Getting comment replies, please wait: '' There are no more comments for this video: '' Hide Comments: '' Top comments: '' diff --git a/static/locales/tr.yaml b/static/locales/tr.yaml index bd1aeed15f9fb..500a24a5e4135 100644 --- a/static/locales/tr.yaml +++ b/static/locales/tr.yaml @@ -916,7 +916,6 @@ Mini Player: 'Mini Oynatıcı' Comments: Comments: 'Yorumlar' Click to View Comments: 'Yorumları Görüntülemek İçin Tıklayın' - Getting comment replies, please wait: 'Yorum yanıtları yükleniyor, lütfen bekleyin' There are no more comments for this video: 'Bu video için daha fazla yorum yok' Hide Comments: 'Yorumları Gizle' # Context: View 10 Replies, View 1 Reply diff --git a/static/locales/uk.yaml b/static/locales/uk.yaml index f0290edee306a..983147c97b962 100644 --- a/static/locales/uk.yaml +++ b/static/locales/uk.yaml @@ -911,7 +911,6 @@ Mini Player: 'Мініпрогравач' Comments: Comments: 'Коментарі' Click to View Comments: 'Клацніть, щоб переглянути коментарі' - Getting comment replies, please wait: 'Отримання відповідей на коментарі, зачекайте' There are no more comments for this video: 'Більше немає коментарів до цього відео' Hide Comments: 'Приховати коментарі' Top comments: 'Найпопулярніші коментарі' diff --git a/static/locales/ur.yaml b/static/locales/ur.yaml index 8cb8564ef931a..57bbe0b6ad7af 100644 --- a/static/locales/ur.yaml +++ b/static/locales/ur.yaml @@ -1022,7 +1022,6 @@ Mini Player: منی پلیئر Comments: Comments: کمنٹس Click to View Comments: کمنٹس دیکھنے کے لیے کلک کریں - Getting comment replies, please wait: کمنٹس کے جوابات حاصل کیے جا رہے ہیں، براہ کرم انتظار کریں There are no more comments for this video: اس ویڈیو کے لیے مزید کوئی کمنٹس نہیں ہیں Hide Comments: کمنٹس چھپائیں Top comments: بہترین کمنٹس diff --git a/static/locales/uz.yaml b/static/locales/uz.yaml index 0f5228104454a..81008151b32ed 100644 --- a/static/locales/uz.yaml +++ b/static/locales/uz.yaml @@ -950,7 +950,6 @@ Mini Player: '' Comments: Comments: '' Click to View Comments: '' - Getting comment replies, please wait: '' There are no more comments for this video: '' Hide Comments: '' Top comments: '' diff --git a/static/locales/vi.yaml b/static/locales/vi.yaml index e99c1102550b4..9bb1846fdeb0a 100644 --- a/static/locales/vi.yaml +++ b/static/locales/vi.yaml @@ -868,7 +868,6 @@ Mini Player: 'Trình phát Mini' Comments: Comments: 'Bình luận' Click to View Comments: 'Nhấn để xem bình luận' - Getting comment replies, please wait: 'Đang lấy trả lời bình luận, vui lòng chờ' Hide Comments: 'Ẩn bình luận' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: 'Không có bình luận nào cho video này' diff --git a/static/locales/vls.yaml b/static/locales/vls.yaml index 38fd115035871..198b528624fad 100644 --- a/static/locales/vls.yaml +++ b/static/locales/vls.yaml @@ -829,7 +829,6 @@ Mini Player: '' Comments: Comments: '' Click to View Comments: '' - Getting comment replies, please wait: '' There are no more comments for this video: '' Hide Comments: '' Top comments: '' diff --git a/static/locales/xh.yaml b/static/locales/xh.yaml index 98f6794c93072..6e401744641b4 100644 --- a/static/locales/xh.yaml +++ b/static/locales/xh.yaml @@ -957,7 +957,6 @@ Mini Player: '' Comments: Comments: '' Click to View Comments: '' - Getting comment replies, please wait: '' There are no more comments for this video: '' Hide Comments: '' Top comments: '' diff --git a/static/locales/zh-CN.yaml b/static/locales/zh-CN.yaml index 52764602db057..0f2acaa526d53 100644 --- a/static/locales/zh-CN.yaml +++ b/static/locales/zh-CN.yaml @@ -869,7 +869,6 @@ Mini Player: '迷你播放器' Comments: Comments: '评论' Click to View Comments: '点击观看评论' - Getting comment replies, please wait: '获取评论中,请稍候' Hide Comments: '隐藏评论' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: '这个视频没有评论' diff --git a/static/locales/zh-TW.yaml b/static/locales/zh-TW.yaml index 7296dccadc986..05d7833cc930d 100644 --- a/static/locales/zh-TW.yaml +++ b/static/locales/zh-TW.yaml @@ -869,7 +869,6 @@ Mini Player: '迷你播放器' Comments: Comments: '留言' Click to View Comments: '點擊查看留言' - Getting comment replies, please wait: '正在取得留言回覆,請稍候' Hide Comments: '隱藏留言' # Context: View 10 Replies, View 1 Reply There are no comments available for this video: '這個影片沒有留言'