Title on likes count

merge-requests/30/head
Bob Mottram 2022-03-01 17:48:13 +00:00
parent 91e8db95f8
commit 5e39f6fa30
18 changed files with 36 additions and 18 deletions

View File

@ -511,5 +511,6 @@
"Lots of things": "أشياء كثيرة",
"Created": "مخلوق",
"It is done": "تم",
"Time Zone": "وحدة زمنية"
"Time Zone": "وحدة زمنية",
"Show who liked this post": "أظهر من أحب هذا المنشور"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "Moltes coses",
"Created": "Creat",
"It is done": "Esta fet",
"Time Zone": "Fus horari"
"Time Zone": "Fus horari",
"Show who liked this post": "Mostra a qui li agrada aquesta publicació"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "Llawer o pethau",
"Created": "Wedi creu",
"It is done": "Mae'n cael ei wneud",
"Time Zone": "Parth Amser"
"Time Zone": "Parth Amser",
"Show who liked this post": "Dangoswch pwy oedd yn hoffi'r post hwn"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "Viele Dinge",
"Created": "Erstellt",
"It is done": "Es ist vollbracht",
"Time Zone": "Zeitzone"
"Time Zone": "Zeitzone",
"Show who liked this post": "Zeigen, wem dieser Beitrag gefallen hat"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "Lots of things",
"Created": "Created",
"It is done": "It is done",
"Time Zone": "Time Zone"
"Time Zone": "Time Zone",
"Show who liked this post": "Show who liked this post"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "Muchas cosas",
"Created": "Creada",
"It is done": "Se hace",
"Time Zone": "Zona horaria"
"Time Zone": "Zona horaria",
"Show who liked this post": "Mostrar a quién le gustó esta publicación"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "Beaucoup de choses",
"Created": "Créé",
"It is done": "C'est fait",
"Time Zone": "Fuseau horaire"
"Time Zone": "Fuseau horaire",
"Show who liked this post": "Montrer qui a aimé ce post"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "A lán rudaí",
"Created": "Cruthaithe",
"It is done": "Déantar é",
"Time Zone": "Crios Ama"
"Time Zone": "Crios Ama",
"Show who liked this post": "Taispeáin cé a thaitin an postáil seo"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "बहुत सी बातें",
"Created": "बनाया था",
"It is done": "हो गया है",
"Time Zone": "समय क्षेत्र"
"Time Zone": "समय क्षेत्र",
"Show who liked this post": "दिखाएँ कि इस पोस्ट को किसने पसंद किया"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "Un sacco di cose",
"Created": "Creata",
"It is done": "È fatta",
"Time Zone": "Fuso orario"
"Time Zone": "Fuso orario",
"Show who liked this post": "Mostra a chi è piaciuto questo post"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "多くの物",
"Created": "作成した",
"It is done": "されております",
"Time Zone": "タイムゾーン"
"Time Zone": "タイムゾーン",
"Show who liked this post": "この投稿を高く評価した人を表示する"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "Gelek tişt",
"Created": "Afirandin",
"It is done": "Tê kirin",
"Time Zone": "Qada demê"
"Time Zone": "Qada demê",
"Show who liked this post": "Nîşan bide kê ev post eciband"
}

View File

@ -507,5 +507,6 @@
"Lots of things": "Lots of things",
"Created": "Created",
"It is done": "It is done",
"Time Zone": "Time Zone"
"Time Zone": "Time Zone",
"Show who liked this post": "Show who liked this post"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "Muitas coisas",
"Created": "Criada",
"It is done": "Está feito",
"Time Zone": "Fuso horário"
"Time Zone": "Fuso horário",
"Show who liked this post": "Mostrar quem gostou deste post"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "Много всего",
"Created": "Созданный",
"It is done": "Сделано",
"Time Zone": "Часовой пояс"
"Time Zone": "Часовой пояс",
"Show who liked this post": "Показать, кому понравился этот пост"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "Mambo mengi",
"Created": "Imeundwa",
"It is done": "Imefanyika",
"Time Zone": "Eneo la Saa"
"Time Zone": "Eneo la Saa",
"Show who liked this post": "Onyesha ni nani aliyependa chapisho hili"
}

View File

@ -511,5 +511,6 @@
"Lots of things": "很多事情",
"Created": "已创建",
"It is done": "完成了",
"Time Zone": "时区"
"Time Zone": "时区",
"Show who liked this post": "显示谁喜欢这篇文章"
}

View File

@ -662,7 +662,8 @@ def _get_like_icon_html(nickname: str, domain_full: str,
# show the number of likes next to icon
like_str += '<label class="likesCount">'
like_str += '<a href="' + likers_screen_link + '">'
like_str += '<a href="' + likers_screen_link + '" ' + \
'title="' + translate['Show who liked this post'] + '">'
like_str += like_count_str.replace('(', '').replace(')', '').strip()
like_str += '</a></label>\n'