fix: fully translatable LaunchPad#113
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Collaborator
IssueWhen running the ? The import will delete your existing data! Are you sure you want to proceed? Yes
[2026-02-19 20:35:42.726] error: [FATAL] File './data/export_20250116105447.tar.gz' is not a valid Strapi data file.
Import process failed.Root CauseThe "seed": "cd strapi && yarn strapi import -f ./data/export_20250116105447.tar.gz --force",
"export": "cd strapi && yarn strapi export --no-encrypt -f ./data/export_20250116105447"However, when you run a new export, Strapi generates a file with a new timestamp (e.g., FixUse a consistent, non-timestamped name for the seed file. Update the scripts in "seed": "cd strapi && yarn strapi import -f ./data/seed-data.tar.gz --force",
"export": "cd strapi && yarn strapi export --no-encrypt -f ./data/seed-data"This ensures the export always overwrites the same file and the seed command always finds it, eliminating the filename mismatch entirely. |
Collaborator
Author
|
@PaulBratslavsky fixed 😛 |
Baldinof
approved these changes
Feb 20, 2026
jadenblack
pushed a commit
to indigo-services/strapi-launchpad
that referenced
this pull request
May 26, 2026
…ation fix: fully translatable LaunchPad
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does it do?
Made the frontend fully translatable, fixing a localisation undefined issue and also fixed some defensive coding around blog description
Why is it needed?
Main issue was it was only partially translated to french
How to test it?
Simply make sure the whole Strapi application doesn't crash and the connected Next.js application is fully working.
Some additional things to check:
strapi/packages.json.strapi/scripts/prefillLoginFields.jsworks.strapi/datafolder and update thestrapi/packages.jsonseed command if necessary.Related issue(s)/PR(s)
#87
#112
#53