From a1103d21e4a73a5f77a22504642ddbe38b4fd396 Mon Sep 17 00:00:00 2001 From: Kris Cherven <50562493+krischerven@users.noreply.github.com> Date: Wed, 19 Mar 2025 11:16:51 +0000 Subject: [PATCH] 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) --- ftl/qt/about.ftl | 2 ++ qt/aqt/about.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ftl/qt/about.ftl b/ftl/qt/about.ftl index 6fd190638..b841e0843 100644 --- a/ftl/qt/about.ftl +++ b/ftl/qt/about.ftl @@ -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 = Visit website about-written-by-damien-elmes-with-patches = Written by Damien Elmes, with patches, translation, testing and design from:

{ $cont } +# appended to the end of the contributor list in the about screen +about-and-others = and others diff --git a/qt/aqt/about.py b/qt/aqt/about.py index 659e380ea..d0d7157af 100644 --- a/qt/aqt/about.py +++ b/qt/aqt/about.py @@ -222,7 +222,7 @@ def show(mw: aqt.AnkiQt) -> QDialog: ) abouttext += "

" + tr.about_written_by_damien_elmes_with_patches( - cont=", ".join(allusers) + cont=", ".join(allusers) + f", {tr.about_and_others()}" ) abouttext += f"

{tr.about_if_you_have_contributed_and_are()}" abouttext += f"

{tr.about_a_big_thanks_to_all_the()}"