diff --git a/CHANGELOG.md b/CHANGELOG.md index 046203029..da126fe27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ Version counting is based on semantic versioning (Major.Feature.Patch) * Add optional edge easing for the magnifying glass. The magnified region is pushed toward the edges of the view, so content near the border can be inspected without pushing the cursor all the way into the corner. * Require a full wheel notch before the magnifying glass changes size or zoom, so a light trackpad gesture no longer resizes it. * Fix showing the go to flow bar asking for permission to control the computer on macOS. Moving the cursor into the bar now works without granting any accessibility permission, where before it was silently doing nothing. +* Add a setting to control what the Escape key does. It can keep quitting the reader, as before, or instead cancel the topmost active mode: magnifying glass, dictionary, go to flow and then fullscreen. ### YACReaderLibrary * Add a library repair function to restore missing covers and rescan files that previously failed to be added. diff --git a/YACReader/configuration.h b/YACReader/configuration.h index 58fb39b3c..74f4a58e3 100644 --- a/YACReader/configuration.h +++ b/YACReader/configuration.h @@ -32,6 +32,11 @@ enum MouseMode { HotAreas }; +enum EscapeKeyBehavior { + EscapeQuits = 0, + EscapeCancelsMode = 1 +}; + class Configuration : public QObject { Q_OBJECT @@ -123,6 +128,9 @@ class Configuration : public QObject MouseMode getMouseMode() { return static_cast(settings->value(MOUSE_MODE, MouseMode::Normal).toInt()); } void setMouseMode(MouseMode mouseMode) { settings->setValue(MOUSE_MODE, static_cast(mouseMode)); } + EscapeKeyBehavior getEscapeKeyBehavior() { return static_cast(settings->value(ESCAPE_KEY_BEHAVIOR, EscapeKeyBehavior::EscapeQuits).toInt()); } + void setEscapeKeyBehavior(EscapeKeyBehavior behavior) { settings->setValue(ESCAPE_KEY_BEHAVIOR, static_cast(behavior)); } + ScaleMethod getScalingMethod() { return static_cast(settings->value(SCALING_METHOD, static_cast(ScaleMethod::Lanczos)).toInt()); } void setScalingMethod(ScaleMethod method) { settings->setValue(SCALING_METHOD, static_cast(method)); } }; diff --git a/YACReader/main_window_viewer.cpp b/YACReader/main_window_viewer.cpp index 19cecd344..1372cc05a 100644 --- a/YACReader/main_window_viewer.cpp +++ b/YACReader/main_window_viewer.cpp @@ -218,6 +218,7 @@ MainWindowViewer::~MainWindowViewer() delete showShorcutsAction; delete showInfoAction; delete closeAction; + delete exitAction; delete showDictionaryAction; delete adjustToFullSizeAction; delete fitToPageAction; @@ -565,10 +566,19 @@ void MainWindowViewer::createActions() showInfoAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(SHOW_INFO_ACTION_Y)); connect(showInfoAction, &QAction::triggered, viewer, &Viewer::informationSwitch); - closeAction = new QAction(tr("Close"), this); + // closeAction owns the Escape key. Depending on the EscapeKeyBehavior setting it either + // quits (default) or cancels the topmost active mode. The File▸Close menu command lives + // on exitAction below, which always quits regardless of the setting. + closeAction = new QAction(tr("Escape"), this); + // The shortcuts editor lists actions by toolTip(), which otherwise falls back to the + // action text; name the behaviour rather than the key, which it already shows. + closeAction->setToolTip(tr("Escape key: quit, or cancel the active mode")); closeAction->setData(CLOSE_ACTION_Y); closeAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(CLOSE_ACTION_Y)); - connect(closeAction, &QAction::triggered, this, &QWidget::close); + connect(closeAction, &QAction::triggered, this, &MainWindowViewer::onEscapePressed); + + exitAction = new QAction(tr("Close"), this); + connect(exitAction, &QAction::triggered, this, &QWidget::close); showDictionaryAction = new QAction(tr("Show Dictionary"), this); // showDictionaryAction->setCheckable(true); @@ -787,7 +797,7 @@ void MainWindowViewer::createToolBars() fileMenu->addMenu(recentmenu); fileMenu->addSeparator(); - fileMenu->addAction(closeAction); + fileMenu->addAction(exitAction); auto editMenu = new QMenu(tr("Edit")); editMenu->addAction(leftRotationAction); @@ -1187,6 +1197,45 @@ void MainWindowViewer::toggleFullScreen() Configuration::getConfiguration().setFullScreen(fullscreen = !fullscreen); } +void MainWindowViewer::onEscapePressed() +{ + if (Configuration::getConfiguration().getEscapeKeyBehavior() == EscapeCancelsMode) { + // Cancel the topmost active mode; if none is active this is a no-op (does not quit). + cancelActiveMode(); + return; + } + + close(); +} + +bool MainWindowViewer::cancelActiveMode() +{ + // This order is documented to users in the Options ▸ General ▸ "Escape key" tooltip; + // keep the two in sync when adding or reordering modes. + if (viewer->magnifyingGlassIsVisible()) { + viewer->hideMagnifyingGlass(); + showMagnifyingGlassAction->setChecked(false); + return true; + } + + if (viewer->translatorIsVisible()) { + viewer->animateHideTranslator(); + return true; + } + + if (viewer->goToFlowIsVisible()) { + viewer->animateHideGoToFlow(); + return true; + } + + if (fullscreen) { + toggleFullScreen(); + return true; + } + + return false; +} + void MainWindowViewer::toFullScreen() { fromMaximized = this->isMaximized(); @@ -1724,6 +1773,7 @@ void MainWindowViewer::applyTheme(const Theme &theme) setIcon(showShorcutsAction, toolbarTheme.showShorcutsAction, toolbarTheme.showShorcutsAction18x18); setIcon(showInfoAction, toolbarTheme.showInfoAction, toolbarTheme.showInfoAction18x18); setIcon(closeAction, toolbarTheme.closeAction, toolbarTheme.closeAction18x18); + setIcon(exitAction, toolbarTheme.closeAction, toolbarTheme.closeAction18x18); setIcon(showDictionaryAction, toolbarTheme.showDictionaryAction, toolbarTheme.showDictionaryAction18x18); setIcon(adjustToFullSizeAction, toolbarTheme.adjustToFullSizeAction, toolbarTheme.adjustToFullSizeAction18x18); setIcon(fitToPageAction, toolbarTheme.fitToPageAction, toolbarTheme.fitToPageAction18x18); diff --git a/YACReader/main_window_viewer.h b/YACReader/main_window_viewer.h index c1d10caf4..d960422d6 100644 --- a/YACReader/main_window_viewer.h +++ b/YACReader/main_window_viewer.h @@ -81,6 +81,10 @@ public slots: void toggleFitToWidthSlider(); + // Escape key handling: either quits (default) or cancels the topmost active mode, + // depending on the EscapeKeyBehavior setting. + void onEscapePressed(); + /*void viewComic(); void prev(); void next(); @@ -135,7 +139,12 @@ public slots: QAction *leftRotationAction; QAction *rightRotationAction; QAction *showInfoAction; - QAction *closeAction; + QAction *closeAction; // owns the Escape key; dispatches quit vs. cancel-mode + QAction *exitAction; // File▸Close menu command, always quits + + // Cancels the topmost active mode (magnifier, translator, go-to-flow, fullscreen). + // Returns true if a mode was cancelled, false if none was active. + bool cancelActiveMode(); QAction *doublePageAction; QAction *doubleMangaPageAction; QAction *continuousScrollAction; diff --git a/YACReader/options_dialog.cpp b/YACReader/options_dialog.cpp index 0f0689857..ad86127c4 100644 --- a/YACReader/options_dialog.cpp +++ b/YACReader/options_dialog.cpp @@ -131,6 +131,32 @@ OptionsDialog::OptionsDialog(QWidget *parent) mouseModeBox->setLayout(mouseModeLayout); + auto escapeKeyBox = new QGroupBox(tr("Escape key")); + auto escapeKeyLayout = new QVBoxLayout(); + + escapeQuitsRadioButton = new QRadioButton(tr("Quit the reader")); + escapeCancelsModeRadioButton = new QRadioButton(tr("Cancel the active mode")); + + escapeQuitsRadioButton->setToolTip(tr("Escape closes the reader, even while a mode is active.")); + + // Keep this list in sync with MainWindowViewer::cancelActiveMode(), which implements the order. + //: Tooltip listing the order in which modes are cancelled. Only the first + //: active mode in the list is cancelled per Escape keypress. + escapeCancelsModeRadioButton->setToolTip(tr("Escape cancels the first of these that is active:\n" + "\n" + "1. Magnifying glass\n" + "2. Dictionary\n" + "3. Go to page bar\n" + "4. Fullscreen\n" + "\n" + "If none is active, Escape does nothing.")); + + escapeKeyLayout->addWidget(escapeQuitsRadioButton); + escapeKeyLayout->addWidget(escapeCancelsModeRadioButton); + + escapeKeyBox->setLayout(escapeKeyLayout); + addShortcutsSection(escapeKeyBox); + layoutGeneral->addWidget(pathBox); layoutGeneral->addWidget(languageBox); layoutGeneral->addWidget(displayBox); @@ -354,6 +380,9 @@ void OptionsDialog::saveOptions() } Configuration::getConfiguration().setMouseMode(mouseMode); + Configuration::getConfiguration().setEscapeKeyBehavior( + escapeCancelsModeRadioButton->isChecked() ? EscapeCancelsMode : EscapeQuits); + Configuration::getConfiguration().setScalingMethod(static_cast(scalingMethodCombo->currentIndex())); emit changedImageOptions(); @@ -431,6 +460,11 @@ void OptionsDialog::restoreOptions(QSettings *settings) hotAreasMouseModeRadioButton->setChecked(true); break; } + + if (Configuration::getConfiguration().getEscapeKeyBehavior() == EscapeCancelsMode) + escapeCancelsModeRadioButton->setChecked(true); + else + escapeQuitsRadioButton->setChecked(true); } void OptionsDialog::updateColor(const QColor &color) diff --git a/YACReader/options_dialog.h b/YACReader/options_dialog.h index a078cbd32..b75a8adb9 100644 --- a/YACReader/options_dialog.h +++ b/YACReader/options_dialog.h @@ -75,6 +75,9 @@ class OptionsDialog : public YACReaderOptionsDialog, protected Themable QRadioButton *leftRightNavigationMouseModeRadioButton; QRadioButton *hotAreasMouseModeRadioButton; + QRadioButton *escapeQuitsRadioButton; + QRadioButton *escapeCancelsModeRadioButton; + public slots: void saveOptions() override; void restoreOptions(QSettings *settings) override; diff --git a/YACReader/viewer.cpp b/YACReader/viewer.cpp index e64c39ce6..0f3bc3f06 100644 --- a/YACReader/viewer.cpp +++ b/YACReader/viewer.cpp @@ -1308,6 +1308,16 @@ void Viewer::translatorSwitch() translator->isVisible() ? animateHideTranslator() : animateShowTranslator(); } +bool Viewer::translatorIsVisible() const +{ + return translator->isVisible(); +} + +bool Viewer::goToFlowIsVisible() const +{ + return goToFlow->isVisible(); +} + void Viewer::showGoToFlow() { if (render->hasLoadedComic()) { diff --git a/YACReader/viewer.h b/YACReader/viewer.h index 138f12824..9d2770bfd 100644 --- a/YACReader/viewer.h +++ b/YACReader/viewer.h @@ -85,6 +85,8 @@ public slots: void rotateLeft(); void rotateRight(); bool magnifyingGlassIsVisible() const { return magnifyingGlassShown; } + bool translatorIsVisible() const; + bool goToFlowIsVisible() const; void setBookmark(bool); void save(); void doublePageSwitch(); diff --git a/YACReader/yacreader_de.ts b/YACReader/yacreader_de.ts index 7dcca4ebe..70c25659e 100644 --- a/YACReader/yacreader_de.ts +++ b/YACReader/yacreader_de.ts @@ -276,12 +276,12 @@ OptionsDialog - + Gamma Gammawert - + Reset Zurücksetzen @@ -291,32 +291,32 @@ Meine Comics-Pfad - + Scaling Skalierung - + Scaling method Skalierungsmethode - + Nearest (fast, low quality) Am nächsten (schnell, niedrige Qualität) - + Bilinear Bilinear-Filter - + Lanczos (better quality) Lanczos (bessere Qualität) - + Image adjustment Bildanpassung @@ -331,22 +331,22 @@ Auswählen - + Image options Bilderoptionen - + Contrast Kontrast - + Appearance Aussehen - + Options Optionen @@ -371,7 +371,7 @@ Löschen - + Comics directory Comics-Verzeichnis @@ -381,27 +381,27 @@ Hintergrundfarbe - + Page Flow Seitenfluss - + General Allgemein - + Brightness Helligkeit - + Restart is needed Neustart erforderlich - + Quick Navigation Mode Schnellnavigations-Modus @@ -476,27 +476,67 @@ Klicken Sie auf die linke oder rechte Hälfte des Bildschirms, um die Seiten umzublättern. - + + Escape key + Escape-Taste + + + + Quit the reader + Reader beenden + + + + Cancel the active mode + Aktiven Modus abbrechen + + + + Escape closes the reader, even while a mode is active. + Die Escape-Taste schließt den Reader, auch wenn ein Modus aktiv ist. + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + Die Escape-Taste beendet den ersten aktiven Modus in dieser Reihenfolge: + +1. Lupe +2. Wörterbuch +3. „Gehe zu Seite“-Leiste +4. Vollbildmodus + +Wenn keiner aktiv ist, geschieht beim Drücken der Escape-Taste nichts. + + + Disable mouse over activation Aktivierung durch Maus deaktivieren - + Fit options Anpassungsoptionen - + Enlarge images to fit width/height Bilder vergrößern, um sie Breite/Höhe anzupassen - + Double Page options Doppelseiten-Einstellungen - + Show covers as single page Cover als eine Seite darstellen @@ -734,13 +774,13 @@ Viewer - + Page not available! Seite nicht verfügbar! - + Press 'O' to open comic. 'O' drücken, um Comic zu öffnen. @@ -750,7 +790,7 @@ Fehler beim Öffnen des Comics - + Cover! Titelseite! @@ -770,12 +810,12 @@ Nicht gefunden - + Last page! Letzte Seite! - + Loading...please wait! Ladevorgang... Bitte warten! @@ -901,541 +941,551 @@ YACReader::MainWindowViewer - + &Open &Öffnen - + Open a comic Comic öffnen - + New instance Neuer Fall - + Open Folder Ordner öffnen - + Open image folder Bilder-Ordner öffnen - + Open latest comic Neuesten Comic öffnen - + Open the latest comic opened in the previous reading session Öffne den neuesten Comic deiner letzten Sitzung - + Clear Löschen - + Clear open recent list Lösche Liste zuletzt geöffneter Elemente - + Save Speichern - - + + Save current page Aktuelle Seite speichern - - - - + + + + Extract page(s) - + Extract page(s) from the original source - + Previous Comic Voheriger Comic - - - + + + Open previous comic Vorherigen Comic öffnen - + Next Comic Nächster Comic - - - + + + Open next comic Nächsten Comic öffnen - + &Previous &Vorherige - - - + + + Go to previous page Zur vorherigen Seite gehen - + &Next &Nächstes - - - + + + Go to next page Zur nächsten Seite gehen - + Fit Height Höhe anpassen - + Fit image to height Bild an Höhe anpassen - + Fit Width Breite anpassen - + Fit image to width Bildbreite anpassen - + Show full size Vollansicht anzeigen - + Fit to page An Seite anpassen - + Continuous scroll Kontinuierliches Scrollen - + Switch to continuous scroll mode Wechseln Sie in den kontinuierlichen Bildlaufmodus - + Reset zoom Zoom zurücksetzen - + Show zoom slider Zoomleiste anzeigen - + Zoom+ Vergr??ern+ - + Zoom- Verkleinern- - + Rotate image to the left Bild nach links drehen - + Rotate image to the right Bild nach rechts drehen - + Double page mode Doppelseiten-Modus - + Switch to double page mode Zum Doppelseiten-Modus wechseln - + Double page manga mode Doppelseiten-Manga-Modus - + Reverse reading order in double page mode Umgekehrte Lesereihenfolge im Doppelseiten-Modus - + Go To Gehe zu - + Go to page ... Gehe zu Seite ... - + Options Optionen - + YACReader options YACReader Optionen - - + + Help Hilfe - + Help, About YACReader Hilfe, über YACReader - + Magnifying glass Vergößerungsglas - + Switch Magnifying glass Vergrößerungsglas wechseln - + Set bookmark Lesezeichen setzen - + Set a bookmark on the current page Lesezeichen auf dieser Seite setzen - + Show bookmarks Lesezeichen anzeigen - + Show the bookmarks of the current comic Lesezeichen für diesen Comic anzeigen - + Show keyboard shortcuts Tastenkürzel anzeigen - + Show Info Info anzeigen - + + Escape + Escape + + + + Escape key: quit, or cancel the active mode + Escape-Taste: Reader beenden oder aktiven Modus abbrechen + + + Close Schliessen - + Show Dictionary Wörterbuch anzeigen - + Show go to flow "Gehe zu Comic Flow" anzeigen - + Edit shortcuts Kürzel ändern - + &File &Datei - - + + Open recent Kürzlich geöffnet - + File Datei - + Edit Ändern - + View Anzeigen - + Go Los - + Window Fenster - + Open Comic Comic öffnen - + Comic files Comic-Dateien - + Open folder Ordner öffnen - - + + Comics Comichefte - + Toggle fullscreen mode Vollbild-Modus umschalten - + Hide/show toolbar Symbolleiste anzeigen/verstecken - - + + General Allgemein - + Size up magnifying glass Vergrößerungsglas vergrößern - + Size down magnifying glass Vergrößerungsglas verkleinern - + Zoom in magnifying glass Vergrößerungsglas reinzoomen - + Zoom out magnifying glass Vergrößerungsglas rauszoomen - + Reset magnifying glass Lupe zurücksetzen - - + + Magnifiying glass Vergrößerungsglas - + Toggle between fit to width and fit to height Zwischen Anpassung an Seite und Höhe wechseln - - + + Page adjustement Seitenanpassung - + Overwrite file? - + The file already exists. Do you want to overwrite it? - + The current page could not be extracted. - + Overwrite files? - + Some files already exist. Do you want to overwrite them? - + Some pages could not be extracted. - + Autoscroll down Automatisches Runterscrollen - + Autoscroll up Automatisches Raufscrollen - + Autoscroll forward, horizontal first Automatisches Vorwärtsscrollen, horizontal zuerst - + Autoscroll backward, horizontal first Automatisches Zurückscrollen, horizontal zuerst - + Autoscroll forward, vertical first Automatisches Vorwärtsscrollen, vertikal zuerst - + Autoscroll backward, vertical first Automatisches Zurückscrollen, vertikal zuerst - + Move down Nach unten - + Move up Nach oben - + Move left Nach links - + Move right Nach rechts - + Go to the first page Zur ersten Seite gehen - + Go to the last page Zur letzten Seite gehen - + Offset double page to the left Doppelseite nach links versetzt - + Offset double page to the right Doppelseite nach rechts versetzt - - + + Reading Lesend - + There is a new version available Neue Version verfügbar - + Do you want to download the new version? Möchten Sie die neue Version herunterladen? - + Remind me in 14 days In 14 Tagen erneut erinnern - + Not now Nicht jetzt diff --git a/YACReader/yacreader_en.ts b/YACReader/yacreader_en.ts index ac8448644..71ff4c863 100644 --- a/YACReader/yacreader_en.ts +++ b/YACReader/yacreader_en.ts @@ -296,47 +296,47 @@ Choose - + Quick Navigation Mode Quick Navigation Mode - + Disable mouse over activation Disable mouse over activation - + Scaling Scaling - + Scaling method Scaling method - + Nearest (fast, low quality) Nearest (fast, low quality) - + Bilinear Bilinear - + Lanczos (better quality) Lanczos (better quality) - + Restart is needed Restart is needed - + Brightness Brightness @@ -426,52 +426,92 @@ Click left or right half of the screen to turn pages. - + + Escape key + Escape key + + + + Quit the reader + Quit the reader + + + + Cancel the active mode + Cancel the active mode + + + + Escape closes the reader, even while a mode is active. + Escape closes the reader, even while a mode is active. + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + + + Contrast Contrast - + Gamma Gamma - + Reset Reset - + Image options Image options - + Fit options Fit options - + Enlarge images to fit width/height Enlarge images to fit width/height - + Double Page options Double Page options - + Show covers as single page Show covers as single page - + General General - + Appearance Appearance @@ -481,22 +521,22 @@ Clear - + Page Flow Page Flow - + Image adjustment Image adjustment - + Options Options - + Comics directory Comics directory @@ -735,7 +775,7 @@ Viewer - + Press 'O' to open comic. Press 'O' to open comic. @@ -760,22 +800,22 @@ CRC Error - + Loading...please wait! Loading...please wait! - + Page not available! Page not available! - + Cover! Cover! - + Last page! Last page! @@ -901,541 +941,551 @@ YACReader::MainWindowViewer - + &Open &Open - + Open a comic Open a comic - + New instance New instance - + Open Folder Open Folder - + Open image folder Open image folder - + Open latest comic Open latest comic - + Open the latest comic opened in the previous reading session Open the latest comic opened in the previous reading session - + Clear Clear - + Clear open recent list Clear open recent list - + Save Save - - + + Save current page Save current page - - - - + + + + Extract page(s) - + Extract page(s) from the original source - + Previous Comic Previous Comic - - - + + + Open previous comic Open previous comic - + Next Comic Next Comic - - - + + + Open next comic Open next comic - + &Previous &Previous - - - + + + Go to previous page Go to previous page - + &Next &Next - - - + + + Go to next page Go to next page - + Fit Height Fit Height - + Fit image to height Fit image to height - + Fit Width Fit Width - + Fit image to width Fit image to width - + Show full size Show full size - + Fit to page Fit to page - + Continuous scroll Continuous scroll - + Switch to continuous scroll mode Switch to continuous scroll mode - + Reset zoom Reset zoom - + Show zoom slider Show zoom slider - + Zoom+ Zoom+ - + Zoom- Zoom- - + Rotate image to the left Rotate image to the left - + Rotate image to the right Rotate image to the right - + Double page mode Double page mode - + Switch to double page mode Switch to double page mode - + Double page manga mode Double page manga mode - + Reverse reading order in double page mode Reverse reading order in double page mode - + Go To Go To - + Go to page ... Go to page ... - + Options Options - + YACReader options YACReader options - - + + Help Help - + Help, About YACReader Help, About YACReader - + Magnifying glass Magnifying glass - + Switch Magnifying glass Switch Magnifying glass - + Set bookmark Set bookmark - + Set a bookmark on the current page Set a bookmark on the current page - + Show bookmarks Show bookmarks - + Show the bookmarks of the current comic Show the bookmarks of the current comic - + Show keyboard shortcuts Show keyboard shortcuts - + Show Info Show Info - + + Escape + Escape + + + + Escape key: quit, or cancel the active mode + Escape key: quit, or cancel the active mode + + + Close Close - + Show Dictionary Show Dictionary - + Show go to flow Show go to flow - + Edit shortcuts Edit shortcuts - + &File &File - - + + Open recent Open recent - + File File - + Edit Edit - + View View - + Go Go - + Window Window - + Open Comic Open Comic - + Comic files Comic files - + Open folder Open folder - - + + Comics Comics - + Toggle fullscreen mode Toggle fullscreen mode - + Hide/show toolbar Hide/show toolbar - - + + General General - + Size up magnifying glass Size up magnifying glass - + Size down magnifying glass Size down magnifying glass - + Zoom in magnifying glass Zoom in magnifying glass - + Zoom out magnifying glass Zoom out magnifying glass - + Reset magnifying glass Reset magnifying glass - - + + Magnifiying glass Magnifiying glass - + Toggle between fit to width and fit to height Toggle between fit to width and fit to height - - + + Page adjustement Page adjustement - + Overwrite file? - + The file already exists. Do you want to overwrite it? - + The current page could not be extracted. - + Overwrite files? - + Some files already exist. Do you want to overwrite them? - + Some pages could not be extracted. - + Autoscroll down Autoscroll down - + Autoscroll up Autoscroll up - + Autoscroll forward, horizontal first Autoscroll forward, horizontal first - + Autoscroll backward, horizontal first Autoscroll backward, horizontal first - + Autoscroll forward, vertical first Autoscroll forward, vertical first - + Autoscroll backward, vertical first Autoscroll backward, vertical first - + Move down Move down - + Move up Move up - + Move left Move left - + Move right Move right - + Go to the first page Go to the first page - + Go to the last page Go to the last page - + Offset double page to the left Offset double page to the left - + Offset double page to the right Offset double page to the right - - + + Reading Reading - + There is a new version available There is a new version available - + Do you want to download the new version? Do you want to download the new version? - + Remind me in 14 days Remind me in 14 days - + Not now Not now diff --git a/YACReader/yacreader_es.ts b/YACReader/yacreader_es.ts index 3ff66b65b..19c9df467 100644 --- a/YACReader/yacreader_es.ts +++ b/YACReader/yacreader_es.ts @@ -276,12 +276,12 @@ OptionsDialog - + Gamma Gama - + Reset Restablecer @@ -291,32 +291,32 @@ Ruta a mis cómics - + Scaling Escalado - + Scaling method Método de escalado - + Nearest (fast, low quality) Vecino más cercano (rápido, baja calidad) - + Bilinear Bilineal - + Lanczos (better quality) Lanczos (mejor calidad) - + Image adjustment Ajustes de imagen @@ -331,22 +331,22 @@ Elegir - + Image options Opciones de imagen - + Contrast Contraste - + Appearance Apariencia - + Options Opciones @@ -371,7 +371,7 @@ Limpiar - + Comics directory Directorio de cómics @@ -381,27 +381,27 @@ Color de fondo - + Page Flow Flujo de página - + General Opciones generales - + Brightness Brillo - + Restart is needed Es necesario reiniciar - + Quick Navigation Mode Modo de navegación rápida @@ -476,27 +476,67 @@ Hacer clic en la mitad izquierda o derecha de la pantalla para cambiar de página. - + + Escape key + Tecla Esc + + + + Quit the reader + Salir del lector + + + + Cancel the active mode + Cancelar el modo activo + + + + Escape closes the reader, even while a mode is active. + La tecla Esc cierra el lector, incluso cuando hay un modo activo. + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + La tecla Esc cancela el primero de estos modos que esté activo: + +1. Lupa +2. Diccionario +3. Barra Ir a página +4. Pantalla completa + +Si ninguno está activo, la tecla Esc no hace nada. + + + Disable mouse over activation Desactivar activación al pasar el ratón - + Fit options Opciones de ajuste - + Enlarge images to fit width/height Ampliar imágenes para ajustarse al ancho/alto - + Double Page options Opciones de doble página - + Show covers as single page Mostrar portadas como página única @@ -734,13 +774,13 @@ Viewer - + Page not available! ¡Página no disponible! - + Press 'O' to open comic. Pulsa 'O' para abrir un fichero. @@ -750,7 +790,7 @@ Error abriendo cómic - + Cover! ¡Portada! @@ -770,12 +810,12 @@ No encontrado - + Last page! ¡Última página! - + Loading...please wait! Cargando...espere, por favor! @@ -901,541 +941,551 @@ YACReader::MainWindowViewer - + &Open &Abrir - + Open a comic Abrir cómic - + New instance Nueva instancia - + Open Folder Abrir carpeta - + Open image folder Abrir carpeta de imágenes - + Open latest comic Abrir el cómic más reciente - + Open the latest comic opened in the previous reading session Abrir el cómic más reciente abierto en la sesión de lectura anterior - + Clear Limpiar - + Clear open recent list Limpiar lista de abiertos recientemente - + Save Guardar - - + + Save current page Guardar la página actual - - - - + + + + Extract page(s) - + Extract page(s) from the original source - + Previous Comic Cómic anterior - - - + + + Open previous comic Abrir cómic anterior - + Next Comic Siguiente Cómic - - - + + + Open next comic Abrir siguiente cómic - + &Previous A&nterior - - - + + + Go to previous page Ir a la página anterior - + &Next Siguie&nte - - - + + + Go to next page Ir a la página siguiente - + Fit Height Ajustar altura - + Fit image to height Ajustar página a lo alto - + Fit Width Ajustar anchura - + Fit image to width Ajustar página a lo ancho - + Show full size Mostrar a tamaño original - + Fit to page Ajustar a página - + Continuous scroll Desplazamiento continuo - + Switch to continuous scroll mode Cambiar al modo de desplazamiento continuo - + Reset zoom Restablecer zoom - + Show zoom slider Mostrar control deslizante de zoom - + Zoom+ Ampliar+ - + Zoom- Reducir - + Rotate image to the left Rotar imagen a la izquierda - + Rotate image to the right Rotar imagen a la derecha - + Double page mode Modo a doble página - + Switch to double page mode Cambiar a modo de doble página - + Double page manga mode Modo de manga de página doble - + Reverse reading order in double page mode Invertir el orden de lectura en modo de página doble - + Go To Ir a - + Go to page ... Ir a página... - + Options Opciones - + YACReader options Opciones de YACReader - - + + Help Ayuda - + Help, About YACReader Ayuda, Sobre YACReader - + Magnifying glass Lupa - + Switch Magnifying glass Lupa On/Off - + Set bookmark Añadir marcador - + Set a bookmark on the current page Añadir un marcador en la página actual - + Show bookmarks Mostrar marcadores - + Show the bookmarks of the current comic Mostrar los marcadores del cómic actual - + Show keyboard shortcuts Mostrar atajos de teclado - + Show Info Mostrar información - + + Escape + Esc + + + + Escape key: quit, or cancel the active mode + Tecla Esc: salir o cancelar el modo activo + + + Close Cerrar - + Show Dictionary Mostrar diccionario - + Show go to flow Mostrar "Ir a Comic Flow" - + Edit shortcuts Editar accesos directos - + &File &Archivo - - + + Open recent Abrir reciente - + File Archivo - + Edit Editar - + View Ver - + Go Ir - + Window Ventana - + Open Comic Abrir cómic - + Comic files Archivos de cómic - + Open folder Abrir carpeta - - + + Comics Cómics - + Toggle fullscreen mode Alternar modo de pantalla completa - + Hide/show toolbar Ocultar/mostrar barra de herramientas - - + + General Opciones generales - + Size up magnifying glass Aumentar tamaño de la lupa - + Size down magnifying glass Disminuir tamaño de lupa - + Zoom in magnifying glass Incrementar el aumento de la lupa - + Zoom out magnifying glass Reducir el aumento de la lupa - + Reset magnifying glass Resetear lupa - - + + Magnifiying glass Lupa - + Toggle between fit to width and fit to height Alternar entre ajuste al ancho y ajuste al alto - - + + Page adjustement Ajuste de página - + Overwrite file? - + The file already exists. Do you want to overwrite it? - + The current page could not be extracted. - + Overwrite files? - + Some files already exist. Do you want to overwrite them? - + Some pages could not be extracted. - + Autoscroll down Desplazamiento automático hacia abajo - + Autoscroll up Desplazamiento automático hacia arriba - + Autoscroll forward, horizontal first Desplazamiento automático hacia adelante, primero horizontal - + Autoscroll backward, horizontal first Desplazamiento automático hacia atrás, primero horizontal - + Autoscroll forward, vertical first Desplazamiento automático hacia adelante, primero vertical - + Autoscroll backward, vertical first Desplazamiento automático hacia atrás, primero vertical - + Move down Mover abajo - + Move up Mover arriba - + Move left Mover a la izquierda - + Move right Mover a la derecha - + Go to the first page Ir a la primera página - + Go to the last page Ir a la última página - + Offset double page to the left Mover una página a la izquierda - + Offset double page to the right Mover una página a la derecha - - + + Reading Leyendo - + There is a new version available Hay una nueva versión disponible - + Do you want to download the new version? ¿Desea descargar la nueva versión? - + Remind me in 14 days Recordar en 14 días - + Not now Ahora no diff --git a/YACReader/yacreader_fr.ts b/YACReader/yacreader_fr.ts index 7166db262..f86d19b94 100644 --- a/YACReader/yacreader_fr.ts +++ b/YACReader/yacreader_fr.ts @@ -276,12 +276,12 @@ OptionsDialog - + Gamma Valeur gamma - + Reset Remise à zéro @@ -291,7 +291,7 @@ Chemin de mes bandes dessinées - + Image adjustment Ajustement de l'image @@ -306,22 +306,22 @@ Choisir - + Image options Option de l'image - + Contrast Contraste - + Appearance Apparence - + Options Possibilités @@ -346,12 +346,12 @@ Clair - + Comics directory Répertoire des bandes dessinées - + Quick Navigation Mode Mode navigation rapide @@ -431,72 +431,112 @@ Cliquez sur la moitié gauche ou droite de l'écran pour tourner les pages. - + + Escape key + Touche Échap + + + + Quit the reader + Quitter le lecteur + + + + Cancel the active mode + Annuler le mode actif + + + + Escape closes the reader, even while a mode is active. + La touche Échap ferme le lecteur, même lorsqu’un mode est actif. + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + La touche Échap annule le premier des modes actifs suivants : + +1. Loupe +2. Dictionnaire +3. Barre Aller à la page +4. Plein écran + +Si aucun n’est actif, la touche Échap ne fait rien. + + + Disable mouse over activation Désactiver la souris sur l'activation - + Scaling Mise à l'échelle - + Scaling method Méthode de mise à l'échelle - + Nearest (fast, low quality) Le plus proche (rapide, mauvaise qualité) - + Bilinear Bilinéaire - + Lanczos (better quality) Lanczos (meilleure qualité) - + Page Flow Flux des pages - + General Général - + Brightness Luminosité - + Restart is needed Redémarrage nécessaire - + Fit options Options d'ajustement - + Enlarge images to fit width/height Agrandir les images pour les adapter à la largeur/hauteur - + Double Page options Options de double page - + Show covers as single page Afficher les couvertures sur une seule page @@ -734,13 +774,13 @@ Viewer - + Page not available! Page non disponible ! - + Press 'O' to open comic. Appuyez sur "O" pour ouvrir une bande dessinée. @@ -750,7 +790,7 @@ Erreur d'ouverture de la bande dessinée - + Cover! Couverture! @@ -770,12 +810,12 @@ Introuvable - + Last page! Dernière page! - + Loading...please wait! Chargement... Patientez @@ -901,541 +941,551 @@ YACReader::MainWindowViewer - + &Open &Ouvrir - + Open a comic Ouvrir une bande dessinée - + New instance Nouvelle instance - + Open Folder Ouvrir un dossier - + Open image folder Ouvrir un dossier d'images - + Open latest comic Ouvrir la dernière bande dessinée - + Open the latest comic opened in the previous reading session Ouvrir la dernière bande dessinée ouverte lors de la session de lecture précédente - + Clear Clair - + Clear open recent list Vider la liste d'ouverture récente - + Save Sauvegarder - - + + Save current page Sauvegarder la page actuelle - - - - + + + + Extract page(s) - + Extract page(s) from the original source - + Previous Comic Bande dessinée précédente - - - + + + Open previous comic Ouvrir la bande dessiné précédente - + Next Comic Bande dessinée suivante - - - + + + Open next comic Ouvrir la bande dessinée suivante - + &Previous &Précédent - - - + + + Go to previous page Aller à la page précédente - + &Next &Suivant - - - + + + Go to next page Aller à la page suivante - + Fit Height Ajuster la hauteur - + Fit image to height Ajuster l'image à la hauteur - + Fit Width Ajuster la largeur - + Fit image to width Ajuster l'image à la largeur - + Show full size Plein écran - + Fit to page Ajuster à la page - + Continuous scroll Défilement continu - + Switch to continuous scroll mode Passer en mode défilement continu - + Reset zoom Réinitialiser le zoom - + Show zoom slider Afficher le curseur de zoom - + Zoom+ Agrandir - + Zoom- R?duire - + Rotate image to the left Rotation à gauche - + Rotate image to the right Rotation à droite - + Double page mode Mode double page - + Switch to double page mode Passer en mode double page - + Double page manga mode Mode manga en double page - + Reverse reading order in double page mode Ordre de lecture inversée en mode double page - + Go To Aller à - + Go to page ... Aller à la page ... - + Options Possibilités - + YACReader options Options de YACReader - - + + Help Aide - + Help, About YACReader Aide, à propos de YACReader - + Magnifying glass Loupe - + Switch Magnifying glass Utiliser la loupe - + Set bookmark Placer un marque-page - + Set a bookmark on the current page Placer un marque-page sur la page actuelle - + Show bookmarks Voir les marque-pages - + Show the bookmarks of the current comic Voir les marque-pages de cette bande dessinée - + Show keyboard shortcuts Voir les raccourcis - + Show Info Voir les infos - + + Escape + Échap + + + + Escape key: quit, or cancel the active mode + Touche Échap : quitter ou annuler le mode actif + + + Close Fermer - + Show Dictionary Dictionnaire - + Show go to flow Afficher "Aller à Comic Flow" - + Edit shortcuts Modifier les raccourcis - + &File &Fichier - - + + Open recent Ouvrir récent - + File Fichier - + Edit Editer - + View Vue - + Go Aller - + Window Fenêtre - + Open Comic Ouvrir la bande dessinée - + Comic files Bande dessinée - + Open folder Ouvirir le dossier - - + + Comics Bandes dessinées - + Toggle fullscreen mode Basculer en mode plein écran - + Hide/show toolbar Masquer / afficher la barre d'outils - - + + General Général - + Size up magnifying glass Augmenter la taille de la loupe - + Size down magnifying glass Réduire la taille de la loupe - + Zoom in magnifying glass Zoomer - + Zoom out magnifying glass Dézoomer - + Reset magnifying glass Réinitialiser la loupe - - + + Magnifiying glass Loupe - + Toggle between fit to width and fit to height Basculer entre adapter à la largeur et adapter à la hauteur - - + + Page adjustement Ajustement de la page - + Overwrite file? - + The file already exists. Do you want to overwrite it? - + The current page could not be extracted. - + Overwrite files? - + Some files already exist. Do you want to overwrite them? - + Some pages could not be extracted. - + Autoscroll down Défilement automatique vers le bas - + Autoscroll up Défilement automatique vers le haut - + Autoscroll forward, horizontal first Défilement automatique en avant, horizontal - + Autoscroll backward, horizontal first Défilement automatique en arrière horizontal - + Autoscroll forward, vertical first Défilement automatique en avant, vertical - + Autoscroll backward, vertical first Défilement automatique en arrière, verticak - + Move down Descendre - + Move up Monter - + Move left Déplacer à gauche - + Move right Déplacer à droite - + Go to the first page Aller à la première page - + Go to the last page Aller à la dernière page - + Offset double page to the left Double page décalée vers la gauche - + Offset double page to the right Double page décalée à droite - - + + Reading Lecture - + There is a new version available Une nouvelle version est disponible - + Do you want to download the new version? Voulez-vous télécharger la nouvelle version? - + Remind me in 14 days Rappelez-moi dans 14 jours - + Not now Pas maintenant diff --git a/YACReader/yacreader_it.ts b/YACReader/yacreader_it.ts index 907c04cc7..f6271e7a2 100644 --- a/YACReader/yacreader_it.ts +++ b/YACReader/yacreader_it.ts @@ -276,12 +276,12 @@ OptionsDialog - + Gamma Valore gamma - + Reset Resetta @@ -291,7 +291,7 @@ Percorso dei miei fumetti - + Image adjustment Correzioni immagine @@ -306,22 +306,22 @@ Scegli - + Image options Opzione immagine - + Contrast Contrasto - + Appearance Aspetto - + Options Opzioni @@ -346,12 +346,12 @@ Cancella - + Comics directory Cartella Fumetti - + Quick Navigation Mode Modo navigazione rapida @@ -431,72 +431,112 @@ Fare clic sulla metà sinistra o destra dello schermo per girare le pagine. - + + Escape key + Tasto Esc + + + + Quit the reader + Esci dal lettore + + + + Cancel the active mode + Annulla la modalità attiva + + + + Escape closes the reader, even while a mode is active. + Il tasto Esc chiude il lettore, anche quando è attiva una modalità. + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + Il tasto Esc annulla la prima modalità attiva tra le seguenti: + +1. Lente d'ingrandimento +2. Dizionario +3. Barra Vai alla pagina +4. Schermo intero + +Se non è attiva alcuna modalità, il tasto Esc non esegue alcuna azione. + + + Disable mouse over activation Disabilita il mouse all'attivazione - + Scaling Ridimensionamento - + Scaling method Metodo di scala - + Nearest (fast, low quality) Più vicino (veloce, bassa qualità) - + Bilinear Bilineare - + Lanczos (better quality) Lanczos (qualità migliore) - + Page Flow Flusso pagine - + General Generale - + Brightness Luminosità - + Restart is needed Riavvio Necessario - + Fit options Opzioni di adattamento - + Enlarge images to fit width/height Ingrandisci le immagini per adattarle alla larghezza/altezza - + Double Page options Opzioni doppia pagina - + Show covers as single page Mostra le copertine come pagina singola @@ -734,13 +774,13 @@ Viewer - + Page not available! Pagina non disponibile! - + Press 'O' to open comic. Premi "O" per aprire il fumettto. @@ -750,7 +790,7 @@ Errore nell'apertura - + Cover! Copertina! @@ -770,12 +810,12 @@ Non trovato - + Last page! Ultima pagina! - + Loading...please wait! In caricamento...Attendi! @@ -901,541 +941,551 @@ YACReader::MainWindowViewer - + &Open &Apri - + Open a comic Apri un Fumetto - + New instance Nuova istanza - + Open Folder Apri una cartella - + Open image folder Apri la crettal immagini - + Open latest comic Apri l'ultimo fumetto - + Open the latest comic opened in the previous reading session Apri l'ultimo fumetto aperto nella sessione precedente - + Clear Cancella - + Clear open recent list Svuota la lista degli aperti - + Save Salva - - + + Save current page Salva la pagina corrente - - - - + + + + Extract page(s) - + Extract page(s) from the original source - + Previous Comic Fumetto precendente - - - + + + Open previous comic Apri il fumetto precendente - + Next Comic Prossimo fumetto - - - + + + Open next comic Apri il prossimo fumetto - + &Previous &Precedente - - - + + + Go to previous page Vai alla pagina precedente - + &Next &Prossimo - - - + + + Go to next page Vai alla prossima Pagina - + Fit Height Adatta altezza - + Fit image to height Adatta immagine all'altezza - + Fit Width Adatta Larghezza - + Fit image to width Adatta immagine in larghezza - + Show full size Mostra dimesioni reali - + Fit to page Adatta alla pagina - + Continuous scroll Scorrimento continuo - + Switch to continuous scroll mode Passa alla modalità di scorrimento continuo - + Reset zoom Resetta Zoom - + Show zoom slider Mostra cursore di zoom - + Zoom+ Aumenta - + Zoom- Riduci - + Rotate image to the left Ruota immagine a sinistra - + Rotate image to the right Ruota immagine a destra - + Double page mode Modalita doppia pagina - + Switch to double page mode Passa alla modalità doppia pagina - + Double page manga mode Modalità doppia pagina Manga - + Reverse reading order in double page mode Ordine lettura inverso in modo doppia pagina - + Go To Vai a - + Go to page ... Vai a Pagina ... - + Options Opzioni - + YACReader options Opzioni YACReader - - + + Help Aiuto - + Help, About YACReader Aiuto, crediti YACReader - + Magnifying glass Lente ingrandimento - + Switch Magnifying glass Passa a lente ingrandimento - + Set bookmark Imposta Segnalibro - + Set a bookmark on the current page Imposta segnalibro a pagina corrente - + Show bookmarks Mostra segnalibro - + Show the bookmarks of the current comic Mostra il segnalibro del fumetto corrente - + Show keyboard shortcuts Mostra scorciatoie da tastiera - + Show Info Mostra info - + + Escape + Esc + + + + Escape key: quit, or cancel the active mode + Tasto Esc: esci o annulla la modalità attiva + + + Close Chiudi - + Show Dictionary Mostra dizionario - + Show go to flow Mostra "Vai a Comic Flow" - + Edit shortcuts Edita scorciatoie - + &File &Documento - - + + Open recent Apri i recenti - + File Documento - + Edit Edita - + View Mostra - + Go Vai - + Window Finestra - + Open Comic Apri Fumetto - + Comic files File Fumetto - + Open folder Apri cartella - - + + Comics Fumetto - + Toggle fullscreen mode Attiva/Disattiva schermo intero - + Hide/show toolbar Mostra/Nascondi Barra strumenti - - + + General Generale - + Size up magnifying glass Ingrandisci lente ingrandimento - + Size down magnifying glass Riduci lente ingrandimento - + Zoom in magnifying glass Ingrandisci in lente di ingrandimento - + Zoom out magnifying glass Riduci in lente di ingrandimento - + Reset magnifying glass Reimposta la lente d'ingrandimento - - + + Magnifiying glass Lente ingrandimento - + Toggle between fit to width and fit to height Passa tra adatta in larghezza ad altezza - - + + Page adjustement Correzioni di pagna - + Overwrite file? - + The file already exists. Do you want to overwrite it? - + The current page could not be extracted. - + Overwrite files? - + Some files already exist. Do you want to overwrite them? - + Some pages could not be extracted. - + Autoscroll down Autoscorri Giù - + Autoscroll up Autoscorri Sù - + Autoscroll forward, horizontal first Autoscorri avanti, priorità Orizzontale - + Autoscroll backward, horizontal first Autoscorri indietro, priorità Orizzontale - + Autoscroll forward, vertical first Autoscorri avanti, priorità Verticale - + Autoscroll backward, vertical first Autoscorri indietro, priorità Verticale - + Move down Muovi Giù - + Move up Muovi Sù - + Move left Muovi Sinistra - + Move right Muovi Destra - + Go to the first page Vai alla pagina iniziale - + Go to the last page Vai all'ultima pagina - + Offset double page to the left Doppia pagina spostata a sinistra - + Offset double page to the right Doppia pagina spostata a destra - - + + Reading Leggi - + There is a new version available Nuova versione disponibile - + Do you want to download the new version? Vuoi scaricare la nuova versione? - + Remind me in 14 days Ricordamelo in 14 giorni - + Not now Non ora @@ -1508,7 +1558,7 @@ Customize the keyboard shortcuts used by the application. - Personalizza le scorciatoie da tastiera utilizzate dall'applicazione. + Personalizza le scorciatoie da tastiera utilizzate dall'applicazione. diff --git a/YACReader/yacreader_ko.ts b/YACReader/yacreader_ko.ts index d9d227a5d..475e4c299 100644 --- a/YACReader/yacreader_ko.ts +++ b/YACReader/yacreader_ko.ts @@ -296,17 +296,17 @@ 지우기 - + General 일반 - + Appearance 외관 - + Options 환경설정 @@ -401,102 +401,142 @@ 화면 왼쪽 또는 오른쪽 절반을 클릭하여 페이지 넘김. - + + Escape key + Esc 키 + + + + Quit the reader + 리더 종료 + + + + Cancel the active mode + 활성 모드 취소 + + + + Escape closes the reader, even while a mode is active. + 모드가 활성화되어 있어도 Esc 키를 누르면 리더가 종료됩니다. + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + Esc 키를 누르면 다음 중 활성화된 첫 번째 모드가 취소됩니다: + +1. 돋보기 +2. 사전 +3. 페이지 이동 표시줄 +4. 전체 화면 + +활성화된 모드가 없으면 Esc 키를 눌러도 아무 동작도 하지 않습니다. + + + Quick Navigation Mode 빠른 탐색 모드 - + Disable mouse over activation 마우스 오버 활성화 끄기 - + Brightness 밝기 - + Contrast 대비 - + Gamma 감마 - + Reset 초기화 - + Image options 이미지 옵션 - + Fit options 맞춤 옵션 - + Enlarge images to fit width/height 작은 그림도 꽉차게 보기 - + Double Page options 두 페이지 옵션 - + Show covers as single page 표지를 한 장으로 표시 - + Scaling 스케일링 - + Scaling method 스케일링 방법 - + Nearest (fast, low quality) 빠른 모드 (빠름, 저화질) - + Bilinear 보통 모드 (중간 품질) - + Lanczos (better quality) 고화질 모드 (더 좋은 화질) - + Page Flow 페이지 플로우 - + Image adjustment 이미지 조정 - + Restart is needed 재시작이 필요합니다 - + Comics directory 만화 폴더 @@ -735,7 +775,7 @@ Viewer - + Press 'O' to open comic. 'O'를 눌러 만화를 열어보세요. @@ -760,22 +800,22 @@ CRC 오류 - + Loading...please wait! 불러오는 중... 잠시 기다려주세요! - + Page not available! 페이지를 불러올 수 없습니다! - + Cover! 표지! - + Last page! 마지막 페이지! @@ -901,541 +941,551 @@ YACReader::MainWindowViewer - + &Open 열기(&O) - + Open a comic 만화 열기 - + New instance 새 창 - + Open Folder 폴더 열기 - + Open image folder 이미지 폴더 열기 - + Open latest comic 마지막 만화 열기 - + Open the latest comic opened in the previous reading session 이전 작업에서 마지막으로 열었던 만화 열기 - + Clear 지우기 - + Clear open recent list 최근 목록 지우기 - + Save 저장 - - + + Save current page 현재 페이지 저장 - - - - + + + + Extract page(s) - + Extract page(s) from the original source - + Previous Comic 이전 만화 - - - + + + Open previous comic 이전 만화 열기 - + Next Comic 다음 만화 - - - + + + Open next comic 다음 만화 열기 - + &Previous 이전(&P) - - - + + + Go to previous page 이전 페이지로 이동 - + &Next 다음(&N) - - - + + + Go to next page 다음 페이지로 이동 - + Fit Height 꽉차게 보기 (높이 맞춤) - + Fit image to height 이미지를 높이에 맞춤 - + Fit Width 꽉차게 보기 (폭 맞춤) - + Fit image to width 이미지를 폭에 맞춤 - + Show full size 원본 크기 (100%)로 보기 - + Fit to page 꽉차게 보기 - + Continuous scroll 연속 스크롤 - + Switch to continuous scroll mode 연속 스크롤 모드로 전환 - + Reset zoom 확대/축소 초기화 - + Show zoom slider 확대/축소 슬라이더 보기 - + Zoom+ 확대+ - + Zoom- 축소- - + Rotate image to the left 이미지 왼쪽으로 회전 - + Rotate image to the right 이미지 오른쪽으로 회전 - + Double page mode 두 페이지씩 보기 (왼쪽 → 오른쪽) - + Switch to double page mode 두 페이지씩 보기로 전환 - + Double page manga mode 두 페이지씩 보기 (왼쪽 ← 오른쪽) - + Reverse reading order in double page mode 두 페이지씩 보기에서 읽기 순서 뒤집기 - + Go To 이동 - + Go to page ... 페이지로 이동... - + Options 환경설정 - + YACReader options YACReader 환경설정 - - + + Help 도움말 - + Help, About YACReader 도움말, YACReader 정보 - + Magnifying glass 돋보기 - + Switch Magnifying glass 돋보기 전환 - + Set bookmark 책갈피 설정 - + Set a bookmark on the current page 현재 페이지에 책갈피 설정 - + Show bookmarks 책갈피 보기 - + Show the bookmarks of the current comic 현재 만화의 책갈피 보기 - + Show keyboard shortcuts 키보드 단축키 보기 - + Show Info 정보 보기 - + + Escape + Esc + + + + Escape key: quit, or cancel the active mode + Esc 키: 종료 또는 활성 모드 취소 + + + Close 닫기 - + Show Dictionary 사전 보기 - + Show go to flow 페이지 흐름 보기 - + Edit shortcuts 단축키 편집 - + &File 파일(&F) - - + + Open recent 최근 항목 열기 - + File 파일 - + Edit 편집 - + View 보기 - + Go 이동 - + Window - + Open Comic 만화 열기 - + Comic files 만화 파일 - + Open folder 폴더 열기 - + Overwrite file? - + The file already exists. Do you want to overwrite it? - + The current page could not be extracted. - + Overwrite files? - + Some files already exist. Do you want to overwrite them? - + Some pages could not be extracted. - - + + Comics 만화 - - + + General 일반 - - + + Magnifiying glass 돋보기 - - + + Page adjustement 페이지 조정 - - + + Reading 읽기 - + Toggle fullscreen mode 전체화면 전환 - + Hide/show toolbar 도구 모음 표시/숨김 - + Size up magnifying glass 돋보기 크게 - + Size down magnifying glass 돋보기 작게 - + Zoom in magnifying glass 돋보기 확대 - + Zoom out magnifying glass 돋보기 축소 - + Reset magnifying glass 돋보기 초기화 - + Toggle between fit to width and fit to height 폭 맞춤 / 높이 맞춤 전환 - + Autoscroll down 아래로 자동 스크롤 - + Autoscroll up 위로 자동 스크롤 - + Autoscroll forward, horizontal first 세로 우선으로 정방향 자동 스크롤 - + Autoscroll backward, horizontal first 가로 우선으로 정방향 자동 스크롤 - + Autoscroll forward, vertical first 세로 우선으로 역방향 자동 스크롤 - + Autoscroll backward, vertical first 가로 우선으로 역방향 자동 스크롤 - + Move down 아래로 이동 - + Move up 위로 이동 - + Move left 왼쪽으로 이동 - + Move right 오른쪽으로 이동 - + Go to the first page 첫 페이지로 이동 - + Go to the last page 마지막 페이지로 이동 - + Offset double page to the left 두 페이지 왼쪽으로 이동 - + Offset double page to the right 두 페이지 오른쪽으로 이동 - + There is a new version available 새 버전을 내려받으시겠습니까? - + Do you want to download the new version? 새 버전을 내려받으시겠습니까? - + Remind me in 14 days 14일 후에 다시 알림 - + Not now 나중에 diff --git a/YACReader/yacreader_nl.ts b/YACReader/yacreader_nl.ts index d4d693bf4..17fd353fb 100644 --- a/YACReader/yacreader_nl.ts +++ b/YACReader/yacreader_nl.ts @@ -276,12 +276,12 @@ OptionsDialog - + Gamma Gammawaarde - + Reset Standaardwaarden terugzetten @@ -291,32 +291,32 @@ Pad naar mijn strips - + Scaling Schalen - + Scaling method Schaalmethode - + Nearest (fast, low quality) Dichtstbijzijnde (snel, lage kwaliteit) - + Bilinear Bilineair - + Lanczos (better quality) Lanczos (betere kwaliteit) - + Image adjustment Beeldaanpassing @@ -331,22 +331,22 @@ Kies - + Image options Afbeelding opties - + Contrast Contrastwaarde - + Appearance Verschijning - + Options Opties @@ -371,7 +371,7 @@ Duidelijk - + Comics directory Strips map @@ -381,27 +381,27 @@ Achtergrondkleur - + Page Flow Omslagbrowser - + General Algemeen - + Brightness Helderheid - + Restart is needed Herstart is nodig - + Quick Navigation Mode Snelle navigatiemodus @@ -476,27 +476,67 @@ Klik op de linker- of rechterhelft van het scherm om pagina's om te slaan. - + + Escape key + Escape-toets + + + + Quit the reader + Reader afsluiten + + + + Cancel the active mode + Actieve modus annuleren + + + + Escape closes the reader, even while a mode is active. + Met de Escape-toets wordt de reader afgesloten, ook als er een modus actief is. + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + De Escape-toets annuleert de eerste actieve modus in deze lijst: + +1. Vergrootglas +2. Woordenboek +3. Ga naar pagina-balk +4. Volledig scherm + +Als geen enkele modus actief is, doet de Escape-toets niets. + + + Disable mouse over activation Schakel muis-over-activering uit - + Fit options Pas opties - + Enlarge images to fit width/height Vergroot afbeeldingen zodat ze in de breedte/hoogte passen - + Double Page options Opties voor dubbele pagina's - + Show covers as single page Toon omslagen als enkele pagina @@ -735,12 +775,12 @@ Viewer - + Press 'O' to open comic. Druk 'O' om een strip te openen. - + Cover! Omslag! @@ -755,12 +795,12 @@ Niet gevonden - + Last page! Laatste pagina! - + Loading...please wait! Inladen...even wachten! @@ -775,7 +815,7 @@ CRC-fout - + Page not available! Pagina niet beschikbaar! @@ -901,541 +941,551 @@ YACReader::MainWindowViewer - + &Open &Openen - + Open a comic Open een strip - + New instance Nieuw exemplaar - + Open Folder Map Openen - + Open image folder Open afbeeldings map - + Open latest comic Open de nieuwste strip - + Open the latest comic opened in the previous reading session Open de nieuwste strip die in de vorige leessessie is geopend - + Clear Duidelijk - + Clear open recent list Wis geopende recente lijst - + Save Bewaar - - + + Save current page Bewaren huidige pagina - - - - + + + + Extract page(s) - + Extract page(s) from the original source - + Previous Comic Vorige Strip - - - + + + Open previous comic Open de vorige strip - + Next Comic Volgende Strip - - - + + + Open next comic Open volgende strip - + &Previous &Vorige - - - + + + Go to previous page Ga naar de vorige pagina - + &Next &Volgende - - - + + + Go to next page Ga naar de volgende pagina - + Fit Height Geschikte hoogte - + Fit image to height Afbeelding aanpassen aan hoogte - + Fit Width Vensterbreedte aanpassen - + Fit image to width Afbeelding aanpassen aan breedte - + Show full size Volledig Scherm - + Fit to page Aanpassen aan pagina - + Continuous scroll Continu scrollen - + Switch to continuous scroll mode Schakel over naar de continue scrollmodus - + Reset zoom Zoom opnieuw instellen - + Show zoom slider Zoomschuifregelaar tonen - + Zoom+ Inzoomen - + Zoom- Uitzoomen - + Rotate image to the left Links omdraaien - + Rotate image to the right Rechts omdraaien - + Double page mode Dubbele bladzijde modus - + Switch to double page mode Naar dubbele bladzijde modus - + Double page manga mode Manga-modus met dubbele pagina - + Reverse reading order in double page mode Omgekeerde leesvolgorde in dubbele paginamodus - + Go To Ga Naar - + Go to page ... Ga naar bladzijde ... - + Options Opties - + YACReader options YACReader opties - - + + Help Hulp - + Help, About YACReader Help, Over YACReader - + Magnifying glass Vergrootglas - + Switch Magnifying glass Overschakelen naar Vergrootglas - + Set bookmark Bladwijzer instellen - + Set a bookmark on the current page Een bladwijzer toevoegen aan de huidige pagina - + Show bookmarks Bladwijzers weergeven - + Show the bookmarks of the current comic Toon de bladwijzers van de huidige strip - + Show keyboard shortcuts Toon de sneltoetsen - + Show Info Info tonen - + + Escape + Escape + + + + Escape key: quit, or cancel the active mode + Escape-toets: afsluiten of actieve modus annuleren + + + Close Sluiten - + Show Dictionary Woordenlijst weergeven - + Show go to flow "Ga naar Comic Flow" tonen - + Edit shortcuts Snelkoppelingen bewerken - + &File &Bestand - - + + Open recent Recent geopend - + File Bestand - + Edit Bewerken - + View Weergave - + Go Gaan - + Window Raam - + Open Comic Open een Strip - + Comic files Strip bestanden - + Open folder Open een Map - - + + Comics Strips - + Toggle fullscreen mode Schakel de modus Volledig scherm in - + Hide/show toolbar Werkbalk verbergen/tonen - - + + General Algemeen - + Size up magnifying glass Vergrootglas vergroten - + Size down magnifying glass Vergrootglas kleiner maken - + Zoom in magnifying glass Zoom in vergrootglas - + Zoom out magnifying glass Uitzoomen vergrootglas - + Reset magnifying glass Vergrootglas opnieuw instellen - - + + Magnifiying glass Vergrootglas - + Toggle between fit to width and fit to height Schakel tussen Aanpassen aan breedte en Aanpassen aan hoogte - - + + Page adjustement Pagina-aanpassing - + Overwrite file? - + The file already exists. Do you want to overwrite it? - + The current page could not be extracted. - + Overwrite files? - + Some files already exist. Do you want to overwrite them? - + Some pages could not be extracted. - + Autoscroll down Automatisch naar beneden scrollen - + Autoscroll up Automatisch omhoog scrollen - + Autoscroll forward, horizontal first Automatisch vooruit scrollen, eerst horizontaal - + Autoscroll backward, horizontal first Automatisch achteruit scrollen, eerst horizontaal - + Autoscroll forward, vertical first Automatisch vooruit scrollen, eerst verticaal - + Autoscroll backward, vertical first Automatisch achteruit scrollen, eerst verticaal - + Move down Ga naar beneden - + Move up Ga omhoog - + Move left Ga naar links - + Move right Ga naar rechts - + Go to the first page Ga naar de eerste pagina - + Go to the last page Ga naar de laatste pagina - + Offset double page to the left Dubbele pagina naar links verschoven - + Offset double page to the right Offset dubbele pagina naar rechts - - + + Reading Lezing - + There is a new version available Er is een nieuwe versie beschikbaar - + Do you want to download the new version? Wilt u de nieuwe versie downloaden? - + Remind me in 14 days Herinner mij er over 14 dagen aan - + Not now Niet nu diff --git a/YACReader/yacreader_pt.ts b/YACReader/yacreader_pt.ts index 1e00959da..2adf055d5 100644 --- a/YACReader/yacreader_pt.ts +++ b/YACReader/yacreader_pt.ts @@ -286,12 +286,12 @@ Tamanho de "Ir para Comic Flow" - + Appearance Aparência - + Options Opções @@ -316,12 +316,12 @@ Claro - + Comics directory Diretório de quadrinhos - + Restart is needed Reiniciar é necessário @@ -406,97 +406,137 @@ Clique na metade esquerda ou direita da tela para virar as páginas. - + + Escape key + Tecla Escape + + + + Quit the reader + Sair do leitor + + + + Cancel the active mode + Cancelar o modo ativo + + + + Escape closes the reader, even while a mode is active. + A tecla Escape fecha o leitor, mesmo quando existe um modo ativo. + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + A tecla Escape cancela o primeiro destes modos que estiver ativo: + +1. Lupa +2. Dicionário +3. Barra Ir para a página +4. Ecrã inteiro + +Se nenhum estiver ativo, a tecla Escape não faz nada. + + + Quick Navigation Mode Modo de navegação rápida - + Disable mouse over activation Desativar ativação do mouse sobre - + Brightness Brilho - + Contrast Contraste - + Gamma Gama - + Reset Reiniciar - + Image options Opções de imagem - + Fit options Opções de ajuste - + Enlarge images to fit width/height Amplie as imagens para caber na largura/altura - + Double Page options Opções de página dupla - + Show covers as single page Mostrar capas como página única - + Scaling Dimensionamento - + Scaling method Método de dimensionamento - + Nearest (fast, low quality) Mais próximo (rápido, baixa qualidade) - + Bilinear Interpola??o bilinear - + Lanczos (better quality) Lanczos (melhor qualidade) - + General Em geral - + Page Flow Fluxo de página - + Image adjustment Ajuste de imagem @@ -735,12 +775,12 @@ Viewer - + Press 'O' to open comic. Pressione 'O' para abrir um quadrinho. - + Loading...please wait! Carregando... por favor, aguarde! @@ -765,17 +805,17 @@ Erro CRC - + Page not available! Página não disponível! - + Cover! Cobrir! - + Last page! Última página! @@ -901,541 +941,551 @@ YACReader::MainWindowViewer - + &Open &Abrir - + Open a comic Abrir um quadrinho - + New instance Nova instância - + Open Folder Abrir Pasta - + Open image folder Abra a pasta de imagens - + Open latest comic Abra o último quadrinho - + Open the latest comic opened in the previous reading session Abra o último quadrinho aberto na sessão de leitura anterior - + Clear Claro - + Clear open recent list Limpar lista recente aberta - + Save Salvar - - + + Save current page Salvar página atual - - - - + + + + Extract page(s) - + Extract page(s) from the original source - + Previous Comic Quadrinho Anterior - - - + + + Open previous comic Abrir quadrinho anterior - + Next Comic Próximo Quadrinho - - - + + + Open next comic Abrir próximo quadrinho - + &Previous A&nterior - - - + + + Go to previous page Ir para a página anterior - + &Next &Próxima - - - + + + Go to next page Ir para a próxima página - + Fit Height Ajustar Altura - + Fit image to height Ajustar imagem à altura - + Fit Width Ajustar à Largura - + Fit image to width Ajustar imagem à largura - + Show full size Mostrar tamanho grande - + Fit to page Ajustar à página - + Continuous scroll Rolagem contínua - + Switch to continuous scroll mode Mudar para o modo de rolagem contínua - + Reset zoom Redefinir zoom - + Show zoom slider Mostrar controle deslizante de zoom - + Zoom+ Ampliar - + Zoom- Reduzir - + Rotate image to the left Girar imagem à esquerda - + Rotate image to the right Girar imagem à direita - + Double page mode Modo dupla página - + Switch to double page mode Alternar para o modo dupla página - + Double page manga mode Modo mangá de página dupla - + Reverse reading order in double page mode Ordem de leitura inversa no modo de página dupla - + Go To Ir Para - + Go to page ... Ir para a página... - + Options Opções - + YACReader options Opções do YACReader - - + + Help Ajuda - + Help, About YACReader Ajuda, Sobre o YACReader - + Magnifying glass Lupa - + Switch Magnifying glass Alternar Lupa - + Set bookmark Definir marcador - + Set a bookmark on the current page Definir um marcador na página atual - + Show bookmarks Mostrar marcadores - + Show the bookmarks of the current comic Mostrar os marcadores do quadrinho atual - + Show keyboard shortcuts Mostrar teclas de atalhos - + Show Info Mostrar Informações - + + Escape + Escape + + + + Escape key: quit, or cancel the active mode + Tecla Escape: sair ou cancelar o modo ativo + + + Close Fechar - + Show Dictionary Mostrar dicionário - + Show go to flow Mostrar "Ir para Comic Flow" - + Edit shortcuts Editar atalhos - + &File &Arquivo - - + + Open recent Abrir recente - + File Arquivo - + Edit Editar - + View Visualizar - + Go Ir - + Window Janela - + Open Comic Abrir Quadrinho - + Comic files Arquivos de quadrinhos - + Open folder Abrir pasta - - + + Comics Quadrinhos - + Toggle fullscreen mode Alternar modo de tela cheia - + Hide/show toolbar Ocultar/mostrar barra de ferramentas - - + + General Em geral - + Size up magnifying glass Dimensione a lupa - + Size down magnifying glass Diminuir o tamanho da lupa - + Zoom in magnifying glass Zoom na lupa - + Zoom out magnifying glass Diminuir o zoom da lupa - + Reset magnifying glass Redefinir lupa - - + + Magnifiying glass Lupa - + Toggle between fit to width and fit to height Alternar entre ajustar à largura e ajustar à altura - - + + Page adjustement Ajuste de página - + Overwrite file? - + The file already exists. Do you want to overwrite it? - + The current page could not be extracted. - + Overwrite files? - + Some files already exist. Do you want to overwrite them? - + Some pages could not be extracted. - + Autoscroll down Rolagem automática para baixo - + Autoscroll up Rolagem automática para cima - + Autoscroll forward, horizontal first Rolagem automática para frente, horizontal primeiro - + Autoscroll backward, horizontal first Rolagem automática para trás, horizontal primeiro - + Autoscroll forward, vertical first Rolagem automática para frente, vertical primeiro - + Autoscroll backward, vertical first Rolagem automática para trás, vertical primeiro - + Move down Mover para baixo - + Move up Subir - + Move left Mover para a esquerda - + Move right Mover para a direita - + Go to the first page Vá para a primeira página - + Go to the last page Ir para a última página - + Offset double page to the left Deslocar página dupla para a esquerda - + Offset double page to the right Deslocar página dupla para a direita - - + + Reading Leitura - + There is a new version available Há uma nova versão disponível - + Do you want to download the new version? Você deseja baixar a nova versão? - + Remind me in 14 days Lembre-me em 14 dias - + Not now Agora não diff --git a/YACReader/yacreader_ru.ts b/YACReader/yacreader_ru.ts index 6f2bfbddb..25966fa4b 100644 --- a/YACReader/yacreader_ru.ts +++ b/YACReader/yacreader_ru.ts @@ -276,12 +276,12 @@ OptionsDialog - + Gamma Гамма - + Reset Вернуть к первоначальным значениям @@ -291,7 +291,7 @@ Папка комиксов - + Image adjustment Настройка изображения @@ -306,22 +306,22 @@ Выбрать - + Image options Настройки изображения - + Contrast Контраст - + Appearance Появление - + Options Настройки @@ -346,12 +346,12 @@ Очистить - + Comics directory Папка комиксов - + Quick Navigation Mode Ползунок для быстрой навигации по страницам @@ -431,72 +431,112 @@ Нажмите левую или правую половину экрана, чтобы перелистывать страницы. - + + Escape key + Клавиша Esc + + + + Quit the reader + Выйти из программы чтения + + + + Cancel the active mode + Отменить активный режим + + + + Escape closes the reader, even while a mode is active. + Клавиша Esc закрывает программу чтения, даже если активен какой-либо режим. + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + Клавиша Esc отключает первый активный режим из списка: + +1. Лупа +2. Словарь +3. Панель перехода к странице +4. Полноэкранный режим + +Если ни один режим не активен, клавиша Esc ничего не делает. + + + Disable mouse over activation Отключить активацию потока при наведении мыши - + Scaling Масштабирование - + Scaling method Метод масштабирования - + Nearest (fast, low quality) Ближайший (быстро, низкое качество) - + Bilinear Билинейный - + Lanczos (better quality) Ланцос (лучшее качество) - + Page Flow Поток Страниц - + General Общие - + Brightness Яркость - + Restart is needed Требуется перезагрузка - + Fit options Варианты подгонки - + Enlarge images to fit width/height Увеличьте изображения по ширине/высоте - + Double Page options Параметры двойной страницы - + Show covers as single page Показывать обложки на одной странице @@ -734,13 +774,13 @@ Viewer - + Page not available! Страница недоступна! - + Press 'O' to open comic. Нажмите "O" чтобы открыть комикс. @@ -750,7 +790,7 @@ Ошибка открытия комикса - + Cover! Начало! @@ -770,12 +810,12 @@ Не найдено - + Last page! Конец! - + Loading...please wait! Загрузка... Пожалуйста подождите! @@ -901,541 +941,551 @@ YACReader::MainWindowViewer - + &Open &Открыть - + Open a comic Открыть комикс - + New instance Новый экземпляр - + Open Folder Открыть папку - + Open image folder Открыть папку с изображениями - + Open latest comic Открыть последний комикс - + Open the latest comic opened in the previous reading session Открыть комикс открытый в предыдущем сеансе чтения - + Clear Очистить - + Clear open recent list Очистить список недавно открытых файлов - + Save Сохранить - - + + Save current page Сохранить текущию страницу - - - - + + + + Extract page(s) - + Extract page(s) from the original source - + Previous Comic Предыдущий комикс - - - + + + Open previous comic Открыть предыдуший комикс - + Next Comic Следующий комикс - - - + + + Open next comic Открыть следующий комикс - + &Previous &Предыдущий - - - + + + Go to previous page Перейти к предыдущей странице - + &Next &Следующий - - - + + + Go to next page Перейти к следующей странице - + Fit Height Подогнать по высоте - + Fit image to height Подогнать по высоте - + Fit Width Подогнать по ширине - + Fit image to width Подогнать по ширине - + Show full size Показать в полном размере - + Fit to page Подогнать под размер страницы - + Continuous scroll Непрерывная прокрутка - + Switch to continuous scroll mode Переключиться в режим непрерывной прокрутки - + Reset zoom Сбросить масштаб - + Show zoom slider Показать ползунок масштабирования - + Zoom+ Увеличить масштаб - + Zoom- Уменьшить масштаб - + Rotate image to the left Повернуть изображение против часовой стрелки - + Rotate image to the right Повернуть изображение по часовой стрелке - + Double page mode Двухстраничный режим - + Switch to double page mode Двухстраничный режим - + Double page manga mode Двухстраничный режим манги - + Reverse reading order in double page mode Двухстраничный режим манги - + Go To Перейти к странице... - + Go to page ... Перейти к странице... - + Options Настройки - + YACReader options Настройки - - + + Help Справка - + Help, About YACReader Справка - + Magnifying glass Увеличительное стекло - + Switch Magnifying glass Увеличительное стекло - + Set bookmark Установить закладку - + Set a bookmark on the current page Установить закладку на текущей странице - + Show bookmarks Показать закладки - + Show the bookmarks of the current comic Показать закладки в текущем комиксе - + Show keyboard shortcuts Показать горячие клавиши - + Show Info Показать/скрыть номер страницы и текущее время - + + Escape + Esc + + + + Escape key: quit, or cancel the active mode + Клавиша Esc: выход или отмена активного режима + + + Close Закрыть - + Show Dictionary Переводчик YACreader - + Show go to flow Показать "Перейти к Comic Flow" - + Edit shortcuts Редактировать горячие клавиши - + &File &Отображать панель инструментов - - + + Open recent Открыть недавние - + File Файл - + Edit Редактировать - + View Посмотреть - + Go Перейти - + Window Окно - + Open Comic Открыть комикс - + Comic files Файлы комикса - + Open folder Открыть папку - - + + Comics Комикс - + Toggle fullscreen mode Полноэкранный режим включить/выключить - + Hide/show toolbar Показать/скрыть панель инструментов - - + + General Общие - + Size up magnifying glass Увеличение размера окошка увеличительного стекла - + Size down magnifying glass Уменьшение размера окошка увеличительного стекла - + Zoom in magnifying glass Увеличить - + Zoom out magnifying glass Уменьшить - + Reset magnifying glass Сбросить увеличительное стекло - - + + Magnifiying glass Увеличительное стекло - + Toggle between fit to width and fit to height Переключение режима подгонки страницы по ширине/высоте - - + + Page adjustement Настройка страницы - + Overwrite file? - + The file already exists. Do you want to overwrite it? - + The current page could not be extracted. - + Overwrite files? - + Some files already exist. Do you want to overwrite them? - + Some pages could not be extracted. - + Autoscroll down Автопрокрутка вниз - + Autoscroll up Автопрокрутка вверх - + Autoscroll forward, horizontal first Автопрокрутка вперед, горизонтальная - + Autoscroll backward, horizontal first Автопрокрутка назад, горизонтальная - + Autoscroll forward, vertical first Автопрокрутка вперед, вертикальная - + Autoscroll backward, vertical first Автопрокрутка назад, вертикальная - + Move down Переместить вниз - + Move up Переместить вверх - + Move left Переместить влево - + Move right Переместить вправо - + Go to the first page Перейти к первой странице - + Go to the last page Перейти к последней странице - + Offset double page to the left Смещение разворота влево - + Offset double page to the right Смещение разворота вправо - - + + Reading Чтение - + There is a new version available Доступна новая версия - + Do you want to download the new version? Хотите загрузить новую версию ? - + Remind me in 14 days Напомнить через 14 дней - + Not now Не сейчас diff --git a/YACReader/yacreader_source.ts b/YACReader/yacreader_source.ts index dd9145f7a..b0f23d4a1 100644 --- a/YACReader/yacreader_source.ts +++ b/YACReader/yacreader_source.ts @@ -292,22 +292,22 @@ - + Quick Navigation Mode - + Disable mouse over activation - + Restart is needed - + Brightness @@ -402,97 +402,130 @@ - + + Escape key + + + + + Quit the reader + + + + + Cancel the active mode + + + + + Escape closes the reader, even while a mode is active. + + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + + + + Contrast - + Gamma - + Reset - + Image options - + Fit options - + Enlarge images to fit width/height - + Double Page options - + Show covers as single page - + Scaling - + Scaling method - + Nearest (fast, low quality) - + Bilinear - + Lanczos (better quality) - + General - + Page Flow - + Image adjustment - + Appearance - + Options - + Comics directory @@ -728,7 +761,7 @@ Viewer - + Press 'O' to open comic. @@ -753,22 +786,22 @@ - + Loading...please wait! - + Page not available! - + Cover! - + Last page! @@ -894,541 +927,551 @@ YACReader::MainWindowViewer - + &Open - + Open a comic - + New instance - + Open Folder - + Open image folder - + Open latest comic - + Open the latest comic opened in the previous reading session - + Clear - + Clear open recent list - + Save - - + + Save current page - - - - + + + + Extract page(s) - + Extract page(s) from the original source - + Previous Comic - - - + + + Open previous comic - + Next Comic - - - + + + Open next comic - + &Previous - - - + + + Go to previous page - + &Next - - - + + + Go to next page - + Fit Height - + Fit image to height - + Fit Width - + Fit image to width - + Show full size - + Fit to page - + Continuous scroll - + Switch to continuous scroll mode - + Reset zoom - + Show zoom slider - + Zoom+ - + Zoom- - + Rotate image to the left - + Rotate image to the right - + Double page mode - + Switch to double page mode - + Double page manga mode - + Reverse reading order in double page mode - + Go To - + Go to page ... - + Options - + YACReader options - - + + Help - + Help, About YACReader - + Magnifying glass - + Switch Magnifying glass - + Set bookmark - + Set a bookmark on the current page - + Show bookmarks - + Show the bookmarks of the current comic - + Show keyboard shortcuts - + Show Info - + + Escape + + + + + Escape key: quit, or cancel the active mode + + + + Close - + Show Dictionary - + Show go to flow - + Edit shortcuts - + &File - - + + Open recent - + File - + Edit - + View - + Go - + Window - + Open Comic - + Comic files - + Open folder - + Overwrite file? - + The file already exists. Do you want to overwrite it? - + The current page could not be extracted. - + Overwrite files? - + Some files already exist. Do you want to overwrite them? - + Some pages could not be extracted. - - + + Comics - - + + General - - + + Magnifiying glass - - + + Page adjustement - - + + Reading - + Toggle fullscreen mode - + Hide/show toolbar - + Size up magnifying glass - + Size down magnifying glass - + Zoom in magnifying glass - + Zoom out magnifying glass - + Reset magnifying glass - + Toggle between fit to width and fit to height - + Autoscroll down - + Autoscroll up - + Autoscroll forward, horizontal first - + Autoscroll backward, horizontal first - + Autoscroll forward, vertical first - + Autoscroll backward, vertical first - + Move down - + Move up - + Move left - + Move right - + Go to the first page - + Go to the last page - + Offset double page to the left - + Offset double page to the right - + There is a new version available - + Do you want to download the new version? - + Remind me in 14 days - + Not now diff --git a/YACReader/yacreader_tr.ts b/YACReader/yacreader_tr.ts index c4af5310c..d397cdd45 100644 --- a/YACReader/yacreader_tr.ts +++ b/YACReader/yacreader_tr.ts @@ -276,12 +276,12 @@ OptionsDialog - + Gamma Gama - + Reset Yeniden başlat @@ -291,32 +291,32 @@ Çizgi Romanlarım - + Scaling Ölçeklendirme - + Scaling method Ölçeklendirme yöntemi - + Nearest (fast, low quality) En yakın (hızlı, düşük kalite) - + Bilinear Çift doğrusal - + Lanczos (better quality) Lanczos (daha kaliteli) - + Image adjustment Resim ayarları @@ -331,22 +331,22 @@ Seç - + Image options Sayfa ayarları - + Contrast Kontrast - + Appearance Dış görünüş - + Options Ayarlar @@ -371,7 +371,7 @@ Temizle - + Comics directory Çizgi roman konumu @@ -381,27 +381,27 @@ Arka plan rengi - + Page Flow Sayfa akışı - + General Genel - + Brightness Parlaklık - + Restart is needed Yeniden başlatılmalı - + Quick Navigation Mode Hızlı Gezinti Kipi @@ -476,27 +476,67 @@ Sayfaları çevirmek için ekranın sol veya sağ yarısına tıklayın. - + + Escape key + Escape tuşu + + + + Quit the reader + Okuyucudan çık + + + + Cancel the active mode + Etkin modu iptal et + + + + Escape closes the reader, even while a mode is active. + Bir mod etkinken bile Escape tuşu okuyucuyu kapatır. + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + Escape tuşu, aşağıdakilerden etkin olan ilkini iptal eder: + +1. Büyüteç +2. Sözlük +3. Sayfaya git çubuğu +4. Tam ekran + +Hiçbiri etkin değilse Escape tuşu hiçbir şey yapmaz. + + + Disable mouse over activation Etkinleştirme üzerinde fareyi devre dışı bırak - + Fit options Sığdırma seçenekleri - + Enlarge images to fit width/height Genişliğe/yüksekliği sığmaları için resimleri genişlet - + Double Page options Çift Sayfa seçenekleri - + Show covers as single page Kapakları tek sayfa olarak göster @@ -735,12 +775,12 @@ Viewer - + Press 'O' to open comic. 'O'ya basarak aç. - + Cover! Kapak! @@ -755,12 +795,12 @@ Bulunamadı - + Last page! Son sayfa! - + Loading...please wait! Yükleniyor... lütfen bekleyin! @@ -775,7 +815,7 @@ CRC Hatası - + Page not available! Sayfa bulunamadı! @@ -901,541 +941,551 @@ YACReader::MainWindowViewer - + &Open &Aç - + Open a comic Çizgi romanı aç - + New instance Yeni örnek - + Open Folder Dosyayı Aç - + Open image folder Resim dosyasınıaç - + Open latest comic En son çizgi romanı aç - + Open the latest comic opened in the previous reading session Önceki okuma oturumunda açılan en son çizgi romanı aç - + Clear Temizle - + Clear open recent list Son açılanlar listesini temizle - + Save Kaydet - - + + Save current page Geçerli sayfayı kaydet - - - - + + + + Extract page(s) - + Extract page(s) from the original source - + Previous Comic Önce ki çizgi roman - - - + + + Open previous comic Önceki çizgi romanı aç - + Next Comic Sırada ki çizgi roman - - - + + + Open next comic Sıradaki çizgi romanı aç - + &Previous &Geri - - - + + + Go to previous page Önceki sayfaya dön - + &Next &İleri - - - + + + Go to next page Sonra ki sayfaya geç - + Fit Height Yüksekliğe Sığdır - + Fit image to height Uygun yüksekliğe getir - + Fit Width Uygun Genişlik - + Fit image to width Görüntüyü sığdır - + Show full size Tam erken - + Fit to page Sayfaya sığdır - + Continuous scroll Sürekli kaydırma - + Switch to continuous scroll mode Sürekli kaydırma moduna geç - + Reset zoom Yakınlaştırmayı sıfırla - + Show zoom slider Yakınlaştırma çubuğunu göster - + Zoom+ Yakınlaştır - + Zoom- Uzaklaştır - + Rotate image to the left Sayfayı sola yatır - + Rotate image to the right Sayfayı sağa yator - + Double page mode Çift sayfa modu - + Switch to double page mode Çift sayfa moduna geç - + Double page manga mode Çift sayfa manga kipi - + Reverse reading order in double page mode Çift sayfa kipinde ters okuma sırası - + Go To Git - + Go to page ... Sayfata git... - + Options Ayarlar - + YACReader options YACReader ayarları - - + + Help Yardım - + Help, About YACReader YACReader hakkında yardım ve bilgi - + Magnifying glass Büyüteç - + Switch Magnifying glass Büyüteç - + Set bookmark Yer imi yap - + Set a bookmark on the current page Sayfayı yer imi olarak ayarla - + Show bookmarks Yer imlerini göster - + Show the bookmarks of the current comic Bu çizgi romanın yer imlerini göster - + Show keyboard shortcuts Klavye kısayollarını göster - + Show Info Bilgiyi göster - + + Escape + Escape + + + + Escape key: quit, or cancel the active mode + Escape tuşu: çık veya etkin modu iptal et + + + Close Kapat - + Show Dictionary Sözlüğü göster - + Show go to flow "Comic Flow'a git"i göster - + Edit shortcuts Kısayolları düzenle - + &File &Dosya - - + + Open recent Son dosyaları aç - + File Dosya - + Edit Düzen - + View Görünüm - + Go Git - + Window Pencere - + Open Comic Çizgi Romanı Aç - + Comic files Çizgi Roman Dosyaları - + Open folder Dosyayı aç - - + + Comics Çizgi Roman - + Toggle fullscreen mode Tam ekran kipini aç/kapat - + Hide/show toolbar Araç çubuğunu göster/gizle - - + + General Genel - + Size up magnifying glass Büyüteci büyüt - + Size down magnifying glass Büyüteci küçült - + Zoom in magnifying glass Büyüteci yakınlaştır - + Zoom out magnifying glass Büyüteci uzaklaştır - + Reset magnifying glass Büyüteci sıfırla - - + + Magnifiying glass Büyüteç - + Toggle between fit to width and fit to height Genişliğe sığdır ile yüksekliğe sığdır arasında geçiş yap - - + + Page adjustement Sayfa ayarı - + Overwrite file? - + The file already exists. Do you want to overwrite it? - + The current page could not be extracted. - + Overwrite files? - + Some files already exist. Do you want to overwrite them? - + Some pages could not be extracted. - + Autoscroll down Otomatik aşağı kaydır - + Autoscroll up Otomatik yukarı kaydır - + Autoscroll forward, horizontal first Otomatik ileri kaydır, önce yatay - + Autoscroll backward, horizontal first Otomatik geri kaydır, önce yatay - + Autoscroll forward, vertical first Otomatik ileri kaydır, önce dikey - + Autoscroll backward, vertical first Otomatik geri kaydır, önce dikey - + Move down Aşağı git - + Move up Yukarı git - + Move left Sola git - + Move right Sağa git - + Go to the first page İlk sayfaya git - + Go to the last page En son sayfaya git - + Offset double page to the left Çift sayfayı sola kaydır - + Offset double page to the right Çift sayfayı sağa kaydır - - + + Reading Okuma - + There is a new version available Yeni versiyon mevcut - + Do you want to download the new version? Yeni versiyonu indirmek ister misin ? - + Remind me in 14 days 14 gün içinde hatırlat - + Not now Şimdi değil diff --git a/YACReader/yacreader_zh_CN.ts b/YACReader/yacreader_zh_CN.ts index 6b4a57e73..0a717df42 100644 --- a/YACReader/yacreader_zh_CN.ts +++ b/YACReader/yacreader_zh_CN.ts @@ -276,17 +276,17 @@ OptionsDialog - + Gamma Gamma值 - + Reset 重置 - + Enlarge images to fit width/height 放大图片以适应宽度/高度 @@ -306,7 +306,7 @@ 我的漫画路径 - + Image adjustment 图像调整 @@ -321,7 +321,7 @@ 选择 - + Show covers as single page 显示封面为单页 @@ -331,12 +331,12 @@ 滚动时不翻页 - + Fit options 适应项 - + Image options 图片选项 @@ -391,17 +391,57 @@ 单击屏幕的左半部分或右半部分即可翻页。 - + + Escape key + Esc 键 + + + + Quit the reader + 退出阅读器 + + + + Cancel the active mode + 取消当前模式 + + + + Escape closes the reader, even while a mode is active. + 即使有模式处于活动状态,按 Esc 键也会关闭阅读器。 + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + 按 Esc 键会取消以下第一个处于活动状态的模式: + +1. 放大镜 +2. 字典 +3. 跳转到页面栏 +4. 全屏 + +如果没有活动模式,按 Esc 键不会执行任何操作。 + + + Contrast 对比度 - + Appearance 外观 - + Options 选项 @@ -426,12 +466,12 @@ 清空 - + Comics directory 漫画目录 - + Quick Navigation Mode 快速导航模式 @@ -441,7 +481,7 @@ 背景颜色 - + Double Page options 双页选项 @@ -451,52 +491,52 @@ 滚动效果 - + Disable mouse over activation 禁用鼠标激活 - + Scaling 缩放 - + Scaling method 缩放方法 - + Nearest (fast, low quality) 最近(快速,低质量) - + Bilinear 双线性 - + Lanczos (better quality) Lanczos(质量更好) - + Page Flow 页面流 - + General 常规 - + Brightness 亮度 - + Restart is needed 需要重启 @@ -734,13 +774,13 @@ Viewer - + Page not available! 页面不可用! - + Press 'O' to open comic. 按下 'O' 以打开漫画. @@ -750,7 +790,7 @@ 打开漫画时发生错误 - + Cover! 封面! @@ -770,12 +810,12 @@ 未找到 - + Last page! 尾页! - + Loading...please wait! 载入中... 请稍候! @@ -901,541 +941,551 @@ YACReader::MainWindowViewer - + Go 转到 - + Edit 编辑 - + File 文件 - - + + Help 帮助 - + Save 保存 - + View 查看 - + &File 文件(&F) - + &Next 下一页(&N) - + &Open 打开(&O) - + Clear 清空 - + Close 关闭 - + Open Comic 打开漫画 - + Go To 跳转 - + Zoom+ 放大 - + Zoom- 缩小 - + Open image folder 打开图片文件夹 - + Size down magnifying glass 减小放大镜尺寸 - + Zoom out magnifying glass 减小缩放级别 - + New instance 新建实例 - + Open latest comic 打开最近的漫画 - + Autoscroll up 向上自动滚动 - + Set bookmark 设置书签 - + Autoscroll forward, vertical first 向前自动滚动,垂直优先 - + Switch to double page mode 切换至双页模式 - - + + Save current page 保存当前页面 - + Size up magnifying glass 增大放大镜尺寸 - + Double page mode 双页模式 - + Move up 向上移动 - + Switch Magnifying glass 切换放大镜 - + Open Folder 打开文件夹 - - + + Comics 漫画 - + Offset double page to the right 双页向右偏移 - + Fit Height 适应高度 - + Autoscroll backward, vertical first 向后自动滚动,垂直优先 - + Comic files 漫画文件 - + Not now 现在不 - + Go to the first page 转到第一页 - - - + + + Go to previous page 转至上一页 - + Window 窗口 - + Open the latest comic opened in the previous reading session 打开最近阅读漫画 - + Open a comic 打开漫画 - + Next Comic 下一个漫画 - + Fit Width 适合宽度 - + Options 选项 - + Show Info 显示信息 - + Open folder 打开文件夹 - + Go to page ... 跳转至页面 ... - - + + Magnifiying glass 放大镜 - + Fit image to width 缩放图片以适应宽度 - + Toggle fullscreen mode 切换全屏模式 - + Toggle between fit to width and fit to height 切换显示为"适应宽度"或"适应高度" - + Move right 向右移动 - + Zoom in magnifying glass 增大缩放级别 - - + + Open recent 最近打开的文件 - + Offset double page to the left 双页向左偏移 - - + + Reading 阅读 - + &Previous 上一页(&P) - + Autoscroll forward, horizontal first 向前自动滚动,水平优先 - - - + + + Go to next page 转至下一页 - + Show keyboard shortcuts 显示键盘快捷键 - + Double page manga mode 双页日漫模式 - + There is a new version available 有新版本可用 - + Autoscroll down 向下自动滚动 - - - + + + Open next comic 打开下一个漫画 - + Remind me in 14 days 14天后提醒我 - + Fit to page 适应页面 - + Show bookmarks 显示书签 - - - + + + Open previous comic 打开上一个漫画 - + Rotate image to the left 向左旋转图片 - + Fit image to height 缩放图片以适应高度 - - - - + + + + Extract page(s) 提取页面 - + Extract page(s) from the original source 从原始来源提取页面 - + Continuous scroll 连续滚动 - + Switch to continuous scroll mode 切换到连续滚动模式 - + Reset zoom 重置缩放 - + Show the bookmarks of the current comic 显示当前漫画的书签 - + + Escape + Esc + + + + Escape key: quit, or cancel the active mode + Esc 键:退出或取消当前模式 + + + Show Dictionary 显示字典 - + Overwrite file? 覆盖文件? - + The file already exists. Do you want to overwrite it? 文件已存在。是​​否要覆盖它? - + The current page could not be extracted. 无法提取当前页面。 - + Overwrite files? 覆盖文件? - + Some files already exist. Do you want to overwrite them? 部分文件已存在。是​​否要覆盖它们? - + Some pages could not be extracted. 部分页面无法提取。 - + Reset magnifying glass 重置放大镜 - + Move down 向下移动 - + Move left 向左移动 - + Reverse reading order in double page mode 双页模式 (逆序阅读) - + YACReader options YACReader 选项 - + Clear open recent list 清空最近访问列表 - + Help, About YACReader 帮助, 关于 YACReader - + Show go to flow 显示转到页面流 - + Previous Comic 上一个漫画 - + Show full size 显示全尺寸 - + Hide/show toolbar 隐藏/显示 工具栏 - + Magnifying glass 放大镜 - + Edit shortcuts 编辑快捷键 - - + + General 常规 - + Set a bookmark on the current page 在当前页面设置书签 - - + + Page adjustement 页面调整 - + Show zoom slider 显示缩放滑块 - + Go to the last page 转到最后一页 - + Do you want to download the new version? 你要下载新版本吗? - + Rotate image to the right 向右旋转图片 - + Autoscroll backward, horizontal first 向后自动滚动,水平优先 diff --git a/YACReader/yacreader_zh_HK.ts b/YACReader/yacreader_zh_HK.ts index 552099e87..67c895019 100644 --- a/YACReader/yacreader_zh_HK.ts +++ b/YACReader/yacreader_zh_HK.ts @@ -296,47 +296,47 @@ 選擇 - + Quick Navigation Mode 快速導航模式 - + Disable mouse over activation 禁用滑鼠啟動 - + Scaling 縮放 - + Scaling method 縮放方法 - + Nearest (fast, low quality) 最近(快速,低品質) - + Bilinear 雙線性 - + Lanczos (better quality) Lanczos(品質更好) - + Restart is needed 需要重啟 - + Brightness 亮度 @@ -411,52 +411,92 @@ 點擊螢幕的左半部或右半部即可翻頁。 - + + Escape key + Esc 鍵 + + + + Quit the reader + 退出閱讀器 + + + + Cancel the active mode + 取消目前模式 + + + + Escape closes the reader, even while a mode is active. + 即使有模式正在使用,按 Esc 鍵仍會關閉閱讀器。 + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + 按 Esc 鍵會取消下列第一個正在使用的模式: + +1. 放大鏡 +2. 字典 +3. 前往頁面列 +4. 全螢幕 + +若沒有任何模式正在使用,按 Esc 鍵不會執行任何操作。 + + + Contrast 對比度 - + Gamma Gamma值 - + Reset 重置 - + Image options 圖片選項 - + Fit options 適應項 - + Enlarge images to fit width/height 放大圖片以適應寬度/高度 - + Double Page options 雙頁選項 - + Show covers as single page 顯示封面為單頁 - + General 常規 - + Appearance 外貌 @@ -481,22 +521,22 @@ 清空 - + Page Flow 頁面流 - + Image adjustment 圖像調整 - + Options 選項 - + Comics directory 漫畫目錄 @@ -735,7 +775,7 @@ Viewer - + Press 'O' to open comic. 按下 'O' 以打開漫畫. @@ -760,22 +800,22 @@ CRC 校驗失敗 - + Loading...please wait! 載入中... 請稍候! - + Page not available! 頁面不可用! - + Cover! 封面! - + Last page! 尾頁! @@ -901,541 +941,551 @@ YACReader::MainWindowViewer - + &Open 打開(&O) - + Open a comic 打開漫畫 - + New instance 新建實例 - + Open Folder 打開檔夾 - + Open image folder 打開圖片檔夾 - + Open latest comic 打開最近的漫畫 - + Open the latest comic opened in the previous reading session 打開最近閱讀漫畫 - + Clear 清空 - + Clear open recent list 清空最近訪問列表 - + Save 保存 - - + + Save current page 保存當前頁面 - - - - + + + + Extract page(s) - + Extract page(s) from the original source - + Previous Comic 上一個漫畫 - - - + + + Open previous comic 打開上一個漫畫 - + Next Comic 下一個漫畫 - - - + + + Open next comic 打開下一個漫畫 - + &Previous 上一頁(&P) - - - + + + Go to previous page 轉至上一頁 - + &Next 下一頁(&N) - - - + + + Go to next page 轉至下一頁 - + Fit Height 適應高度 - + Fit image to height 縮放圖片以適應高度 - + Fit Width 適合寬度 - + Fit image to width 縮放圖片以適應寬度 - + Show full size 顯示全尺寸 - + Fit to page 適應頁面 - + Continuous scroll 連續滾動 - + Switch to continuous scroll mode 切換到連續滾動模式 - + Reset zoom 重置縮放 - + Show zoom slider 顯示縮放滑塊 - + Zoom+ 放大 - + Zoom- 縮小 - + Rotate image to the left 向左旋轉圖片 - + Rotate image to the right 向右旋轉圖片 - + Double page mode 雙頁模式 - + Switch to double page mode 切換至雙頁模式 - + Double page manga mode 雙頁漫畫模式 - + Reverse reading order in double page mode 雙頁模式 (逆序閱讀) - + Go To 跳轉 - + Go to page ... 跳轉至頁面 ... - + Options 選項 - + YACReader options YACReader 選項 - - + + Help 幫助 - + Help, About YACReader 幫助, 關於 YACReader - + Magnifying glass 放大鏡 - + Switch Magnifying glass 切換放大鏡 - + Set bookmark 設置書簽 - + Set a bookmark on the current page 在當前頁面設置書簽 - + Show bookmarks 顯示書簽 - + Show the bookmarks of the current comic 顯示當前漫畫的書簽 - + Show keyboard shortcuts 顯示鍵盤快捷鍵 - + Show Info 顯示資訊 - + + Escape + Esc + + + + Escape key: quit, or cancel the active mode + Esc 鍵:退出或取消目前模式 + + + Close 關閉 - + Show Dictionary 顯示字典 - + Show go to flow 顯示「前往 Comic Flow」 - + Edit shortcuts 編輯快捷鍵 - + &File 檔(&F) - - + + Open recent 最近打開的檔 - + File - + Edit 編輯 - + View 查看 - + Go 轉到 - + Window 窗口 - + Open Comic 打開漫畫 - + Comic files 漫畫檔 - + Open folder 打開檔夾 - - + + Comics 漫畫 - + Toggle fullscreen mode 切換全屏模式 - + Hide/show toolbar 隱藏/顯示 工具欄 - - + + General 常規 - + Size up magnifying glass 增大放大鏡尺寸 - + Size down magnifying glass 減小放大鏡尺寸 - + Zoom in magnifying glass 增大縮放級別 - + Zoom out magnifying glass 減小縮放級別 - + Reset magnifying glass 重置放大鏡 - - + + Magnifiying glass 放大鏡 - + Toggle between fit to width and fit to height 切換顯示為"適應寬度"或"適應高度" - - + + Page adjustement 頁面調整 - + Overwrite file? - + The file already exists. Do you want to overwrite it? - + The current page could not be extracted. - + Overwrite files? - + Some files already exist. Do you want to overwrite them? - + Some pages could not be extracted. - + Autoscroll down 向下自動滾動 - + Autoscroll up 向上自動滾動 - + Autoscroll forward, horizontal first 向前自動滾動,水準優先 - + Autoscroll backward, horizontal first 向後自動滾動,水準優先 - + Autoscroll forward, vertical first 向前自動滾動,垂直優先 - + Autoscroll backward, vertical first 向後自動滾動,垂直優先 - + Move down 向下移動 - + Move up 向上移動 - + Move left 向左移動 - + Move right 向右移動 - + Go to the first page 轉到第一頁 - + Go to the last page 轉到最後一頁 - + Offset double page to the left 雙頁向左偏移 - + Offset double page to the right 雙頁向右偏移 - - + + Reading 閱讀 - + There is a new version available 有新版本可用 - + Do you want to download the new version? 你要下載新版本嗎? - + Remind me in 14 days 14天後提醒我 - + Not now 現在不 diff --git a/YACReader/yacreader_zh_TW.ts b/YACReader/yacreader_zh_TW.ts index e02111adf..4c7fb9b82 100644 --- a/YACReader/yacreader_zh_TW.ts +++ b/YACReader/yacreader_zh_TW.ts @@ -296,47 +296,47 @@ 選擇 - + Quick Navigation Mode 快速導航模式 - + Disable mouse over activation 禁用滑鼠啟動 - + Scaling 縮放 - + Scaling method 縮放方法 - + Nearest (fast, low quality) 最近(快速,低品質) - + Bilinear 雙線性 - + Lanczos (better quality) Lanczos(品質更好) - + Restart is needed 需要重啟 - + Brightness 亮度 @@ -411,52 +411,92 @@ 點擊螢幕的左半部或右半部即可翻頁。 - + + Escape key + Esc 鍵 + + + + Quit the reader + 退出閱讀器 + + + + Cancel the active mode + 取消目前模式 + + + + Escape closes the reader, even while a mode is active. + 即使有模式正在使用,按 Esc 鍵仍會關閉閱讀器。 + + + + Escape cancels the first of these that is active: + +1. Magnifying glass +2. Dictionary +3. Go to page bar +4. Fullscreen + +If none is active, Escape does nothing. + Tooltip listing the order in which modes are cancelled. Only the first active mode in the list is cancelled per Escape keypress. + 按 Esc 鍵會取消下列第一個正在使用的模式: + +1. 放大鏡 +2. 字典 +3. 前往頁面列 +4. 全螢幕 + +若沒有任何模式正在使用,按 Esc 鍵不會執行任何操作。 + + + Contrast 對比度 - + Gamma Gamma值 - + Reset 重置 - + Image options 圖片選項 - + Fit options 適應項 - + Enlarge images to fit width/height 放大圖片以適應寬度/高度 - + Double Page options 雙頁選項 - + Show covers as single page 顯示封面為單頁 - + General 常規 - + Appearance 外貌 @@ -481,22 +521,22 @@ 清空 - + Page Flow 頁面流 - + Image adjustment 圖像調整 - + Options 選項 - + Comics directory 漫畫目錄 @@ -735,7 +775,7 @@ Viewer - + Press 'O' to open comic. 按下 'O' 以打開漫畫. @@ -760,22 +800,22 @@ CRC 校驗失敗 - + Loading...please wait! 載入中... 請稍候! - + Page not available! 頁面不可用! - + Cover! 封面! - + Last page! 尾頁! @@ -901,541 +941,551 @@ YACReader::MainWindowViewer - + &Open 打開(&O) - + Open a comic 打開漫畫 - + New instance 新建實例 - + Open Folder 打開檔夾 - + Open image folder 打開圖片檔夾 - + Open latest comic 打開最近的漫畫 - + Open the latest comic opened in the previous reading session 打開最近閱讀漫畫 - + Clear 清空 - + Clear open recent list 清空最近訪問列表 - + Save 保存 - - + + Save current page 保存當前頁面 - - - - + + + + Extract page(s) - + Extract page(s) from the original source - + Previous Comic 上一個漫畫 - - - + + + Open previous comic 打開上一個漫畫 - + Next Comic 下一個漫畫 - - - + + + Open next comic 打開下一個漫畫 - + &Previous 上一頁(&P) - - - + + + Go to previous page 轉至上一頁 - + &Next 下一頁(&N) - - - + + + Go to next page 轉至下一頁 - + Fit Height 適應高度 - + Fit image to height 縮放圖片以適應高度 - + Fit Width 適合寬度 - + Fit image to width 縮放圖片以適應寬度 - + Show full size 顯示全尺寸 - + Fit to page 適應頁面 - + Continuous scroll 連續滾動 - + Switch to continuous scroll mode 切換到連續滾動模式 - + Reset zoom 重置縮放 - + Show zoom slider 顯示縮放滑塊 - + Zoom+ 放大 - + Zoom- 縮小 - + Rotate image to the left 向左旋轉圖片 - + Rotate image to the right 向右旋轉圖片 - + Double page mode 雙頁模式 - + Switch to double page mode 切換至雙頁模式 - + Double page manga mode 雙頁漫畫模式 - + Reverse reading order in double page mode 雙頁模式 (逆序閱讀) - + Go To 跳轉 - + Go to page ... 跳轉至頁面 ... - + Options 選項 - + YACReader options YACReader 選項 - - + + Help 幫助 - + Help, About YACReader 幫助, 關於 YACReader - + Magnifying glass 放大鏡 - + Switch Magnifying glass 切換放大鏡 - + Set bookmark 設置書簽 - + Set a bookmark on the current page 在當前頁面設置書簽 - + Show bookmarks 顯示書簽 - + Show the bookmarks of the current comic 顯示當前漫畫的書簽 - + Show keyboard shortcuts 顯示鍵盤快捷鍵 - + Show Info 顯示資訊 - + + Escape + Esc + + + + Escape key: quit, or cancel the active mode + Esc 鍵:退出或取消目前模式 + + + Close 關閉 - + Show Dictionary 顯示字典 - + Show go to flow 顯示「前往 Comic Flow」 - + Edit shortcuts 編輯快捷鍵 - + &File 檔(&F) - - + + Open recent 最近打開的檔 - + File - + Edit 編輯 - + View 查看 - + Go 轉到 - + Window 窗口 - + Open Comic 打開漫畫 - + Comic files 漫畫檔 - + Open folder 打開檔夾 - - + + Comics 漫畫 - + Toggle fullscreen mode 切換全屏模式 - + Hide/show toolbar 隱藏/顯示 工具欄 - - + + General 常規 - + Size up magnifying glass 增大放大鏡尺寸 - + Size down magnifying glass 減小放大鏡尺寸 - + Zoom in magnifying glass 增大縮放級別 - + Zoom out magnifying glass 減小縮放級別 - + Reset magnifying glass 重置放大鏡 - - + + Magnifiying glass 放大鏡 - + Toggle between fit to width and fit to height 切換顯示為"適應寬度"或"適應高度" - - + + Page adjustement 頁面調整 - + Overwrite file? - + The file already exists. Do you want to overwrite it? - + The current page could not be extracted. - + Overwrite files? - + Some files already exist. Do you want to overwrite them? - + Some pages could not be extracted. - + Autoscroll down 向下自動滾動 - + Autoscroll up 向上自動滾動 - + Autoscroll forward, horizontal first 向前自動滾動,水準優先 - + Autoscroll backward, horizontal first 向後自動滾動,水準優先 - + Autoscroll forward, vertical first 向前自動滾動,垂直優先 - + Autoscroll backward, vertical first 向後自動滾動,垂直優先 - + Move down 向下移動 - + Move up 向上移動 - + Move left 向左移動 - + Move right 向右移動 - + Go to the first page 轉到第一頁 - + Go to the last page 轉到最後一頁 - + Offset double page to the left 雙頁向左偏移 - + Offset double page to the right 雙頁向右偏移 - - + + Reading 閱讀 - + There is a new version available 有新版本可用 - + Do you want to download the new version? 你要下載新版本嗎? - + Remind me in 14 days 14天後提醒我 - + Not now 現在不 diff --git a/common/yacreader_global_gui.h b/common/yacreader_global_gui.h index 80376a1a9..d671b30ea 100644 --- a/common/yacreader_global_gui.h +++ b/common/yacreader_global_gui.h @@ -44,6 +44,7 @@ #define USE_SINGLE_SCROLL_STEP_TO_TURN_PAGE "USE_SINGLE_SCROLL_STEP_TO_TURN_PAGE" #define DISABLE_SCROLL_ANIMATION "DISABLE_SCROLL_ANIMATION" #define MOUSE_MODE "MOUSE_MODE" +#define ESCAPE_KEY_BEHAVIOR "ESCAPE_KEY_BEHAVIOR" #define SCALING_METHOD "SCALING_METHOD" #define SAVE_RENDERED_PAGE_DIRECTORY "SAVE_RENDERED_PAGE_DIRECTORY" #define EXTRACT_PAGE_DIRECTORY "EXTRACT_PAGE_DIRECTORY" diff --git a/custom_widgets/yacreader_options_dialog.cpp b/custom_widgets/yacreader_options_dialog.cpp index cc44973ff..ae16fdf72 100644 --- a/custom_widgets/yacreader_options_dialog.cpp +++ b/custom_widgets/yacreader_options_dialog.cpp @@ -25,7 +25,7 @@ YACReaderOptionsDialog::YACReaderOptionsDialog(QWidget *parent) shortcutsPage = new QWidget(); shortcutsPage->setWindowTitle(tr("Shortcuts")); - auto *shortcutsLayout = new QVBoxLayout(shortcutsPage); + shortcutsLayout = new QVBoxLayout(shortcutsPage); auto *shortcutsBox = new QGroupBox(tr("Keyboard shortcuts")); auto *shortcutsBoxLayout = new QHBoxLayout(shortcutsBox); auto *shortcutsDescription = new QLabel(tr("Customize the keyboard shortcuts used by the application.")); @@ -94,6 +94,11 @@ YACReaderOptionsDialog::YACReaderOptionsDialog(QWidget *parent) connect(gl->vSyncCheck, &QCheckBox::checkStateChanged, this, &YACReaderOptionsDialog::saveUseVSync); } +void YACReaderOptionsDialog::addShortcutsSection(QWidget *section) +{ + shortcutsLayout->insertWidget(shortcutsLayout->count() - 1, section); +} + void YACReaderOptionsDialog::savePerformance(int value) { settings->setValue(PERFORMANCE, value); diff --git a/custom_widgets/yacreader_options_dialog.h b/custom_widgets/yacreader_options_dialog.h index ffdebb592..93ddfd7df 100644 --- a/custom_widgets/yacreader_options_dialog.h +++ b/custom_widgets/yacreader_options_dialog.h @@ -7,6 +7,7 @@ class YACReader3DFlowConfigWidget; class QCheckBox; class QPushButton; class QSettings; +class QVBoxLayout; class YACReaderOptionsDialog : public QDialog { @@ -18,10 +19,13 @@ class YACReaderOptionsDialog : public QDialog QPushButton *cancel; QWidget *shortcutsPage; + QVBoxLayout *shortcutsLayout; QSettings *settings; QSettings *previousSettings; + void addShortcutsSection(QWidget *section); + public: YACReaderOptionsDialog(QWidget *parent); public slots: