bootstrapworld / curriculum

6 stars 6 forks source link

Generate Alg2 glossary #2067

Closed flannery-denny closed 2 months ago

flannery-denny commented 4 months ago
schanzer commented 4 months ago

@flannery-denny looks like I already did, back when I was working on this. Go to the glossary json file, and search for TODO(Flannery)

flannery-denny commented 3 months ago

@schanzer I think we need to add the word "model"

schanzer commented 3 months ago

@flannery-denny agreed! make it so :)

flannery-denny commented 3 months ago

@schanzer We have two entries for line plots. Do you have a preference for which one I leave?

schanzer commented 3 months ago

@flannery-denny I dig the second one

flannery-denny commented 3 months ago

@schanzer Found another repeat entry - is there some way for build to let us know that we've repeated ourselves?

{ "en-us": { "keywords": [[ "maxima", "maximum" ]], "description": "the largest y-value produced over the domain of a function" } }, { "en-us": { "keywords": [[ "minima", "minimum" ]], "description": "the smallest y-value produced over the domain of a function" } }, { "en-us": { "keywords": [[ "maximum" ]], "description": "the largest value in a quantitative dataset" }, "es-mx": { "keywords": [[ "máximo" ]], "description": "el mayor valor dentro de un grupo de números cuantitativos" } }, { "en-us": { "keywords": [[ "minimum" ]], "description": "the smallest value in a quantitative dataset" }, "es-mx": { "keywords": [[ "mínimo" ]], "description": "el menor valor dentro de un grupo de números cuantitativos" } },

flannery-denny commented 3 months ago

@schanzer and do you have a preference for which definitions of minimum and maximum we keep?

flannery-denny commented 3 months ago

@schanzer fyi - leaving this open to make sure we address the duplicates I discovered and asked about above, but the original essence of the issue has been completed.

schanzer commented 3 months ago

@flannery-denny unfortunately JSON is designed for maximum simplicity, and standard offers no way to check for duplicates. :(

I'd use the following (spanish translations removed for brevity):

{
  "en-us": {
    "keywords": [[ "maxima", "maximum" ]],
    "description": "the largest value(s) in a selected range of a set (e.g. - the outputs of a function or a list of values)"
  },  "en-us": {
    "keywords": [[ "minima", "minimum" ]],
    "description": "the largest value(s) in a selected range of a set (e.g. - the outputs of a function or a list of values)"
  }
},
schanzer commented 3 months ago

@flannery-denny close when you're ready :)