Skip to content

Commit

Permalink
Removed unsupported locales from menu (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
lvcabral authored Feb 1, 2025
1 parent 6410c46 commit 0f33fac
Showing 1 changed file with 5 additions and 31 deletions.
36 changes: 5 additions & 31 deletions src/menu/deviceMenuTemplate.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,26 +85,8 @@ export const deviceMenuTemplate = {
},
},
{
id: "en_GB",
label: "British English (en-GB)",
type: "radio",
checked: false,
click: (item, window) => {
setLocaleId(item.id);
},
},
{
id: "fr_CA",
label: "Canadian French (fr-CA)",
type: "radio",
checked: false,
click: (item, window) => {
setLocaleId(item.id);
},
},
{
id: "es_ES",
label: "International Spanish (es-ES)",
id: "de_DE",
label: "German (de-DE)",
type: "radio",
checked: false,
click: (item, window) => {
Expand All @@ -121,17 +103,8 @@ export const deviceMenuTemplate = {
},
},
{
id: "de_DE",
label: "German (de-DE)",
type: "radio",
checked: false,
click: (item, window) => {
setLocaleId(item.id);
},
},
{
id: "it_IT",
label: "Italian (it-IT)",
id: "fr_CA",
label: "Canadian French (fr-CA)",
type: "radio",
checked: false,
click: (item, window) => {
Expand Down Expand Up @@ -204,6 +177,7 @@ export const deviceMenuTemplate = {
{
id: "peer-roku-control",
label: "Sync Control with Peer Roku",
accelerator: "CmdOrCtrl+Shift+P",
type: "checkbox",
checked: false,
enabled: true,
Expand Down

0 comments on commit 0f33fac

Please sign in to comment.