Skip to content

Commit

Permalink
Set localized true for even more Builder inputs (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
catalinred authored Aug 20, 2024
1 parent 0700993 commit 7b92124
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions src/utils/builderConfigs.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,14 +283,12 @@ export const AccordionConfig = {
name: "headline",
type: "text",
defaultValue: "Frequently asked questions",

localized: true,
},
{
name: "eyebrow",
type: "text",
defaultValue: "Solana FAQ",

localized: true,
},
{
Expand All @@ -307,14 +305,12 @@ export const AccordionConfig = {
name: "title",
type: "text",
defaultValue: "Accordion item question",

localized: true,
},
{
name: "body",
type: "richText",
defaultValue: "<p>Accordion item body</p>",

localized: true,
},
],
Expand All @@ -334,8 +330,7 @@ export const AnnouncementBarConfig = {
{
name: "text",
type: "text",
defaultValue: "Join the nft showdown - ",

defaultValue: "Announcement bar text",
localized: true,
},
{
Expand All @@ -346,7 +341,6 @@ export const AnnouncementBarConfig = {
name: "label",
type: "text",
defaultValue: "Build the next generation of nft brands on Solana",

localized: true,
},
{
Expand Down Expand Up @@ -396,14 +390,12 @@ export const CardDeckConfig = {
name: "eyebrow",
type: "text",
defaultValue: "Eyebrow Text",

localized: true,
},
{
name: "heading",
type: "text",
defaultValue: "Heading Text",

localized: true,
},
{
Expand All @@ -415,7 +407,6 @@ export const CardDeckConfig = {
name: "body",
type: "longtext",
defaultValue: "Body Text",

localized: true,
},
{
Expand Down Expand Up @@ -730,7 +721,6 @@ export const SliderCard = {
name: "alt",
type: "text",
defaultValue: "",

localized: true,
},
],
Expand Down Expand Up @@ -1457,7 +1447,6 @@ export const CommunityGalleryConfig = {
{
name: "eyebrow",
type: "text",

localized: true,
defaultValue: "",

Expand Down Expand Up @@ -1972,6 +1961,8 @@ export const BreakpointTitleConfig = {
name: "title",
type: "text",
required: true,
defaultValue: "Title",
localized: true,
},
{
name: "image",
Expand All @@ -1994,14 +1985,20 @@ export const BreakpointHero = {
{
name: "title",
type: "text",
defaultValue: "Title",
localized: true,
},
{
name: "subtitle",
type: "text",
defaultValue: "Subtitle",
localized: true,
},
{
name: "description",
type: "richText",
defaultValue: "Description",
localized: true,
},
{
name: "logo",
Expand All @@ -2025,11 +2022,13 @@ export const BreakpointCard = {
name: "heading",
type: "string",
defaultValue: "",
localized: true,
},
{
name: "content",
type: "richText",
defaultValue: "",
localized: true,
},
{
name: "buttons",
Expand Down

0 comments on commit 7b92124

Please sign in to comment.