Show "and others" at the end of the contributor list in the About dialog (#3863)

* Show "and others" at the end of the contributor list in the about dialog

* Make about addendum translatable

* Fix CONTRIBUTORS

* Fix CONTRIBUTORS

* Update ftl/qt/about.ftl (dae)
This commit is contained in:
Kris Cherven 2025-03-19 11:16:51 +00:00 committed by GitHub
parent 938c55ca01
commit ab8692a91e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -8,3 +8,5 @@ about-if-you-have-contributed-and-are = If you have contributed and are not on t
about-version = Version { $val }
about-visit-website = <a href='{ $val }'>Visit website</a>
about-written-by-damien-elmes-with-patches = Written by Damien Elmes, with patches, translation, testing and design from:<p>{ $cont }
# appended to the end of the contributor list in the about screen
about-and-others = and others

View file

@ -222,7 +222,7 @@ def show(mw: aqt.AnkiQt) -> QDialog:
)
abouttext += "<p>" + tr.about_written_by_damien_elmes_with_patches(
cont=", ".join(allusers)
cont=", ".join(allusers) + f", {tr.about_and_others()}"
)
abouttext += f"<p>{tr.about_if_you_have_contributed_and_are()}"
abouttext += f"<p>{tr.about_a_big_thanks_to_all_the()}"