dosubot[bot] commented on issue #30024:
URL: https://github.com/apache/superset/issues/30024#issuecomment-2312408015

   <!-- Greeting -->
   Hello @nexovec! I'm here to help you with any issues you're experiencing 
while working on Superset. I'm a bot designed to assist with bug resolution, 
answer questions, and guide you on your contribution journey.
   
   <!-- Answer -->
   I found a similar unsolved discussion that might be relevant to your issue: 
[Problem compiling 
translations](https://github.com/apache/superset/discussions/26763) 
<sup>[[1]](https://github.com/apache/superset/discussions/26763)</sup>.
   
   To resolve the `DeprecationWarning: Invalid 'main' field` error when using 
`po2json` to generate translations for Superset, you need to update the 
`po2json` command in the script to use a valid format. The `jed1.x` format is 
deprecated. You should use the `jed` format instead.
   
   Here is the updated script:
   
   ```sh
   #!/bin/bash
   # Licensed to the Apache Software Foundation (ASF) under one
   # or more contributor license agreements.  See the NOTICE file
   # distributed with this work for additional information
   # regarding copyright ownership.  The ASF licenses this file
   # to you under the Apache License, Version 2.0 (the
   # "License"); you may not use this file except in compliance
   # with the License.  You may obtain a copy of the License at
   #
   #   http://www.apache.org/licenses/LICENSE-2.0
   #
   # Unless required by applicable law or agreed to in writing,
   # software distributed under the License is distributed on an
   # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
   # KIND, either express or implied.  See the License for the
   # specific language governing permissions and limitations
   # under the License.
   
   
   # This script generates .json files from .po translation files
   # these json files are used by the frontend to load translations
   
   set -e
   
   for file in $( find ../superset/translations/** -name '*.po' );
   do
     extension=${file##*.}
     filename="${file%.*}"
     if [ $extension == "po" ]
     then
       echo "po2json --domain superset --format jed $file $filename.json"
       po2json --domain superset --format jed $file $filename.json
       prettier --write $filename.json
     fi
   done
   ```
   
   By changing `--format jed1.x` to `--format jed`, you should be able to 
resolve the deprecation warning 
<sup>[[2]](https://github.com/apache/superset/blob/master/superset-frontend/scripts/po2json.sh)</sup>.
   
   
   <!-- Dosu Comment Footer -->
   *To continue talking to [Dosu](https://dosu.dev), mention @dosu.*
   


-- 
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