Skip to content

Commit 5eed5e3

Browse files
committed
up
1 parent 4f2263c commit 5eed5e3

9 files changed

Lines changed: 923 additions & 1672 deletions

File tree

db/mods.json

Lines changed: 339 additions & 330 deletions
Large diffs are not rendered by default.

db/mods_cn.json

Lines changed: 177 additions & 474 deletions
Large diffs are not rendered by default.

db/mods_en.json

Lines changed: 236 additions & 542 deletions
Large diffs are not rendered by default.

db/mods_pl.json

Lines changed: 160 additions & 315 deletions
Large diffs are not rendered by default.

locales/en/LC_MESSAGES/messages.mo

-11 Bytes
Binary file not shown.

locales/en/LC_MESSAGES/messages.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgstr ""
88
"Project-Id-Version: \n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2026-05-14 20:45+0200\n"
11-
"PO-Revision-Date: 2026-05-14 20:46+0200\n"
11+
"PO-Revision-Date: 2026-05-14 22:33+0200\n"
1212
"Last-Translator: Riws <toto.streak289@passinbox.com>\n"
1313
"Language-Team: English\n"
1414
"Language: en\n"
@@ -154,7 +154,7 @@ msgstr "This mod is still in progress."
154154

155155
#: models/mod.py:232
156156
msgid "Ce mod est en cours de finition."
157-
msgstr "This mod is currently being finalised."
157+
msgstr "This mod is still in beta."
158158

159159
#: models/mod.py:237
160160
#, python-brace-format
@@ -319,7 +319,7 @@ msgstr ""
319319
"To ensure the greatest accuracy possible, please feel free to report any <a "
320320
"href=\"https://github.com/RiwsPy/lcc-docs/issues\">issues</a>, <a href="
321321
"\"https://github.com/RiwsPy/lcc-docs/discussions/65\">missing mods</a> or <a "
322-
"href=\"https://github.com/RiwsPy/lcc-docs/discussions/66\">oversight</a>."
322+
"href=\"https://github.com/RiwsPy/lcc-docs/discussions/66\">oversights</a>."
323323

324324
#: i18n.py:114
325325
msgid ""

locales/pl/LC_MESSAGES/messages.mo

-11 Bytes
Binary file not shown.

locales/pl/LC_MESSAGES/messages.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgstr ""
88
"Project-Id-Version: \n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2026-05-14 20:45+0200\n"
11-
"PO-Revision-Date: 2026-05-14 20:48+0200\n"
11+
"PO-Revision-Date: 2026-05-14 22:33+0200\n"
1212
"Last-Translator: Riws <toto.streak289@passinbox.com>\n"
1313
"Language-Team: English\n"
1414
"Language: en\n"
@@ -154,7 +154,7 @@ msgstr "This mod is still in progress."
154154

155155
#: models/mod.py:232
156156
msgid "Ce mod est en cours de finition."
157-
msgstr "This mod is currently being finalised."
157+
msgstr "This mod is still in beta."
158158

159159
#: models/mod.py:237
160160
#, python-brace-format
@@ -319,7 +319,7 @@ msgstr ""
319319
"To ensure the greatest accuracy possible, please feel free to report any <a "
320320
"href=\"https://github.com/RiwsPy/lcc-docs/issues\">issues</a>, <a href="
321321
"\"https://github.com/RiwsPy/lcc-docs/discussions/65\">missing mods</a> or <a "
322-
"href=\"https://github.com/RiwsPy/lcc-docs/discussions/66\">oversight</a>."
322+
"href=\"https://github.com/RiwsPy/lcc-docs/discussions/66\">oversights</a>."
323323

324324
#: i18n.py:114
325325
msgid ""

models/mod.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,10 @@ def safe_note(self) -> int:
174174
note -= 1
175175
if "temnix" in self.authors: # déso
176176
note -= 1
177-
if ModStatus.ARCHIVED in self.status:
178-
note -= 1
179-
elif self.embedded_in or self.status & {ModStatus.EMBED, ModStatus.OBSOLETE}:
177+
if self.embedded_in or self.status & {ModStatus.EMBED, ModStatus.OBSOLETE}:
180178
note = 0
179+
elif ModStatus.ARCHIVED in self.status:
180+
note -= 1
181181
elif self.status & {ModStatus.UNRELEASED, ModStatus.BETA, ModStatus.MISSING}:
182182
note = min(1, note)
183183
return max(0, note)
@@ -220,7 +220,7 @@ def get_auto_notes(self, mod_id_to_name: dict[int, str] | None = None) -> list[s
220220
"⚠️ WeiDU : Ce mod écrase les fichiers et ne peut être désinstallé. Installez-le à vos risques et périls."
221221
)
222222
)
223-
if ModStatus.ARCHIVED in self.status:
223+
if ModStatus.ARCHIVED in self.status and ModStatus.EMBED not in self.status:
224224
auto_notes.append(
225225
_g(
226226
"Ce mod a été archivé par son auteur/mainteneur qui ne semble pas vouloir lui donner suite."
@@ -230,7 +230,7 @@ def get_auto_notes(self, mod_id_to_name: dict[int, str] | None = None) -> list[s
230230
auto_notes.append(_g("Ce mod est toujours en cours de réalisation."))
231231
elif ModStatus.BETA in self.status:
232232
auto_notes.append(_g("Ce mod est en cours de finition."))
233-
if ModStatus.MISSING in self.status:
233+
if ModStatus.MISSING in self.status and ModStatus.EMBED not in self.status:
234234
if self.urls:
235235
url = self.urls[0]
236236
note = _g(

0 commit comments

Comments
 (0)