Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing messages when uninstalling plugins #6463

Merged
merged 2 commits into from
Jun 8, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const InstalledPluginsPage = () => {
// Force the Overlayblocker to be displayed
const overlayblockerParams = {
enabled: true,
title: 'app.components.InstallPluginPage.Download.title',
description: 'app.components.InstallPluginPage.Download.description',
title: 'app.components.ListPluginsPage.deletePlugin.title',
description: 'app.components.ListPluginsPage.deletePlugin.description',
};
// Lock the app
strapi.lockApp(overlayblockerParams);
Expand Down
2 changes: 2 additions & 0 deletions packages/strapi-admin/admin/src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@
"app.components.listPlugins.title.none": "No plugins installed",
"app.components.listPlugins.title.plural": "{number} plugins are installed",
"app.components.listPlugins.title.singular": "{number} plugin is installed",
"app.components.ListPluginsPage.deletePlugin.title": "Uninstalling",
"app.components.ListPluginsPage.deletePlugin.description": "It might take a few seconds to uninstall the plugin.",
"app.components.listPluginsPage.deletePlugin.error": "An error occurred while uninstalling the plugin",

"app.links.configure-view": "Configure the view",
Expand Down
2 changes: 2 additions & 0 deletions packages/strapi-admin/admin/src/translations/pt-BR.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@
"app.components.listPlugins.title.none": "Nenhuma extensão instalada",
"app.components.listPlugins.title.plural": "{number} extensões instaladas",
"app.components.listPlugins.title.singular": "{number} extensão instalada",
"app.components.ListPluginsPage.deletePlugin.title": "Desinstalando",
"app.components.ListPluginsPage.deletePlugin.description": "Pode demorar alguns segundos para desinstalar a extensão.",
"app.components.listPluginsPage.deletePlugin.error": "Ocorreu um erro ao desinstalar extensão",

"app.links.configure-view": "Configure a visualização",
Expand Down