mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-07 18:24:30 -04:00
String changes
This commit is contained in:
parent
fd9cc8ce30
commit
ff71a384db
@ -130,8 +130,8 @@ class KOBO(USBMS):
|
|||||||
'expired records and allow you to delete them with '
|
'expired records and allow you to delete them with '
|
||||||
'the new delete logic.'),
|
'the new delete logic.'),
|
||||||
_('Show previews') + ':::'+_(
|
_('Show previews') + ':::'+_(
|
||||||
'Kobo previews are included on the Touch and some other versions'
|
'Kobo previews are included on the Touch and some other versions.'
|
||||||
' by default they are no longer displayed as there is no good reason to '
|
' By default, they are no longer displayed as there is no good reason to '
|
||||||
'see them. Enable if you wish to see/delete them.'),
|
'see them. Enable if you wish to see/delete them.'),
|
||||||
_('Show recommendations') + ':::'+_(
|
_('Show recommendations') + ':::'+_(
|
||||||
'Kobo now shows recommendations on the device. In some cases these have '
|
'Kobo now shows recommendations on the device. In some cases these have '
|
||||||
@ -142,7 +142,7 @@ class KOBO(USBMS):
|
|||||||
'database version. With this option calibre will attempt '
|
'database version. With this option calibre will attempt '
|
||||||
'to perform full read-write functionality - Here be Dragons!! '
|
'to perform full read-write functionality - Here be Dragons!! '
|
||||||
'Enable only if you are comfortable with restoring your kobo '
|
'Enable only if you are comfortable with restoring your kobo '
|
||||||
'to factory defaults and testing software'),
|
'to Factory defaults and testing software'),
|
||||||
]
|
]
|
||||||
|
|
||||||
EXTRA_CUSTOMIZATION_DEFAULT = [
|
EXTRA_CUSTOMIZATION_DEFAULT = [
|
||||||
@ -715,7 +715,7 @@ class KOBO(USBMS):
|
|||||||
' check by right clicking the device icon in calibre and'
|
' check by right clicking the device icon in calibre and'
|
||||||
' selecting "Configure this device" and then the '
|
' selecting "Configure this device" and then the '
|
||||||
' "Attempt to support newer firmware" option.'
|
' "Attempt to support newer firmware" option.'
|
||||||
' Doing so may require you to perform a factory reset of'
|
' Doing so may require you to perform a Factory reset of'
|
||||||
' your Kobo.') + ((
|
' your Kobo.') + ((
|
||||||
'\nDevice database version: %s.'
|
'\nDevice database version: %s.'
|
||||||
'\nDevice firmware version: %s') % (self.dbversion, self.fwversion))
|
'\nDevice firmware version: %s') % (self.dbversion, self.fwversion))
|
||||||
@ -3728,7 +3728,7 @@ class KOBOTOUCH(KOBO):
|
|||||||
' check by right clicking the device icon in calibre and'
|
' check by right clicking the device icon in calibre and'
|
||||||
' selecting "Configure this device" and then the'
|
' selecting "Configure this device" and then the'
|
||||||
' "Attempt to support newer firmware" option.'
|
' "Attempt to support newer firmware" option.'
|
||||||
' Doing so may require you to perform a factory reset of'
|
' Doing so may require you to perform a Factory reset of'
|
||||||
' your Kobo.'
|
' your Kobo.'
|
||||||
) +
|
) +
|
||||||
'\n\n' +
|
'\n\n' +
|
||||||
|
@ -438,8 +438,8 @@ class DeviceListGroupBox(DeviceOptionsGroupBox):
|
|||||||
|
|
||||||
self.show_previews_checkbox = create_checkbox(
|
self.show_previews_checkbox = create_checkbox(
|
||||||
_('Show previews'),
|
_('Show previews'),
|
||||||
_('Kobo previews are included on the Touch and some other versions'
|
_('Kobo previews are included on the Touch and some other versions.'
|
||||||
' by default they are no longer displayed as there is no good reason to '
|
' By default, they are no longer displayed as there is no good reason to '
|
||||||
'see them. Enable if you wish to see/delete them.'),
|
'see them. Enable if you wish to see/delete them.'),
|
||||||
device.get_pref('show_previews')
|
device.get_pref('show_previews')
|
||||||
)
|
)
|
||||||
|
@ -264,12 +264,12 @@ class Quickview(QDialog, Ui_Quickview):
|
|||||||
self.close_button.setDefault(False)
|
self.close_button.setDefault(False)
|
||||||
self.close_button_tooltip = _('The Quickview shortcut ({0}) shows/hides the Quickview panel')
|
self.close_button_tooltip = _('The Quickview shortcut ({0}) shows/hides the Quickview panel')
|
||||||
if self.is_pane:
|
if self.is_pane:
|
||||||
self.dock_button.setText(_('Undock'))
|
self.dock_button.setText(_('&Undock'))
|
||||||
self.dock_button.setToolTip(_('Show the Quickview panel in its own floating window'))
|
self.dock_button.setToolTip(_('Show the Quickview panel in its own floating window'))
|
||||||
self.dock_button.setIcon(QIcon(I('arrow-up.png')))
|
self.dock_button.setIcon(QIcon(I('arrow-up.png')))
|
||||||
# Remove the ampersands from the buttons because shortcuts exist.
|
# Remove the ampersands from the buttons because shortcuts exist.
|
||||||
self.lock_qv.setText(_('Lock Quickview contents'))
|
self.lock_qv.setText(_('Lock Quickview contents'))
|
||||||
self.refresh_button.setText(_('Refresh'))
|
self.refresh_button.setText(_('&Refresh'))
|
||||||
self.gui.quickview_splitter.add_quickview_dialog(self)
|
self.gui.quickview_splitter.add_quickview_dialog(self)
|
||||||
self.close_button.setVisible(False)
|
self.close_button.setVisible(False)
|
||||||
else:
|
else:
|
||||||
|
@ -131,7 +131,7 @@ class ConditionEditor(QWidget): # {{{
|
|||||||
self.l = l = QGridLayout(self)
|
self.l = l = QGridLayout(self)
|
||||||
self.setLayout(l)
|
self.setLayout(l)
|
||||||
|
|
||||||
texts = _('If the ___ column ___ values')
|
texts = _('If the ___ column ___ value')
|
||||||
try:
|
try:
|
||||||
one, two, three = texts.split('___')
|
one, two, three = texts.split('___')
|
||||||
except:
|
except:
|
||||||
|
@ -1525,11 +1525,11 @@ when the column in the book list is changed using the cursor arrow keys</string>
|
|||||||
<item row="1" column="0">
|
<item row="1" column="0">
|
||||||
<widget class="QCheckBox" name="opt_qv_retkey_changes_column">
|
<widget class="QCheckBox" name="opt_qv_retkey_changes_column">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Pressing 'Enter' in a cell changes both the book and the
|
<string>Pressing Enter in a cell changes both the book and the
|
||||||
column being examined (the left-hand pane)</string>
|
column being examined (the left-hand pane)</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Pressing 'Enter' changes the examined column</string>
|
<string>&Pressing Enter changes the examined column</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user