Skip to content

Commit 1722619

Browse files
committed
Standardize on capitalizeFirstLetter meta key
1 parent d92e0c5 commit 1722619

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file. For change
55

66
- put future changes here
77
- Improve chinese translation
8+
- Standardize on capitalizeFirstLetter meta key
89

910
# 0.0.7 2016-11-10
1011

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ module.exports = function(version, language) {
162162
.replace('{nth}', nthWaypoint)
163163
.replace(/ {2}/g, ' '); // remove excess spaces
164164

165-
if (this.instructions.meta.capitalize_first_letter) {
165+
if (this.instructions.meta.capitalizeFirstLetter) {
166166
instruction = this.capitalizeFirstLetter(instruction);
167167
}
168168

instructions/de.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"meta": {
3-
"capitalize_first_letter": true
3+
"capitalizeFirstLetter": true
44
},
55
"v5": {
66
"constants": {

0 commit comments

Comments
 (0)