choo121600 commented on issue #58487: URL: https://github.com/apache/airflow/issues/58487#issuecomment-3553642339
@sunank200 Let me leave a note about an issue I’m aware of. The following part of the code is currently causing the problem. Previously, the sorting logic used a lower-cased comparison, but the current behavior no longer applies lower() when sorting: https://github.com/apache/airflow/blob/5f7b74a3385357e03a1c345bd67106b273660f8c/dev/i18n/check_translations_completeness.py#L608 Additionally, one question came to mind: If we can assume that the English keys are always properly sorted, then instead of re-sorting the translation keys independently, it might be better to align the translation key order to match the English source. This would prevent unnecessary reordering and keep the structure consistent across locales. -- 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]
