Fix: Duplicates when click spam loading elements in FT (3/3) (#9412)
* Fix comments' 'Show replies' button duplicating results when spam clicking * Fix comment replies not being able to be loaded in parallel * Fix 'Fetch more comments' button duplicating results when spam clicking * Show loading state instead of displaying toast message * Use 'reactive' instead of 'ref'
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -156,7 +156,7 @@
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
v-if="comment.numReplies > 0"
|
||||
v-if="comment.numReplies > 0 && !commentRepliesLoading.has(index)"
|
||||
class="commentMoreReplies"
|
||||
role="button"
|
||||
tabindex="0"
|
||||
@@ -168,6 +168,15 @@
|
||||
{{ toggleCommentRepliesLinkText(comment) }}
|
||||
</span>
|
||||
</span>
|
||||
<span
|
||||
v-else-if="comment.numReplies > 0 && commentRepliesLoading.has(index)"
|
||||
class="commentLoadingMoreReplies"
|
||||
tabindex="0"
|
||||
>
|
||||
<span>
|
||||
{{ $t("Comments.Loading replies") }}
|
||||
</span>
|
||||
</span>
|
||||
</p>
|
||||
<div
|
||||
v-if="comment.showReplies"
|
||||
@@ -272,7 +281,7 @@
|
||||
</p>
|
||||
</div>
|
||||
<div
|
||||
v-if="comment.hasReplyToken"
|
||||
v-if="comment.hasReplyToken && !commentRepliesLoading.has(index)"
|
||||
class="showMoreReplies"
|
||||
role="button"
|
||||
tabindex="0"
|
||||
@@ -282,6 +291,13 @@
|
||||
>
|
||||
<span>{{ $t("Comments.Show More Replies") }}</span>
|
||||
</div>
|
||||
<div
|
||||
v-else-if="comment.hasReplyToken && commentRepliesLoading.has(index)"
|
||||
class="loadingMoreReplies"
|
||||
tabindex="0"
|
||||
>
|
||||
<span>{{ $t("Comments.Loading replies") }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -327,7 +343,7 @@
|
||||
|
||||
<script setup>
|
||||
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
|
||||
import { computed, ref, shallowRef } from 'vue'
|
||||
import { computed, ref, shallowRef, reactive } from 'vue'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
||||
import FtCard from '../ft-card/ft-card.vue'
|
||||
@@ -380,6 +396,8 @@ const props = defineProps({
|
||||
})
|
||||
|
||||
const isLoading = ref(false)
|
||||
const commentRepliesLoading = reactive(new Set())
|
||||
const isMoreCommentsLoading = ref(false)
|
||||
const showComments = ref(false)
|
||||
const nextPageToken = shallowRef(null)
|
||||
|
||||
@@ -420,7 +438,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(() => {
|
||||
@@ -513,19 +531,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
|
||||
}
|
||||
}
|
||||
|
||||
@@ -563,16 +587,22 @@ function toggleCommentReplies(index) {
|
||||
/**
|
||||
* @param {number} index
|
||||
*/
|
||||
function getCommentReplies(index) {
|
||||
async function getCommentReplies(index) {
|
||||
if (commentRepliesLoading.has(index)) return
|
||||
|
||||
commentRepliesLoading.add(index)
|
||||
|
||||
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)
|
||||
}
|
||||
|
||||
commentRepliesLoading.delete(index)
|
||||
}
|
||||
|
||||
/** @type {Map<string, (import('youtubei.js').YTNodes.CommentThread | string)>} */
|
||||
@@ -649,9 +679,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
|
||||
@@ -663,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} */
|
||||
@@ -701,7 +729,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 +780,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
|
||||
}
|
||||
@@ -763,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)
|
||||
|
||||
@@ -793,13 +819,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 +837,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,16 +850,14 @@ 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) {
|
||||
showToast(t('Comments.Getting comment replies, please wait'))
|
||||
|
||||
const comment = commentData.value[index]
|
||||
const replyToken = replyTokens.get(comment.id)
|
||||
|
||||
|
||||
@@ -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: 'لا يتوفر تعليقات لهذا الفيديو'
|
||||
|
||||
@@ -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: ''
|
||||
|
||||
@@ -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: 'Папулярныя каментарыі'
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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ñ'
|
||||
|
||||
@@ -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: ''
|
||||
|
||||
@@ -927,7 +927,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'
|
||||
|
||||
@@ -937,7 +937,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'
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -878,7 +878,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
|
||||
|
||||
@@ -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: 'Δεν υπάρχουν διαθέσιμα σχόλια γι αυτό το βίντεο'
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1023,13 +1023,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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -910,7 +910,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'
|
||||
|
||||
@@ -922,7 +922,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
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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: نظرات برتر
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -879,7 +879,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'
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -928,7 +928,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
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -914,7 +914,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'
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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: 'この動画にはコメントがありません'
|
||||
|
||||
@@ -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: '인기 댓글'
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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ā'
|
||||
|
||||
@@ -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: ''
|
||||
|
||||
@@ -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: ''
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -858,7 +858,6 @@ Mini Player: 'Minispeler'
|
||||
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'
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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: 'К этому видео нет комментариев'
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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: ''
|
||||
|
||||
@@ -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: ''
|
||||
|
||||
@@ -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: Прикажи више одговора
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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: 'சிறந்த கருத்துகள்'
|
||||
|
||||
@@ -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: ''
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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: 'Найпопулярніші коментарі'
|
||||
|
||||
@@ -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: بہترین کمنٹس
|
||||
|
||||
@@ -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: ''
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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: ''
|
||||
|
||||
@@ -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: ''
|
||||
|
||||
@@ -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: '这个视频没有评论'
|
||||
|
||||
@@ -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: '這個影片沒有留言'
|
||||
|
||||
Reference in New Issue
Block a user