Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Apr 9, 2024
1 parent 45ebc48 commit 91dd51c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web/src/client/l10n.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class L10nClient {
async getUIKeymap() {
const response = await this.client.get("/l10n/config");
if (!response.ok) {
console.error("Failed to get localizaation config: ", response);
console.error("Failed to get localization config: ", response);
return "";
}
const config = await response.json();
Expand All @@ -116,7 +116,7 @@ class L10nClient {
async timezones() {
const response = await this.client.get("/l10n/timezones");
if (!response.ok) {
console.error("Failed to get localizaation config: ", response);
console.error("Failed to get localization config: ", response);
return [];
}
const timezones = await response.json();
Expand Down Expand Up @@ -153,7 +153,7 @@ class L10nClient {
async locales() {
const response = await this.client.get("/l10n/locales");
if (!response.ok) {
console.error("Failed to get localizaation config: ", response);
console.error("Failed to get localization config: ", response);
return [];
}
const locales = await response.json();
Expand Down Expand Up @@ -191,7 +191,7 @@ class L10nClient {
async keymaps() {
const response = await this.client.get("/l10n/keymaps");
if (!response.ok) {
console.error("Failed to get localizaation config: ", response);
console.error("Failed to get localization config: ", response);
return [];
}
const keymaps = await response.json();
Expand Down

0 comments on commit 91dd51c

Please sign in to comment.