mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 17:45:22 +00:00
Also add a new dialog to get user input when file names conflict. Previously, we were not supplying a list of existing files, so existing files were silently written over. Fixes: https://github.com/pybricks/support/issues/833
13 lines
476 B
JSON
13 lines
476 B
JSON
{
|
|
"title": "Replace existing file?",
|
|
"message": "A file already exists with the same name as the imported file '{fileName}'.",
|
|
"option": {
|
|
"remember": "Remember this answer when resolving additional conflicts."
|
|
},
|
|
"action": {
|
|
"skip": "Keep the existing file and skip importing this file",
|
|
"replace": "Replace the existing file with the imported file",
|
|
"rename": "Keep the existing file and rename the imported file"
|
|
}
|
|
}
|