mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
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:
parent
938c55ca01
commit
ab8692a91e
2 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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()}"
|
||||
|
|
Loading…
Reference in a new issue