Skip to content

Commit 90fb7e2

Browse files
committed
fix: Minor fixes
1 parent 12f6519 commit 90fb7e2

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

public/locales/en/components/searchbar.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"searchbar": {
3-
"placeholder": "Search themes..."
3+
"placeholder": "Enter search here..."
44
},
55
"sortbutton": {
66
"placeholder": "Sort",

public/locales/en/pages/plugins.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"plugins": {
3+
"header": "Plugins",
4+
"description": "Browse and check out plugins to integrate into your chatbot!",
5+
"how_plugins_work": "How to use plugins"
6+
},
7+
"plugin_tooltip": {
8+
"plugin_usage": "Plugins are maintained by their respective authors, separate from the chatbot core library. You may visit the plugin links to find out specific usage instructions."
9+
}
10+
}

public/locales/en/pages/themes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"themes": {
33
"header": "Themes",
4-
"select_multiple_themes_description": "Browse, select and preview themes in the panel on the right!",
4+
"description": "Browse, select and preview themes in the panel on the right!",
55
"how_multiple_themes_work": "How choosing multiple themes work",
66
"open_theme_preview": "Open",
77
"close_theme_preview": "Collapse"

src/pages/Plugins.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,15 +185,15 @@ const Plugins: React.FC = () => {
185185
{t("plugins.header")}
186186
</Typography>
187187
<Typography variant="body2" color="text.secondary">
188-
{t("plugins.select_multiple_plugins_description")}
188+
{t("plugins.description")}
189189
</Typography>
190190
<GalleryTooltip
191-
content={t("plugin_tooltip.multiple_plugins_usage")}
191+
content={t("plugin_tooltip.plugin_usage")}
192192
placement="right"
193193
>
194194
<Box display="inline-flex" alignItems="center" color="primary.main">
195195
<Typography variant="body2" sx={{ marginRight: "4px" }}>
196-
{t("plugins.how_multiple_plugins_work")}
196+
{t("plugins.how_plugins_work")}
197197
</Typography>
198198
<IconButton size="small" color="primary">
199199
<InfoIcon />

src/pages/Themes.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ const Themes: React.FC = () => {
203203
{t("themes.header")}
204204
</Typography>
205205
<Typography variant="body2" color="text.secondary">
206-
{t("themes.select_multiple_themes_description")}
206+
{t("themes.description")}
207207
</Typography>
208208
<GalleryTooltip
209209
content={t("theme_tooltip.multiple_themes_usage")}

0 commit comments

Comments
 (0)