nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 22 lines 919 B view raw
1diff --git a/source/creator/core/i18n.d b/source/creator/core/i18n.d 2index 38761dd..f276ca1 100644 3--- a/source/creator/core/i18n.d 4+++ b/source/creator/core/i18n.d 5@@ -132,7 +132,7 @@ void markDups(TLEntry[] entries) { 6 // If prevEntry has same humanName as entry before prevEntry, or as this entry, 7 // disambiguate with the source folder 8 if (prevIsDup || entryIsDup) { 9- prevEntry.humanName ~= " (" ~ prevEntry.path ~ ")"; 10+ prevEntry.humanName ~= " (" ~ prevEntry.code ~ ")"; 11 prevEntry.humanNameC = prevEntry.humanName.toStringz; 12 } 13 prevIsDup = entryIsDup; 14@@ -140,7 +140,7 @@ void markDups(TLEntry[] entries) { 15 } 16 17 if (prevIsDup) { 18- prevEntry.humanName ~= " (" ~ prevEntry.path ~ ")"; 19+ prevEntry.humanName ~= " (" ~ prevEntry.code ~ ")"; 20 prevEntry.humanNameC = prevEntry.humanName.toStringz; 21 } 22 }