Skip to content

Commit

Permalink
Add missing messages to gettext
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowone committed Jun 9, 2018
1 parent 15ddf72 commit 99f2887
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions script/path.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,15 @@ var Path = {
var currentBagCapacity = 0;
// Add the non-craftables to the craftables
var carryable = $.extend({
'cured meat': { type: 'tool', desc: 'restores '+ World.MEAT_HEAL + ' hp' },
'bullets': { type: 'tool', desc: 'use with rifle' },
'cured meat': { type: 'tool', desc: _('restores') + ' ' + World.MEAT_HEAL + ' ' + _('hp') },
'bullets': { type: 'tool', desc: _('use with rifle') },
'grenade': {type: 'weapon' },
'bolas': {type: 'weapon' },
'laser rifle': {type: 'weapon' },
'energy cell': {type: 'tool', desc: 'use with laser rifle' },
'energy cell': {type: 'tool', desc: _('use with laser rifle') },
'bayonet': {type: 'weapon' },
'charm': {type: 'tool'},
'medicine': {type: 'tool', desc: 'restores ' + World.MEDS_HEAL + ' hp' }
'medicine': {type: 'tool', desc: _('restores') + ' ' + World.MEDS_HEAL + ' ' + _('hp') }
}, Room.Craftables);

for(var k in carryable) {
Expand Down

0 comments on commit 99f2887

Please sign in to comment.