Skip to content

Commit a4c5889

Browse files
committed
fix(localize): Whitespace for the key should match cli tool
1 parent 33f4a6c commit a4c5889

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/localize.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function clear() {
4040

4141
const pluralRules = new Map();
4242
export function get(key, context, args = []) {
43-
key = key.trim();
43+
key = key.trim().replace(/\s+/g, " ");
4444
context = context.trim();
4545

4646
const cacheKey = `${key} | ${context}`;

test/spec/localize.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ describe("localize:", () => {
8686
"text only": { message: "haha" },
8787
});
8888

89-
expect(msg`text only`).toBe("haha");
89+
expect(msg`text only`).toBe("haha");
9090
expect(msg`text only`).toBe("haha");
9191
expect(msg`text and ${123} ${321}`).toBe("123 i tekst");
9292
expect(msg`plural ${0}`).toBe("0 inne");

0 commit comments

Comments
 (0)