Skip to content

Commit

Permalink
content: Fix gender in cloze and pictures of sizes (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
toshify authored Oct 13, 2023
1 parent f70611d commit b39f046
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ module.exports = {
when = 'always',
) {
const negated = when == 'never';
const includesMotivation = `${body}`.includes('Because ');
const includesMotivation = (`${body}`.match(/^[Bb]ecause[.\n]/) != null);
return [
negated ? !includesMotivation : includesMotivation,
'body ' +
Expand Down
4 changes: 2 additions & 2 deletions content/Lesson11.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"singleClozeCount": 0,
"multiClozeCount": 12,
"comprehensionCount": 0,
"wordsExercisedCount": 32,
"wordsExercisedCount": 33,
"exercises": [
{
"id": "6b941a32-89f3-4436-ac53-f2769cb0d3b3",
Expand Down Expand Up @@ -347,7 +347,7 @@
{ "个": "90f79865-ac90-4644-9a8b-88eaad30e979" },
{
"validOptions": [
{ "外甥女": "b6ebbe69-9834-41f3-a353-4a9142d599b3" }
{ "外甥": "54ff3fa1-141e-4620-861d-335376b3f8f2" }
]
},
{ "。": "5d0f410c-83ff-43bd-a31e-922b42b054ef" }
Expand Down
6 changes: 3 additions & 3 deletions content/WordSpec.json
Original file line number Diff line number Diff line change
Expand Up @@ -691,17 +691,17 @@
"bdc5f8ba-117c-433e-9325-68e8c0a71bdf": {
"word": "",
"audio": "audio/小.mp3",
"picture": "pics/小中大.jpg"
"picture": "pics/.jpg"
},
"253fd710-528f-4749-83c8-a3e1eda9fd64": {
"word": "",
"audio": "audio/中.mp3",
"picture": "pics/小中大.jpg"
"picture": "pics/.jpg"
},
"f2c41150-06fb-4c45-be9d-6caa65d66ee2": {
"word": "",
"audio": "audio/大.mp3",
"picture": "pics/小中大.jpg"
"picture": "pics/.jpg"
},
"37932876-7996-4dfc-9e4e-54f3a6bee6da": {
"word": "",
Expand Down
Binary file added content/pics/中.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/pics/大.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/pics/小.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b39f046

Please sign in to comment.