210:58a3cbb49374 | 211:8d35e631bef3 |
---|---|
383 continue; | 383 continue; |
384 | 384 |
385 if (!firstDetails) | 385 if (!firstDetails) |
386 text += ", "; | 386 text += ", "; |
387 | 387 |
388 str noun = fmt ("%s%s", g_saObjTypeNames[objType], PLURAL (objCount)); | 388 str noun = fmt ("%s%s", g_saObjTypeNames[objType], plural (objCount)); |
389 | 389 |
390 // Plural of "vertex" is "vertices". Stupid English. | 390 // Plural of "vertex" is "vertices". Stupid English. |
391 if (objType == LDObject::Vertex && objCount != 1) | 391 if (objType == LDObject::Vertex && objCount != 1) |
392 noun = "vertices"; | 392 noun = "vertices"; |
393 | 393 |