We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44f43d6 commit f26a9d9Copy full SHA for f26a9d9
1 file changed
packages/cli/src/api/catalog.ts
@@ -373,11 +373,11 @@ export async function writeCompiled(
373
return filename
374
}
375
376
-export const orderByMessage: OrderByFn = (a, b) => {
377
- // hardcoded en-US locale to have consistent sorting
378
- // @see https://github.com/lingui/js-lingui/pull/1808
379
- const collator = new Intl.Collator("en-US")
+// hardcoded en-US locale to have consistent sorting
+// @see https://github.com/lingui/js-lingui/pull/1808
+const collator = new Intl.Collator("en-US")
380
+export const orderByMessage: OrderByFn = (a, b) => {
381
const aMsg = a.entry.message || ""
382
const bMsg = b.entry.message || ""
383
const aCtxt = a.entry.context || ""
0 commit comments