* Retrieve MA string * @param {string} stringID * @returns {string} Translated string
(stringID)
| 504 | * @returns {string} Translated string |
| 505 | */ |
| 506 | async stringLookup(stringID) { |
| 507 | return this.#langPromise.then(() => { |
| 508 | return this.syncStringLookup(stringID) |
| 509 | }) |
| 510 | } |
| 511 | /** |
| 512 | * Retrieve multiple MA strings |
| 513 | * @param {Array.<string>} stringIDs Array of stringIDs |
nothing calls this directly
no test coverage detected