summaryrefslogtreecommitdiff
path: root/raphodo/didyouknow.py
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2017-10-02 06:51:13 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2017-10-02 06:51:13 +0200
commitc5fc6c6030d7d9d1b2af3d5165bebed3decd741b (patch)
treedfacccc9ae0747e53e53e5388b2ecd0623e040c3 /raphodo/didyouknow.py
parent77dd64c0757c0191b276e65c24ee9874959790c8 (diff)
New upstream version 0.9.4upstream/0.9.4
Diffstat (limited to 'raphodo/didyouknow.py')
-rw-r--r--raphodo/didyouknow.py34
1 files changed, 32 insertions, 2 deletions
diff --git a/raphodo/didyouknow.py b/raphodo/didyouknow.py
index 04879b5..b0e6780 100644
--- a/raphodo/didyouknow.py
+++ b/raphodo/didyouknow.py
@@ -37,6 +37,7 @@ from gettext import gettext as _
import raphodo.qrc_resources as qrc_resources
from raphodo.preferences import Preferences
+from raphodo.viewutils import translateButtons
tips = (
(
@@ -71,6 +72,34 @@ tips = (
),
(
_(
+ "After a download finishes, an icon replaces the thumbnail's checkbox. The icon's "
+ "color indicates whether the download was successful (green), had file renaming "
+ "problems (yellow/orange), or failed (red)."
+ ),
+ 'downloaded.png'
+ ),
+ (
+ _(
+ """
+ In case of any problems, a red icon will appear at the bottom of the window
+ indicating how many error reports there are. Clicking on it opens the Error Report
+ window.
+ """
+ ),
+ 'errorreporticon.png',
+ _(
+ """
+ The Error Report window lists any problems encountered before, during or after the
+ download. An orange triangle represents a warning, a red circle indicates a failure,
+ and a black circle indicates more serious failures. You can click on the hyperlinks to
+ open its file or device in a file manager. You can also search the reports using the
+ search box in the lower left of the Error Report window.
+ """
+ ),
+ 'errorreport.png',
+ ),
+ (
+ _(
"You can simultaneously download from multiple cameras, smartphones, memory cards, "
"and hard drives&mdash;as many devices as your computer can handle at one time."
),
@@ -301,7 +330,7 @@ a Job Code for them before the download begins.
"""
When you give your photos and videos unique filenames, you'll never be confused as to
which file is which. Using <b>sequence numbers</b> to make filenames unique is highly
-recommended!.
+recommended!
"""
),
'photoeditordefault.png',
@@ -364,7 +393,7 @@ Several of the program's preferences can be set from the command line, including
sources, destinations, and backups. Additionally, settings can be reset to their
default state, and caches and remembered files cleared.
"""
- ),
+ ) + _("You can also import program preferences from the older 0.4 version."),
'commandline.png'
),
(
@@ -471,6 +500,7 @@ class DidYouKnowDialog(QDialog):
self.previousButton = QPushButton(_('&Previous'))
buttons = QDialogButtonBox(QDialogButtonBox.Close)
+ translateButtons(buttons)
buttons.addButton(self.previousButton, QDialogButtonBox.ActionRole)
buttons.addButton(self.nextButton, QDialogButtonBox.ActionRole)
self.previousButton.clicked.connect(self.previousButtonClicked)