chore(lint): elargir les regles ruff et rendre le format bloquant en CI

QUA-002, seconde moitie. Le depot etant formate, l elargissement porte sur
des defauts et non sur du brassage.

Ajoute a la selection : B (bugbear), C4, RET, SIM, UP. Le lot entier n a
produit que 24 signalements sur 76 fichiers -- le code etait plus propre
que l audit ne le craignait. Neuf corriges automatiquement, quinze a la
main.

SIM108 est ignore : forcer un ternaire se lit moins bien que le if/else
qu il remplace, au seul endroit ou il se declenche.

isort (I) n est PAS active. Il reordonnerait les imports de 48 fichiers,
soit une seconde passe de pur brassage juste apres le commit de formatage.
A faire, mais seul.

Deux vrais defauts trouves par les nouvelles regles
  - team_matches.edit_match faisait `except ValueError: pass` sur l heure de
    debut et l heure de fin, trois lignes sous un champ date qui, lui,
    signale et redirige. Une heure mal saisie etait donc acceptee par le
    formulaire, jetee, l ancienne valeur conservee -- et la page annoncait
    la reussite. Meme traitement que la date desormais.
  - backup.py levait BackupError depuis deux blocs `except` sans `from`,
    ce qui perdait la cause d origine dans la trace.

Ainsi que : un `return` explicite dans force_https, `%`-formatage remplace
dans log_auth_event (operations de chaine avant journalisation, pas des
gabarits de logger -- la redaction n est pas affectee), une compréhension
inutile, un `set(...)` en compréhension d ensemble, `open(..., 'r')`, une
variable de boucle inutilisee, et `contextlib.suppress` dans conftest.

CI : `ruff format --check` remplace le commentaire qui expliquait pourquoi
il etait absent.

263 tests passent. Les deux nouveaux messages sont traduits ; attention,
pybabel les avait apparies en `fuzzy` avec des entrees « date » existantes,
et une entree fuzzy est ignoree a l execution.

Co-Authored-By: Claude Opus 5 <[email protected]>
This commit is contained in:
GGThed
2026-08-08 15:59:40 -04:00
co-authored by Claude Opus 5
parent 7cec18c139
commit 8e3865f557
17 changed files with 475 additions and 439 deletions
Binary file not shown.
+182 -174
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: team-tryouts VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-08-08 15:07-0400\n"
"POT-Creation-Date: 2026-08-08 15:57-0400\n"
"PO-Revision-Date: 2026-08-07 20:22-0400\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: en\n"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.18.0\n"
#: app/validators.py:43
#: app/validators.py:49
msgid ""
"Password must be at least 8 characters with uppercase, lowercase, and a "
"number."
@@ -27,72 +27,72 @@ msgstr ""
"Password must be at least 8 characters with uppercase, lowercase, and a "
"number."
#: app/validators.py:62
#: app/validators.py:67
msgid "Username must be 3-30 characters (letters, numbers, underscore, hyphen)."
msgstr "Username must be 3-30 characters (letters, numbers, underscore, hyphen)."
#: app/validators.py:81
#: app/validators.py:86
msgid "Invalid Discord username format."
msgstr "Invalid Discord username format."
#: app/validators.py:98
#: app/validators.py:103
msgid "Discord User ID must be a 17-20 digit number."
msgstr "Discord User ID must be a 17-20 digit number."
#: app/validators.py:116
#: app/validators.py:121
msgid "Invalid phone number format."
msgstr "Invalid phone number format."
#: app/validators.py:155
#: app/validators.py:163
msgid "Username is required."
msgstr "Username is required."
#: app/validators.py:159
#: app/validators.py:167
msgid "Password is required."
msgstr "Password is required."
#: app/validators.py:180 app/validators.py:251
#: app/validators.py:189 app/validators.py:261
msgid "Username must be 3-80 characters."
msgstr "Username must be 3-80 characters."
#: app/validators.py:186
#: app/validators.py:195
msgid "Email must be 120 characters or less."
msgstr "Email must be 120 characters or less."
#: app/validators.py:199 app/validators.py:266 app/validators.py:299
#: app/validators.py:365
#: app/validators.py:208 app/validators.py:276 app/validators.py:307
#: app/validators.py:371
msgid "Full name is required."
msgstr "Full name is required."
#: app/validators.py:234
#: app/validators.py:243
msgid "Passwords do not match."
msgstr "Passwords do not match."
#: app/validators.py:272 app/validators.py:309
#: app/validators.py:280 app/validators.py:315
msgid "Invalid role selected."
msgstr "Invalid role selected."
#: app/validators.py:409
#: app/validators.py:416
msgid "Player must be selected."
msgstr "Player must be selected."
#: app/validators.py:412
#: app/validators.py:419
msgid "Notes must be 2000 characters or less."
msgstr "Notes must be 2000 characters or less."
#: app/validators.py:431
#: app/validators.py:438
msgid "Date must be in YYYY-MM-DD format."
msgstr "Date must be in YYYY-MM-DD format."
#: app/validators.py:438 app/validators.py:473
#: app/validators.py:443 app/validators.py:470
msgid "Start time must be in HH:MM format."
msgstr "Start time must be in HH:MM format."
#: app/validators.py:445
#: app/validators.py:447
msgid "End time must be in HH:MM format."
msgstr "End time must be in HH:MM format."
#: app/validators.py:449
#: app/validators.py:450
msgid "Points must be 2000 characters or less."
msgstr "Points must be 2000 characters or less."
@@ -100,22 +100,22 @@ msgstr "Points must be 2000 characters or less."
msgid "Day must be 0 (Monday) to 6 (Sunday)."
msgstr "Day must be 0 (Monday) to 6 (Sunday)."
#: app/routes/auth.py:186 app/routes/auth.py:314 app/routes/users.py:83
#: app/routes/users.py:687
#: app/routes/auth.py:186 app/routes/auth.py:322 app/routes/users.py:106
#: app/routes/users.py:821
#, python-format
msgid "%(field)s: %(msg)s"
msgstr "%(field)s: %(msg)s"
#: app/routes/auth.py:204
#: app/routes/auth.py:203
msgid "This account has been deactivated."
msgstr "This account has been deactivated."
#: app/routes/auth.py:242
#: app/routes/auth.py:238
#, python-format
msgid "Welcome back, %(username)s!"
msgstr "Welcome back, %(username)s!"
#: app/routes/auth.py:263
#: app/routes/auth.py:268
msgid ""
"Login unsuccessful. Please check your username and password, or ask a "
"president for help."
@@ -123,27 +123,27 @@ msgstr ""
"Login unsuccessful. Please check your username and password, or ask a "
"president for help."
#: app/routes/auth.py:295
#: app/routes/auth.py:303
msgid "Incorrect CAPTCHA answer. Please try again."
msgstr "Incorrect CAPTCHA answer. Please try again."
#: app/routes/auth.py:337 app/routes/users.py:370
#: app/routes/auth.py:345 app/routes/users.py:436
msgid "Username already exists."
msgstr "Username already exists."
#: app/routes/auth.py:349 app/routes/users.py:374
#: app/routes/auth.py:357 app/routes/users.py:440
msgid "Email already registered."
msgstr "Email already registered."
#: app/routes/auth.py:395
#: app/routes/auth.py:404
msgid "Your account has been created! You can now log in."
msgstr "Your account has been created! You can now log in."
#: app/routes/auth.py:421
#: app/routes/auth.py:430
msgid "Discord OAuth2 is not configured."
msgstr "Discord OAuth2 is not configured."
#: app/routes/auth.py:461
#: app/routes/auth.py:471
msgid ""
"Discord authorization could not be verified. Please start the connection "
"again from this page."
@@ -151,410 +151,418 @@ msgstr ""
"Discord authorization could not be verified. Please start the connection "
"again from this page."
#: app/routes/auth.py:469
#: app/routes/auth.py:480
msgid "Discord authorization failed. No code received."
msgstr "Discord authorization failed. No code received."
#: app/routes/auth.py:493
#: app/routes/auth.py:504
msgid "Failed to connect to Discord. Please try again."
msgstr "Failed to connect to Discord. Please try again."
#: app/routes/auth.py:497
#: app/routes/auth.py:508
msgid "Failed to obtain Discord access token."
msgstr "Failed to obtain Discord access token."
#: app/routes/auth.py:512
#: app/routes/auth.py:523
msgid "Failed to fetch Discord user profile."
msgstr "Failed to fetch Discord user profile."
#: app/routes/auth.py:559
#: app/routes/auth.py:570
msgid "Discord account connected! Your profile has been pre-filled."
msgstr "Discord account connected! Your profile has been pre-filled."
#: app/routes/auth.py:587
#: app/routes/auth.py:598
msgid "You have been logged out."
msgstr "You have been logged out."
#: app/routes/evaluations.py:41
#: app/routes/evaluations.py:45
msgid "You do not have permission to view evaluations."
msgstr "You do not have permission to view evaluations."
#: app/routes/evaluations.py:122
#: app/routes/evaluations.py:135
msgid "You do not have permission to evaluate players."
msgstr "You do not have permission to evaluate players."
#: app/routes/evaluations.py:127 app/routes/evaluations.py:220
#: app/routes/evaluations.py:140 app/routes/evaluations.py:263
msgid "You do not have permission to evaluate players in this tryout."
msgstr "You do not have permission to evaluate players in this tryout."
#: app/routes/evaluations.py:134
#: app/routes/evaluations.py:151
msgid "Player is not registered for this tryout."
msgstr "Player is not registered for this tryout."
#: app/routes/evaluations.py:139
#: app/routes/evaluations.py:156
msgid "Can only evaluate players."
msgstr "Can only evaluate players."
#: app/routes/evaluations.py:177
#: app/routes/evaluations.py:208
msgid "Evaluation updated!"
msgstr "Evaluation updated!"
#: app/routes/evaluations.py:190
#: app/routes/evaluations.py:228
msgid "Evaluation submitted successfully!"
msgstr "Evaluation submitted successfully!"
#: app/routes/evaluations.py:215 app/routes/teams.py:236
#: app/routes/teams.py:267 app/routes/teams.py:298 app/routes/teams.py:323
#: app/routes/teams.py:348 app/routes/teams.py:380 app/routes/tryouts.py:341
#: app/routes/tryouts.py:357 app/routes/tryouts.py:376
#: app/routes/tryouts.py:413 app/routes/tryouts.py:448
#: app/routes/tryouts.py:467
#: app/routes/evaluations.py:258 app/routes/teams.py:268
#: app/routes/teams.py:309 app/routes/teams.py:350 app/routes/teams.py:375
#: app/routes/teams.py:400 app/routes/teams.py:435 app/routes/tryouts.py:472
#: app/routes/tryouts.py:488 app/routes/tryouts.py:508
#: app/routes/tryouts.py:547 app/routes/tryouts.py:583
#: app/routes/tryouts.py:602
msgid "Permission denied."
msgstr "Permission denied."
#: app/routes/main.py:44
#: app/routes/main.py:53
msgid "That language is not available."
msgstr "That language is not available."
#: app/routes/matches.py:201
#: app/routes/matches.py:245
msgid "You do not have permission to schedule matches for this tryout."
msgstr "You do not have permission to schedule matches for this tryout."
#: app/routes/matches.py:205 app/routes/matches.py:336
#: app/routes/matches.py:249 app/routes/matches.py:422
msgid "This tryout has ended. Matches can no longer be created or modified."
msgstr "This tryout has ended. Matches can no longer be created or modified."
#: app/routes/matches.py:224
#: app/routes/matches.py:270
msgid "Start time is required. Please select a time slot."
msgstr "Start time is required. Please select a time slot."
#: app/routes/matches.py:231 app/routes/matches.py:359
#: app/routes/team_matches.py:123 app/routes/team_matches.py:206
#: app/routes/matches.py:282 app/routes/matches.py:445
#: app/routes/team_matches.py:151 app/routes/team_matches.py:255
msgid "Invalid date format."
msgstr "Invalid date format."
#: app/routes/matches.py:246 app/routes/team_matches.py:140
#: app/routes/matches.py:302 app/routes/team_matches.py:172
msgid "Invalid time format."
msgstr "Invalid time format."
#: app/routes/matches.py:317
#: app/routes/matches.py:398
msgid "Match scheduled successfully!"
msgstr "Match scheduled successfully!"
#: app/routes/matches.py:332 app/routes/team_matches.py:193
#: app/routes/matches.py:418 app/routes/team_matches.py:242
msgid "You do not have permission to edit this match."
msgstr "You do not have permission to edit this match."
#: app/routes/matches.py:365
#: app/routes/matches.py:456
msgid "Start time is required."
msgstr "Start time is required."
#: app/routes/matches.py:461 app/routes/team_matches.py:229
#: app/routes/matches.py:578 app/routes/team_matches.py:284
msgid "Match updated successfully!"
msgstr "Match updated successfully!"
#: app/routes/matches.py:506 app/routes/team_matches.py:243
#: app/routes/matches.py:631 app/routes/team_matches.py:299
msgid "You do not have permission to delete this match."
msgstr "You do not have permission to delete this match."
#: app/routes/matches.py:509
#: app/routes/matches.py:634
msgid "This tryout has ended. Matches can no longer be deleted."
msgstr "This tryout has ended. Matches can no longer be deleted."
#: app/routes/matches.py:521 app/routes/team_matches.py:247
#: app/routes/matches.py:647 app/routes/team_matches.py:303
msgid "Match deleted successfully."
msgstr "Match deleted successfully."
#: app/routes/team_matches.py:81
#: app/routes/team_matches.py:98
msgid "You do not have permission to schedule matches for this team."
msgstr "You do not have permission to schedule matches for this team."
#: app/routes/team_matches.py:116
#: app/routes/team_matches.py:140
msgid "Date is required."
msgstr "Date is required."
#: app/routes/team_matches.py:179
#: app/routes/team_matches.py:228
#, python-format
msgid "Team match \"%(title)s\" scheduled successfully!"
msgstr "Team match \"%(title)s\" scheduled successfully!"
#: app/routes/teams.py:28
#: app/routes/team_matches.py:267
msgid "Invalid start time format."
msgstr "Invalid start time format."
#: app/routes/team_matches.py:275
msgid "Invalid end time format."
msgstr "Invalid end time format."
#: app/routes/teams.py:38
msgid "Use My Team(s) to view your teams."
msgstr "Use My Team(s) to view your teams."
#: app/routes/teams.py:31
#: app/routes/teams.py:41
msgid "You do not have permission to view teams."
msgstr "You do not have permission to view teams."
#: app/routes/teams.py:48
#: app/routes/teams.py:68
msgid "This page is for players."
msgstr "This page is for players."
#: app/routes/teams.py:90
#: app/routes/teams.py:121
msgid "You do not have permission to create teams."
msgstr "You do not have permission to create teams."
#: app/routes/teams.py:98 app/routes/teams.py:143
#: app/routes/teams.py:129 app/routes/teams.py:174
msgid "Team name is required."
msgstr "Team name is required."
#: app/routes/teams.py:103 app/routes/teams.py:148
#: app/routes/teams.py:134 app/routes/teams.py:179
#, python-format
msgid "Team \"%(name)s\" already exists."
msgstr "Team \"%(name)s\" already exists."
#: app/routes/teams.py:125
#: app/routes/teams.py:156
#, python-format
msgid "Team \"%(name)s\" created successfully!"
msgstr "Team \"%(name)s\" created successfully!"
#: app/routes/teams.py:135
#: app/routes/teams.py:166
msgid "You do not have permission to edit this team."
msgstr "You do not have permission to edit this team."
#: app/routes/teams.py:186
#: app/routes/teams.py:217
#, python-format
msgid "Team \"%(name)s\" updated successfully!"
msgstr "Team \"%(name)s\" updated successfully!"
#: app/routes/teams.py:195
#: app/routes/teams.py:226
msgid "You do not have permission to delete teams."
msgstr "You do not have permission to delete teams."
#: app/routes/teams.py:226
#: app/routes/teams.py:258
#, python-format
msgid "Team \"%(name)s\" deleted successfully."
msgstr "Team \"%(name)s\" deleted successfully."
#: app/routes/teams.py:241
#: app/routes/teams.py:273
msgid "Please select a coach."
msgstr "Please select a coach."
#: app/routes/teams.py:246
#: app/routes/teams.py:278
msgid "Only coaches can be assigned as coach."
msgstr "Only coaches can be assigned as coach."
#: app/routes/teams.py:250
#: app/routes/teams.py:284
#, python-format
msgid "%(username)s is already a coach of %(name)s."
msgstr "%(username)s is already a coach of %(name)s."
#: app/routes/teams.py:257
#: app/routes/teams.py:297
#, python-format
msgid "%(username)s added as coach of %(name)s."
msgstr "%(username)s added as coach of %(name)s."
#: app/routes/teams.py:272
#: app/routes/teams.py:314
msgid "Please select a manager."
msgstr "Please select a manager."
#: app/routes/teams.py:277
#: app/routes/teams.py:319
msgid "Only managers can be assigned as manager."
msgstr "Only managers can be assigned as manager."
#: app/routes/teams.py:281
#: app/routes/teams.py:325
#, python-format
msgid "%(username)s is already a manager of %(name)s."
msgstr "%(username)s is already a manager of %(name)s."
#: app/routes/teams.py:288
#: app/routes/teams.py:338
#, python-format
msgid "%(username)s added as manager of %(name)s."
msgstr "%(username)s added as manager of %(name)s."
#: app/routes/teams.py:313
#: app/routes/teams.py:365
#, python-format
msgid "Coach removed from %(name)s."
msgstr "Coach removed from %(name)s."
#: app/routes/teams.py:338
#: app/routes/teams.py:390
#, python-format
msgid "Manager removed from %(name)s."
msgstr "Manager removed from %(name)s."
#: app/routes/teams.py:354 app/routes/tryouts.py:380 app/routes/tryouts.py:478
#: app/routes/teams.py:406 app/routes/tryouts.py:512 app/routes/tryouts.py:613
msgid "Please select a player."
msgstr "Please select a player."
#: app/routes/teams.py:359
#: app/routes/teams.py:411
msgid "Can only assign players to teams."
msgstr "Can only assign players to teams."
#: app/routes/teams.py:364
#: app/routes/teams.py:417
#, python-format
msgid "%(username)s is already on %(name)s."
msgstr "%(username)s is already on %(name)s."
#: app/routes/teams.py:370
#: app/routes/teams.py:425
#, python-format
msgid "%(username)s added to %(name)s!"
msgstr "%(username)s added to %(name)s!"
#: app/routes/teams.py:386 app/routes/teams.py:449
#: app/routes/teams.py:442 app/routes/teams.py:515
#, python-format
msgid "%(username)s is not on %(name)s."
msgstr "%(username)s is not on %(name)s."
#: app/routes/teams.py:391
#: app/routes/teams.py:450
#, python-format
msgid "%(username)s removed from %(name)s."
msgstr "%(username)s removed from %(name)s."
#: app/routes/teams.py:421 app/routes/teams.py:439
#: app/routes/teams.py:486 app/routes/teams.py:504
msgid "You do not have permission to add notes to this team."
msgstr "You do not have permission to add notes to this team."
#: app/routes/teams.py:429
#: app/routes/teams.py:494
msgid "Team notes added successfully!"
msgstr "Team notes added successfully!"
#: app/routes/teams.py:444 app/routes/users.py:1266 app/routes/users.py:1308
#: app/routes/teams.py:509 app/routes/users.py:1530 app/routes/users.py:1573
msgid "Can only add notes for players."
msgstr "Can only add notes for players."
#: app/routes/teams.py:457
#: app/routes/teams.py:525
#, python-format
msgid "Note added for %(username)s!"
msgstr "Note added for %(username)s!"
#: app/routes/tryouts.py:43
#: app/routes/tryouts.py:56
msgid "You do not have permission to create tryouts."
msgstr "You do not have permission to create tryouts."
#: app/routes/tryouts.py:65 app/routes/tryouts.py:140
#: app/routes/tryouts.py:82 app/routes/tryouts.py:189
msgid "Invalid start date format."
msgstr "Invalid start date format."
#: app/routes/tryouts.py:74 app/routes/tryouts.py:149
#: app/routes/tryouts.py:97 app/routes/tryouts.py:204
msgid "End date cannot be before start date."
msgstr "End date cannot be before start date."
#: app/routes/tryouts.py:78 app/routes/tryouts.py:153
#: app/routes/tryouts.py:107 app/routes/tryouts.py:214
msgid "Invalid end date format."
msgstr "Invalid end date format."
#: app/routes/tryouts.py:100
#: app/routes/tryouts.py:139
msgid "Tryout created successfully!"
msgstr "Tryout created successfully!"
#: app/routes/tryouts.py:114
#: app/routes/tryouts.py:159
msgid "You do not have permission to edit this tryout."
msgstr "You do not have permission to edit this tryout."
#: app/routes/tryouts.py:118
#: app/routes/tryouts.py:163
msgid "This tryout has ended and can no longer be modified."
msgstr "This tryout has ended and can no longer be modified."
#: app/routes/tryouts.py:175
#: app/routes/tryouts.py:242
msgid "Tryout updated successfully!"
msgstr "Tryout updated successfully!"
#: app/routes/tryouts.py:207
#: app/routes/tryouts.py:289
msgid "You do not have permission to view this tryout."
msgstr "You do not have permission to view this tryout."
#: app/routes/tryouts.py:309
#: app/routes/tryouts.py:439
msgid "Only players can register for tryouts."
msgstr "Only players can register for tryouts."
#: app/routes/tryouts.py:313
#: app/routes/tryouts.py:443
msgid "This tryout is not accepting registrations."
msgstr "This tryout is not accepting registrations."
#: app/routes/tryouts.py:319
#: app/routes/tryouts.py:450
msgid "You are already registered for this tryout."
msgstr "You are already registered for this tryout."
#: app/routes/tryouts.py:325 app/routes/tryouts.py:397
#: app/routes/tryouts.py:456 app/routes/tryouts.py:531
msgid "This tryout is full."
msgstr "This tryout is full."
#: app/routes/tryouts.py:331
#: app/routes/tryouts.py:462
msgid "Successfully registered for tryout!"
msgstr "Successfully registered for tryout!"
#: app/routes/tryouts.py:347
#: app/routes/tryouts.py:478
#, python-format
msgid "Tryout status updated to %(new_status)s."
msgstr "Tryout status updated to %(new_status)s."
#: app/routes/tryouts.py:366
#: app/routes/tryouts.py:498
msgid "Registration status updated."
msgstr "Registration status updated."
#: app/routes/tryouts.py:385
#: app/routes/tryouts.py:517
msgid "Can only register players."
msgstr "Can only register players."
#: app/routes/tryouts.py:391
#: app/routes/tryouts.py:523
#, python-format
msgid "%(username)s is already registered for this tryout."
msgstr "%(username)s is already registered for this tryout."
#: app/routes/tryouts.py:403
#: app/routes/tryouts.py:537
#, python-format
msgid "%(username)s registered for tryout!"
msgstr "%(username)s registered for tryout!"
#: app/routes/tryouts.py:438
#: app/routes/tryouts.py:573
#, python-format
msgid "%(username)s removed from tryout."
msgstr "%(username)s removed from tryout."
#: app/routes/tryouts.py:456
#: app/routes/tryouts.py:591
#, python-format
msgid "Team \"%(team_name)s\" created!"
msgstr "Team \"%(team_name)s\" created!"
#: app/routes/tryouts.py:485
#: app/routes/tryouts.py:622
msgid "That player is not registered for this tryout."
msgstr "That player is not registered for this tryout."
#: app/routes/tryouts.py:491
#: app/routes/tryouts.py:628
msgid "Player is already on this team."
msgstr "Player is already on this team."
#: app/routes/tryouts.py:496
#: app/routes/tryouts.py:633
msgid "Player added to team!"
msgstr "Player added to team!"
#: app/routes/tryouts.py:506
#: app/routes/tryouts.py:643
msgid "You do not have permission to delete this tryout."
msgstr "You do not have permission to delete this tryout."
#: app/routes/tryouts.py:541
#: app/routes/tryouts.py:679
msgid "Tryout deleted successfully."
msgstr "Tryout deleted successfully."
#: app/routes/users.py:61
#: app/routes/users.py:83
msgid "No file selected."
msgstr "No file selected."
#: app/routes/users.py:65
#: app/routes/users.py:87
msgid "Only PDF files are allowed for contracts."
msgstr "Only PDF files are allowed for contracts."
#: app/routes/users.py:70
#: app/routes/users.py:92
msgid "That file is not a PDF, whatever its name says."
msgstr "That file is not a PDF, whatever its name says."
#: app/routes/users.py:153
#: app/routes/users.py:181
msgid "Only the president can manage users."
msgstr "Only the president can manage users."
#: app/routes/users.py:165
#: app/routes/users.py:193
msgid "Only the president can edit users."
msgstr "Only the president can edit users."
#: app/routes/users.py:202
#: app/routes/users.py:234
msgid "Email already in use by another account."
msgstr "Email already in use by another account."
#: app/routes/users.py:212
#: app/routes/users.py:245
msgid "You cannot change your own role. Ask another president to do it."
msgstr "You cannot change your own role. Ask another president to do it."
#: app/routes/users.py:223
#: app/routes/users.py:258
msgid ""
"This is the last active president. Promote another account before "
"changing this one."
@@ -562,172 +570,172 @@ msgstr ""
"This is the last active president. Promote another account before "
"changing this one."
#: app/routes/users.py:285
#: app/routes/users.py:337
#, python-format
msgid "User %(username)s updated successfully!"
msgstr "User %(username)s updated successfully!"
#: app/routes/users.py:300
#: app/routes/users.py:358
msgid "Only the president can delete users."
msgstr "Only the president can delete users."
#: app/routes/users.py:304
#: app/routes/users.py:362
msgid "You cannot delete your own account."
msgstr "You cannot delete your own account."
#: app/routes/users.py:341
#: app/routes/users.py:405
#, python-format
msgid "User %(deleted_username)s has been removed."
msgstr "User %(deleted_username)s has been removed."
#: app/routes/users.py:350
#: app/routes/users.py:416
msgid "Only the president can create users."
msgstr "Only the president can create users."
#: app/routes/users.py:389
#: app/routes/users.py:464
#, python-format
msgid "User %(full_name)s created as %(role)s!"
msgstr "User %(full_name)s created as %(role)s!"
#: app/routes/users.py:446
#: app/routes/users.py:534
msgid "Username already taken."
msgstr "Username already taken."
#: app/routes/users.py:452
#: app/routes/users.py:544
msgid "Email already in use."
msgstr "Email already in use."
#: app/routes/users.py:477
#: app/routes/users.py:574
msgid "Profile updated successfully!"
msgstr "Profile updated successfully!"
#: app/routes/users.py:675
#: app/routes/users.py:809
msgid "Only presidents, managers, and coaches can upload contracts."
msgstr "Only presidents, managers, and coaches can upload contracts."
#: app/routes/users.py:694
#: app/routes/users.py:828
msgid "You do not have permission to upload a contract for this player."
msgstr "You do not have permission to upload a contract for this player."
#: app/routes/users.py:733
#: app/routes/users.py:869
#, python-format
msgid "Contract uploaded successfully for %(username)s!"
msgstr "Contract uploaded successfully for %(username)s!"
#: app/routes/users.py:745
#: app/routes/users.py:883
msgid "Only the player can upload their signed contract."
msgstr "Only the player can upload their signed contract."
#: app/routes/users.py:762
#: app/routes/users.py:902
msgid "Signed contract uploaded successfully!"
msgstr "Signed contract uploaded successfully!"
#: app/routes/users.py:772 app/routes/users.py:783
#: app/routes/users.py:912 app/routes/users.py:925
msgid "You do not have permission to download this contract."
msgstr "You do not have permission to download this contract."
#: app/routes/users.py:786
#: app/routes/users.py:928
msgid "No signed contract available."
msgstr "No signed contract available."
#: app/routes/users.py:853
#: app/routes/users.py:1034
msgid "Only players can request One on One sessions."
msgstr "Only players can request One on One sessions."
#: app/routes/users.py:866
#: app/routes/users.py:1047
msgid "You do not have a coach assigned to your team."
msgstr "You do not have a coach assigned to your team."
#: app/routes/users.py:893
#: app/routes/users.py:1082
msgid "Cannot request One on One - no coach assigned."
msgstr "Cannot request One on One - no coach assigned."
#: app/routes/users.py:901
#: app/routes/users.py:1090
msgid "Invalid date or time format."
msgstr "Invalid date or time format."
#: app/routes/users.py:915
#: app/routes/users.py:1104
msgid "The requested time is not within the coach's availability."
msgstr "The requested time is not within the coach's availability."
#: app/routes/users.py:938
#: app/routes/users.py:1132
msgid "Your One on One request has been submitted!"
msgstr "Your One on One request has been submitted!"
#: app/routes/users.py:973
#: app/routes/users.py:1176
msgid "Only coaches can accept One on One requests."
msgstr "Only coaches can accept One on One requests."
#: app/routes/users.py:979 app/routes/users.py:1020
#: app/routes/users.py:1182 app/routes/users.py:1232
msgid "This request is not for you."
msgstr "This request is not for you."
#: app/routes/users.py:983 app/routes/users.py:1024
#: app/routes/users.py:1186 app/routes/users.py:1236
msgid "This request has already been processed."
msgstr "This request has already been processed."
#: app/routes/users.py:1005
#: app/routes/users.py:1213
#, python-format
msgid "One on One request from %(player)s has been approved!"
msgstr "One on One request from %(player)s has been approved!"
#: app/routes/users.py:1014
#: app/routes/users.py:1226
msgid "Only coaches can reject One on One requests."
msgstr "Only coaches can reject One on One requests."
#: app/routes/users.py:1051
#: app/routes/users.py:1268
#, python-format
msgid "One on One request from %(player)s has been rejected."
msgstr "One on One request from %(player)s has been rejected."
#: app/routes/users.py:1064
#: app/routes/users.py:1286
msgid "This page is for players only."
msgstr "This page is for players only."
#: app/routes/users.py:1095
#: app/routes/users.py:1328
msgid "Only coaches can manage availability."
msgstr "Only coaches can manage availability."
#: app/routes/users.py:1157
#: app/routes/users.py:1394
msgid "Only coaches can access the notes dashboard."
msgstr "Only coaches can access the notes dashboard."
#: app/routes/users.py:1221
#: app/routes/users.py:1484
msgid "Only coaches can manage team notes."
msgstr "Only coaches can manage team notes."
#: app/routes/users.py:1227
#: app/routes/users.py:1490
msgid "You are not assigned to a team."
msgstr "You are not assigned to a team."
#: app/routes/users.py:1240
#: app/routes/users.py:1503
msgid "Team notes saved successfully!"
msgstr "Team notes saved successfully!"
#: app/routes/users.py:1254
#: app/routes/users.py:1518
msgid "Only coaches can manage personal notes."
msgstr "Only coaches can manage personal notes."
#: app/routes/users.py:1261 app/routes/users.py:1303 app/routes/users.py:1353
#: app/routes/users.py:1404
#: app/routes/users.py:1525 app/routes/users.py:1568 app/routes/users.py:1619
#: app/routes/users.py:1673
msgid "Player and content are required."
msgstr "Player and content are required."
#: app/routes/users.py:1270 app/routes/users.py:1312 app/routes/users.py:1357
#: app/routes/users.py:1408
#: app/routes/users.py:1534 app/routes/users.py:1577 app/routes/users.py:1623
#: app/routes/users.py:1677
msgid "You can only write notes about players you work with."
msgstr "You can only write notes about players you work with."
#: app/routes/users.py:1280 app/routes/users.py:1325
#: app/routes/users.py:1544 app/routes/users.py:1590
#, python-format
msgid "Note added for %(username)s."
msgstr "Note added for %(username)s."
#: app/routes/users.py:1293 app/routes/users.py:1338 app/routes/users.py:1388
#: app/routes/users.py:1558 app/routes/users.py:1604 app/routes/users.py:1657
msgid "Only coaches can add personal notes."
msgstr "Only coaches can add personal notes."
#: app/routes/users.py:1368 app/routes/users.py:1419
#: app/routes/users.py:1634 app/routes/users.py:1688
msgid "Note added successfully."
msgstr "Note added successfully."