aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/terminalhooks.cpp
diff options
context:
space:
mode:
authorEike Ziller <[email protected]>2023-10-18 09:59:28 +0200
committerEike Ziller <[email protected]>2023-10-18 12:10:45 +0000
commitad7d5590281019233d11d640e7e1b4e1a5b8026b (patch)
treef839141c84870fe7bb348c92566dfc40758f5531 /src/libs/utils/terminalhooks.cpp
parentb519ebf1c947b7893af7c1f06521ac8f2468086e (diff)
Tr: More small fixes
Change-Id: I5d9324d3f64eaa522fa1d435efa39fa43d84798a Reviewed-by: Jarek Kobus <[email protected]> Reviewed-by: Leena Miettinen <[email protected]>
Diffstat (limited to 'src/libs/utils/terminalhooks.cpp')
-rw-r--r--src/libs/utils/terminalhooks.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/utils/terminalhooks.cpp b/src/libs/utils/terminalhooks.cpp
index 6072e168e8a..bb517cb9554 100644
--- a/src/libs/utils/terminalhooks.cpp
+++ b/src/libs/utils/terminalhooks.cpp
@@ -27,7 +27,7 @@ expected_str<FilePath> defaultShellForDevice(const FilePath &deviceRoot)
shell = env->searchInPath(shell.nativePath());
if (shell.isEmpty())
- return make_unexpected(Tr::tr("Could not find any shell"));
+ return make_unexpected(Tr::tr("Could not find any shell."));
return deviceRoot.withNewMappedPath(shell);
}