Skip to content

Commit

Permalink
String changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Sep 25, 2017
1 parent 4070b39 commit 5391aed
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion resources/default_tweaks.py
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@
cover_drop_exclude = ()

#: Show the Saved searches box in the Search bar
# In newer version of calibre, only a button that allows you to add a new Saved
# In newer versions of calibre, only a button that allows you to add a new Saved
# search is shown in the Search bar. If you would like to have the old
# Saved searches box with its two buttons back, set this tweak to True.
show_saved_search_box = False
2 changes: 1 addition & 1 deletion src/calibre/gui2/dialogs/metadata_bulk.ui
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ title and author are swapped before the title case is set</string>
<item>
<widget class="QRadioButton" name="cover_from_fmt">
<property name="text">
<string>Set from &amp;e-book file(s)</string>
<string>Set from &amp;e-book files</string>
</property>
</widget>
</item>
Expand Down
4 changes: 2 additions & 2 deletions src/calibre/gui2/wizard/send_email.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ def start_test(self, *args):
return error_dialog(self, _('No email address'), _(
'No email address to send mail to has been specified. You'
' must specify a To: address before running the test.'), show=True)
self.log.setPlainText(_('Sending mail, please wait...'))
self.log.setPlainText(_('Sending email, please wait...'))
self.test_button.setEnabled(False)
t = Thread(target=self.run_test, name='TestEmailSending')
t.daemon = True
t.start()

def run_test(self):
try:
tb = self.test_func(unicode(self.to.text())) or _('Mail successfully sent')
tb = self.test_func(unicode(self.to.text())) or _('Email successfully sent')
except Exception:
import traceback
tb = traceback.format_exc()
Expand Down
2 changes: 1 addition & 1 deletion src/calibre/gui2/wizard/send_email.ui
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<string>&lt;p&gt;A mail server is useful if the service you are sending mail to only accepts email from well know mail services.</string>
</property>
<property name="title">
<string>Mail server</string>
<string>Email server</string>
</property>
<layout class="QGridLayout" name="gridLayout_3">
<item row="0" column="0" colspan="4">
Expand Down

0 comments on commit 5391aed

Please sign in to comment.