summaryrefslogtreecommitdiff
path: root/raphodo/nameeditor.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/nameeditor.py
parent77dd64c0757c0191b276e65c24ee9874959790c8 (diff)
New upstream version 0.9.4upstream/0.9.4
Diffstat (limited to 'raphodo/nameeditor.py')
-rwxr-xr-xraphodo/nameeditor.py37
1 files changed, 23 insertions, 14 deletions
diff --git a/raphodo/nameeditor.py b/raphodo/nameeditor.py
index 139c878..5bb570e 100755
--- a/raphodo/nameeditor.py
+++ b/raphodo/nameeditor.py
@@ -32,25 +32,30 @@ import logging
from gettext import gettext as _
-from PyQt5.QtWidgets import (QTextEdit, QApplication, QComboBox, QPushButton, QLabel, QDialog,
- QDialogButtonBox, QVBoxLayout, QFormLayout, QGridLayout, QGroupBox, QScrollArea, QWidget,
- QFrame, QStyle, QSizePolicy, QLineEdit, QMessageBox)
-from PyQt5.QtGui import (QTextCharFormat, QFont, QTextCursor, QMouseEvent, QSyntaxHighlighter,
- QTextDocument, QBrush, QColor, QFontMetrics, QKeyEvent, QResizeEvent,
- QStandardItem, QPixmap, QWheelEvent)
+from PyQt5.QtWidgets import (
+ QTextEdit, QApplication, QComboBox, QPushButton, QLabel, QDialog, QDialogButtonBox,
+ QVBoxLayout, QFormLayout, QGridLayout, QGroupBox, QScrollArea, QWidget, QFrame, QStyle,
+ QSizePolicy, QLineEdit, QMessageBox
+)
+from PyQt5.QtGui import (
+ QTextCharFormat, QFont, QTextCursor, QMouseEvent, QSyntaxHighlighter, QTextDocument, QBrush,
+ QColor, QFontMetrics, QKeyEvent, QResizeEvent, QStandardItem, QWheelEvent
+)
from PyQt5.QtCore import (Qt, pyqtSlot, QSignalMapper, QSize, pyqtSignal)
from sortedcontainers import SortedList
from raphodo.generatenameconfig import *
import raphodo.generatename as gn
-from raphodo.constants import (CustomColors, PrefPosition, NameGenerationType, PresetPrefType,
- PresetClass)
+from raphodo.constants import (
+ CustomColors, PrefPosition, NameGenerationType, PresetPrefType, PresetClass
+)
from raphodo.rpdfile import SamplePhoto, SampleVideo, RPDFile, Photo, Video, FileType
from raphodo.preferences import DownloadsTodayTracker, Preferences, match_pref_list
import raphodo.exiftool as exiftool
from raphodo.utilities import remove_last_char_from_list_str
from raphodo.messagewidget import MessageWidget
+from raphodo.viewutils import translateButtons
import raphodo.qrc_resources
@@ -678,6 +683,7 @@ class CreatePreset(QDialog):
buttonBox.addButton(QDialogButtonBox.Cancel) # type: QPushButton
self.saveButton = buttonBox.addButton(QDialogButtonBox.Save) # type: QPushButton
self.saveButton.setEnabled(False)
+ translateButtons(buttonBox)
buttonBox.rejected.connect(self.reject)
buttonBox.accepted.connect(self.accept)
@@ -790,25 +796,25 @@ class PrefDialog(QDialog):
self.generation_type = generation_type
if generation_type == NameGenerationType.photo_subfolder:
- self.setWindowTitle('Photo Subfolder Generation Editor')
+ self.setWindowTitle(_('Photo Subfolder Generation Editor'))
self.preset_type = PresetPrefType.preset_photo_subfolder
self.builtin_pref_lists = PHOTO_SUBFOLDER_MENU_DEFAULTS_CONV
self.builtin_pref_names = [make_subfolder_menu_entry(pref)
for pref in PHOTO_SUBFOLDER_MENU_DEFAULTS]
elif generation_type == NameGenerationType.video_subfolder:
- self.setWindowTitle('Video Subfolder Generation Editor')
+ self.setWindowTitle(_('Video Subfolder Generation Editor'))
self.preset_type = PresetPrefType.preset_video_subfolder
self.builtin_pref_lists = VIDEO_SUBFOLDER_MENU_DEFAULTS_CONV
self.builtin_pref_names = [make_subfolder_menu_entry(pref)
for pref in VIDEO_SUBFOLDER_MENU_DEFAULTS]
elif generation_type == NameGenerationType.photo_name:
- self.setWindowTitle('Photo Renaming Editor')
+ self.setWindowTitle(_('Photo Renaming Editor'))
self.preset_type = PresetPrefType.preset_photo_rename
self.builtin_pref_lists = PHOTO_RENAME_MENU_DEFAULTS_CONV
self.builtin_pref_names = [make_rename_menu_entry(pref)
for pref in PHOTO_RENAME_MENU_DEFAULTS]
else:
- self.setWindowTitle('Video Renaming Editor')
+ self.setWindowTitle(_('Video Renaming Editor'))
self.preset_type = PresetPrefType.preset_video_rename
self.builtin_pref_lists = VIDEO_RENAME_MENU_DEFAULTS_CONV
self.builtin_pref_names = [make_rename_menu_entry(pref)
@@ -836,8 +842,9 @@ class PrefDialog(QDialog):
'<b><font color="red">Warning:</font></b> <i>There is insufficient data to fully '
'generate the name. Please use other renaming options.</i>')
- self.is_subfolder = generation_type in (NameGenerationType.photo_subfolder,
- NameGenerationType.video_subfolder)
+ self.is_subfolder = generation_type in (
+ NameGenerationType.photo_subfolder, NameGenerationType.video_subfolder
+ )
if self.is_subfolder:
# Translators: please do not modify, change the order of or leave out html formatting
@@ -1003,6 +1010,8 @@ class PrefDialog(QDialog):
self.helpButton = buttonBox.button(QDialogButtonBox.Help) # type: QPushButton
self.helpButton.clicked.connect(self.helpButtonClicked)
self.helpButton.setToolTip(_('Get help online...'))
+ translateButtons(buttonBox)
+
buttonBox.rejected.connect(self.reject)
buttonBox.accepted.connect(self.accept)