mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 17:05:43 +01:00
minor fixes on plugins
This commit is contained in:
@@ -29,7 +29,7 @@
|
|||||||
"installedNavLink": "Installiert",
|
"installedNavLink": "Installiert",
|
||||||
"availableNavLink": "Verfügbar"
|
"availableNavLink": "Verfügbar"
|
||||||
},
|
},
|
||||||
"executePending": "Austehende Plugin-Änderungen ausführen",
|
"executePending": "Ausstehende Plugin-Änderungen ausführen",
|
||||||
"noPlugins": "Keine Plugins gefunden.",
|
"noPlugins": "Keine Plugins gefunden.",
|
||||||
"modal": {
|
"modal": {
|
||||||
"title": {
|
"title": {
|
||||||
@@ -37,7 +37,7 @@
|
|||||||
"update": "{{name}} Plugin aktualisieren",
|
"update": "{{name}} Plugin aktualisieren",
|
||||||
"uninstall": "{{name}} Plugin deinstallieren"
|
"uninstall": "{{name}} Plugin deinstallieren"
|
||||||
},
|
},
|
||||||
"restart": "Neustarten um Plugin zu aktivieren",
|
"restart": "Neustarten, um Plugin-Änderungen wirksam zu machen",
|
||||||
"install": "Installieren",
|
"install": "Installieren",
|
||||||
"update": "Aktualisieren",
|
"update": "Aktualisieren",
|
||||||
"uninstall": "Deinstallieren",
|
"uninstall": "Deinstallieren",
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
"update": "Update {{name}} Plugin",
|
"update": "Update {{name}} Plugin",
|
||||||
"uninstall": "Uninstall {{name}} Plugin"
|
"uninstall": "Uninstall {{name}} Plugin"
|
||||||
},
|
},
|
||||||
"restart": "Restart to activate",
|
"restart": "Restart to make plugin changes effective",
|
||||||
"install": "Install",
|
"install": "Install",
|
||||||
"update": "Update",
|
"update": "Update",
|
||||||
"uninstall": "Uninstall",
|
"uninstall": "Uninstall",
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ const styles = {
|
|||||||
minWidth: "5.5em"
|
minWidth: "5.5em"
|
||||||
},
|
},
|
||||||
userLabelMarginLarge: {
|
userLabelMarginLarge: {
|
||||||
minWidth: "9em"
|
minWidth: "10em"
|
||||||
},
|
},
|
||||||
userFieldFlex: {
|
userFieldFlex: {
|
||||||
flexGrow: 4
|
flexGrow: 4
|
||||||
@@ -130,7 +130,7 @@ class PluginModal extends React.Component<Props, State> {
|
|||||||
const { pluginAction, onClose, t } = this.props;
|
const { pluginAction, onClose, t } = this.props;
|
||||||
const { loading, error, restart, success } = this.state;
|
const { loading, error, restart, success } = this.state;
|
||||||
|
|
||||||
let color = "primary";
|
let color = pluginAction === PluginAction.UNINSTALL ? "warning" : "primary";
|
||||||
let label = `plugins.modal.${pluginAction}`;
|
let label = `plugins.modal.${pluginAction}`;
|
||||||
if (restart) {
|
if (restart) {
|
||||||
color = "warning";
|
color = "warning";
|
||||||
|
|||||||
Reference in New Issue
Block a user