Skip to content

Commit

Permalink
Added missing translation #246
Browse files Browse the repository at this point in the history
  • Loading branch information
GramThanos committed Mar 29, 2021
1 parent 7882cad commit b1920c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion source/core/locale/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ gca_languages["en"] = {
forge : {
forge_ended : "Forge ended!",
recraft_item : "Re-craft item",
show_hide_doll : "Show/Hide player dolls"
show_hide_doll : "Show/Hide player dolls",
horreum_material_change : "Horreum materials change",
},

// Merchants
Expand Down
2 changes: 1 addition & 1 deletion source/core/source/forge.js
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ var gca_forge = {
// Construct notification
let info = document.createElement('div');
info.className = 'show-item-quality';
info.appendChild(document.createTextNode('Horreum material change')); // TODO - add locale
info.appendChild(document.createTextNode(gca_locale.get('forge', 'horreum_material_change'))); // TODO - add locale
info.appendChild(document.createElement('br'));
for (let i = 0; i < changes.added.length; i++) {
this.addNotificationIcon(changes.added[i], true, info);
Expand Down

0 comments on commit b1920c8

Please sign in to comment.