1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-07-03 08:51:05 +01:00

Fix theme counts.

The N in "Applying theme FOOBAR (N formats)" should reflect the count of
explicit + freebie output formats.
This commit is contained in:
hacksalot
2016-01-19 16:01:34 -05:00
parent 2f628f8564
commit 2253e4ead7
3 changed files with 25 additions and 11 deletions

View File

@ -13,7 +13,7 @@ events:
msg:
- Merging **%s**
- " onto **%s**"
afterMerge:
applyTheme:
msg: Applying **%s** theme (%s format%s)
afterBuild:
msg:

View File

@ -108,7 +108,7 @@ Output routines for HackMyResume.
case HME.applyTheme:
var numFormats = Object.keys( this.theme.formats ).length;
L( M2C(this.msgs.afterMerge.msg, 'green'),
L( M2C(this.msgs.applyTheme.msg, 'green'),
this.theme.name.toUpperCase(),
numFormats, ( numFormats === 1 ? '' : 's') );
break;