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

   <!-- Greeting -->
   Hey @qazimun! I'm here to help you with that Superset-Worker-Beat container 
issue. I can assist with bug fixes, answer questions, and guide you to become a 
contributor. Let's tackle this together!
   
   <!-- Answer -->
   To resolve the missing script 'po2json.sh' error during the 
build-translation process in the Superset-Worker-Beat container, you need to 
ensure that the `po2json.sh` script is present in the 
`superset-frontend/scripts/` directory. Here is the content of the `po2json.sh` 
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 jed1.x $file $filename.json"
       po2json --domain superset --format jed1.x $file $filename.json
       prettier --write $filename.json
     fi
   done
   ```
   
   Ensure that this script is executable and located in the correct directory. 
You can create the script file and add the above content to it. Then, make it 
executable with the following command:
   
   ```sh
   chmod +x superset-frontend/scripts/po2json.sh
   ```
   
   This should resolve the missing script error 
<sup>[[1]](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