bito-code-review[bot] commented on PR #41265:
URL: https://github.com/apache/superset/pull/41265#issuecomment-4760668573

   <!-- Bito Reply -->
   The flagged issue is correct. In 
`superset/translations/es/LC_MESSAGES/messages.po`, the `msgid` uses `%d` as a 
placeholder, but the `msgstr` uses `%s`. This mismatch causes `pybabel` to fail 
during compilation because it expects the placeholder types to match for 
`python-format` strings.
   
   To resolve this, you should update the translation to use `%d` instead of 
`%s`:
   
   ```po
   #, python-format
   msgid "... and %d more"
   msgstr "... y otros %d"
   ```
   
   I have checked the PR diff, and there are other similar entries that may 
need attention, such as `msgid "... and %s more records"` which currently uses 
`%s` in both `msgid` and `msgstr`. Would you like me to fetch all comments and 
implement fixes for the rest of the identified issues?
   
   **superset/translations/es/LC_MESSAGES/messages.po**
   ```
   #, python-format
   msgid "... and %d more"
   msgstr "... y otros %d"
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to