1 diff --git a/source/creator/core/i18n.d b/source/creator/core/i18n.d
2 index 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;
13 prevIsDup = entryIsDup;
14 @@ -140,7 +140,7 @@ void markDups(TLEntry[] entries) {
18 - prevEntry.humanName ~= " (" ~ prevEntry.path ~ ")";
19 + prevEntry.humanName ~= " (" ~ prevEntry.code ~ ")";
20 prevEntry.humanNameC = prevEntry.humanName.toStringz;