// abbreviations.js
(function () {
/* global adventurejs A */
var p = adventurejs.Dictionary.prototype;
/**
* A list of common abbreviations that have periods in them.
* @var {Object} adventurejs.Dictionary#abbreviations
*/
p.abbreviations = [
"a.m.",
"apr.",
"aug.",
"ave.",
"b.a.",
"b.s.",
"blvd.",
"capt.",
"col.",
"dec.",
"dr.",
"e.g.",
"et al.",
"etc.",
"feb.",
"fri.",
"ft.",
"gen.",
"i.e.",
"jan.",
"jr.",
"jul.",
"jun.",
"lt.",
"m.a.",
"m.d.",
"m.s.",
"maj.",
"mar.",
"mon.",
"mr.",
"mrs.",
"ms.",
"mt.",
"nov.",
"oct.",
"p.m.",
"ph.d.",
"phd.",
"prof.",
"pvt.",
"rd.",
"sat.",
"sep.",
"sgt.",
"sr.",
"st.",
"st.",
"sun.",
"thu.",
"tue.",
"vs.",
"wed.",
];
})();