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 f2fb064 commit bab7778Copy full SHA for bab7778
src/blocks/blocks/form-selector/Edit.js
@@ -50,6 +50,11 @@ const Edit = (props) => {
50
setAttributes({ displayDescription: description });
51
};
52
53
+ const textMap = {
54
+ "popup-link": __("Popup Link Text", "everest-forms"),
55
+ "popup-button": __("Popup Button Text", "everest-forms"),
56
+ };
57
+
58
return (
59
<>
60
<ChakraProvider>
@@ -175,7 +180,7 @@ const Edit = (props) => {
175
180
{"popup" !== popupType && (
176
181
<TextControl
177
182
label={__(
178
- "Popup Button Text",
183
+ textMap[popupType],
179
184
"everest-forms",
185
)}
186
value={popupButtonText}
0 commit comments