mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-12 16:35:45 +01:00
improve help texts
This commit is contained in:
@@ -67,24 +67,26 @@
|
|||||||
},
|
},
|
||||||
"help": {
|
"help": {
|
||||||
"realmDescriptionHelpText": "Enter authentication realm description",
|
"realmDescriptionHelpText": "Enter authentication realm description",
|
||||||
"dateFormatHelpText": "Moments date format. Please have a look at \n <a href=`http://momentjs.com/docs/#/displaying/format/` target=`_blank`>http://momentjs.com/docs/#/displaying/format/</a>.<br />\n<b>Note:</b><br />\n {0} - is replaced by a `time ago` string (e.g. 2 hours ago).",
|
"dateFormatHelpText": "Moments date format. Please have a look at http://momentjs.com/docs/#/displaying/format/. Note: {0} - is replaced by a `time ago` string (e.g. 2 hours ago).",
|
||||||
"pluginRepositoryHelpText": "The url of the plugin repository.<br />Explanation of the {placeholders}:\n <br /><b>version</b> = SCM-Manager Version<br /><b>os</b> = Operation System<br /><b>arch</b> = Architecture",
|
"pluginRepositoryHelpText": "The url of the plugin repository. Explanation of the placeholders: version = SCM-Manager Version; os = Operation System; arch = Architecture",
|
||||||
"enableForwardingHelpText": "Enbale mod_proxy port forwarding.",
|
"enableForwardingHelpText": "Enbale mod_proxy port forwarding.",
|
||||||
"enableRepositoryArchiveHelpText": "Enable repository archives. A complete page reload is required after a change of this value.",
|
"enableRepositoryArchiveHelpText": "Enable repository archives. A complete page reload is required after a change of this value.",
|
||||||
"disableGroupingGridHelpText": "Disable repository Groups. A complete page reload is required after a change of this value.",
|
"disableGroupingGridHelpText": "Disable repository Groups. A complete page reload is required after a change of this value.",
|
||||||
"allowAnonymousAccessHelpText": "Anonymous users have read access on public repositories.",
|
"allowAnonymousAccessHelpText": "Anonymous users have read access on public repositories.",
|
||||||
"skipFailedAuthenticatorsHelpText": "Do not stop the authentication chain, \n if an authenticator finds the user but fails to authenticate the user.",
|
"skipFailedAuthenticatorsHelpText": "Do not stop the authentication chain, if an authenticator finds the user but fails to authenticate the user.",
|
||||||
"adminGroupsHelpText": "Names of groups with admin permissions.",
|
"adminGroupsHelpText": "Names of groups with admin permissions.",
|
||||||
"adminUsersHelpText": "Names of users with admin permissions.",
|
"adminUsersHelpText": "Names of users with admin permissions.",
|
||||||
"forceBaseUrlHelpText": "Redirects to the base url if the request comes from a other url",
|
"forceBaseUrlHelpText": "Redirects to the base url if the request comes from a other url",
|
||||||
"baseUrlHelpText": "The url of the application (with context path) i.e. http://localhost:8080/scm",
|
"baseUrlHelpText": "The url of the application (with context path), i.e. http://localhost:8080/scm",
|
||||||
"loginAttemptLimitHelpText": "Maximum allowed login attempts. Use -1 to disable the login attempt limit.",
|
"loginAttemptLimitHelpText": "Maximum allowed login attempts. Use -1 to disable the login attempt limit.",
|
||||||
"loginAttemptLimitTimeoutHelpText": "Timeout in seconds for users which are temporary disabled,\n because of too many failed login attempts.",
|
"loginAttemptLimitTimeoutHelpText": "Timeout in seconds for users which are temporary disabled, because of too many failed login attempts.",
|
||||||
"enableProxyHelpText": "Enable Proxy",
|
"enableProxyHelpText": "Enable Proxy",
|
||||||
"proxyPortHelpText": "The proxy port",
|
"proxyPortHelpText": "The proxy port",
|
||||||
"proxyPasswordHelpText": "The password for the proxy server authentication.",
|
"proxyPasswordHelpText": "The password for the proxy server authentication.",
|
||||||
"proxyServerHelpText": "The proxy server",
|
"proxyServerHelpText": "The proxy server",
|
||||||
"proxyUserHelpText": "The username for the proxy server authentication.",
|
"proxyUserHelpText": "The username for the proxy server authentication.",
|
||||||
"proxyExcludesHelpText": "A comma separated list of glob patterns for hostnames which should be excluded from proxy settings."
|
"proxyExcludesHelpText": "Glob patterns for hostnames which should be excluded from proxy settings.",
|
||||||
|
"enableXsrfProtectionHelpText": "Enable Xsrf Cookie Protection. Note: This feature is still experimental.",
|
||||||
|
"defaultNameSpaceStrategyHelpText": "The default namespace strategy"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,6 +62,7 @@ class GeneralSettings extends React.Component<Props> {
|
|||||||
onChange={this.handleDefaultNamespaceStrategyChange}
|
onChange={this.handleDefaultNamespaceStrategyChange}
|
||||||
value={defaultNamespaceStrategy}
|
value={defaultNamespaceStrategy}
|
||||||
disabled={!hasUpdatePermission}
|
disabled={!hasUpdatePermission}
|
||||||
|
helpText={t("help.defaultNameSpaceStrategyHelpText")}
|
||||||
/>
|
/>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
checked={enabledXsrfProtection}
|
checked={enabledXsrfProtection}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ class MemberNameTable extends React.Component<Props, State> {
|
|||||||
<div>
|
<div>
|
||||||
<LabelWithHelpIcon
|
<LabelWithHelpIcon
|
||||||
label={t("group.members")}
|
label={t("group.members")}
|
||||||
helpText={t("group-form.help.membersHelpText")}
|
helpText={t("group-form.help.memberHelpText")}
|
||||||
/>
|
/>
|
||||||
<table className="table is-hoverable is-fullwidth">
|
<table className="table is-hoverable is-fullwidth">
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|||||||
Reference in New Issue
Block a user