Translate more_matches string

This commit is contained in:
daudix
2024-10-27 04:14:13 +03:00
parent 1d0d9fbbe8
commit f4d7091c19
8 changed files with 9 additions and 2 deletions

View File

@ -47,6 +47,7 @@ load_comments = "تحميل التعليقات"
loading = "التحميل" loading = "التحميل"
many_minutes_read = "$NUMBER دقائق القراءة" many_minutes_read = "$NUMBER دقائق القراءة"
minutes_read = "$NUMBER دقائق القراءة" minutes_read = "$NUMBER دقائق القراءة"
more_matches = "$MATCHES المزيد من التطابق"
next = "التالي" next = "التالي"
no_comments = "لا توجد تعليقات حتى الآن :/" no_comments = "لا توجد تعليقات حتى الآن :/"
note = "ملاحظة" note = "ملاحظة"

View File

@ -29,7 +29,7 @@ comments = "Comments"
comments_description = "You can comment on this blog post by publicly replying to this post using a Mastodon or other ActivityPub/Fediverse account. Known non-private replies are displayed below." comments_description = "You can comment on this blog post by publicly replying to this post using a Mastodon or other ActivityPub/Fediverse account. Known non-private replies are displayed below."
comments_noscript = "Loading comments relies on JavaScript. Try enabling JavaScript and reloading, or visit the original post on Mastodon." comments_noscript = "Loading comments relies on JavaScript. Try enabling JavaScript and reloading, or visit the original post on Mastodon."
comments_qr = "QR code to a Mastodon post" comments_qr = "QR code to a Mastodon post"
copy_code = "Copy code" copy_code = "Copy Code"
disclaimer = "Disclaimer" disclaimer = "Disclaimer"
drafted = "Drafted" drafted = "Drafted"
faves_from = "Favorites from $INSTANCE" faves_from = "Favorites from $INSTANCE"
@ -49,6 +49,7 @@ many_minutes_read = "$NUMBER minutes read"
many_posts = "$NUMBER posts in total" many_posts = "$NUMBER posts in total"
many_tags = "$NUMBER tags in total" many_tags = "$NUMBER tags in total"
minutes_read = "$NUMBER minute read" minutes_read = "$NUMBER minute read"
more_matches = "$MATCHES more matches"
next = "Next" next = "Next"
no_comments = "No Comments yet :/" no_comments = "No Comments yet :/"
note = "Note" note = "Note"

View File

@ -49,6 +49,7 @@ many_minutes_read = "$NUMBER minutos leídos"
many_posts = "$NUMBER publicaciones en total" many_posts = "$NUMBER publicaciones en total"
many_tags = "$NUMBER etiquetas en total" many_tags = "$NUMBER etiquetas en total"
minutes_read = "$NUMBER minuto leído" minutes_read = "$NUMBER minuto leído"
more_matches = "$MATCHES más coincidencias"
next = "Siguiente" next = "Siguiente"
no_comments = "Sin comentarios aún :/" no_comments = "Sin comentarios aún :/"
note = "Nota" note = "Nota"

View File

@ -49,6 +49,7 @@ many_minutes_read = "زمان مطالعه $NUMBER دقیقه"
many_posts = "$NUMBER مطلب در کل" many_posts = "$NUMBER مطلب در کل"
many_tags = "$NUMBER برچسب در کل" many_tags = "$NUMBER برچسب در کل"
minutes_read = "زمان مطالعه $NUMBER دقیقه" minutes_read = "زمان مطالعه $NUMBER دقیقه"
more_matches = "$MATCHES مسابقات بیشتر"
next = "بعدی" next = "بعدی"
no_comments = "هنوز نظری نیست :/" no_comments = "هنوز نظری نیست :/"
note = "یادداشت" note = "یادداشت"

View File

@ -49,6 +49,7 @@ many_minutes_read = "$NUMBER minit membaca"
many_posts = "$NUMBER siaran kesemuanya" many_posts = "$NUMBER siaran kesemuanya"
many_tags = "$NUMBER tag kesemuanya" many_tags = "$NUMBER tag kesemuanya"
minutes_read = "$NUMBER minit membaca" minutes_read = "$NUMBER minit membaca"
more_matches = "$MATCHES lagi perlawanan"
next = "Seterusnya" next = "Seterusnya"
no_comments = "Tiada komen lagi :/" no_comments = "Tiada komen lagi :/"
note = "Nota" note = "Nota"

View File

@ -56,6 +56,7 @@ many_minutes_read = "$NUMBER минуты чтения"
many_posts = "Всего $NUMBER постов" many_posts = "Всего $NUMBER постов"
many_tags = "Всего $NUMBER тегов" many_tags = "Всего $NUMBER тегов"
minutes_read = "$NUMBER минута чтения" minutes_read = "$NUMBER минута чтения"
more_matches = "$MATCHES больше совпадений"
next = "Следующий" next = "Следующий"
no_comments = "Комментариев пока нет :/" no_comments = "Комментариев пока нет :/"
note = "Заметьте" note = "Заметьте"

View File

@ -50,6 +50,7 @@ many_minutes_read = "阅读需要 $NUMBER 分钟"
many_posts = "共有 $NUMBER 篇文章" many_posts = "共有 $NUMBER 篇文章"
many_tags = "共有 $NUMBER 个标签" many_tags = "共有 $NUMBER 个标签"
minutes_read = "阅读需要 $NUMBER 分钟" minutes_read = "阅读需要 $NUMBER 分钟"
more_matches = "$MATCHES 更多匹配"
next = "下一篇" next = "下一篇"
no_comments = "目前没有评论 :/" no_comments = "目前没有评论 :/"
note = "注意" note = "注意"

View File

@ -1,5 +1,5 @@
// Taken from https://carlschwan.eu/2020/12/29/adding-comments-to-your-static-blog-with-mastodon/ // Taken from https://carlschwan.eu/2020/12/29/adding-comments-to-your-static-blog-with-mastodon/
// Attachment code taken from https://github.com/cassidyjames/cassidyjames.github.io/blob/99782788a7e3ba3cc52d6803010873abd1b02b9e/_includes/comments.html#L251-L296 // Attachment, card, and spoiler code taken from https://github.com/cassidyjames/cassidyjames.github.io/blob/99782788a7e3ba3cc52d6803010873abd1b02b9e/_includes/comments.html#L251-L296
let blogPostAuthorText = document.getElementById("blog-post-author-text").textContent; let blogPostAuthorText = document.getElementById("blog-post-author-text").textContent;
let boostsFromText = document.getElementById("boosts-from-text").textContent; let boostsFromText = document.getElementById("boosts-from-text").textContent;