aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/copilot
diff options
context:
space:
mode:
authorEike Ziller <[email protected]>2023-10-18 14:54:46 +0200
committerEike Ziller <[email protected]>2023-10-18 13:55:36 +0000
commit4aefd9a74d1fd262e7b2fd8566c9353652903c5d (patch)
treee3b69cab69884a2261f866c2f3b48f8924a49a6d /src/plugins/copilot
parentf8beeb9edc5c7501724a4d10c50e3ba81fdd899d (diff)
Copilot: Fix some strings
- add missing colons - rejecting unauthorized certificates is the secure option, turning it off is insecure Change-Id: Ia09994ea75460fd5ebdd8354412d3122bd32eeed Reviewed-by: Jarek Kobus <[email protected]> Reviewed-by: Leena Miettinen <[email protected]>
Diffstat (limited to 'src/plugins/copilot')
-rw-r--r--src/plugins/copilot/copilotsettings.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/copilot/copilotsettings.cpp b/src/plugins/copilot/copilotsettings.cpp
index 1f2b59523d3..c75f7124235 100644
--- a/src/plugins/copilot/copilotsettings.cpp
+++ b/src/plugins/copilot/copilotsettings.cpp
@@ -105,14 +105,14 @@ CopilotSettings::CopilotSettings()
proxyHost.setDisplayName(Tr::tr("Proxy Host"));
proxyHost.setDisplayStyle(StringAspect::LineEditDisplay);
proxyHost.setSettingsKey("Copilot.ProxyHost");
- proxyHost.setLabelText(Tr::tr("Proxy host"));
+ proxyHost.setLabelText(Tr::tr("Proxy host:"));
proxyHost.setDefaultValue("");
proxyHost.setToolTip(Tr::tr("The host name of the proxy server."));
proxyHost.setHistoryCompleter("Copilot.ProxyHost.History");
proxyPort.setDisplayName(Tr::tr("Proxy Port"));
proxyPort.setSettingsKey("Copilot.ProxyPort");
- proxyPort.setLabelText(Tr::tr("Proxy port"));
+ proxyPort.setLabelText(Tr::tr("Proxy port:"));
proxyPort.setDefaultValue(3128);
proxyPort.setToolTip(Tr::tr("The port of the proxy server."));
proxyPort.setRange(1, 65535);
@@ -120,7 +120,7 @@ CopilotSettings::CopilotSettings()
proxyUser.setDisplayName(Tr::tr("Proxy User"));
proxyUser.setDisplayStyle(StringAspect::LineEditDisplay);
proxyUser.setSettingsKey("Copilot.ProxyUser");
- proxyUser.setLabelText(Tr::tr("Proxy user"));
+ proxyUser.setLabelText(Tr::tr("Proxy user:"));
proxyUser.setDefaultValue("");
proxyUser.setToolTip(Tr::tr("The user name to access the proxy server."));
proxyUser.setHistoryCompleter("Copilot.ProxyUser.History");
@@ -135,7 +135,7 @@ CopilotSettings::CopilotSettings()
proxyPassword.setDisplayName(Tr::tr("Proxy Password"));
proxyPassword.setDisplayStyle(StringAspect::PasswordLineEditDisplay);
proxyPassword.setSettingsKey("Copilot.ProxyPassword");
- proxyPassword.setLabelText(Tr::tr("Proxy password"));
+ proxyPassword.setLabelText(Tr::tr("Proxy password:"));
proxyPassword.setDefaultValue("");
proxyPassword.setToolTip(Tr::tr("The password for the proxy server."));
@@ -144,7 +144,7 @@ CopilotSettings::CopilotSettings()
proxyRejectUnauthorized.setLabelText(Tr::tr("Reject unauthorized"));
proxyRejectUnauthorized.setDefaultValue(true);
proxyRejectUnauthorized.setToolTip(Tr::tr("Reject unauthorized certificates from the proxy "
- "server. This is a security risk."));
+ "server. Turning this off is a security risk."));
initEnableAspect(enableCopilot);