Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various string fixes #141

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/qlipperitem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ QString QlipperItem::displayRole() const
case QlipperItem::Sticky:
return m_display.left(QlipperPreferences::Instance()->displaySize());
case QlipperItem::Url:
return QObject::tr("Url: %1").arg(m_display).left(QlipperPreferences::Instance()->displaySize());
return QObject::tr("URL: %1").arg(m_display).left(QlipperPreferences::Instance()->displaySize());
case QlipperItem::Binary:
return QObject::tr("Binary: %1").arg(m_display).left(QlipperPreferences::Instance()->displaySize());
}
Expand Down
24 changes: 12 additions & 12 deletions src/qlipperpreferencesdialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<item row="0" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>Clipboard Entries Count:</string>
<string>Clipboard Entry Count:</string>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does everything have to be title case?

</property>
</widget>
</item>
Expand Down Expand Up @@ -81,7 +81,7 @@
<item row="1" column="1">
<widget class="QSpinBox" name="displaySizeComboBox">
<property name="toolTip">
<string>How long is the preview text in the menu</string>
<string>Length of preview text in the menu</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
Expand Down Expand Up @@ -117,14 +117,14 @@
<item row="3" column="1">
<widget class="QKeySequenceWidget" name="shortcutWidget" native="true">
<property name="toolTip">
<string>Change global keyboard shortcut to invoke the menu on screen</string>
<string>Change keyboard shortcut to bring up the menu</string>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="label_3">
<property name="text">
<string>Tray icon image:</string>
<string>Tray-icon image:</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
Expand All @@ -150,43 +150,43 @@
<item row="5" column="0" colspan="2">
<widget class="QCheckBox" name="platformExtensionsCheckBox">
<property name="toolTip">
<string>Use clipboard extensions (X11 Selections, OS X Find Buffer) when it's supported</string>
<string>Use clipboard extensions (X11 Selections, macOS Find Buffer) when it's supported</string>
</property>
<property name="text">
<string>Use Platform Specific Extensions (Advanced)</string>
<string>Use Platform-specific Extensions (Advanced)</string>
</property>
</widget>
</item>
<item row="6" column="0" colspan="2">
<widget class="QComboBox" name="synchronizePSE">
<item>
<property name="text">
<string>No synchronization of clipboard &amp; PSE</string>
<string>No syncing of clipboard and PSE</string>
</property>
</item>
<item>
<property name="text">
<string>Synchronize clipboard &amp; PSE when item selected</string>
<string>Sync clipboard and PSE when an item is selected</string>
</property>
</item>
<item>
<property name="text">
<string>Synchronize clipboard &amp; PSE instantly</string>
<string>Sync clipboard and PSE instantly</string>
</property>
</item>
</widget>
</item>
<item row="7" column="0" colspan="2">
<widget class="QCheckBox" name="clearItemsOnExit">
<property name="text">
<string>Clear Items on Exit</string>
<string>Clear Items after Exit</string>
</property>
</widget>
</item>
<item row="8" column="0" colspan="2">
<widget class="QCheckBox" name="synchronizeHistory">
<property name="text">
<string>Synchronize history to storage instantly</string>
<string>Sync history to storage instantly</string>
</property>
</widget>
</item>
Expand All @@ -206,7 +206,7 @@
<item row="9" column="0">
<widget class="QCheckBox" name="confirmOnClear">
<property name="text">
<string>Confirm Clear History</string>
<string>Confirm Clearing History</string>
</property>
</widget>
</item>
Expand Down