Improve wording of split view/pane settings

Summary:
I found these strings very hard to understand then translate without looking into the code because the use of "view" refers to both "the split view" and "the left pane and the right pane of the split view".

This patch attempts to explicitly mention panes when needed.

Reviewers: #dolphin, angeloevertonjr, ngraham

Reviewed By: #dolphin, ngraham

Subscribers: ngraham, kfm-devel

Tags: #dolphin

Differential Revision: https://phabricator.kde.org/D19579
This commit is contained in:
Simon Depiets 2019-03-06 08:15:43 +08:00
parent 7a57be9812
commit c148eff8ca
2 changed files with 4 additions and 4 deletions

View file

@ -75,7 +75,7 @@
<default>false</default>
</entry>
<entry name="CloseActiveSplitView" type="Bool">
<label>Close active view when toggling off</label>
<label>Close active pane when toggling off split view</label>
<default>true</default>
</entry>
<entry name="ShowToolTips" type="Bool">

View file

@ -96,11 +96,11 @@ BehaviorSettingsPage::BehaviorSettingsPage(const QUrl& url, QWidget* parent) :
m_renameInline = new QCheckBox(i18nc("option:check", "Rename inline"));
topLayout->addRow(QString(), m_renameInline);
// 'Switch between split views with tab key'
m_useTabForSplitViewSwitch = new QCheckBox(i18nc("option:check", "Switch between split views with tab key"));
// 'Switch between panes of split views with tab key'
m_useTabForSplitViewSwitch = new QCheckBox(i18nc("option:check", "Switch between split views panes with tab key"));
topLayout->addRow(QString(), m_useTabForSplitViewSwitch);
// 'Close active view when turning off split view'
// 'Close active pane when turning off split view'
m_closeActiveSplitView = new QCheckBox(i18nc("option:check", "Turning off split view closes active pane"));
topLayout->addRow(QString(), m_closeActiveSplitView);
m_closeActiveSplitView->setToolTip(i18n("When deactivated, turning off split view will close the inactive pane"));