summaryrefslogtreecommitdiff
path: root/src/plugins/bazaar
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@theqtcompany.com>2015-03-27 10:36:10 +0100
committerOrgad Shaneh <orgads@gmail.com>2015-03-27 09:41:13 +0000
commitdfc35bc1336692ebee08006e33f1db641a5dbf8c (patch)
treee2022a53eb1d7b06cc3306c23c7a80a3043f5d59 /src/plugins/bazaar
parent46dfb79ae1895e56ef6c18180103ffc6dfaf6e8e (diff)
downloadqt-creator-dfc35bc1336692ebee08006e33f1db641a5dbf8c.tar.gz
Bazaar: fix UI text capitalization and punctuation
Change-Id: I15326c23ac99c952a17ad0677be823f793d0fa40 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/bazaar')
-rw-r--r--src/plugins/bazaar/bazaarclient.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/plugins/bazaar/bazaarclient.cpp b/src/plugins/bazaar/bazaarclient.cpp
index 968f6e674f..514c34bb03 100644
--- a/src/plugins/bazaar/bazaarclient.cpp
+++ b/src/plugins/bazaar/bazaarclient.cpp
@@ -99,20 +99,20 @@ public:
VcsBaseEditorParameterWidget(parent)
{
mapSetting(addToggleButton(QLatin1String("--verbose"), tr("Verbose"),
- tr("Show files changed in each revision")),
+ tr("Show files changed in each revision.")),
settings->boolPointer(BazaarSettings::logVerboseKey));
mapSetting(addToggleButton(QLatin1String("--forward"), tr("Forward"),
- tr("Show from oldest to newest")),
+ tr("Show from oldest to newest.")),
settings->boolPointer(BazaarSettings::logForwardKey));
- mapSetting(addToggleButton(QLatin1String("--include-merges"), tr("Include merges"),
- tr("Show merged revisions")),
+ mapSetting(addToggleButton(QLatin1String("--include-merges"), tr("Include Merges"),
+ tr("Show merged revisions.")),
settings->boolPointer(BazaarSettings::logIncludeMergesKey));
QList<ComboBoxItem> logChoices;
logChoices << ComboBoxItem(tr("Detailed"), QLatin1String("long"))
- << ComboBoxItem(tr("Moderately short"), QLatin1String("short"))
- << ComboBoxItem(tr("One line"), QLatin1String("line"))
- << ComboBoxItem(tr("GNU ChangeLog"), QLatin1String("gnu-changelog"));
+ << ComboBoxItem(tr("Moderately Short"), QLatin1String("short"))
+ << ComboBoxItem(tr("One Line"), QLatin1String("line"))
+ << ComboBoxItem(tr("GNU Change Log"), QLatin1String("gnu-changelog"));
mapSetting(addComboBox(QStringList(QLatin1String("--log-format=%1")), logChoices),
settings->stringPointer(BazaarSettings::logFormatKey));
}