Fix: Rename guide images to remove accented characters (Unicode normalization) - #30
Draft
phildupuis wants to merge 2 commits into
Draft
phildupuis wants to merge 2 commits into
phildupuis wants to merge 2 commits into
Conversation
This fixes Unicode normalization issues (NFD vs NFC) on macOS that caused these files to appear as both 'untracked' and 'deleted' simultaneously. Renamed files: - step1-pàp.png -> step1-pap.png - ajouter participant (fenêtre 2).png -> ajouter-participant-fenetre-2.png - créer nouveau compte.png -> creer-nouveau-compte.png - désélectionner participants.png -> deselectionner-participants.png - domaine créé.png -> domaine-cree.png - rédaction fil (fenêtre 1).png -> redaction-fil-fenetre-1.png - vérifier_unité_org.png -> verifier-unite-org.png Also updated markdown references to use new filenames.
Updated references in: - guides-fr/pour-les-patients-et-proches-aidants/accepter-une-invitation.md - guides-fr/pour-les-professionnels/canaux-de-soins/associer-un-fil-de-discussion-clinique-a-un-canal-de-soins-existant.md - guides-fr/pour-les-administrateurs/domaines/creer-un-domaine.md - guides-fr/pour-les-professionnels/equipes/ecrire-a-une-equipe.md
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.
Problem
On macOS, files with accented characters in their names (like
créer,fenêtre,désélectionner) cause Unicode normalization issues (NFD vs NFC). This results in these files appearing simultaneously as:This makes it impossible to work cleanly with git on these files.
Solution
Rename the problematic files to use only ASCII characters and hyphens instead of spaces:
step1-pàp.pngstep1-pap.pngajouter participant (fenêtre 2).pngajouter-participant-fenetre-2.pngcréer nouveau compte.pngcreer-nouveau-compte.pngdésélectionner participants.pngdeselectionner-participants.pngdomaine créé.pngdomaine-cree.pngrédaction fil (fenêtre 1).pngredaction-fil-fenetre-1.pngvérifier_unité_org.pngverifier-unite-org.pngChanges
Note
There are ~180 other files with accented characters in the repository. This PR only fixes the 7 files that were causing immediate issues. A follow-up PR could address the remaining files if desired.
Pull Request opened by Augment Code with guidance from the PR author