Page MenuHomePhabricator (Chris)

No OneTemporary

Authored By
Unknown
Size
630 KB
Referenced Files
None
Subscribers
None
This file is larger than 256 KB, so syntax highlighting was skipped.
diff --git a/dialogs/optionsdialog.cpp b/dialogs/optionsdialog.cpp
index 0354ddc..e8378d6 100644
--- a/dialogs/optionsdialog.cpp
+++ b/dialogs/optionsdialog.cpp
@@ -1,732 +1,735 @@
/*
* Copyright (C) 2014 Christian Kaiser
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include <QCompleter>
#include <QDate>
#include <QDesktopServices>
#include <QDesktopWidget>
#include <QDirModel>
#include <QFileDialog>
#include <QKeyEvent>
#include <QMessageBox>
#include <QProcess>
#include <QSettings>
#include <QTimer>
#include <QUrl>
#ifdef Q_WS_WIN
#include <windows.h>
#endif
#include "optionsdialog.h"
#include "namingdialog.h"
#include "historydialog.h"
#include "../tools/os.h"
#include "../tools/screenshot.h"
#include "../tools/screenshotmanager.h"
#include "../updater/updater.h"
OptionsDialog::OptionsDialog(QWidget *parent) :
QDialog(parent)
{
ui.setupUi(this);
setModal(true);
#if defined(Q_WS_X11)
// KDE-specific style tweaks.
if (qApp->style()->objectName() == "oxygen") {
ui.browsePushButton->setMaximumWidth(30);
ui.namingOptionsButton->setMaximumWidth(30);
ui.fileGroupBox->setFlat(false);
ui.startupGroupBox->setFlat(false);
ui.capturesGroupBox->setFlat(false);
ui.controlGroupBox->setFlat(false);
ui.interfaceGroupBox->setFlat(false);
ui.screenshotsGroupBox->setFlat(false);
ui.previewGroupBox->setFlat(false);
ui.updaterGroupBox->setFlat(false);
ui.historyGroupBox->setFlat(false);
ui.clipboardGroupBox->setFlat(false);
ui.optionsTab->layout()->setContentsMargins(0, 0, 6, 0);
ui.aboutTab->layout()->setMargin(8);
}
#endif
QTimer::singleShot(0, this, SLOT(init()));
QTimer::singleShot(1, this, SLOT(loadSettings()));
}
void OptionsDialog::accepted()
{
if (hotkeyCollision()) {
QMessageBox::critical(this, tr("Hotkey conflict"), tr("You have assigned the same hotkeys to more than one action."));
return;
}
if (ui.prefixLineEdit->text().contains(QRegExp("[?:\\\\/*\"<>|]"))) {
QMessageBox::critical(this, tr("Filename character error"), tr("The filename can't contain any of the following characters: ? : \\ / * \" < > |"));
return;
}
if (!ui.fileGroupBox->isChecked() && !ui.clipboardCheckBox->isChecked()) {
QMessageBox::critical(this, tr("Final Destination"), tr("You can't take screenshots unless you enable either file saving or the clipboard."));
return;
}
saveSettings();
accept();
}
void OptionsDialog::checkUpdatesNow()
{
Updater::instance()->checkWithFeedback();
}
void OptionsDialog::languageChange(QString language)
{
os::translate(language);
}
void OptionsDialog::loadSettings()
{
settings()->sync();
os::translate(settings()->value("options/language").toString()); // Why? Don't ask me, I'm just the programmer.
setUpdatesEnabled(false);
if (!settings()->contains("file/format")) {
// If there are no settings, get rid of the cancel button so that the user is forced to save them
ui.buttonBox->clear();
ui.buttonBox->addButton(QDialogButtonBox::Ok);
}
ui.startupCheckBox->toggle();
ui.trayCheckBox->toggle();
ui.previewAutocloseCheckBox->toggle();
QString targetDefault;
if (ScreenshotManager::instance()->portableMode()) {
targetDefault = tr("Screenshots");
}
else {
targetDefault = os::getDocumentsPath() + QDir::separator() + tr("Screenshots");
}
settings()->beginGroup("file");
ui.formatComboBox->setCurrentIndex(settings()->value("format", 1).toInt());
ui.prefixLineEdit->setText(settings()->value("prefix", tr("screenshot.")).toString());
ui.namingComboBox->setCurrentIndex(settings()->value("naming", 0).toInt());
ui.targetLineEdit->setText(settings()->value("target", targetDefault).toString());
ui.fileGroupBox->setChecked(settings()->value("enabled", true).toBool());
settings()->endGroup();
settings()->beginGroup("options");
ui.startupCheckBox->setChecked(settings()->value("startup", false).toBool());
ui.startupHideCheckBox->setChecked(settings()->value("startupHide", true).toBool());
ui.hideCheckBox->setChecked(settings()->value("hide", true).toBool());
ui.delaySpinBox->setValue(settings()->value("delay", 0).toInt());
flipToggled(settings()->value("flip", false).toBool());
ui.trayCheckBox->setChecked(settings()->value("tray", true).toBool());
ui.messageCheckBox->setChecked(settings()->value("message", true).toBool());
ui.qualitySlider->setValue(settings()->value("quality", 100).toInt());
ui.playSoundCheckBox->setChecked(settings()->value("playSound", false).toBool());
ui.updaterCheckBox->setChecked(!settings()->value("disableUpdater", false).toBool());
ui.magnifyCheckBox->setChecked(settings()->value("magnify", false).toBool());
ui.cursorCheckBox->setChecked(settings()->value("cursor", true).toBool());
ui.saveAsCheckBox->setChecked(settings()->value("saveAs", false).toBool());
ui.previewGroupBox->setChecked(settings()->value("preview", false).toBool());
ui.previewSizeSpinBox->setValue(settings()->value("previewSize", 300).toInt());
ui.previewPositionComboBox->setCurrentIndex(settings()->value("previewPosition", 3).toInt());
ui.previewAutocloseCheckBox->setChecked(settings()->value("previewAutoclose", false).toBool());
ui.previewAutocloseTimeSpinBox->setValue(settings()->value("previewAutocloseTime", 15).toInt());
ui.previewAutocloseActionComboBox->setCurrentIndex(settings()->value("previewAutocloseAction", 0).toInt());
ui.previewDefaultActionComboBox->setCurrentIndex(settings()->value("previewDefaultAction", 0).toInt());
ui.areaAutocloseCheckBox->setChecked(settings()->value("areaAutoclose", false).toBool());
// History mode is neat for normal operation but I'll keep it disabled by default on portable mode.
ui.historyCheckBox->setChecked(settings()->value("history", (ScreenshotManager::instance()->portableMode()) ? false : true).toBool());
// Advanced
ui.clipboardCheckBox->setChecked(settings()->value("clipboard", true).toBool());
ui.imgurClipboardCheckBox->setChecked(settings()->value("imgurClipboard", false).toBool());
ui.optiPngCheckBox->setChecked(settings()->value("optipng", true).toBool());
ui.closeHideCheckBox->setChecked(settings()->value("closeHide", true).toBool());
ui.currentMonitorCheckBox->setChecked(settings()->value("currentMonitor", false).toBool());
ui.replaceCheckBox->setChecked(settings()->value("replace", false).toBool());
ui.uploadCheckBox->setChecked(settings()->value("uploadAuto", false).toBool());
+ ui.uploadDirectLinkCheckBox->setChecked(settings()->value("uploadDirectLink", false).toBool());
#ifdef Q_WS_WIN
if (!QFile::exists(qApp->applicationDirPath() + QDir::separator() + "optipng.exe")) {
ui.optiPngCheckBox->setEnabled(false);
ui.optiPngLabel->setText("optipng.exe not found");
}
#elif defined(Q_WS_X11)
if (!QProcess::startDetached("optipng")) {
ui.optiPngCheckBox->setChecked(false);
ui.optiPngCheckBox->setEnabled(false);
ui.optiPngLabel->setText(tr("Install 'OptiPNG'"));
}
//TODO: Sound cue support on Linux
ui.playSoundCheckBox->setVisible(false);
ui.playSoundCheckBox->setChecked(false);
//TODO: Cursor support on X11
ui.cursorCheckBox->setVisible(false);
ui.cursorCheckBox->setChecked(false);
#endif
//TODO: Must replace with not-stupid system
QString lang = settings()->value("language").toString();
int index = ui.languageComboBox->findText(lang);
if (index == -1)
index = ui.languageComboBox->findText("English");
ui.languageComboBox->setCurrentIndex(index);
settings()->endGroup();
settings()->beginGroup("actions");
// This toggle is for the first run
ui.screenCheckBox->toggle();
ui.areaCheckBox->toggle();
ui.windowCheckBox->toggle();
ui.windowPickerCheckBox->toggle();
ui.openCheckBox->toggle();
ui.directoryCheckBox->toggle();
settings()->beginGroup("screen");
ui.screenCheckBox->setChecked(settings()->value("enabled", true).toBool());
ui.screenHotkeyWidget->setHotkey(settings()->value("hotkey", "Print").toString());
settings()->endGroup();
settings()->beginGroup("area");
ui.areaCheckBox->setChecked(settings()->value("enabled").toBool());
ui.areaHotkeyWidget->setHotkey(settings()->value("hotkey", "Ctrl+Print").toString());
settings()->endGroup();
settings()->beginGroup("window");
ui.windowCheckBox->setChecked(settings()->value("enabled").toBool());
ui.windowHotkeyWidget->setHotkey(settings()->value("hotkey", "Alt+Print").toString());
settings()->endGroup();
settings()->beginGroup("windowPicker");
ui.windowPickerCheckBox->setChecked(settings()->value("enabled").toBool());
ui.windowPickerHotkeyWidget->setHotkey(settings()->value("hotkey", "Ctrl+Alt+Print").toString());
settings()->endGroup();
settings()->beginGroup("open");
ui.openCheckBox->setChecked(settings()->value("enabled").toBool());
ui.openHotkeyWidget->setHotkey(settings()->value("hotkey", "Ctrl+PgUp").toString());
settings()->endGroup();
settings()->beginGroup("directory");
ui.directoryCheckBox->setChecked(settings()->value("enabled").toBool());
ui.directoryHotkeyWidget->setHotkey(settings()->value("hotkey", "Ctrl+PgDown").toString());
settings()->endGroup();
settings()->endGroup();
QTimer::singleShot(0, this, SLOT(updatePreview()));
setEnabled(true);
setUpdatesEnabled(true);
}
void OptionsDialog::openUrl(QString url)
{
if (url == "#aboutqt") {
qApp->aboutQt();
}
else {
QDesktopServices::openUrl(QUrl(url));
}
}
void OptionsDialog::rejected()
{
languageChange(settings()->value("options/language").toString()); // Revert language to default.
}
void OptionsDialog::saveSettings()
{
settings()->beginGroup("file");
settings()->setValue("format", ui.formatComboBox->currentIndex());
settings()->setValue("prefix", ui.prefixLineEdit->text());
settings()->setValue("naming", ui.namingComboBox->currentIndex());
settings()->setValue("target", ui.targetLineEdit->text());
settings()->setValue("enabled", ui.fileGroupBox->isChecked());
settings()->endGroup();
settings()->beginGroup("options");
settings()->setValue("startup", ui.startupCheckBox->isChecked());
settings()->setValue("startupHide", ui.startupHideCheckBox->isChecked());
settings()->setValue("hide", ui.hideCheckBox->isChecked());
settings()->setValue("delay", ui.delaySpinBox->value());
settings()->setValue("tray", ui.trayCheckBox->isChecked());
settings()->setValue("message", ui.messageCheckBox->isChecked());
settings()->setValue("quality", ui.qualitySlider->value());
settings()->setValue("playSound", ui.playSoundCheckBox->isChecked());
// We save the explicit string because addition/removal of language files can cause it to change
settings()->setValue("language", ui.languageComboBox->currentText());
// This settings is inverted because the first iteration of the Updater did not have a settings but instead relied on the messagebox choice of the user.
settings()->setValue("disableUpdater", !ui.updaterCheckBox->isChecked());
settings()->setValue("magnify", ui.magnifyCheckBox->isChecked());
settings()->setValue("cursor", ui.cursorCheckBox->isChecked());
settings()->setValue("saveAs", ui.saveAsCheckBox->isChecked());
settings()->setValue("preview", ui.previewGroupBox->isChecked());
settings()->setValue("previewSize", ui.previewSizeSpinBox->value());
settings()->setValue("previewPosition", ui.previewPositionComboBox->currentIndex());
settings()->setValue("previewAutoclose", ui.previewAutocloseCheckBox->isChecked());
settings()->setValue("previewAutocloseTime", ui.previewAutocloseTimeSpinBox->value());
settings()->setValue("previewAutocloseAction", ui.previewAutocloseActionComboBox->currentIndex());
settings()->setValue("previewDefaultAction", ui.previewDefaultActionComboBox->currentIndex());
settings()->setValue("areaAutoclose", ui.areaAutocloseCheckBox->isChecked());
settings()->setValue("history", ui.historyCheckBox->isChecked());
// Advanced
settings()->setValue("closeHide", ui.closeHideCheckBox->isChecked());
settings()->setValue("clipboard", ui.clipboardCheckBox->isChecked());
settings()->setValue("imgurClipboard", ui.imgurClipboardCheckBox->isChecked());
settings()->setValue("optipng", ui.optiPngCheckBox->isChecked());
settings()->setValue("currentMonitor", ui.currentMonitorCheckBox->isChecked());
settings()->setValue("replace", ui.replaceCheckBox->isChecked());
//Upload
settings()->setValue("uploadAuto", ui.uploadCheckBox->isChecked());
+ settings()->setValue("uploadDirectLink", ui.uploadDirectLinkCheckBox->isChecked());
+
settings()->endGroup();
settings()->beginGroup("actions");
settings()->beginGroup("screen");
settings()->setValue("enabled", ui.screenCheckBox->isChecked());
settings()->setValue("hotkey", ui.screenHotkeyWidget->hotkey());
settings()->endGroup();
settings()->beginGroup("area");
settings()->setValue("enabled", ui.areaCheckBox->isChecked());
settings()->setValue("hotkey", ui.areaHotkeyWidget->hotkey());
settings()->endGroup();
settings()->beginGroup("window");
settings()->setValue("enabled", ui.windowCheckBox->isChecked());
settings()->setValue("hotkey", ui.windowHotkeyWidget->hotkey());
settings()->endGroup();
settings()->beginGroup("windowPicker");
settings()->setValue("enabled", ui.windowPickerCheckBox->isChecked());
settings()->setValue("hotkey", ui.windowPickerHotkeyWidget->hotkey());
settings()->endGroup();
settings()->beginGroup("open");
settings()->setValue("enabled", ui.openCheckBox->isChecked());
settings()->setValue("hotkey", ui.openHotkeyWidget->hotkey());
settings()->endGroup();
settings()->beginGroup("directory");
settings()->setValue("enabled", ui.directoryCheckBox->isChecked());
settings()->setValue("hotkey", ui.directoryHotkeyWidget->hotkey());
settings()->endGroup();
settings()->endGroup();
}
void OptionsDialog::updatePreview()
{
Screenshot::NamingOptions options;
options.naming = (Screenshot::Naming) ui.namingComboBox->currentIndex();
options.flip = settings()->value("options/flip", false).toBool();
options.leadingZeros = settings()->value("options/naming/leadingZeros", 0).toInt();
options.dateFormat = settings()->value("options/naming/dateFormat", "yyyy-MM-dd").toString();
if (ui.fileGroupBox->isChecked()) // Only change the naming button when file options are enabled.
ui.namingOptionsButton->setDisabled((options.naming == Screenshot::Empty));
QString preview = Screenshot::getName(options,
ui.prefixLineEdit->text(),
QDir(ui.targetLineEdit->text()));
preview = QString("%1.%2").arg(preview).arg(ui.formatComboBox->currentText().toLower());
if (preview.length() >= 40) {
preview.truncate(37);
preview.append("...");
}
ui.previewLabel->setText(preview);
}
void OptionsDialog::viewHistory()
{
HistoryDialog historyDialog(this);
historyDialog.exec();
}
//
bool OptionsDialog::event(QEvent* event)
{
if (event->type() == QEvent::LanguageChange) {
// ComboBoxes revert to the first index when translated:
int naming = ui.namingComboBox->currentIndex();
int format = ui.formatComboBox->currentIndex();
int previewPosition = ui.previewPositionComboBox->currentIndex();
int previewAutoclose = ui.previewAutocloseActionComboBox->currentIndex();
int previewDefault = ui.previewDefaultActionComboBox->currentIndex();
ui.retranslateUi(this);
// Restoring comboboxes
ui.namingComboBox->setCurrentIndex(naming);
ui.formatComboBox->setCurrentIndex(format);
ui.previewPositionComboBox->setCurrentIndex(previewPosition);
ui.previewAutocloseActionComboBox->setCurrentIndex(previewAutoclose);
ui.previewDefaultActionComboBox->setCurrentIndex(previewDefault);
updatePreview();
resize(minimumSizeHint());
}
else if (event->type() == QEvent::Close || event->type() == QEvent::Hide) {
settings()->setValue("geometry/optionsDialog", saveGeometry());
if (!settings()->contains("file/format")) {
// I'm afraid I can't let you do that, Dave.
event->ignore();
return false;
}
}
else if (event->type() == QEvent::Show)
{
restoreGeometry(settings()->value("geometry/optionsDialog").toByteArray());
}
return QDialog::event(event);
}
#ifdef Q_WS_WIN
// Qt does not send the print screen key as a regular QKeyPress event, so we must use the Windows API
bool OptionsDialog::winEvent(MSG *message, long *result)
{
if ((message->message == WM_KEYUP || message->message == WM_SYSKEYUP)
&& message->wParam == VK_SNAPSHOT) {
qApp->postEvent(qApp->focusWidget(), new QKeyEvent(QEvent::KeyPress, Qt::Key_Print, qApp->keyboardModifiers()));
}
return QDialog::winEvent(message, result);
}
#endif
//
void OptionsDialog::browse()
{
QString fileName = QFileDialog::getExistingDirectory(this,
tr("Select where you want to save the screenshots"),
ui.targetLineEdit->text());
if (fileName.isEmpty())
return;
ui.targetLineEdit->setText(fileName);
updatePreview();
}
void OptionsDialog::dialogButtonClicked(QAbstractButton *button)
{
if (ui.buttonBox->buttonRole(button) == QDialogButtonBox::ResetRole) {
QMessageBox msgBox;
msgBox.setWindowTitle(tr("Lightscreen - Restore Default Options"));
msgBox.setText(tr("Restoring the default options will cause you to lose all of your current configuration."));
msgBox.setIcon(QMessageBox::Warning);
QPushButton *restoreButton = msgBox.addButton(tr("Restore"), QMessageBox::ActionRole);
QPushButton *dontRestoreButton = msgBox.addButton(tr("Don't Restore"), QMessageBox::ActionRole);
msgBox.setDefaultButton(dontRestoreButton);
msgBox.exec();
Q_UNUSED(restoreButton)
if (msgBox.clickedButton() == dontRestoreButton)
return;
QString language = settings()->value("options/language").toString(); // Only maintain language.
settings()->clear();
settings()->setValue("options/language", language);
loadSettings();
}
}
void OptionsDialog::flipToggled(bool checked)
{
setUpdatesEnabled(false);
ui.filenameLayout->removeWidget(ui.prefixLineEdit);
ui.filenameLayout->removeWidget(ui.namingComboBox);
if (checked) {
ui.filenameLayout->addWidget(ui.namingComboBox);
ui.filenameLayout->addWidget(ui.prefixLineEdit);
}
else {
ui.filenameLayout->addWidget(ui.prefixLineEdit);
ui.filenameLayout->addWidget(ui.namingComboBox);
}
if (ui.prefixLineEdit->text() == tr("screenshot.")
&& checked)
ui.prefixLineEdit->setText(tr(".screenshot"));
if (ui.prefixLineEdit->text() == tr(".screenshot")
&& !checked)
ui.prefixLineEdit->setText(tr("screenshot."));
setUpdatesEnabled(true); // Avoids flicker
}
void OptionsDialog::init()
{
// Make the scroll area share the Tab Widget background color
QPalette optionsPalette = ui.optionsScrollArea->palette();
optionsPalette.setColor(QPalette::Window, ui.tabWidget->palette().color(QPalette::Base));
ui.optionsScrollArea->setPalette(optionsPalette);
ui.browsePushButton->setIcon(os::icon("folder"));
ui.namingOptionsButton->setIcon(os::icon("configure"));
ui.buttonBox->addButton(new QPushButton(" " + tr("Restore Defaults") + " ", this), QDialogButtonBox::ResetRole);
// Set up the autocomplete for the directory.
QCompleter *completer = new QCompleter(this);
completer->setModel(new QDirModel(QStringList(), QDir::Dirs, QDir::Name, completer));
ui.targetLineEdit->setCompleter(completer);
// HotkeyWidget icons.
ui.screenHotkeyWidget->setIcon (os::icon("screen"));
ui.windowHotkeyWidget->setIcon (os::icon("window"));
ui.windowPickerHotkeyWidget->setIcon(os::icon("pickWindow"));
ui.areaHotkeyWidget->setIcon (os::icon("area"));
ui.openHotkeyWidget->setIcon (QIcon(":/icons/lightscreen.small"));
ui.directoryHotkeyWidget->setIcon (os::icon("folder"));
// Version
ui.versionLabel->setText(tr("Version %1").arg(qApp->applicationVersion()));
setEnabled(false); // We disable the widgets to prevent any user interaction until the settings have loaded.
//
// Connections
//
connect(ui.buttonBox , SIGNAL(clicked(QAbstractButton*)), this , SLOT(dialogButtonClicked(QAbstractButton*)));
connect(ui.buttonBox , SIGNAL(accepted()) , this , SLOT(accepted()));
connect(ui.buttonBox , SIGNAL(rejected()) , this , SLOT(rejected()));
connect(ui.namingOptionsButton , SIGNAL(clicked()) , this , SLOT(namingOptions()));
connect(ui.prefixLineEdit , SIGNAL(textEdited(QString)) , this , SLOT(updatePreview()));
connect(ui.formatComboBox , SIGNAL(currentIndexChanged(int)) , this , SLOT(updatePreview()));
connect(ui.namingComboBox , SIGNAL(currentIndexChanged(int)) , this , SLOT(updatePreview()));
connect(ui.browsePushButton , SIGNAL(clicked()) , this , SLOT(browse()));
connect(ui.checkUpdatesPushButton , SIGNAL(clicked()) , this , SLOT(checkUpdatesNow()));
connect(ui.historyPushButton , SIGNAL(clicked()) , this , SLOT(viewHistory()));
connect(ui.screenCheckBox , SIGNAL(toggled(bool)), ui.screenHotkeyWidget , SLOT(setEnabled(bool)));
connect(ui.areaCheckBox , SIGNAL(toggled(bool)), ui.areaHotkeyWidget , SLOT(setEnabled(bool)));
connect(ui.windowCheckBox , SIGNAL(toggled(bool)), ui.windowHotkeyWidget , SLOT(setEnabled(bool)));
connect(ui.windowPickerCheckBox, SIGNAL(toggled(bool)), ui.windowPickerHotkeyWidget, SLOT(setEnabled(bool)));
connect(ui.openCheckBox , SIGNAL(toggled(bool)), ui.openHotkeyWidget , SLOT(setEnabled(bool)));
connect(ui.directoryCheckBox , SIGNAL(toggled(bool)), ui.directoryHotkeyWidget, SLOT(setEnabled(bool)));
// "Save as" disables the file target input field.
connect(ui.saveAsCheckBox , SIGNAL(toggled(bool)), ui.targetLineEdit , SLOT(setDisabled(bool)));
connect(ui.saveAsCheckBox , SIGNAL(toggled(bool)), ui.browsePushButton , SLOT(setDisabled(bool)));
connect(ui.saveAsCheckBox , SIGNAL(toggled(bool)), ui.directoryLabel , SLOT(setDisabled(bool)));
connect(ui.startupCheckBox , SIGNAL(toggled(bool)), ui.startupHideCheckBox , SLOT(setEnabled(bool)));
connect(ui.qualitySlider , SIGNAL(valueChanged(int)), ui.qualityValueLabel, SLOT(setNum(int)));
connect(ui.trayCheckBox , SIGNAL(toggled(bool)), ui.messageCheckBox , SLOT(setEnabled(bool)));
// Auto-upload disables the default action button in the previews.
connect(ui.uploadCheckBox , SIGNAL(toggled(bool)), ui.previewDefaultActionLabel , SLOT(setDisabled(bool)));
connect(ui.uploadCheckBox , SIGNAL(toggled(bool)), ui.previewDefaultActionComboBox, SLOT(setDisabled(bool)));
connect(ui.directoryCheckBox , SIGNAL(toggled(bool)), ui.directoryHotkeyWidget, SLOT(setEnabled(bool)));
connect(ui.moreInformationLabel, SIGNAL(linkActivated(QString)) , this, SLOT(openUrl(QString)));
connect(ui.languageComboBox , SIGNAL(currentIndexChanged(QString)), this, SLOT(languageChange(QString)));
connect(ui.mainLabel , SIGNAL(linkActivated(QString)), this, SLOT(openUrl(QString)));
connect(ui.licenseAboutLabel, SIGNAL(linkActivated(QString)), this, SLOT(openUrl(QString)));
connect(ui.linksLabel, SIGNAL(linkActivated(QString)), this, SLOT(openUrl(QString)));
//
// Languages
//
QDir languages(":/translations");
ui.languageComboBox->addItem("English");
foreach (QString language, languages.entryList()) {
ui.languageComboBox->addItem(language);
}
}
void OptionsDialog::namingOptions()
{
NamingDialog namingDialog((Screenshot::Naming) ui.namingComboBox->currentIndex());
namingDialog.exec();
flipToggled(settings()->value("options/flip").toBool());
updatePreview();
}
//
bool OptionsDialog::hotkeyCollision()
{
// Check for hotkey collision (there's probably a better way to do this...=)
if (ui.screenCheckBox->isChecked()) {
if (ui.screenHotkeyWidget->hotkey() == ui.areaHotkeyWidget->hotkey()
&& ui.areaCheckBox->isChecked())
return true;
if (ui.screenHotkeyWidget->hotkey() == ui.windowHotkeyWidget->hotkey()
&& ui.windowCheckBox->isChecked())
return true;
if (ui.screenHotkeyWidget->hotkey() == ui.windowPickerHotkeyWidget->hotkey()
&& ui.windowPickerCheckBox->isChecked())
return true;
if (ui.screenHotkeyWidget->hotkey() == ui.openHotkeyWidget->hotkey()
&& ui.openCheckBox->isChecked())
return true;
if (ui.screenHotkeyWidget->hotkey() == ui.directoryHotkeyWidget->hotkey()
&& ui.directoryCheckBox->isChecked())
return true;
}
if (ui.areaCheckBox->isChecked()) {
if (ui.areaHotkeyWidget->hotkey() == ui.screenHotkeyWidget->hotkey()
&& ui.screenCheckBox->isChecked())
return true;
if (ui.areaHotkeyWidget->hotkey() == ui.windowHotkeyWidget->hotkey()
&& ui.windowCheckBox->isChecked())
return true;
if (ui.areaHotkeyWidget->hotkey() == ui.windowPickerHotkeyWidget->hotkey()
&& ui.windowPickerCheckBox->isChecked())
return true;
if (ui.areaHotkeyWidget->hotkey() == ui.openHotkeyWidget->hotkey()
&& ui.openCheckBox->isChecked())
return true;
if (ui.areaHotkeyWidget->hotkey() == ui.directoryHotkeyWidget->hotkey()
&& ui.directoryCheckBox->isChecked())
return true;
}
if (ui.windowCheckBox->isChecked()) {
if (ui.windowHotkeyWidget->hotkey() == ui.screenHotkeyWidget->hotkey()
&& ui.screenCheckBox->isChecked())
return true;
if (ui.windowHotkeyWidget->hotkey() == ui.areaHotkeyWidget->hotkey()
&& ui.areaCheckBox->isChecked())
return true;
if (ui.windowHotkeyWidget->hotkey() == ui.windowPickerHotkeyWidget->hotkey()
&& ui.windowPickerCheckBox->isChecked())
return true;
if (ui.windowHotkeyWidget->hotkey() == ui.openHotkeyWidget->hotkey()
&& ui.openCheckBox->isChecked())
return true;
if (ui.windowHotkeyWidget->hotkey() == ui.directoryHotkeyWidget->hotkey()
&& ui.directoryCheckBox->isChecked())
return true;
}
if (ui.openCheckBox->isChecked()) {
if (ui.openHotkeyWidget->hotkey() == ui.screenHotkeyWidget->hotkey()
&& ui.screenCheckBox->isChecked())
return true;
if (ui.openHotkeyWidget->hotkey() == ui.areaHotkeyWidget->hotkey()
&& ui.areaCheckBox->isChecked())
return true;
if (ui.openHotkeyWidget->hotkey() == ui.windowPickerHotkeyWidget->hotkey()
&& ui.windowPickerCheckBox->isChecked())
return true;
if (ui.openHotkeyWidget->hotkey() == ui.windowHotkeyWidget->hotkey()
&& ui.windowCheckBox->isChecked())
return true;
if (ui.openHotkeyWidget->hotkey() == ui.directoryHotkeyWidget->hotkey()
&& ui.directoryCheckBox->isChecked())
return true;
}
if (ui.directoryCheckBox->isChecked()) {
if (ui.directoryHotkeyWidget->hotkey() == ui.screenHotkeyWidget->hotkey()
&& ui.screenCheckBox->isChecked())
return true;
if (ui.directoryHotkeyWidget->hotkey() == ui.areaHotkeyWidget->hotkey()
&& ui.areaCheckBox->isChecked())
return true;
if (ui.directoryHotkeyWidget->hotkey() == ui.windowPickerHotkeyWidget->hotkey()
&& ui.windowPickerCheckBox->isChecked())
return true;
if (ui.directoryHotkeyWidget->hotkey() == ui.windowHotkeyWidget->hotkey()
&& ui.windowCheckBox->isChecked())
return true;
if (ui.directoryHotkeyWidget->hotkey() == ui.openHotkeyWidget->hotkey()
&& ui.openCheckBox->isChecked())
return true;
}
return false;
}
QSettings *OptionsDialog::settings() const
{
return ScreenshotManager::instance()->settings();
}
diff --git a/dialogs/optionsdialog.ui b/dialogs/optionsdialog.ui
index df79a5b..a95e9e1 100644
--- a/dialogs/optionsdialog.ui
+++ b/dialogs/optionsdialog.ui
@@ -1,1391 +1,1452 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>OptionsDialog</class>
<widget class="QDialog" name="OptionsDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>393</width>
<height>314</height>
</rect>
</property>
<property name="windowTitle">
<string>Options - Lightscreen</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_4">
- <property name="margin">
+ <property name="leftMargin">
+ <number>6</number>
+ </property>
+ <property name="topMargin">
+ <number>6</number>
+ </property>
+ <property name="rightMargin">
+ <number>6</number>
+ </property>
+ <property name="bottomMargin">
<number>6</number>
</property>
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="currentIndex">
<number>0</number>
</property>
<widget class="QWidget" name="generalTab">
<attribute name="title">
<string>General</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout">
<property name="bottomMargin">
<number>6</number>
</property>
<item>
<widget class="QGroupBox" name="fileGroupBox">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="title">
<string>File</string>
</property>
<property name="flat">
<bool>true</bool>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<layout class="QGridLayout" name="fileGroupBoxLayout">
- <property name="verticalSpacing">
- <number>4</number>
+ <property name="leftMargin">
+ <number>6</number>
</property>
- <property name="margin">
+ <property name="topMargin">
<number>6</number>
</property>
+ <property name="rightMargin">
+ <number>6</number>
+ </property>
+ <property name="bottomMargin">
+ <number>6</number>
+ </property>
+ <property name="verticalSpacing">
+ <number>4</number>
+ </property>
<item row="0" column="0">
<widget class="QLabel" name="directoryLabel">
<property name="text">
<string>&amp;Directory:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="buddy">
<cstring>targetLineEdit</cstring>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="targetLineEdit">
<property name="styleSheet">
<string notr="true"/>
</property>
</widget>
</item>
<item row="0" column="2">
<widget class="QPushButton" name="browsePushButton">
<property name="maximumSize">
<size>
<width>60</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string/>
</property>
<property name="autoDefault">
<bool>false</bool>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="filenameLabel">
<property name="toolTip">
<string>The prefix for the screenshot file</string>
</property>
<property name="text">
<string>&amp;Filename:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="buddy">
<cstring>prefixLineEdit</cstring>
</property>
</widget>
</item>
<item row="1" column="1">
<layout class="QHBoxLayout" name="filenameLayout">
<property name="spacing">
<number>3</number>
</property>
<item>
<widget class="QLineEdit" name="prefixLineEdit">
<property name="whatsThis">
<string>The prefix will be inserted before the &lt;em&gt;Naming&lt;/em&gt; in the screenshot file and it is usually used to distinguish files. It can be left blank.</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="namingComboBox">
<property name="whatsThis">
<string>The naming is inserted after the prefix and is what makes each screenshot file unique to avoid overwriting.&lt;br /&gt;
&lt;b&gt;Numeric&lt;/b&gt;: inserts a number in sequence, 1, 2, 3..&lt;br /&gt;
&lt;b&gt;Date&lt;/b&gt;: inserts the current date and time, in the form of dd-MM-yyyy, click the &quot;wrench&quot; button on the right to customize the format.&lt;br /&gt;
&lt;b&gt;Timestamp&lt;/b&gt;: inserts a number, a Unix timestamp, which is the number of seconds passed since 1970-1-1 00:00:00.&lt;br /&gt;
</string>
</property>
<item>
<property name="text">
<string>(number)</string>
</property>
</item>
<item>
<property name="text">
<string>(date)</string>
</property>
</item>
<item>
<property name="text">
<string>(timestamp)</string>
</property>
</item>
<item>
<property name="text">
<string>(none)</string>
</property>
</item>
</widget>
</item>
</layout>
</item>
<item row="1" column="2">
<widget class="QPushButton" name="namingOptionsButton">
<property name="autoDefault">
<bool>false</bool>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="formatLabel">
<property name="toolTip">
<string>The file format for the screenshot</string>
</property>
<property name="text">
<string>F&amp;ormat:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="buddy">
<cstring>formatComboBox</cstring>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QComboBox" name="formatComboBox">
<item>
<property name="text">
<string notr="true">PNG</string>
</property>
</item>
<item>
<property name="text">
<string notr="true">JPG</string>
</property>
</item>
<item>
<property name="text">
<string notr="true">BMP</string>
</property>
</item>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="qualityLabel">
<property name="text">
<string>&amp;Quality:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="buddy">
<cstring>qualitySlider</cstring>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QSlider" name="qualitySlider">
<property name="whatsThis">
<string>This slider goes from 0 to 100. 100 being the highest quality and 0 the lowest.&lt;br&gt;
Quality is related to file size and of course to readability and overall quality of the image.</string>
</property>
<property name="maximum">
<number>100</number>
</property>
<property name="pageStep">
<number>5</number>
</property>
<property name="value">
<number>100</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item row="4" column="2">
<layout class="QHBoxLayout" name="qualityLayout">
<property name="spacing">
<number>0</number>
</property>
<property name="sizeConstraint">
<enum>QLayout::SetMinimumSize</enum>
</property>
<item>
<widget class="QLabel" name="qualityValueLabel">
<property name="font">
<font>
<pointsize>8</pointsize>
</font>
</property>
<property name="text">
<string notr="true">100</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="qualityPercentLabel">
<property name="font">
<font>
<pointsize>7</pointsize>
</font>
</property>
<property name="text">
<string notr="true">%</string>
</property>
</widget>
</item>
</layout>
</item>
<item row="5" column="0">
<widget class="QLabel" name="previewTextLabel">
<property name="text">
<string>&lt;u&gt;Preview&lt;/u&gt;:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="QLabel" name="previewLabel">
<property name="text">
<string/>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QGroupBox" name="startupGroupBox">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="title">
<string>System Startup</string>
</property>
<property name="flat">
<bool>true</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout_3">
<item>
<widget class="QCheckBox" name="startupCheckBox">
<property name="whatsThis">
<string/>
</property>
<property name="text">
<string>&amp;Run Lightscreen at system startup.</string>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="startupHideLayout">
<item>
<spacer name="startupHideSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>13</width>
<height>15</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QCheckBox" name="startupHideCheckBox">
<property name="whatsThis">
<string/>
</property>
<property name="text">
<string>H&amp;ide the main window.</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="hotkeyTab">
<attribute name="title">
<string>Hotkeys</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QGroupBox" name="capturesGroupBox">
<property name="title">
<string>Captures</string>
</property>
<property name="flat">
<bool>true</bool>
</property>
<layout class="QGridLayout" name="gridLayout">
- <property name="margin">
+ <property name="leftMargin">
+ <number>6</number>
+ </property>
+ <property name="topMargin">
+ <number>6</number>
+ </property>
+ <property name="rightMargin">
+ <number>6</number>
+ </property>
+ <property name="bottomMargin">
<number>6</number>
</property>
<property name="spacing">
<number>4</number>
</property>
<item row="0" column="0">
<widget class="QCheckBox" name="screenCheckBox">
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>&amp;Fullscreen</string>
</property>
</widget>
</item>
<item row="0" column="2">
<widget class="HotkeyWidget" name="screenHotkeyWidget">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QCheckBox" name="windowPickerCheckBox">
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Window &amp;Picker</string>
</property>
</widget>
</item>
<item row="3" column="2">
<widget class="HotkeyWidget" name="windowPickerHotkeyWidget"/>
</item>
<item row="2" column="1">
<spacer name="horizontalSpacer_4">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>0</height>
</size>
</property>
</spacer>
</item>
<item row="2" column="0">
<widget class="QCheckBox" name="windowCheckBox">
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Active &amp;Window</string>
</property>
</widget>
</item>
<item row="2" column="2">
<widget class="HotkeyWidget" name="windowHotkeyWidget"/>
</item>
<item row="1" column="0">
<widget class="QCheckBox" name="areaCheckBox">
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Screen &amp;Area</string>
</property>
</widget>
</item>
<item row="1" column="2">
<widget class="HotkeyWidget" name="areaHotkeyWidget"/>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="controlGroupBox">
<property name="title">
<string>Lightscreen Control</string>
</property>
<property name="flat">
<bool>true</bool>
</property>
<layout class="QGridLayout" name="gridLayout_2">
- <property name="margin">
+ <property name="leftMargin">
+ <number>6</number>
+ </property>
+ <property name="topMargin">
+ <number>6</number>
+ </property>
+ <property name="rightMargin">
+ <number>6</number>
+ </property>
+ <property name="bottomMargin">
<number>6</number>
</property>
<property name="spacing">
<number>4</number>
</property>
<item row="0" column="0">
<widget class="QCheckBox" name="openCheckBox">
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>&amp;Open the program window</string>
</property>
</widget>
</item>
<item row="0" column="2">
<widget class="HotkeyWidget" name="openHotkeyWidget"/>
</item>
<item row="1" column="0">
<widget class="QCheckBox" name="directoryCheckBox">
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Open the &amp;directory</string>
</property>
</widget>
</item>
<item row="1" column="2">
<widget class="HotkeyWidget" name="directoryHotkeyWidget"/>
</item>
<item row="0" column="1">
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>0</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="optionsTab">
<attribute name="title">
<string>Options</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_8">
- <property name="margin">
+ <property name="leftMargin">
+ <number>0</number>
+ </property>
+ <property name="topMargin">
+ <number>0</number>
+ </property>
+ <property name="rightMargin">
+ <number>0</number>
+ </property>
+ <property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QScrollArea" name="optionsScrollArea">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>375</width>
<height>0</height>
</size>
</property>
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="horizontalScrollBarPolicy">
<enum>Qt::ScrollBarAlwaysOff</enum>
</property>
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
- <width>311</width>
- <height>780</height>
+ <width>358</width>
+ <height>803</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_5">
<property name="spacing">
<number>4</number>
</property>
- <property name="margin">
+ <property name="leftMargin">
+ <number>6</number>
+ </property>
+ <property name="topMargin">
+ <number>6</number>
+ </property>
+ <property name="rightMargin">
+ <number>6</number>
+ </property>
+ <property name="bottomMargin">
<number>6</number>
</property>
<item>
<widget class="QGroupBox" name="interfaceGroupBox">
<property name="title">
<string>Interface</string>
</property>
<property name="flat">
<bool>true</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout_6">
<item>
<widget class="QCheckBox" name="trayCheckBox">
<property name="whatsThis">
<string/>
</property>
<property name="text">
<string>Sho&amp;w a system tray icon.</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="closeHideCheckBox">
<property name="text">
<string>C&amp;losing hides the main window.</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="hideCheckBox">
<property name="text">
<string>&amp;Hide Lightscreen while taking a screenshot.</string>
</property>
</widget>
</item>
<item>
<layout class="QGridLayout" name="notifyLayout">
<property name="topMargin">
<number>2</number>
</property>
<property name="bottomMargin">
<number>2</number>
</property>
<item row="1" column="1">
<widget class="QCheckBox" name="messageCheckBox">
<property name="whatsThis">
<string>Shows a completion message once the screenshot is saved, clicking this message takes you to the directory where the screenshot was saved.</string>
</property>
<property name="text">
<string>Tray icon Popup</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QCheckBox" name="playSoundCheckBox">
<property name="text">
<string>&amp;Sound cue</string>
</property>
</widget>
</item>
<item row="1" column="0">
<spacer name="horizontalSpacer_9">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>15</width>
<height>0</height>
</size>
</property>
</spacer>
</item>
<item row="1" column="2">
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>0</height>
</size>
</property>
</spacer>
</item>
<item row="0" column="0" colspan="3">
<widget class="QLabel" name="notifyLabel">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
<underline>true</underline>
</font>
</property>
<property name="text">
<string>&amp;Notify with:</string>
</property>
<property name="buddy">
<cstring>messageCheckBox</cstring>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="languageLayout">
<item>
<widget class="QLabel" name="languageLabel">
<property name="text">
<string>&amp;Language:</string>
</property>
<property name="buddy">
<cstring>languageComboBox</cstring>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="languageComboBox">
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="moreInformationLabel">
<property name="whatsThis">
<string>Click here to go to the Lightscreen homepage to learn more about translations.</string>
</property>
<property name="text">
<string>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;More information..&lt;/a&gt;</string>
</property>
</widget>
</item>
<item>
<spacer name="languageSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>0</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="previewGroupBox">
<property name="title">
<string>Screenshot Previews</string>
</property>
<property name="flat">
<bool>true</bool>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>true</bool>
</property>
<layout class="QGridLayout" name="gridLayout_3">
<item row="0" column="0">
<widget class="QLabel" name="previewSizeLabel">
<property name="text">
<string>Maximum Size:</string>
</property>
<property name="buddy">
<cstring>previewSizeSpinBox</cstring>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QSpinBox" name="previewSizeSpinBox">
<property name="buttonSymbols">
<enum>QAbstractSpinBox::PlusMinus</enum>
</property>
<property name="accelerated">
<bool>true</bool>
</property>
<property name="correctionMode">
<enum>QAbstractSpinBox::CorrectToNearestValue</enum>
</property>
<property name="suffix">
<string notr="true"> px</string>
</property>
<property name="minimum">
<number>200</number>
</property>
<property name="maximum">
<number>800</number>
</property>
<property name="singleStep">
<number>10</number>
</property>
<property name="value">
<number>300</number>
</property>
</widget>
</item>
<item row="0" column="4" rowspan="4">
<spacer name="horizontalSpacer_5">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item row="1" column="0">
<widget class="QLabel" name="previewPositionLabel">
<property name="text">
<string>Position:</string>
</property>
<property name="buddy">
<cstring>previewPositionComboBox</cstring>
</property>
</widget>
</item>
<item row="1" column="1" colspan="2">
<widget class="QComboBox" name="previewPositionComboBox">
<property name="currentIndex">
<number>3</number>
</property>
<item>
<property name="text">
<string>Top Left</string>
</property>
</item>
<item>
<property name="text">
<string>Top Right</string>
</property>
</item>
<item>
<property name="text">
<string>Bottom Left</string>
</property>
</item>
<item>
<property name="text">
<string>Bottom Right</string>
</property>
</item>
</widget>
</item>
<item row="2" column="0">
<widget class="QCheckBox" name="previewAutocloseCheckBox">
<property name="text">
<string>Auto-close after</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QSpinBox" name="previewAutocloseTimeSpinBox">
<property name="suffix">
<string> seconds</string>
</property>
</widget>
</item>
<item row="2" column="2">
<widget class="QLabel" name="andLabel">
<property name="minimumSize">
<size>
<width>20</width>
<height>0</height>
</size>
</property>
<property name="text">
<string> and </string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="buddy">
<cstring>previewAutocloseActionComboBox</cstring>
</property>
</widget>
</item>
<item row="2" column="3">
<widget class="QComboBox" name="previewAutocloseActionComboBox">
<property name="currentIndex">
<number>0</number>
</property>
<item>
<property name="text">
<string>save</string>
</property>
</item>
<item>
<property name="text">
<string>upload</string>
</property>
</item>
<item>
<property name="text">
<string>cancel</string>
</property>
</item>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="previewDefaultActionLabel">
<property name="text">
<string>Default action:</string>
</property>
<property name="buddy">
<cstring>previewDefaultActionComboBox</cstring>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QComboBox" name="previewDefaultActionComboBox">
<item>
<property name="text">
<string>save</string>
</property>
</item>
<item>
<property name="text">
<string>upload</string>
</property>
</item>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="screenshotsGroupBox">
<property name="title">
<string>Screenshots</string>
</property>
<property name="flat">
<bool>true</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout_7">
<item>
<widget class="QCheckBox" name="saveAsCheckBox">
<property name="text">
<string>Choose where to save each screenshot (&quot;&amp;Save as&quot;).</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="currentMonitorCheckBox">
<property name="text">
<string>&amp;Grab only the active monitor.</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="cursorCheckBox">
<property name="text">
<string>Inc&amp;lude the cursor in the screenshot.</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="magnifyCheckBox">
<property name="text">
<string>&amp;Magnify around the mouse in Area mode.</string>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<property name="spacing">
<number>2</number>
</property>
<item>
<widget class="QCheckBox" name="optiPngCheckBox">
<property name="toolTip">
<string>Runs OptiPNG which reduces screenshot file size.</string>
</property>
<property name="text">
<string>O&amp;ptimize PNG screenshots.</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="optiPngLabel">
<property name="palette">
<palette>
<active>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>128</red>
<green>0</green>
<blue>0</blue>
</color>
</brush>
</colorrole>
</active>
<inactive>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>128</red>
<green>0</green>
<blue>0</blue>
</color>
</brush>
</colorrole>
</inactive>
<disabled>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>141</red>
<green>138</green>
<blue>136</blue>
</color>
</brush>
</colorrole>
</disabled>
</palette>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_10">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>0</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item>
<widget class="QCheckBox" name="replaceCheckBox">
<property name="text">
<string>Replace screenshots when there's an existing file.</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="areaAutocloseCheckBox">
<property name="text">
<string>Snap area screenshots automatically (no resizing).</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="uploadCheckBox">
<property name="text">
<string>Upload all my screenshots automatically.</string>
</property>
</widget>
</item>
+ <item>
+ <widget class="QCheckBox" name="uploadDirectLinkCheckBox">
+ <property name="text">
+ <string>Get the direct image link when uploading.</string>
+ </property>
+ </widget>
+ </item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_5">
<item>
<widget class="QLabel" name="delayLabel">
<property name="text">
<string>D&amp;elay:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="buddy">
<cstring>delaySpinBox</cstring>
</property>
</widget>
</item>
<item>
<widget class="QSpinBox" name="delaySpinBox">
<property name="whatsThis">
<string>Selecting anything other than 0 in this option will cause the program to &lt;b&gt;wait&lt;/b&gt; that amount of seconds before taking the screenshot.</string>
</property>
<property name="specialValueText">
<string>none</string>
</property>
<property name="accelerated">
<bool>true</bool>
</property>
<property name="correctionMode">
<enum>QAbstractSpinBox::CorrectToNearestValue</enum>
</property>
<property name="suffix">
<string> seconds</string>
</property>
<property name="prefix">
<string/>
</property>
<property name="maximum">
<number>32767</number>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_8">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>114</width>
<height>0</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="clipboardGroupBox">
<property name="title">
<string>Clipboard</string>
</property>
<property name="flat">
<bool>true</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout_10">
<item>
<widget class="QCheckBox" name="clipboardCheckBox">
<property name="text">
<string>&amp;Copy the screenshot to the clipboard.</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="imgurClipboardCheckBox">
<property name="text">
<string>After uploading, copy the imgur URL to the clipboard.</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="historyGroupBox">
<property name="title">
<string>History</string>
</property>
<property name="flat">
<bool>true</bool>
</property>
<layout class="QHBoxLayout" name="historyLayout">
<item>
<widget class="QCheckBox" name="historyCheckBox">
<property name="text">
<string>Save my screenshot history.</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_6">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>95</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="historyPushButton">
<property name="text">
<string>View &amp;History</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="updaterGroupBox">
<property name="title">
<string>Updater</string>
</property>
<property name="flat">
<bool>true</bool>
</property>
<layout class="QHBoxLayout" name="updaterLayout">
<item>
<widget class="QCheckBox" name="updaterCheckBox">
<property name="text">
<string>Check for updates regularly.</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_3">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>0</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="checkUpdatesPushButton">
<property name="text">
<string>Chec&amp;k Now</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="aboutTab">
<attribute name="title">
<string>About</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_9">
<item>
<widget class="QLabel" name="mainLabel">
<property name="text">
<string>Lightscreen is a simple tool to take screenshots, designed to be customizable and lightweight.&lt;br&gt;&lt;br&gt;
Created by &lt;a href=&quot;http://ckaiser.com.ar&quot;&gt;Christian Kaiser&lt;/a&gt;, using the &lt;a href=&quot;#aboutqt&quot;&gt;Qt toolkit&lt;/a&gt; for the graphical user interface.</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
<property name="textInteractionFlags">
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="licenseAboutLabel">
<property name="text">
<string>Released under the &lt;a href=&quot;http://www.gnu.org/licenses/gpl-2.0.html&quot;&gt;GNU General Public License&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Special thanks goes to the &lt;a href=&quot;http://lightscreen.sourceforge.net/about&quot;&gt;Donators and Translators&lt;/a&gt;.</string>
</property>
<property name="textInteractionFlags">
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="versionLabel">
<property name="font">
<font>
<pointsize>12</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="linksLabel">
<property name="text">
<string>&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Visit Sourceforge project site&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Visit Lightscreen home page&lt;/a&gt;</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="textInteractionFlags">
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<customwidgets>
<customwidget>
<class>HotkeyWidget</class>
<extends>QPushButton</extends>
<header>widgets/hotkeywidget.h</header>
</customwidget>
</customwidgets>
<tabstops>
<tabstop>fileGroupBox</tabstop>
<tabstop>targetLineEdit</tabstop>
<tabstop>browsePushButton</tabstop>
<tabstop>prefixLineEdit</tabstop>
<tabstop>namingComboBox</tabstop>
<tabstop>namingOptionsButton</tabstop>
<tabstop>formatComboBox</tabstop>
<tabstop>qualitySlider</tabstop>
<tabstop>startupCheckBox</tabstop>
<tabstop>startupHideCheckBox</tabstop>
<tabstop>screenCheckBox</tabstop>
<tabstop>screenHotkeyWidget</tabstop>
<tabstop>areaCheckBox</tabstop>
<tabstop>areaHotkeyWidget</tabstop>
<tabstop>windowCheckBox</tabstop>
<tabstop>windowHotkeyWidget</tabstop>
<tabstop>windowPickerCheckBox</tabstop>
<tabstop>windowPickerHotkeyWidget</tabstop>
<tabstop>openCheckBox</tabstop>
<tabstop>openHotkeyWidget</tabstop>
<tabstop>directoryCheckBox</tabstop>
<tabstop>directoryHotkeyWidget</tabstop>
<tabstop>trayCheckBox</tabstop>
<tabstop>hideCheckBox</tabstop>
<tabstop>messageCheckBox</tabstop>
<tabstop>playSoundCheckBox</tabstop>
<tabstop>previewGroupBox</tabstop>
<tabstop>previewSizeSpinBox</tabstop>
<tabstop>previewPositionComboBox</tabstop>
<tabstop>previewAutocloseCheckBox</tabstop>
<tabstop>previewAutocloseTimeSpinBox</tabstop>
<tabstop>previewAutocloseActionComboBox</tabstop>
<tabstop>previewDefaultActionComboBox</tabstop>
<tabstop>saveAsCheckBox</tabstop>
<tabstop>currentMonitorCheckBox</tabstop>
<tabstop>cursorCheckBox</tabstop>
<tabstop>magnifyCheckBox</tabstop>
<tabstop>optiPngCheckBox</tabstop>
<tabstop>replaceCheckBox</tabstop>
<tabstop>areaAutocloseCheckBox</tabstop>
<tabstop>uploadCheckBox</tabstop>
<tabstop>delaySpinBox</tabstop>
<tabstop>historyCheckBox</tabstop>
<tabstop>historyPushButton</tabstop>
<tabstop>updaterCheckBox</tabstop>
<tabstop>checkUpdatesPushButton</tabstop>
<tabstop>buttonBox</tabstop>
</tabstops>
<resources/>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>OptionsDialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>307</x>
<y>304</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
<y>274</y>
</hint>
</hints>
</connection>
<connection>
<sender>previewAutocloseCheckBox</sender>
<signal>toggled(bool)</signal>
<receiver>previewAutocloseTimeSpinBox</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>118</x>
<y>511</y>
</hint>
<hint type="destinationlabel">
<x>210</x>
<y>529</y>
</hint>
</hints>
</connection>
<connection>
<sender>previewAutocloseCheckBox</sender>
<signal>toggled(bool)</signal>
<receiver>previewAutocloseActionComboBox</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>115</x>
<y>511</y>
</hint>
<hint type="destinationlabel">
<x>302</x>
<y>529</y>
</hint>
</hints>
</connection>
</connections>
</ui>
diff --git a/main.cpp b/main.cpp
index 46a1bb1..26a180a 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,100 +1,100 @@
/*
* Copyright (C) 2014 Christian Kaiser
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include <QApplication>
#include <QDesktopWidget>
#include <QLocale>
#ifdef Q_WS_WIN
#include "tools/qwin7utils/AppUserModel.h"
#include "tools/qwin7utils/JumpList.h"
#include "tools/qwin7utils/Taskbar.h"
using namespace QW7;
#endif
#include "tools/os.h"
#include <QtSingleApplication>
#include "lightscreenwindow.h"
int main(int argc, char *argv[])
{
QtSingleApplication application(argc, argv);
application.setOrganizationName("K");
application.setApplicationName ("Lightscreen");
application.setApplicationVersion("2.0");
application.setQuitOnLastWindowClosed(false);
if (application.isRunning()) {
if (application.arguments().size() > 1) {
QStringList arguments = application.arguments();
arguments.removeFirst();
application.sendMessage(arguments.join(" "));
}
else {
application.sendMessage("--wake");
}
return 0;
}
LightscreenWindow lightscreen;
#ifdef Q_WS_WIN
// Windows 7 jumplists.
if (QSysInfo::windowsVersion() >= QSysInfo::WV_WINDOWS7) {
AppUserModel::SetCurrentProcessExplicitAppUserModelID("Lightscreen");
JumpList jumpList("Lightscreen");
QList<JumpListItem> tasks;
- tasks.append(JumpListItem(application.applicationFilePath(), "--screen" , QObject::tr("Screen") , "", "", 0, application.applicationDirPath()));
- tasks.append(JumpListItem(application.applicationFilePath(), "--area" , QObject::tr("Area") , "", "", 0, application.applicationDirPath()));
- tasks.append(JumpListItem(application.applicationFilePath(), "--activewindow", QObject::tr("Active Window"), "", "", 0, application.applicationDirPath()));
- tasks.append(JumpListItem(application.applicationFilePath(), "--pickwindow" , QObject::tr("Pick Window") , "", "", 0, application.applicationDirPath()));
+ tasks.append(JumpListItem(application.applicationFilePath(), "--screen" , application.translate("JumpList", "Screen"), "", "", 0, application.applicationDirPath()));
+ tasks.append(JumpListItem(application.applicationFilePath(), "--area" , application.translate("JumpList", "Area") , "", "", 0, application.applicationDirPath()));
+ tasks.append(JumpListItem(application.applicationFilePath(), "--activewindow", application.translate("JumpList", "Active Window"), "", "", 0, application.applicationDirPath()));
+ tasks.append(JumpListItem(application.applicationFilePath(), "--pickwindow" , application.translate("JumpList", "Pick Window") , "", "", 0, application.applicationDirPath()));
tasks.append(JumpListItem());
- tasks.append(JumpListItem(application.applicationFilePath(), "--uploadlast" , QObject::tr("Upload Last") , "", "", 0, application.applicationDirPath()));
- tasks.append(JumpListItem(application.applicationFilePath(), "--viewhistory" , QObject::tr("View History") , "", "", 0, application.applicationDirPath()));
+ tasks.append(JumpListItem(application.applicationFilePath(), "--uploadlast" , application.translate("JumpList", "Upload Last") , "", "", 0, application.applicationDirPath()));
+ tasks.append(JumpListItem(application.applicationFilePath(), "--viewhistory" , application.translate("JumpList", "View History") , "", "", 0, application.applicationDirPath()));
tasks.append(JumpListItem());
- tasks.append(JumpListItem(application.applicationFilePath(), "--folder" , QObject::tr("Go to Folder") , "", "", 0, application.applicationDirPath()));
+ tasks.append(JumpListItem(application.applicationFilePath(), "--folder" , application.translate("JumpList", "Go to Folder") , "", "", 0, application.applicationDirPath()));
jumpList.Begin();
jumpList.AddUserTasks(tasks);
jumpList.Commit();
}
#endif
if (application.arguments().size() > 1) {
foreach (QString argument, application.arguments()) {
lightscreen.messageReceived(argument);
}
}
else {
lightscreen.show();
}
QObject::connect(&application, SIGNAL(messageReceived(const QString&)), &lightscreen, SLOT(messageReceived(const QString&)));
QObject::connect(&lightscreen, SIGNAL(finished()), &application, SLOT(quit()));
int result = application.exec();
#ifdef Q_WS_WIN
Taskbar::ReleaseInstance();
#endif
return result;
}
diff --git a/tools/qtimgur.cpp b/tools/qtimgur.cpp
index 256a03f..5fcd6a1 100644
--- a/tools/qtimgur.cpp
+++ b/tools/qtimgur.cpp
@@ -1,156 +1,164 @@
/*
* Copyright (C) 2014 Christian Kaiser
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "qtimgur.h"
#include <QFile>
#include <QNetworkAccessManager>
#include <QNetworkReply>
#include <QNetworkRequest>
#include <QXmlStreamReader>
-QtImgur::QtImgur(const QString &APIKey, QObject *parent) : QObject(parent), mAPIKey(APIKey)
+QtImgur::QtImgur(const QString &APIKey, QObject *parent) : QObject(parent), mAPIKey(APIKey), directUrl(false)
{
mNetworkManager = new QNetworkAccessManager(this);
connect(mNetworkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(reply(QNetworkReply*)));
}
void QtImgur::cancelAll()
{
foreach (QNetworkReply *reply, mFiles.keys()) {
reply->abort();
}
mFiles.clear();
}
void QtImgur::cancel(const QString &fileName)
{
QNetworkReply *reply = mFiles.key(fileName);
if (!reply) {
return;
}
mFiles.remove(reply);
reply->abort();
}
void QtImgur::upload(const QString &fileName)
{
QFile file(fileName);
if (!file.open(QIODevice::ReadOnly)) {
emit error(fileName, QtImgur::ErrorFile);
return;
}
QByteArray data;
data.append(QString("key=").toUtf8());
data.append(QUrl::toPercentEncoding(mAPIKey));
data.append(QString("&image=").toUtf8());
data.append(QUrl::toPercentEncoding(file.readAll().toBase64()));
file.close();
QNetworkRequest request(QUrl("http://api.imgur.com/2/upload"));
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded");
QNetworkReply *reply = mNetworkManager->post(request, data);
connect(reply, SIGNAL(uploadProgress(qint64, qint64)), this, SLOT(progress(qint64, qint64)));
mFiles.insert(reply, fileName);
}
void QtImgur::progress(qint64 bytesSent, qint64 bytesTotal)
{
qint64 totalSent, totalTotal;
QNetworkReply *senderReply = qobject_cast<QNetworkReply*>(sender());
senderReply->setProperty("bytesSent", bytesSent);
senderReply->setProperty("bytesTotal", bytesTotal);
totalSent = bytesSent;
totalTotal = bytesTotal;
foreach (QNetworkReply *reply, mFiles.keys()) {
if (reply != senderReply) {
totalSent += reply->property("bytesSent").toLongLong();
totalTotal += reply->property("bytesTotal").toLongLong();
}
}
emit uploadProgress(totalSent, totalTotal);
}
void QtImgur::reply(QNetworkReply *reply)
{
QString fileName = mFiles[reply];
mFiles.remove(reply);
if (reply->error() != QNetworkReply::NoError) {
if (reply->error() == QNetworkReply::OperationCanceledError)
emit error(fileName, QtImgur::ErrorCancel);
else
emit error(fileName, QtImgur::ErrorNetwork);
reply->deleteLater();
return;
}
if (reply->rawHeader("X-RateLimit-Remaining") == "0") {
emit error(fileName, QtImgur::ErrorCredits);
reply->deleteLater();
return;
}
QXmlStreamReader reader(reply->readAll());
+
+ QString url_option = "imgur_page";
+
+ if (directUrl)
+ url_option = "original";
+
QString url;
QString deleteHash;
+
+
bool hasError = false;
while (!reader.atEnd()) {
reader.readNext();
if (reader.isStartElement()) {
if (reader.name() == "error") {
hasError = true;
}
if (reader.name() == "deletehash") {
deleteHash = reader.readElementText();
}
- if (reader.name() == "imgur_page") {
+ if (reader.name() == url_option) {
url = reader.readElementText();
}
}
}
if (deleteHash.isEmpty() || url.isEmpty() || hasError) {
emit error(fileName, QtImgur::ErrorUpload);
}
else {
emit uploaded(fileName, url, deleteHash);
}
reply->deleteLater();
}
diff --git a/tools/qtimgur.h b/tools/qtimgur.h
index 8c06250..2786be0 100644
--- a/tools/qtimgur.h
+++ b/tools/qtimgur.h
@@ -1,63 +1,64 @@
/*
* Copyright (C) 2014 Christian Kaiser
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ifndef QTIMGUR_H
#define QTIMGUR_H
#include <QObject>
#include <QHash>
#include <QNetworkReply>
#include <QPointer>
class QNetworkAccessManager;
class QtImgur: public QObject {
Q_OBJECT
public:
enum Error {
ErrorFile,
ErrorNetwork,
ErrorCredits,
ErrorUpload,
ErrorCancel
};
QtImgur(const QString &APIKey, QObject *parent);
+ bool directUrl;
public slots:
void cancelAll();
void cancel(const QString &fileName);
void upload(const QString &fileName);
protected slots:
void progress(qint64, qint64);
void reply(QNetworkReply* reply);
signals:
void error(QString, QtImgur::Error);
void uploadProgress(qint64, qint64);
void uploaded(QString file, QString url, QString deleteHash);
private:
QString mAPIKey;
QNetworkAccessManager *mNetworkManager;
QHash<QNetworkReply*, QString> mFiles;
};
#endif // QTIMGUR_H
diff --git a/tools/uploader.cpp b/tools/uploader.cpp
index 6bb578d..27f5ddd 100644
--- a/tools/uploader.cpp
+++ b/tools/uploader.cpp
@@ -1,134 +1,137 @@
/*
* Copyright (C) 2014 Christian Kaiser
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "uploader.h"
#include "qtimgur.h"
#include "screenshotmanager.h"
#include <QList>
#include <QPair>
+#include <QSettings>
Uploader* Uploader::mInstance = 0;
Uploader::Uploader(QObject *parent) : QObject(parent), mProgressSent(0), mProgressTotal(0)
{
mImgur = new QtImgur("6920a141451d125b3e1357ce0e432409", this);
connect(mImgur, SIGNAL(uploaded(QString, QString, QString)), this, SLOT(uploaded(QString, QString, QString)));
connect(mImgur, SIGNAL(error(QString, QtImgur::Error)) , this, SLOT(imgurError(QString, QtImgur::Error)));
connect(mImgur, SIGNAL(uploadProgress(qint64,qint64)) , this, SLOT(reportProgress(qint64, qint64)));
}
Uploader *Uploader::instance()
{
if (!mInstance)
mInstance = new Uploader();
return mInstance;
}
QString Uploader::lastUrl() const
{
return mLastUrl;
}
void Uploader::cancel()
{
mImgur->cancelAll();
}
void Uploader::imgurError(const QString &file, const QtImgur::Error e)
{
// Removing the screenshot.
for (int i = 0; i < mScreenshots.size(); ++i) {
if (mScreenshots.at(i).first == file) {
mScreenshots.removeAt(i);
break;
}
}
QString errorString;
switch (e) {
case QtImgur::ErrorFile:
errorString = tr("Screenshot file not found.");
break;
case QtImgur::ErrorNetwork:
errorString = tr("Could not reach imgur.com");
break;
case QtImgur::ErrorCredits:
errorString = tr("You have exceeded your upload quota.");
break;
case QtImgur::ErrorUpload:
errorString = tr("Upload failed for %1.").arg(QFileInfo(file).fileName());
break;
}
emit done(file, "", "");
emit error(errorString);
}
void Uploader::upload(const QString &fileName)
{
if (fileName.isEmpty()) {
return;
}
+ mImgur->directUrl = ScreenshotManager::instance()->settings()->value("options/uploadDirectLink", false).toBool();
+
// Cancel on duplicate
for (int i = 0; i < mScreenshots.size(); ++i) {
if (mScreenshots.at(i).first == fileName) {
return;
}
}
mImgur->upload(fileName);
QPair<QString, QString> screenshot;
screenshot.first = fileName;
screenshot.second = tr("Uploading...");
mScreenshots.append(screenshot);
}
void Uploader::uploaded(const QString &file, const QString &url, const QString &deleteHash)
{
// Removing the screenshot.
for (int i = 0; i < mScreenshots.size(); ++i) {
if (mScreenshots.at(i).first == file) {
mScreenshots.removeAt(i);
break;
}
}
mLastUrl = url;
emit done(file, url, deleteHash);
}
int Uploader::uploading()
{
return mScreenshots.count();
}
void Uploader::reportProgress(qint64 sent, qint64 total)
{
mProgressSent = sent;
mProgressTotal = total;
emit progress(sent, total);
}
diff --git a/translations/dutch.qm b/translations/dutch.qm
index a6309b8..9900ce1 100644
Binary files a/translations/dutch.qm and b/translations/dutch.qm differ
diff --git a/translations/dutch.ts b/translations/dutch.ts
index 2c067e9..4c53f00 100644
--- a/translations/dutch.ts
+++ b/translations/dutch.ts
@@ -1,1179 +1,1179 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="nl">
<context>
<name>AreaDialog</name>
<message>
- <location filename="../dialogs/areadialog.cpp" line="56"/>
+ <location filename="../dialogs/areadialog.cpp" line="54"/>
<source>Lightscreen Area Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/areadialog.cpp" line="363"/>
+ <location filename="../dialogs/areadialog.cpp" line="361"/>
<source>Lightscreen area mode:
Use your mouse to draw a rectangle to capture.
Press any key or right click to exit.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HistoryDialog</name>
<message>
<location filename="../dialogs/historydialog.ui" line="14"/>
<source>Screenshot History</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="33"/>
<source>Type here to filter through the screenshots in the list.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="43"/>
<source>Double click the path to open the image with the default picture viewer, you can also double-click the URL to open it on your web browser.
Right click items to get access to more options.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="70"/>
<source>Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="93"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="100"/>
<source>Close</source>
<translation type="unfinished">Sluiten</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="32"/>
- <location filename="../dialogs/historydialog.cpp" line="245"/>
- <location filename="../dialogs/historydialog.cpp" line="256"/>
- <location filename="../dialogs/historydialog.cpp" line="262"/>
+ <location filename="../dialogs/historydialog.cpp" line="28"/>
+ <location filename="../dialogs/historydialog.cpp" line="241"/>
+ <location filename="../dialogs/historydialog.cpp" line="252"/>
+ <location filename="../dialogs/historydialog.cpp" line="258"/>
<source>Filter..</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="112"/>
+ <location filename="../dialogs/historydialog.cpp" line="108"/>
<source>Clearing the screenshot history</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="113"/>
+ <location filename="../dialogs/historydialog.cpp" line="109"/>
<source>Are you sure you want to clear your entire screenshot history?
This cannot be undone.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="114"/>
+ <location filename="../dialogs/historydialog.cpp" line="110"/>
<source>Clear History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="115"/>
+ <location filename="../dialogs/historydialog.cpp" line="111"/>
<source>Don&apos;t Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy Path</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy URL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="133"/>
+ <location filename="../dialogs/historydialog.cpp" line="129"/>
<source>Delete from imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="134"/>
+ <location filename="../dialogs/historydialog.cpp" line="130"/>
<source>Open Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="136"/>
+ <location filename="../dialogs/historydialog.cpp" line="132"/>
<source>Remove history entry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="39"/>
+ <location filename="../dialogs/historydialog.cpp" line="35"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="40"/>
+ <location filename="../dialogs/historydialog.cpp" line="36"/>
<source>URL</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HotkeyWidget</name>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="36"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="34"/>
<source>Click to select hotkey...</source>
<translation>Klik om sneltoets in te stellen... </translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="86"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="84"/>
<source>Type your hotkey</source>
<translation>Sneltoets invoeren</translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="95"/>
- <location filename="../widgets/hotkeywidget.cpp" line="116"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="93"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="114"/>
<source>Invalid hotkey</source>
<translation>Ongeldige sneltoets</translation>
</message>
</context>
+<context>
+ <name>JumpList</name>
+ <message>
+ <location filename="../main.cpp" line="65"/>
+ <source>Screen</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="66"/>
+ <source>Area</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="67"/>
+ <source>Active Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="68"/>
+ <source>Pick Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="70"/>
+ <source>Upload Last</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="71"/>
+ <source>View History</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="73"/>
+ <source>Go to Folder</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
<context>
<name>LightscreenWindow</name>
<message>
- <location filename="../lightscreenwindow.cpp" line="237"/>
- <location filename="../lightscreenwindow.cpp" line="577"/>
- <location filename="../lightscreenwindow.cpp" line="698"/>
- <location filename="../lightscreenwindow.cpp" line="724"/>
+ <location filename="../lightscreenwindow.cpp" line="235"/>
+ <location filename="../lightscreenwindow.cpp" line="575"/>
+ <location filename="../lightscreenwindow.cpp" line="696"/>
+ <location filename="../lightscreenwindow.cpp" line="722"/>
<source>Lightscreen</source>
<translation>Lightscreen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="238"/>
+ <location filename="../lightscreenwindow.cpp" line="236"/>
<source>You have chosen to hide Lightscreen when there&apos;s no system tray icon, so you will not be able to access the program &lt;b&gt;unless you have selected a hotkey to do so&lt;/b&gt;.&lt;br&gt;What do you want to do?</source>
<translation>U koos ervoor om Lightscreen te verbergen terwijl er geen pictogram is in het systeemvak. Hierdoor kunt u het programma alleen openen &lt;b&gt;als u een sneltoets hebt ingesteld&lt;/b&gt;.&lt;br&gt;Wat wilt u doen?</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="243"/>
+ <location filename="../lightscreenwindow.cpp" line="241"/>
<source>Hide but enable tray</source>
<translation>Verbergen maar pictogram in systeemvak inschakelen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="245"/>
+ <location filename="../lightscreenwindow.cpp" line="243"/>
<source>Hide and don&apos;t warn</source>
<translation>Verbergen en niet waarschuwen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="247"/>
+ <location filename="../lightscreenwindow.cpp" line="245"/>
<source>Just hide</source>
<translation>Enkel verbergen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="418"/>
+ <location filename="../lightscreenwindow.cpp" line="416"/>
<source>processing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="423"/>
+ <location filename="../lightscreenwindow.cpp" line="421"/>
<source>uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="426"/>
+ <location filename="../lightscreenwindow.cpp" line="424"/>
<source>processing and uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="433"/>
+ <location filename="../lightscreenwindow.cpp" line="431"/>
<source>Lightscreen is currently %1 screenshots. Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="435"/>
+ <location filename="../lightscreenwindow.cpp" line="433"/>
<source>Don&apos;t Quit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="280"/>
- <location filename="../lightscreenwindow.cpp" line="904"/>
+ <location filename="../lightscreenwindow.cpp" line="278"/>
+ <location filename="../lightscreenwindow.cpp" line="902"/>
<source>&amp;Cancel upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="281"/>
- <location filename="../lightscreenwindow.cpp" line="905"/>
+ <location filename="../lightscreenwindow.cpp" line="279"/>
+ <location filename="../lightscreenwindow.cpp" line="903"/>
<source>Cancel the currently uploading screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="640"/>
+ <location filename="../lightscreenwindow.cpp" line="638"/>
<source>The screenshot was not taken</source>
<translation>Er werd geen schermafdruk gemaakt</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="882"/>
+ <location filename="../lightscreenwindow.cpp" line="880"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="885"/>
+ <location filename="../lightscreenwindow.cpp" line="883"/>
<source>&amp;Pick Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="636"/>
+ <location filename="../lightscreenwindow.cpp" line="634"/>
<source>Saved to &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="430"/>
<source>Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="641"/>
+ <location filename="../lightscreenwindow.cpp" line="639"/>
<source>An error occurred.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>%1 uploaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>Click here to go to %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="653"/>
+ <location filename="../lightscreenwindow.cpp" line="651"/>
<source>Upload error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="276"/>
- <location filename="../lightscreenwindow.cpp" line="900"/>
+ <location filename="../lightscreenwindow.cpp" line="274"/>
+ <location filename="../lightscreenwindow.cpp" line="898"/>
<source>&amp;Upload last</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="277"/>
- <location filename="../lightscreenwindow.cpp" line="901"/>
+ <location filename="../lightscreenwindow.cpp" line="275"/>
+ <location filename="../lightscreenwindow.cpp" line="899"/>
<source>Upload the last screenshot you took to imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="910"/>
+ <location filename="../lightscreenwindow.cpp" line="908"/>
<source>View History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="274"/>
- <location filename="../lightscreenwindow.cpp" line="930"/>
+ <location filename="../lightscreenwindow.cpp" line="272"/>
+ <location filename="../lightscreenwindow.cpp" line="928"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Closed to tray</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Lightscreen will keep running, you can disable this in the options menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="287"/>
+ <location filename="../lightscreenwindow.cpp" line="285"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="375"/>
- <location filename="../lightscreenwindow.cpp" line="378"/>
+ <location filename="../lightscreenwindow.cpp" line="373"/>
+ <location filename="../lightscreenwindow.cpp" line="376"/>
<source>Success!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="382"/>
- <location filename="../lightscreenwindow.cpp" line="385"/>
+ <location filename="../lightscreenwindow.cpp" line="380"/>
+ <location filename="../lightscreenwindow.cpp" line="383"/>
<source>Failed!</source>
<translation>Mislukt!</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="389"/>
+ <location filename="../lightscreenwindow.cpp" line="387"/>
<source>Cancelled!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="559"/>
+ <location filename="../lightscreenwindow.cpp" line="557"/>
<source>Some hotkeys could not be registered, they might already be in use</source>
<translation>Sommige sneltoetsen konden niet geregistreerd worden en zijn mogelijk al in gebruik</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="562"/>
+ <location filename="../lightscreenwindow.cpp" line="560"/>
<source>&lt;br&gt;The failed hotkeys are the following:</source>
<translation>&lt;b&gt;Dit zijn de mislukte sneltoetsen:</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="571"/>
+ <location filename="../lightscreenwindow.cpp" line="569"/>
<source>&lt;br&gt;The failed hotkey is &lt;b&gt;%1&lt;/b&gt;</source>
<translation>&lt;br&gt;De mislukte sneltoets is &lt;b&gt;%1&lt;/b&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="574"/>
+ <location filename="../lightscreenwindow.cpp" line="572"/>
<source>&lt;br&gt;&lt;i&gt;What do you want to do?&lt;/i&gt;</source>
<translation>&lt;br&gt;&lt;i&gt;Wat wilt u doen?&lt;/i&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="580"/>
+ <location filename="../lightscreenwindow.cpp" line="578"/>
<source>Change</source>
<translation>Veranderen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="581"/>
+ <location filename="../lightscreenwindow.cpp" line="579"/>
<source>Disable</source>
<translation>Uitzetten</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="694"/>
+ <location filename="../lightscreenwindow.cpp" line="692"/>
<source>%1 uploading - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Do you want to cancel all screenshot uploads?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="665"/>
- <location filename="../lightscreenwindow.cpp" line="923"/>
+ <location filename="../lightscreenwindow.cpp" line="663"/>
+ <location filename="../lightscreenwindow.cpp" line="921"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Upload cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Don&apos;t Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="434"/>
- <location filename="../lightscreenwindow.cpp" line="582"/>
+ <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="580"/>
<source>Quit</source>
<translation>Afsluiten</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="725"/>
+ <location filename="../lightscreenwindow.cpp" line="723"/>
<source>There&apos;s a new version of Lightscreen available.&lt;br&gt;Would you like to see more information?&lt;br&gt;(&lt;em&gt;You can turn this notification off&lt;/em&gt;)</source>
<translation>Er is een nieuwe versie van Lightscreen beschikbaar.&lt;br&gt;Wilt u meer informatie?&lt;br&gt;(&lt;em&gt;U kunt deze melding uitschakelen&lt;/em&gt;)</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="729"/>
+ <location filename="../lightscreenwindow.cpp" line="727"/>
<source>Turn Off</source>
<translation>Uitschakelen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="730"/>
+ <location filename="../lightscreenwindow.cpp" line="728"/>
<source>Remind Me Later</source>
<translation>Herinner mij later</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="780"/>
+ <location filename="../lightscreenwindow.cpp" line="778"/>
<source>%1% of %2 uploads - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="783"/>
+ <location filename="../lightscreenwindow.cpp" line="781"/>
<source>%1% - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="879"/>
+ <location filename="../lightscreenwindow.cpp" line="877"/>
<source>&amp;Screen</source>
<translation>&amp;Bureaublad</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="888"/>
+ <location filename="../lightscreenwindow.cpp" line="886"/>
<source>&amp;Area</source>
<translation>&amp;Gebied</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="917"/>
+ <location filename="../lightscreenwindow.cpp" line="915"/>
<source>&amp;Go to Folder</source>
<translation>Ga naar &amp;map</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="876"/>
+ <location filename="../lightscreenwindow.cpp" line="874"/>
<source>Show&amp;/Hide</source>
<translation>&amp;Tonen/Verbergen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="914"/>
+ <location filename="../lightscreenwindow.cpp" line="912"/>
<source>View &amp;Options</source>
<translation>&amp;Voorkeuren</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="920"/>
+ <location filename="../lightscreenwindow.cpp" line="918"/>
<source>&amp;Quit</source>
<translation>&amp;Afsluiten</translation>
</message>
</context>
<context>
<name>LightscreenWindowClass</name>
<message>
<location filename="../lightscreenwindow.ui" line="20"/>
<source>Lightscreen</source>
<translation>Lightscreen</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="49"/>
<source>Area capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="52"/>
<source>Capture a specific area of your desktop, resize and move it around!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="64"/>
<source>Ctrl+A</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="80"/>
<source>Pick window</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="83"/>
<source>Drop the picker onto a window to capture it.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="92"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="108"/>
<source>Configure Lightscreen</source>
<translation>Lightscreen instellen</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="111"/>
<source>&amp;Options</source>
<translation>&amp;Voorkeuren</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="114"/>
<source>Ctrl+O</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="130"/>
<source>Open the current Screenshot folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="133"/>
<source>&amp;Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="136"/>
<source>Ctrl+F</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="152"/>
<source>Imgur upload controls</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="155"/>
<source>&amp;Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="158"/>
<source>Ctrl+U</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="174"/>
<source>Fullscreen capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="177"/>
<source>Take a screenshot of your entire desktop.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="186"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>NamingDialog</name>
<message>
<location filename="../dialogs/namingdialog.ui" line="14"/>
<source>Naming Options - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="45"/>
<source>Leading zeros:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="100"/>
<source>Date Format:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="167"/>
<source>Flip naming.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>OptionsDialog</name>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="520"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="522"/>
<source>Restore Defaults</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="536"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="538"/>
<source>Version %1</source>
<translation type="unfinished">Versie %1</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>Hotkey conflict</source>
<translation>Conflicterende sneltoetsen</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>You have assigned the same hotkeys to more than one action.</source>
<translation>U hebt dezelfde sneltoetsen toegewezen aan verschillende acties.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>Filename character error</source>
<translation>Tekenfout in bestandsnaam</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>The filename can&apos;t contain any of the following characters: ? : \ / * &quot; &lt; &gt; |</source>
<translation>De bestandsnaam kan volgende tekens niet bevatten: ? : \ / * &quot; &lt; &gt; |</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>Final Destination</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>You can&apos;t take screenshots unless you enable either file saving or the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="449"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="447"/>
<source>Select where you want to save the screenshots</source>
<translation>Selecteer waar u de schermafdrukken wilt opslaan</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="462"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="461"/>
<source>Lightscreen - Restore Default Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="463"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="462"/>
<source>Restoring the default options will cause you to lose all of your current configuration.</source>
<translation>U zult uw huidige voorkeuren verliezen als u de standaardwaarden herstelt.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="466"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="465"/>
<source>Restore</source>
<translation>Herstellen</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="467"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="466"/>
<source>Don&apos;t Restore</source>
<translation>Niet herstellen</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="137"/>
- <location filename="../dialogs/optionsdialog.cpp" line="502"/>
- <location filename="../dialogs/optionsdialog.cpp" line="508"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="135"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="501"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="507"/>
<source>screenshot.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="504"/>
- <location filename="../dialogs/optionsdialog.cpp" line="506"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="503"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="505"/>
<source>.screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="187"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="185"/>
<source>Install &apos;OptiPNG&apos;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="14"/>
<source>Options - Lightscreen</source>
<translation>Voorkeuren</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="42"/>
<source>File</source>
<translation>Bestand</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="60"/>
<source>&amp;Directory:</source>
<translation>&amp;Map:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="100"/>
+ <location filename="../dialogs/optionsdialog.ui" line="96"/>
<source>The prefix for the screenshot file</source>
<translation>Het voorvoegsel voor het bestand met de schermafdruk</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="103"/>
+ <location filename="../dialogs/optionsdialog.ui" line="99"/>
<source>&amp;Filename:</source>
<translation>&amp;Bestandsnaam:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="121"/>
+ <location filename="../dialogs/optionsdialog.ui" line="117"/>
<source>The prefix will be inserted before the &lt;em&gt;Naming&lt;/em&gt; in the screenshot file and it is usually used to distinguish files. It can be left blank.</source>
<translation>Het voorvoegsel zal ingevoegd worden voor de &lt;em&gt;Naamgeving&lt;/em&gt; in het bestand met de schermafdruk. Het wordt gewoonlijk gebruikt om bestanden te onderscheiden. U kunt dit leeg laten.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="137"/>
+ <location filename="../dialogs/optionsdialog.ui" line="133"/>
<source>(number)</source>
<translation>(nummer)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="142"/>
+ <location filename="../dialogs/optionsdialog.ui" line="138"/>
<source>(date)</source>
<translation>(datum)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="147"/>
+ <location filename="../dialogs/optionsdialog.ui" line="143"/>
<source>(timestamp)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="173"/>
+ <location filename="../dialogs/optionsdialog.ui" line="165"/>
<source>The file format for the screenshot</source>
<translation>Het bestandsformaat voor de schermafdruk</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="176"/>
+ <location filename="../dialogs/optionsdialog.ui" line="168"/>
<source>F&amp;ormat:</source>
<translation>&amp;Formaat:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="208"/>
+ <location filename="../dialogs/optionsdialog.ui" line="200"/>
<source>&amp;Quality:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="152"/>
+ <location filename="../dialogs/optionsdialog.ui" line="148"/>
<source>(none)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="314"/>
+ <location filename="../dialogs/optionsdialog.ui" line="306"/>
<source>System Startup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="367"/>
+ <location filename="../dialogs/optionsdialog.ui" line="359"/>
<source>Hotkeys</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="373"/>
+ <location filename="../dialogs/optionsdialog.ui" line="365"/>
<source>Captures</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="394"/>
+ <location filename="../dialogs/optionsdialog.ui" line="386"/>
<source>&amp;Fullscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="417"/>
+ <location filename="../dialogs/optionsdialog.ui" line="409"/>
<source>Window &amp;Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="446"/>
+ <location filename="../dialogs/optionsdialog.ui" line="438"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="462"/>
+ <location filename="../dialogs/optionsdialog.ui" line="454"/>
<source>Screen &amp;Area</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="475"/>
+ <location filename="../dialogs/optionsdialog.ui" line="467"/>
<source>Lightscreen Control</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="496"/>
+ <location filename="../dialogs/optionsdialog.ui" line="488"/>
<source>&amp;Open the program window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="512"/>
+ <location filename="../dialogs/optionsdialog.ui" line="504"/>
<source>Open the &amp;directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="539"/>
+ <location filename="../dialogs/optionsdialog.ui" line="531"/>
<source>Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="587"/>
+ <location filename="../dialogs/optionsdialog.ui" line="579"/>
<source>Interface</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="606"/>
+ <location filename="../dialogs/optionsdialog.ui" line="598"/>
<source>C&amp;losing hides the main window.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="898"/>
+ <location filename="../dialogs/optionsdialog.ui" line="890"/>
<source>Default action:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="925"/>
- <location filename="../dialogs/optionsdialog.cpp" line="129"/>
- <location filename="../dialogs/optionsdialog.cpp" line="132"/>
+ <location filename="../dialogs/optionsdialog.ui" line="917"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="127"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="130"/>
<source>Screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="934"/>
+ <location filename="../dialogs/optionsdialog.ui" line="926"/>
<source>Choose where to save each screenshot (&quot;&amp;Save as&quot;).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="941"/>
+ <location filename="../dialogs/optionsdialog.ui" line="933"/>
<source>&amp;Grab only the active monitor.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="967"/>
+ <location filename="../dialogs/optionsdialog.ui" line="959"/>
<source>Runs OptiPNG which reduces screenshot file size.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1036"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1028"/>
<source>Replace screenshots when there&apos;s an existing file.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1115"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1107"/>
<source>Clipboard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1131"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1123"/>
<source>After uploading, copy the imgur URL to the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1141"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1133"/>
<source>History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1150"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1142"/>
<source>Save my screenshot history.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1050"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1042"/>
<source>Upload all my screenshots automatically.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1059"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1051"/>
<source>D&amp;elay:</source>
<translation>V&amp;ertraging:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1072"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1064"/>
<source>Selecting anything other than 0 in this option will cause the program to &lt;b&gt;wait&lt;/b&gt; that amount of seconds before taking the screenshot.</source>
<translation>Het programma zal het hier opgegeven aantal seconden &lt;b&gt;wachten&lt;/b&gt; voor de schermafdruk wordt gemaakt.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1075"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1067"/>
<source>none</source>
<translation>geen</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1230"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1222"/>
<source>Lightscreen is a simple tool to take screenshots, designed to be customizable and lightweight.&lt;br&gt;&lt;br&gt;
Created by &lt;a href=&quot;http://ckaiser.com.ar&quot;&gt;Christian Kaiser&lt;/a&gt;, using the &lt;a href=&quot;#aboutqt&quot;&gt;Qt toolkit&lt;/a&gt; for the graphical user interface.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1244"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1236"/>
<source>Released under the &lt;a href=&quot;http://www.gnu.org/licenses/gpl-2.0.html&quot;&gt;GNU General Public License&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Special thanks goes to the &lt;a href=&quot;http://lightscreen.sourceforge.net/about&quot;&gt;Donators and Translators&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="850"/>
- <location filename="../dialogs/optionsdialog.ui" line="1084"/>
+ <location filename="../dialogs/optionsdialog.ui" line="842"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1076"/>
<source> seconds</source>
<translation> seconden</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="275"/>
+ <location filename="../dialogs/optionsdialog.ui" line="267"/>
<source>&lt;u&gt;Preview&lt;/u&gt;:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="755"/>
+ <location filename="../dialogs/optionsdialog.ui" line="747"/>
<source>Maximum Size:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="806"/>
+ <location filename="../dialogs/optionsdialog.ui" line="798"/>
<source>Position:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="863"/>
+ <location filename="../dialogs/optionsdialog.ui" line="855"/>
<source> and </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="880"/>
- <location filename="../dialogs/optionsdialog.ui" line="909"/>
+ <location filename="../dialogs/optionsdialog.ui" line="872"/>
+ <location filename="../dialogs/optionsdialog.ui" line="901"/>
<source>save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="885"/>
- <location filename="../dialogs/optionsdialog.ui" line="914"/>
+ <location filename="../dialogs/optionsdialog.ui" line="877"/>
+ <location filename="../dialogs/optionsdialog.ui" line="906"/>
<source>upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="890"/>
+ <location filename="../dialogs/optionsdialog.ui" line="882"/>
<source>cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1209"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1201"/>
<source>Chec&amp;k Now</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1224"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1216"/>
<source>About</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1269"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1261"/>
<source>&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Visit Sourceforge project site&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Visit Lightscreen home page&lt;/a&gt;</source>
<translation type="unfinished">&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Projectsite op Sourceforge bezoeken&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Website van Lightscreen bezoeken&lt;/a&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="326"/>
+ <location filename="../dialogs/optionsdialog.ui" line="318"/>
<source>&amp;Run Lightscreen at system startup.</source>
<translation>&amp;Lightscreen opstarten bij systeemstart.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="354"/>
+ <location filename="../dialogs/optionsdialog.ui" line="346"/>
<source>H&amp;ide the main window.</source>
<translation>&amp;Hoofdvenster verbergen.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="599"/>
+ <location filename="../dialogs/optionsdialog.ui" line="591"/>
<source>Sho&amp;w a system tray icon.</source>
<translation>&amp;Pictogram tonen in systeemvak.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="613"/>
+ <location filename="../dialogs/optionsdialog.ui" line="605"/>
<source>&amp;Hide Lightscreen while taking a screenshot.</source>
<translation>&amp;Lightscreen verbergen bij aanmaak schermafdruk.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="955"/>
+ <location filename="../dialogs/optionsdialog.ui" line="947"/>
<source>&amp;Magnify around the mouse in Area mode.</source>
<translation>Vergr&amp;ootglas tonen bij schermafdruk van gebied.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="695"/>
+ <location filename="../dialogs/optionsdialog.ui" line="687"/>
<source>&amp;Language:</source>
<translation>&amp;Taal:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="712"/>
+ <location filename="../dialogs/optionsdialog.ui" line="704"/>
<source>Click here to go to the Lightscreen homepage to learn more about translations.</source>
<translation>Klik hier om de website van Lightscreen te bezoeken om meer te weten te komen over vertalingen.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="715"/>
+ <location filename="../dialogs/optionsdialog.ui" line="707"/>
<source>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;More information..&lt;/a&gt;</source>
<translation>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;Meer informatie.&lt;/a&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="681"/>
+ <location filename="../dialogs/optionsdialog.ui" line="673"/>
<source>&amp;Notify with:</source>
<translation>&amp;Notificeer met:</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="27"/>
<source>General</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="628"/>
+ <location filename="../dialogs/optionsdialog.ui" line="620"/>
<source>Shows a completion message once the screenshot is saved, clicking this message takes you to the directory where the screenshot was saved.</source>
<translation>Toont een bericht wanneer de schermafdruk is opgeslagen. Als u op dit bericht klikt, dan wordt de map geöpend waarin de schermafdruk werd opgeslagen.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="631"/>
+ <location filename="../dialogs/optionsdialog.ui" line="623"/>
<source>Tray icon Popup</source>
<translation>Bericht bij systeemvakpictogram</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="638"/>
+ <location filename="../dialogs/optionsdialog.ui" line="630"/>
<source>&amp;Sound cue</source>
<translation>Gel&amp;uidsnotificatie</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="221"/>
+ <location filename="../dialogs/optionsdialog.ui" line="213"/>
<source>This slider goes from 0 to 100. 100 being the highest quality and 0 the lowest.&lt;br&gt;
Quality is related to file size and of course to readability and overall quality of the image.</source>
<translation>Deze schuifbalk gaat van 0 (laagst) tot 100 (hoogst).&lt;br&gt;
De kwaliteit heeft invloed op de bestandsgrootte en de duidelijkheid van de schermafdruk.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1124"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1116"/>
<source>&amp;Copy the screenshot to the clipboard.</source>
<translation>Schermafdruk &amp;kopiëren naar het klipbord.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="948"/>
+ <location filename="../dialogs/optionsdialog.ui" line="940"/>
<source>Inc&amp;lude the cursor in the screenshot.</source>
<translation>Cursor op&amp;nemen in de schermafdruk.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="970"/>
+ <location filename="../dialogs/optionsdialog.ui" line="962"/>
<source>O&amp;ptimize PNG screenshots.</source>
<translation>Schermafdrukken in &amp;PNG-formaat optimaliseren.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="128"/>
+ <location filename="../dialogs/optionsdialog.ui" line="124"/>
<source>The naming is inserted after the prefix and is what makes each screenshot file unique to avoid overwriting.&lt;br /&gt;
&lt;b&gt;Numeric&lt;/b&gt;: inserts a number in sequence, 1, 2, 3..&lt;br /&gt;
&lt;b&gt;Date&lt;/b&gt;: inserts the current date and time, in the form of dd-MM-yyyy, click the &quot;wrench&quot; button on the right to customize the format.&lt;br /&gt;
&lt;b&gt;Timestamp&lt;/b&gt;: inserts a number, a Unix timestamp, which is the number of seconds passed since 1970-1-1 00:00:00.&lt;br /&gt;
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1043"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1035"/>
<source>Snap area screenshots automatically (no resizing).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="740"/>
+ <location filename="../dialogs/optionsdialog.ui" line="732"/>
<source>Screenshot Previews</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="820"/>
+ <location filename="../dialogs/optionsdialog.ui" line="812"/>
<source>Top Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="825"/>
+ <location filename="../dialogs/optionsdialog.ui" line="817"/>
<source>Top Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="830"/>
+ <location filename="../dialogs/optionsdialog.ui" line="822"/>
<source>Bottom Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="835"/>
+ <location filename="../dialogs/optionsdialog.ui" line="827"/>
<source>Bottom Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="843"/>
+ <location filename="../dialogs/optionsdialog.ui" line="835"/>
<source>Auto-close after</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1170"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1162"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1180"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1172"/>
<source>Updater</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1189"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1181"/>
<source>Check for updates regularly.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>PreviewDialog</name>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="47"/>
- <location filename="../dialogs/previewdialog.cpp" line="308"/>
+ <location filename="../dialogs/previewdialog.cpp" line="46"/>
+ <location filename="../dialogs/previewdialog.cpp" line="307"/>
<source>Screenshot Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="158"/>
+ <location filename="../dialogs/previewdialog.cpp" line="157"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="180"/>
+ <location filename="../dialogs/previewdialog.cpp" line="179"/>
<source>Save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="305"/>
+ <location filename="../dialogs/previewdialog.cpp" line="304"/>
<source>Screenshot Preview (%1 of %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="406"/>
+ <location filename="../dialogs/previewdialog.cpp" line="405"/>
<source>Preview: Closing in %1</source>
<translation type="unfinished"></translation>
</message>
</context>
-<context>
- <name>QObject</name>
- <message>
- <location filename="../main.cpp" line="67"/>
- <source>Screen</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="68"/>
- <source>Area</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="69"/>
- <source>Active Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="70"/>
- <source>Pick Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="72"/>
- <source>Upload Last</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="73"/>
- <source>View History</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="75"/>
- <source>Go to Folder</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
<context>
<name>Screenshot</name>
<message>
- <location filename="../tools/screenshot.cpp" line="217"/>
+ <location filename="../tools/screenshot.cpp" line="216"/>
<source>Save as..</source>
<translation>Opslaan als...</translation>
</message>
</context>
<context>
<name>Uploader</name>
<message>
- <location filename="../tools/uploader.cpp" line="105"/>
+ <location filename="../tools/uploader.cpp" line="103"/>
<source>Uploading...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="71"/>
+ <location filename="../tools/uploader.cpp" line="69"/>
<source>Screenshot file not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="74"/>
+ <location filename="../tools/uploader.cpp" line="72"/>
<source>Could not reach imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="77"/>
+ <location filename="../tools/uploader.cpp" line="75"/>
<source>You have exceeded your upload quota.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="80"/>
+ <location filename="../tools/uploader.cpp" line="78"/>
<source>Upload failed for %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>WindowPicker</name>
<message>
- <location filename="../tools/windowpicker.cpp" line="52"/>
+ <location filename="../tools/windowpicker.cpp" line="50"/>
<source>Lightscreen Window Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="55"/>
+ <location filename="../tools/windowpicker.cpp" line="53"/>
<source>Grab the window picker by clicking and holding down the mouse button, then drag it to the window of your choice and release it to capture.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="65"/>
+ <location filename="../tools/windowpicker.cpp" line="63"/>
<source> - Start dragging to select windows</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="72"/>
+ <location filename="../tools/windowpicker.cpp" line="70"/>
<source>Close</source>
<translation type="unfinished">Sluiten</translation>
</message>
</context>
</TS>
diff --git a/translations/italian.qm b/translations/italian.qm
index 4efcdd3..ee49444 100644
Binary files a/translations/italian.qm and b/translations/italian.qm differ
diff --git a/translations/italian.ts b/translations/italian.ts
index 2a7b22e..26d4f23 100644
--- a/translations/italian.ts
+++ b/translations/italian.ts
@@ -1,1179 +1,1179 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="it_IT">
<context>
<name>AreaDialog</name>
<message>
- <location filename="../dialogs/areadialog.cpp" line="56"/>
+ <location filename="../dialogs/areadialog.cpp" line="54"/>
<source>Lightscreen Area Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/areadialog.cpp" line="363"/>
+ <location filename="../dialogs/areadialog.cpp" line="361"/>
<source>Lightscreen area mode:
Use your mouse to draw a rectangle to capture.
Press any key or right click to exit.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HistoryDialog</name>
<message>
<location filename="../dialogs/historydialog.ui" line="14"/>
<source>Screenshot History</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="33"/>
<source>Type here to filter through the screenshots in the list.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="43"/>
<source>Double click the path to open the image with the default picture viewer, you can also double-click the URL to open it on your web browser.
Right click items to get access to more options.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="70"/>
<source>Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="93"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="100"/>
<source>Close</source>
<translation type="unfinished">Chiudi</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="32"/>
- <location filename="../dialogs/historydialog.cpp" line="245"/>
- <location filename="../dialogs/historydialog.cpp" line="256"/>
- <location filename="../dialogs/historydialog.cpp" line="262"/>
+ <location filename="../dialogs/historydialog.cpp" line="28"/>
+ <location filename="../dialogs/historydialog.cpp" line="241"/>
+ <location filename="../dialogs/historydialog.cpp" line="252"/>
+ <location filename="../dialogs/historydialog.cpp" line="258"/>
<source>Filter..</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="112"/>
+ <location filename="../dialogs/historydialog.cpp" line="108"/>
<source>Clearing the screenshot history</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="113"/>
+ <location filename="../dialogs/historydialog.cpp" line="109"/>
<source>Are you sure you want to clear your entire screenshot history?
This cannot be undone.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="114"/>
+ <location filename="../dialogs/historydialog.cpp" line="110"/>
<source>Clear History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="115"/>
+ <location filename="../dialogs/historydialog.cpp" line="111"/>
<source>Don&apos;t Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy Path</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy URL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="133"/>
+ <location filename="../dialogs/historydialog.cpp" line="129"/>
<source>Delete from imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="134"/>
+ <location filename="../dialogs/historydialog.cpp" line="130"/>
<source>Open Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="136"/>
+ <location filename="../dialogs/historydialog.cpp" line="132"/>
<source>Remove history entry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="39"/>
+ <location filename="../dialogs/historydialog.cpp" line="35"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="40"/>
+ <location filename="../dialogs/historydialog.cpp" line="36"/>
<source>URL</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HotkeyWidget</name>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="36"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="34"/>
<source>Click to select hotkey...</source>
<translation>Clicca per selezionare la scorciatoia...</translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="86"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="84"/>
<source>Type your hotkey</source>
<translation>Inserisci la scorciatoia</translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="95"/>
- <location filename="../widgets/hotkeywidget.cpp" line="116"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="93"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="114"/>
<source>Invalid hotkey</source>
<translation>Scorciatoia non valida</translation>
</message>
</context>
+<context>
+ <name>JumpList</name>
+ <message>
+ <location filename="../main.cpp" line="65"/>
+ <source>Screen</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="66"/>
+ <source>Area</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="67"/>
+ <source>Active Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="68"/>
+ <source>Pick Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="70"/>
+ <source>Upload Last</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="71"/>
+ <source>View History</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="73"/>
+ <source>Go to Folder</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
<context>
<name>LightscreenWindow</name>
<message>
- <location filename="../lightscreenwindow.cpp" line="237"/>
- <location filename="../lightscreenwindow.cpp" line="577"/>
- <location filename="../lightscreenwindow.cpp" line="698"/>
- <location filename="../lightscreenwindow.cpp" line="724"/>
+ <location filename="../lightscreenwindow.cpp" line="235"/>
+ <location filename="../lightscreenwindow.cpp" line="575"/>
+ <location filename="../lightscreenwindow.cpp" line="696"/>
+ <location filename="../lightscreenwindow.cpp" line="722"/>
<source>Lightscreen</source>
<translation>Lightscreen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="238"/>
+ <location filename="../lightscreenwindow.cpp" line="236"/>
<source>You have chosen to hide Lightscreen when there&apos;s no system tray icon, so you will not be able to access the program &lt;b&gt;unless you have selected a hotkey to do so&lt;/b&gt;.&lt;br&gt;What do you want to do?</source>
<translation>Hai scelto di nascondere Lightscreen quando non c&apos;è nessuna icona nel tray, perciò non potrai accedere al programma &lt;b&gt;a meno che non hai selezionato una scorciatoia per fare ciò&lt;/b&gt;.&lt;br&gt;Cosa vuoi fare?</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="243"/>
+ <location filename="../lightscreenwindow.cpp" line="241"/>
<source>Hide but enable tray</source>
<translation>Nascondi ma abilita tray</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="245"/>
+ <location filename="../lightscreenwindow.cpp" line="243"/>
<source>Hide and don&apos;t warn</source>
<translation>Nascondi e non avvisare</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="247"/>
+ <location filename="../lightscreenwindow.cpp" line="245"/>
<source>Just hide</source>
<translation>Nascondi</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="418"/>
+ <location filename="../lightscreenwindow.cpp" line="416"/>
<source>processing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="423"/>
+ <location filename="../lightscreenwindow.cpp" line="421"/>
<source>uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="426"/>
+ <location filename="../lightscreenwindow.cpp" line="424"/>
<source>processing and uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="433"/>
+ <location filename="../lightscreenwindow.cpp" line="431"/>
<source>Lightscreen is currently %1 screenshots. Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="435"/>
+ <location filename="../lightscreenwindow.cpp" line="433"/>
<source>Don&apos;t Quit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="280"/>
- <location filename="../lightscreenwindow.cpp" line="904"/>
+ <location filename="../lightscreenwindow.cpp" line="278"/>
+ <location filename="../lightscreenwindow.cpp" line="902"/>
<source>&amp;Cancel upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="281"/>
- <location filename="../lightscreenwindow.cpp" line="905"/>
+ <location filename="../lightscreenwindow.cpp" line="279"/>
+ <location filename="../lightscreenwindow.cpp" line="903"/>
<source>Cancel the currently uploading screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="640"/>
+ <location filename="../lightscreenwindow.cpp" line="638"/>
<source>The screenshot was not taken</source>
<translation>Lo screenshot non è stato creato</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="882"/>
+ <location filename="../lightscreenwindow.cpp" line="880"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="885"/>
+ <location filename="../lightscreenwindow.cpp" line="883"/>
<source>&amp;Pick Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="636"/>
+ <location filename="../lightscreenwindow.cpp" line="634"/>
<source>Saved to &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="430"/>
<source>Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="641"/>
+ <location filename="../lightscreenwindow.cpp" line="639"/>
<source>An error occurred.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>%1 uploaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>Click here to go to %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="653"/>
+ <location filename="../lightscreenwindow.cpp" line="651"/>
<source>Upload error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="276"/>
- <location filename="../lightscreenwindow.cpp" line="900"/>
+ <location filename="../lightscreenwindow.cpp" line="274"/>
+ <location filename="../lightscreenwindow.cpp" line="898"/>
<source>&amp;Upload last</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="277"/>
- <location filename="../lightscreenwindow.cpp" line="901"/>
+ <location filename="../lightscreenwindow.cpp" line="275"/>
+ <location filename="../lightscreenwindow.cpp" line="899"/>
<source>Upload the last screenshot you took to imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="910"/>
+ <location filename="../lightscreenwindow.cpp" line="908"/>
<source>View History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="274"/>
- <location filename="../lightscreenwindow.cpp" line="930"/>
+ <location filename="../lightscreenwindow.cpp" line="272"/>
+ <location filename="../lightscreenwindow.cpp" line="928"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Closed to tray</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Lightscreen will keep running, you can disable this in the options menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="287"/>
+ <location filename="../lightscreenwindow.cpp" line="285"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="375"/>
- <location filename="../lightscreenwindow.cpp" line="378"/>
+ <location filename="../lightscreenwindow.cpp" line="373"/>
+ <location filename="../lightscreenwindow.cpp" line="376"/>
<source>Success!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="382"/>
- <location filename="../lightscreenwindow.cpp" line="385"/>
+ <location filename="../lightscreenwindow.cpp" line="380"/>
+ <location filename="../lightscreenwindow.cpp" line="383"/>
<source>Failed!</source>
<translation>Fallito!</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="389"/>
+ <location filename="../lightscreenwindow.cpp" line="387"/>
<source>Cancelled!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="559"/>
+ <location filename="../lightscreenwindow.cpp" line="557"/>
<source>Some hotkeys could not be registered, they might already be in use</source>
<translation>Alcune scorciatoie non possono essere registrate, potrebbero essere in uso</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="562"/>
+ <location filename="../lightscreenwindow.cpp" line="560"/>
<source>&lt;br&gt;The failed hotkeys are the following:</source>
<translation>&lt;br&gt;Le scorciatoie non accettate sono le seguenti:</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="571"/>
+ <location filename="../lightscreenwindow.cpp" line="569"/>
<source>&lt;br&gt;The failed hotkey is &lt;b&gt;%1&lt;/b&gt;</source>
<translation>&lt;br&gt;La scorciatoia non accettata è &lt;b&gt;%1&lt;/b&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="574"/>
+ <location filename="../lightscreenwindow.cpp" line="572"/>
<source>&lt;br&gt;&lt;i&gt;What do you want to do?&lt;/i&gt;</source>
<translation>&lt;br&gt;&lt;i&gt;Cosa vuoi fare?&lt;/i&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="580"/>
+ <location filename="../lightscreenwindow.cpp" line="578"/>
<source>Change</source>
<translation>Cambia</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="581"/>
+ <location filename="../lightscreenwindow.cpp" line="579"/>
<source>Disable</source>
<translation>Disabilita</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="694"/>
+ <location filename="../lightscreenwindow.cpp" line="692"/>
<source>%1 uploading - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Do you want to cancel all screenshot uploads?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="665"/>
- <location filename="../lightscreenwindow.cpp" line="923"/>
+ <location filename="../lightscreenwindow.cpp" line="663"/>
+ <location filename="../lightscreenwindow.cpp" line="921"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Upload cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Don&apos;t Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="434"/>
- <location filename="../lightscreenwindow.cpp" line="582"/>
+ <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="580"/>
<source>Quit</source>
<translation>Esci</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="725"/>
+ <location filename="../lightscreenwindow.cpp" line="723"/>
<source>There&apos;s a new version of Lightscreen available.&lt;br&gt;Would you like to see more information?&lt;br&gt;(&lt;em&gt;You can turn this notification off&lt;/em&gt;)</source>
<translation>E&apos; disponibile una nuova versione di Lightscreen.&lt;br&gt;Vuoi vedere più informazioni?&lt;br&gt;(&lt;em&gt;Puoi disattivare questa notifica&lt;/em&gt;)</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="729"/>
+ <location filename="../lightscreenwindow.cpp" line="727"/>
<source>Turn Off</source>
<translation>Spegni</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="730"/>
+ <location filename="../lightscreenwindow.cpp" line="728"/>
<source>Remind Me Later</source>
<translation>Ricordamelo più tardi</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="780"/>
+ <location filename="../lightscreenwindow.cpp" line="778"/>
<source>%1% of %2 uploads - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="783"/>
+ <location filename="../lightscreenwindow.cpp" line="781"/>
<source>%1% - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="879"/>
+ <location filename="../lightscreenwindow.cpp" line="877"/>
<source>&amp;Screen</source>
<translation>&amp;Schermo</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="888"/>
+ <location filename="../lightscreenwindow.cpp" line="886"/>
<source>&amp;Area</source>
<translation>&amp;Area</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="917"/>
+ <location filename="../lightscreenwindow.cpp" line="915"/>
<source>&amp;Go to Folder</source>
<translation>&amp;Vai alla cartella</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="876"/>
+ <location filename="../lightscreenwindow.cpp" line="874"/>
<source>Show&amp;/Hide</source>
<translation>Mostra&amp;/Nascondi</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="914"/>
+ <location filename="../lightscreenwindow.cpp" line="912"/>
<source>View &amp;Options</source>
<translation>Visualizza &amp;Opzioni</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="920"/>
+ <location filename="../lightscreenwindow.cpp" line="918"/>
<source>&amp;Quit</source>
<translation>&amp;Esci</translation>
</message>
</context>
<context>
<name>LightscreenWindowClass</name>
<message>
<location filename="../lightscreenwindow.ui" line="20"/>
<source>Lightscreen</source>
<translation>Lightscreen</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="49"/>
<source>Area capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="52"/>
<source>Capture a specific area of your desktop, resize and move it around!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="64"/>
<source>Ctrl+A</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="80"/>
<source>Pick window</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="83"/>
<source>Drop the picker onto a window to capture it.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="92"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="108"/>
<source>Configure Lightscreen</source>
<translation>Configura Lightscreen</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="111"/>
<source>&amp;Options</source>
<translation>&amp;Opzioni</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="114"/>
<source>Ctrl+O</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="130"/>
<source>Open the current Screenshot folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="133"/>
<source>&amp;Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="136"/>
<source>Ctrl+F</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="152"/>
<source>Imgur upload controls</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="155"/>
<source>&amp;Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="158"/>
<source>Ctrl+U</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="174"/>
<source>Fullscreen capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="177"/>
<source>Take a screenshot of your entire desktop.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="186"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>NamingDialog</name>
<message>
<location filename="../dialogs/namingdialog.ui" line="14"/>
<source>Naming Options - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="45"/>
<source>Leading zeros:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="100"/>
<source>Date Format:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="167"/>
<source>Flip naming.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>OptionsDialog</name>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="520"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="522"/>
<source>Restore Defaults</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="536"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="538"/>
<source>Version %1</source>
<translation type="unfinished">Versione %1</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>Hotkey conflict</source>
<translation>Conflitto di scorciatoie</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>You have assigned the same hotkeys to more than one action.</source>
<translation>Hai assegnato la stessa scorciatoia a più azioni.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>Filename character error</source>
<translation>Errore nei caratteri del nome del file</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>The filename can&apos;t contain any of the following characters: ? : \ / * &quot; &lt; &gt; |</source>
<translation>Il nome del file non può contenere nessuno dei seguenti caratteri: ? : \ / * &quot; &lt; &gt; |</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>Final Destination</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>You can&apos;t take screenshots unless you enable either file saving or the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="449"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="447"/>
<source>Select where you want to save the screenshots</source>
<translation>Seleziona dove vuoi salvare gli screenshot</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="462"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="461"/>
<source>Lightscreen - Restore Default Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="463"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="462"/>
<source>Restoring the default options will cause you to lose all of your current configuration.</source>
<translation>Ripristinare le opzioni di default causerà la perdita della corrente configurazione.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="466"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="465"/>
<source>Restore</source>
<translation>Ripristina</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="467"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="466"/>
<source>Don&apos;t Restore</source>
<translation>Non ripristinare</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="137"/>
- <location filename="../dialogs/optionsdialog.cpp" line="502"/>
- <location filename="../dialogs/optionsdialog.cpp" line="508"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="135"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="501"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="507"/>
<source>screenshot.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="504"/>
- <location filename="../dialogs/optionsdialog.cpp" line="506"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="503"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="505"/>
<source>.screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="187"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="185"/>
<source>Install &apos;OptiPNG&apos;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="14"/>
<source>Options - Lightscreen</source>
<translation>Opzioni - Lightscreen</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="42"/>
<source>File</source>
<translation>File</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="60"/>
<source>&amp;Directory:</source>
<translation>&amp;Cartella:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="100"/>
+ <location filename="../dialogs/optionsdialog.ui" line="96"/>
<source>The prefix for the screenshot file</source>
<translation>Il prefisso per il file dello screenshot</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="103"/>
+ <location filename="../dialogs/optionsdialog.ui" line="99"/>
<source>&amp;Filename:</source>
<translation>&amp;Nome file:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="121"/>
+ <location filename="../dialogs/optionsdialog.ui" line="117"/>
<source>The prefix will be inserted before the &lt;em&gt;Naming&lt;/em&gt; in the screenshot file and it is usually used to distinguish files. It can be left blank.</source>
<translation>Il prefisso verrà inserito prima del &lt;em&gt;Nome&lt;/em&gt; nel file nome del file dello screenshot ed è solitamente usato per distinguere i file. Può essere lasciato vuoto.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="137"/>
+ <location filename="../dialogs/optionsdialog.ui" line="133"/>
<source>(number)</source>
<translation>(numero)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="147"/>
+ <location filename="../dialogs/optionsdialog.ui" line="143"/>
<source>(timestamp)</source>
<translation>(timestamp)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="142"/>
+ <location filename="../dialogs/optionsdialog.ui" line="138"/>
<source>(date)</source>
<translation>(data)</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="27"/>
<source>General</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="173"/>
+ <location filename="../dialogs/optionsdialog.ui" line="165"/>
<source>The file format for the screenshot</source>
<translation>Il formato del file dello screenshot</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="176"/>
+ <location filename="../dialogs/optionsdialog.ui" line="168"/>
<source>F&amp;ormat:</source>
<translation>F&amp;ormato:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1059"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1051"/>
<source>D&amp;elay:</source>
<translation>&amp;Ritardo:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1072"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1064"/>
<source>Selecting anything other than 0 in this option will cause the program to &lt;b&gt;wait&lt;/b&gt; that amount of seconds before taking the screenshot.</source>
<translation>Selezionando qualsiasi numero oltre lo 0 &lt;b&gt;fermerà&lt;/b&gt; il programma per lo stesso numero di secondi prima di fare lo screenshot.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1075"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1067"/>
<source>none</source>
<translation>niente</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="850"/>
- <location filename="../dialogs/optionsdialog.ui" line="1084"/>
+ <location filename="../dialogs/optionsdialog.ui" line="842"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1076"/>
<source> seconds</source>
<translation> secondi</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="326"/>
+ <location filename="../dialogs/optionsdialog.ui" line="318"/>
<source>&amp;Run Lightscreen at system startup.</source>
<translation>Esegui &amp;Lightscreen all&apos;avvio del sistema.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="354"/>
+ <location filename="../dialogs/optionsdialog.ui" line="346"/>
<source>H&amp;ide the main window.</source>
<translation>Nas&amp;condi la finestra principale.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="599"/>
+ <location filename="../dialogs/optionsdialog.ui" line="591"/>
<source>Sho&amp;w a system tray icon.</source>
<translation>&amp;Mostra l&apos;icona nel tray.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="613"/>
+ <location filename="../dialogs/optionsdialog.ui" line="605"/>
<source>&amp;Hide Lightscreen while taking a screenshot.</source>
<translation>&amp;Nascondi Lightscreen mentre scatta lo screenshot.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="955"/>
+ <location filename="../dialogs/optionsdialog.ui" line="947"/>
<source>&amp;Magnify around the mouse in Area mode.</source>
<translation>&amp;Ingrandisci attorno il mouse nella modalità area.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="695"/>
+ <location filename="../dialogs/optionsdialog.ui" line="687"/>
<source>&amp;Language:</source>
<translation>&amp;Lingua:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="712"/>
+ <location filename="../dialogs/optionsdialog.ui" line="704"/>
<source>Click here to go to the Lightscreen homepage to learn more about translations.</source>
<translation>Clicca qui per andare nella Home page di Lightscreen e sapere di più sulla traduzione.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="715"/>
+ <location filename="../dialogs/optionsdialog.ui" line="707"/>
<source>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;More information..&lt;/a&gt;</source>
<translation>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;Maggiori informazioni..&lt;/a&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="681"/>
+ <location filename="../dialogs/optionsdialog.ui" line="673"/>
<source>&amp;Notify with:</source>
<translation>&amp;Notifica con:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="208"/>
+ <location filename="../dialogs/optionsdialog.ui" line="200"/>
<source>&amp;Quality:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="152"/>
+ <location filename="../dialogs/optionsdialog.ui" line="148"/>
<source>(none)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="314"/>
+ <location filename="../dialogs/optionsdialog.ui" line="306"/>
<source>System Startup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="367"/>
+ <location filename="../dialogs/optionsdialog.ui" line="359"/>
<source>Hotkeys</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="373"/>
+ <location filename="../dialogs/optionsdialog.ui" line="365"/>
<source>Captures</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="394"/>
+ <location filename="../dialogs/optionsdialog.ui" line="386"/>
<source>&amp;Fullscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="417"/>
+ <location filename="../dialogs/optionsdialog.ui" line="409"/>
<source>Window &amp;Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="446"/>
+ <location filename="../dialogs/optionsdialog.ui" line="438"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="462"/>
+ <location filename="../dialogs/optionsdialog.ui" line="454"/>
<source>Screen &amp;Area</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="475"/>
+ <location filename="../dialogs/optionsdialog.ui" line="467"/>
<source>Lightscreen Control</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="496"/>
+ <location filename="../dialogs/optionsdialog.ui" line="488"/>
<source>&amp;Open the program window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="512"/>
+ <location filename="../dialogs/optionsdialog.ui" line="504"/>
<source>Open the &amp;directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="539"/>
+ <location filename="../dialogs/optionsdialog.ui" line="531"/>
<source>Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="587"/>
+ <location filename="../dialogs/optionsdialog.ui" line="579"/>
<source>Interface</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="606"/>
+ <location filename="../dialogs/optionsdialog.ui" line="598"/>
<source>C&amp;losing hides the main window.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="628"/>
+ <location filename="../dialogs/optionsdialog.ui" line="620"/>
<source>Shows a completion message once the screenshot is saved, clicking this message takes you to the directory where the screenshot was saved.</source>
<translation>Mostra un messaggio di completamento quando lo screenshot è salvato, cliccando su questo messagio si aprirà la cartella in cui lo screenshot è salvato.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="631"/>
+ <location filename="../dialogs/optionsdialog.ui" line="623"/>
<source>Tray icon Popup</source>
<translation>Popup Icona Tray</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="638"/>
+ <location filename="../dialogs/optionsdialog.ui" line="630"/>
<source>&amp;Sound cue</source>
<translation>&amp;Suono</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="898"/>
+ <location filename="../dialogs/optionsdialog.ui" line="890"/>
<source>Default action:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="941"/>
+ <location filename="../dialogs/optionsdialog.ui" line="933"/>
<source>&amp;Grab only the active monitor.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="967"/>
+ <location filename="../dialogs/optionsdialog.ui" line="959"/>
<source>Runs OptiPNG which reduces screenshot file size.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1036"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1028"/>
<source>Replace screenshots when there&apos;s an existing file.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1115"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1107"/>
<source>Clipboard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1131"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1123"/>
<source>After uploading, copy the imgur URL to the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1141"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1133"/>
<source>History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1150"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1142"/>
<source>Save my screenshot history.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1043"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1035"/>
<source>Snap area screenshots automatically (no resizing).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1230"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1222"/>
<source>Lightscreen is a simple tool to take screenshots, designed to be customizable and lightweight.&lt;br&gt;&lt;br&gt;
Created by &lt;a href=&quot;http://ckaiser.com.ar&quot;&gt;Christian Kaiser&lt;/a&gt;, using the &lt;a href=&quot;#aboutqt&quot;&gt;Qt toolkit&lt;/a&gt; for the graphical user interface.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1244"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1236"/>
<source>Released under the &lt;a href=&quot;http://www.gnu.org/licenses/gpl-2.0.html&quot;&gt;GNU General Public License&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Special thanks goes to the &lt;a href=&quot;http://lightscreen.sourceforge.net/about&quot;&gt;Donators and Translators&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="755"/>
+ <location filename="../dialogs/optionsdialog.ui" line="747"/>
<source>Maximum Size:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="806"/>
+ <location filename="../dialogs/optionsdialog.ui" line="798"/>
<source>Position:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="863"/>
+ <location filename="../dialogs/optionsdialog.ui" line="855"/>
<source> and </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="880"/>
- <location filename="../dialogs/optionsdialog.ui" line="909"/>
+ <location filename="../dialogs/optionsdialog.ui" line="872"/>
+ <location filename="../dialogs/optionsdialog.ui" line="901"/>
<source>save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="885"/>
- <location filename="../dialogs/optionsdialog.ui" line="914"/>
+ <location filename="../dialogs/optionsdialog.ui" line="877"/>
+ <location filename="../dialogs/optionsdialog.ui" line="906"/>
<source>upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="890"/>
+ <location filename="../dialogs/optionsdialog.ui" line="882"/>
<source>cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1050"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1042"/>
<source>Upload all my screenshots automatically.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1209"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1201"/>
<source>Chec&amp;k Now</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1224"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1216"/>
<source>About</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1269"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1261"/>
<source>&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Visit Sourceforge project site&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Visit Lightscreen home page&lt;/a&gt;</source>
<translation type="unfinished">&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Visita la pagina del progetto su Sourceforge&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Visita l&apos;home page di Lightscreen&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;i&gt;Tradotto da Sum90&lt;/i&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="221"/>
+ <location filename="../dialogs/optionsdialog.ui" line="213"/>
<source>This slider goes from 0 to 100. 100 being the highest quality and 0 the lowest.&lt;br&gt;
Quality is related to file size and of course to readability and overall quality of the image.</source>
<translation>Lo slider va da 0 a 100. 100 è la massima qualità e 0 la più bassa.&lt;bt&gt;
La qualità determina la grandezza del file e naturalmente la leggibilità e la qualità generale dell&apos;imagine.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1124"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1116"/>
<source>&amp;Copy the screenshot to the clipboard.</source>
<translation>&amp;Copia lo screenshot negli appunti.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="948"/>
+ <location filename="../dialogs/optionsdialog.ui" line="940"/>
<source>Inc&amp;lude the cursor in the screenshot.</source>
<translation>Inc&amp;ludi il cursore nello screenshot.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="925"/>
- <location filename="../dialogs/optionsdialog.cpp" line="129"/>
- <location filename="../dialogs/optionsdialog.cpp" line="132"/>
+ <location filename="../dialogs/optionsdialog.ui" line="917"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="127"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="130"/>
<source>Screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="934"/>
+ <location filename="../dialogs/optionsdialog.ui" line="926"/>
<source>Choose where to save each screenshot (&quot;&amp;Save as&quot;).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="970"/>
+ <location filename="../dialogs/optionsdialog.ui" line="962"/>
<source>O&amp;ptimize PNG screenshots.</source>
<translation>Ot&amp;timizza screenshot PNG.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="128"/>
+ <location filename="../dialogs/optionsdialog.ui" line="124"/>
<source>The naming is inserted after the prefix and is what makes each screenshot file unique to avoid overwriting.&lt;br /&gt;
&lt;b&gt;Numeric&lt;/b&gt;: inserts a number in sequence, 1, 2, 3..&lt;br /&gt;
&lt;b&gt;Date&lt;/b&gt;: inserts the current date and time, in the form of dd-MM-yyyy, click the &quot;wrench&quot; button on the right to customize the format.&lt;br /&gt;
&lt;b&gt;Timestamp&lt;/b&gt;: inserts a number, a Unix timestamp, which is the number of seconds passed since 1970-1-1 00:00:00.&lt;br /&gt;
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="275"/>
+ <location filename="../dialogs/optionsdialog.ui" line="267"/>
<source>&lt;u&gt;Preview&lt;/u&gt;:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="740"/>
+ <location filename="../dialogs/optionsdialog.ui" line="732"/>
<source>Screenshot Previews</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="820"/>
+ <location filename="../dialogs/optionsdialog.ui" line="812"/>
<source>Top Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="825"/>
+ <location filename="../dialogs/optionsdialog.ui" line="817"/>
<source>Top Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="830"/>
+ <location filename="../dialogs/optionsdialog.ui" line="822"/>
<source>Bottom Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="835"/>
+ <location filename="../dialogs/optionsdialog.ui" line="827"/>
<source>Bottom Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="843"/>
+ <location filename="../dialogs/optionsdialog.ui" line="835"/>
<source>Auto-close after</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1170"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1162"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1180"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1172"/>
<source>Updater</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1189"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1181"/>
<source>Check for updates regularly.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>PreviewDialog</name>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="47"/>
- <location filename="../dialogs/previewdialog.cpp" line="308"/>
+ <location filename="../dialogs/previewdialog.cpp" line="46"/>
+ <location filename="../dialogs/previewdialog.cpp" line="307"/>
<source>Screenshot Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="158"/>
+ <location filename="../dialogs/previewdialog.cpp" line="157"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="180"/>
+ <location filename="../dialogs/previewdialog.cpp" line="179"/>
<source>Save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="305"/>
+ <location filename="../dialogs/previewdialog.cpp" line="304"/>
<source>Screenshot Preview (%1 of %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="406"/>
+ <location filename="../dialogs/previewdialog.cpp" line="405"/>
<source>Preview: Closing in %1</source>
<translation type="unfinished"></translation>
</message>
</context>
-<context>
- <name>QObject</name>
- <message>
- <location filename="../main.cpp" line="67"/>
- <source>Screen</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="68"/>
- <source>Area</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="69"/>
- <source>Active Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="70"/>
- <source>Pick Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="72"/>
- <source>Upload Last</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="73"/>
- <source>View History</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="75"/>
- <source>Go to Folder</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
<context>
<name>Screenshot</name>
<message>
- <location filename="../tools/screenshot.cpp" line="217"/>
+ <location filename="../tools/screenshot.cpp" line="216"/>
<source>Save as..</source>
<translation>Salva come..</translation>
</message>
</context>
<context>
<name>Uploader</name>
<message>
- <location filename="../tools/uploader.cpp" line="105"/>
+ <location filename="../tools/uploader.cpp" line="103"/>
<source>Uploading...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="71"/>
+ <location filename="../tools/uploader.cpp" line="69"/>
<source>Screenshot file not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="74"/>
+ <location filename="../tools/uploader.cpp" line="72"/>
<source>Could not reach imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="77"/>
+ <location filename="../tools/uploader.cpp" line="75"/>
<source>You have exceeded your upload quota.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="80"/>
+ <location filename="../tools/uploader.cpp" line="78"/>
<source>Upload failed for %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>WindowPicker</name>
<message>
- <location filename="../tools/windowpicker.cpp" line="52"/>
+ <location filename="../tools/windowpicker.cpp" line="50"/>
<source>Lightscreen Window Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="55"/>
+ <location filename="../tools/windowpicker.cpp" line="53"/>
<source>Grab the window picker by clicking and holding down the mouse button, then drag it to the window of your choice and release it to capture.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="65"/>
+ <location filename="../tools/windowpicker.cpp" line="63"/>
<source> - Start dragging to select windows</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="72"/>
+ <location filename="../tools/windowpicker.cpp" line="70"/>
<source>Close</source>
<translation type="unfinished">Chiudi</translation>
</message>
</context>
</TS>
diff --git a/translations/japanese.qm b/translations/japanese.qm
index 8ac8857..e9e1229 100644
Binary files a/translations/japanese.qm and b/translations/japanese.qm differ
diff --git a/translations/japanese.ts b/translations/japanese.ts
index 597a02d..a504cae 100644
--- a/translations/japanese.ts
+++ b/translations/japanese.ts
@@ -1,1179 +1,1179 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="ja_JP">
<context>
<name>AreaDialog</name>
<message>
- <location filename="../dialogs/areadialog.cpp" line="56"/>
+ <location filename="../dialogs/areadialog.cpp" line="54"/>
<source>Lightscreen Area Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/areadialog.cpp" line="363"/>
+ <location filename="../dialogs/areadialog.cpp" line="361"/>
<source>Lightscreen area mode:
Use your mouse to draw a rectangle to capture.
Press any key or right click to exit.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HistoryDialog</name>
<message>
<location filename="../dialogs/historydialog.ui" line="14"/>
<source>Screenshot History</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="33"/>
<source>Type here to filter through the screenshots in the list.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="43"/>
<source>Double click the path to open the image with the default picture viewer, you can also double-click the URL to open it on your web browser.
Right click items to get access to more options.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="70"/>
<source>Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="93"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="100"/>
<source>Close</source>
<translation type="unfinished">閉じる</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="32"/>
- <location filename="../dialogs/historydialog.cpp" line="245"/>
- <location filename="../dialogs/historydialog.cpp" line="256"/>
- <location filename="../dialogs/historydialog.cpp" line="262"/>
+ <location filename="../dialogs/historydialog.cpp" line="28"/>
+ <location filename="../dialogs/historydialog.cpp" line="241"/>
+ <location filename="../dialogs/historydialog.cpp" line="252"/>
+ <location filename="../dialogs/historydialog.cpp" line="258"/>
<source>Filter..</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="112"/>
+ <location filename="../dialogs/historydialog.cpp" line="108"/>
<source>Clearing the screenshot history</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="113"/>
+ <location filename="../dialogs/historydialog.cpp" line="109"/>
<source>Are you sure you want to clear your entire screenshot history?
This cannot be undone.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="114"/>
+ <location filename="../dialogs/historydialog.cpp" line="110"/>
<source>Clear History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="115"/>
+ <location filename="../dialogs/historydialog.cpp" line="111"/>
<source>Don&apos;t Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy Path</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy URL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="133"/>
+ <location filename="../dialogs/historydialog.cpp" line="129"/>
<source>Delete from imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="134"/>
+ <location filename="../dialogs/historydialog.cpp" line="130"/>
<source>Open Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="136"/>
+ <location filename="../dialogs/historydialog.cpp" line="132"/>
<source>Remove history entry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="39"/>
+ <location filename="../dialogs/historydialog.cpp" line="35"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="40"/>
+ <location filename="../dialogs/historydialog.cpp" line="36"/>
<source>URL</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HotkeyWidget</name>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="36"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="34"/>
<source>Click to select hotkey...</source>
<translation>ボタンのクリックでホットキーの変更...</translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="86"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="84"/>
<source>Type your hotkey</source>
<translation>ホットキーの指定</translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="95"/>
- <location filename="../widgets/hotkeywidget.cpp" line="116"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="93"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="114"/>
<source>Invalid hotkey</source>
<translation>無効なホットキー</translation>
</message>
</context>
+<context>
+ <name>JumpList</name>
+ <message>
+ <location filename="../main.cpp" line="65"/>
+ <source>Screen</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="66"/>
+ <source>Area</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="67"/>
+ <source>Active Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="68"/>
+ <source>Pick Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="70"/>
+ <source>Upload Last</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="71"/>
+ <source>View History</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="73"/>
+ <source>Go to Folder</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
<context>
<name>LightscreenWindow</name>
<message>
- <location filename="../lightscreenwindow.cpp" line="237"/>
- <location filename="../lightscreenwindow.cpp" line="577"/>
- <location filename="../lightscreenwindow.cpp" line="698"/>
- <location filename="../lightscreenwindow.cpp" line="724"/>
+ <location filename="../lightscreenwindow.cpp" line="235"/>
+ <location filename="../lightscreenwindow.cpp" line="575"/>
+ <location filename="../lightscreenwindow.cpp" line="696"/>
+ <location filename="../lightscreenwindow.cpp" line="722"/>
<source>Lightscreen</source>
<translation>Lightscreen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="238"/>
+ <location filename="../lightscreenwindow.cpp" line="236"/>
<source>You have chosen to hide Lightscreen when there&apos;s no system tray icon, so you will not be able to access the program &lt;b&gt;unless you have selected a hotkey to do so&lt;/b&gt;.&lt;br&gt;What do you want to do?</source>
<translation>トレイ アイコンを表示せずにウィンドウを隠すと &lt;b&gt;ホットキー&lt;/b&gt; 以外では Lightscreen を操作できなくなります。&lt;br&gt;どうしますか ?</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="243"/>
+ <location filename="../lightscreenwindow.cpp" line="241"/>
<source>Hide but enable tray</source>
<translation>トレイへ隠す</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="245"/>
+ <location filename="../lightscreenwindow.cpp" line="243"/>
<source>Hide and don&apos;t warn</source>
<translation>以降、確認せず隠す</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="247"/>
+ <location filename="../lightscreenwindow.cpp" line="245"/>
<source>Just hide</source>
<translation>今回は隠す</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="418"/>
+ <location filename="../lightscreenwindow.cpp" line="416"/>
<source>processing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="423"/>
+ <location filename="../lightscreenwindow.cpp" line="421"/>
<source>uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="426"/>
+ <location filename="../lightscreenwindow.cpp" line="424"/>
<source>processing and uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="433"/>
+ <location filename="../lightscreenwindow.cpp" line="431"/>
<source>Lightscreen is currently %1 screenshots. Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="435"/>
+ <location filename="../lightscreenwindow.cpp" line="433"/>
<source>Don&apos;t Quit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="280"/>
- <location filename="../lightscreenwindow.cpp" line="904"/>
+ <location filename="../lightscreenwindow.cpp" line="278"/>
+ <location filename="../lightscreenwindow.cpp" line="902"/>
<source>&amp;Cancel upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="281"/>
- <location filename="../lightscreenwindow.cpp" line="905"/>
+ <location filename="../lightscreenwindow.cpp" line="279"/>
+ <location filename="../lightscreenwindow.cpp" line="903"/>
<source>Cancel the currently uploading screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="640"/>
+ <location filename="../lightscreenwindow.cpp" line="638"/>
<source>The screenshot was not taken</source>
<translation>キャプチャできませんでした</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="882"/>
+ <location filename="../lightscreenwindow.cpp" line="880"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="885"/>
+ <location filename="../lightscreenwindow.cpp" line="883"/>
<source>&amp;Pick Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="636"/>
+ <location filename="../lightscreenwindow.cpp" line="634"/>
<source>Saved to &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="430"/>
<source>Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="641"/>
+ <location filename="../lightscreenwindow.cpp" line="639"/>
<source>An error occurred.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>%1 uploaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>Click here to go to %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="653"/>
+ <location filename="../lightscreenwindow.cpp" line="651"/>
<source>Upload error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="276"/>
- <location filename="../lightscreenwindow.cpp" line="900"/>
+ <location filename="../lightscreenwindow.cpp" line="274"/>
+ <location filename="../lightscreenwindow.cpp" line="898"/>
<source>&amp;Upload last</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="277"/>
- <location filename="../lightscreenwindow.cpp" line="901"/>
+ <location filename="../lightscreenwindow.cpp" line="275"/>
+ <location filename="../lightscreenwindow.cpp" line="899"/>
<source>Upload the last screenshot you took to imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="910"/>
+ <location filename="../lightscreenwindow.cpp" line="908"/>
<source>View History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="274"/>
- <location filename="../lightscreenwindow.cpp" line="930"/>
+ <location filename="../lightscreenwindow.cpp" line="272"/>
+ <location filename="../lightscreenwindow.cpp" line="928"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Closed to tray</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Lightscreen will keep running, you can disable this in the options menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="287"/>
+ <location filename="../lightscreenwindow.cpp" line="285"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="375"/>
- <location filename="../lightscreenwindow.cpp" line="378"/>
+ <location filename="../lightscreenwindow.cpp" line="373"/>
+ <location filename="../lightscreenwindow.cpp" line="376"/>
<source>Success!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="382"/>
- <location filename="../lightscreenwindow.cpp" line="385"/>
+ <location filename="../lightscreenwindow.cpp" line="380"/>
+ <location filename="../lightscreenwindow.cpp" line="383"/>
<source>Failed!</source>
<translation type="unfinished">失敗 !</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="389"/>
+ <location filename="../lightscreenwindow.cpp" line="387"/>
<source>Cancelled!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="559"/>
+ <location filename="../lightscreenwindow.cpp" line="557"/>
<source>Some hotkeys could not be registered, they might already be in use</source>
<translation>既にホットキーに使用されている使用されているキーは指定できません</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="562"/>
+ <location filename="../lightscreenwindow.cpp" line="560"/>
<source>&lt;br&gt;The failed hotkeys are the following:</source>
<translation>&lt;br&gt;無効なホットキー:</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="571"/>
+ <location filename="../lightscreenwindow.cpp" line="569"/>
<source>&lt;br&gt;The failed hotkey is &lt;b&gt;%1&lt;/b&gt;</source>
<translation>&lt;br&gt;無効なホットキー:&lt;b&gt;%1&lt;/b&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="574"/>
+ <location filename="../lightscreenwindow.cpp" line="572"/>
<source>&lt;br&gt;&lt;i&gt;What do you want to do?&lt;/i&gt;</source>
<translation>&lt;br&gt;&lt;i&gt;どうしますか?&lt;/i&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="580"/>
+ <location filename="../lightscreenwindow.cpp" line="578"/>
<source>Change</source>
<translation>変更</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="581"/>
+ <location filename="../lightscreenwindow.cpp" line="579"/>
<source>Disable</source>
<translation>無効化</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="694"/>
+ <location filename="../lightscreenwindow.cpp" line="692"/>
<source>%1 uploading - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Do you want to cancel all screenshot uploads?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="665"/>
- <location filename="../lightscreenwindow.cpp" line="923"/>
+ <location filename="../lightscreenwindow.cpp" line="663"/>
+ <location filename="../lightscreenwindow.cpp" line="921"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Upload cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Don&apos;t Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="434"/>
- <location filename="../lightscreenwindow.cpp" line="582"/>
+ <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="580"/>
<source>Quit</source>
<translation>終了</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="725"/>
+ <location filename="../lightscreenwindow.cpp" line="723"/>
<source>There&apos;s a new version of Lightscreen available.&lt;br&gt;Would you like to see more information?&lt;br&gt;(&lt;em&gt;You can turn this notification off&lt;/em&gt;)</source>
<translation>Lightscreen 新たなバージョンがリリースされています。&lt;br&gt;サイトに接続して情報をチェックしますか ?&lt;br&gt;(&lt;em&gt;この通知をオフにすることもできます。&lt;/em&gt;)</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="729"/>
+ <location filename="../lightscreenwindow.cpp" line="727"/>
<source>Turn Off</source>
<translation>通知しない</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="730"/>
+ <location filename="../lightscreenwindow.cpp" line="728"/>
<source>Remind Me Later</source>
<translation>あとで通知</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="780"/>
+ <location filename="../lightscreenwindow.cpp" line="778"/>
<source>%1% of %2 uploads - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="783"/>
+ <location filename="../lightscreenwindow.cpp" line="781"/>
<source>%1% - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="879"/>
+ <location filename="../lightscreenwindow.cpp" line="877"/>
<source>&amp;Screen</source>
<translation>画面全体(&amp;S)</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="888"/>
+ <location filename="../lightscreenwindow.cpp" line="886"/>
<source>&amp;Area</source>
<translation>指定範囲(&amp;A)</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="917"/>
+ <location filename="../lightscreenwindow.cpp" line="915"/>
<source>&amp;Go to Folder</source>
<translation>保存フォルダを開く(&amp;G)</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="876"/>
+ <location filename="../lightscreenwindow.cpp" line="874"/>
<source>Show&amp;/Hide</source>
<translation>表示/隠す(&amp;H)</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="914"/>
+ <location filename="../lightscreenwindow.cpp" line="912"/>
<source>View &amp;Options</source>
<translation>オプションの表示(&amp;O)</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="920"/>
+ <location filename="../lightscreenwindow.cpp" line="918"/>
<source>&amp;Quit</source>
<translation>終了(&amp;X)</translation>
</message>
</context>
<context>
<name>LightscreenWindowClass</name>
<message>
<location filename="../lightscreenwindow.ui" line="20"/>
<source>Lightscreen</source>
<translation>Lightscreen</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="49"/>
<source>Area capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="52"/>
<source>Capture a specific area of your desktop, resize and move it around!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="64"/>
<source>Ctrl+A</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="80"/>
<source>Pick window</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="83"/>
<source>Drop the picker onto a window to capture it.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="92"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="108"/>
<source>Configure Lightscreen</source>
<translation>Lightscreen の設定</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="111"/>
<source>&amp;Options</source>
<translation>オプション(&amp;O)</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="114"/>
<source>Ctrl+O</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="130"/>
<source>Open the current Screenshot folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="133"/>
<source>&amp;Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="136"/>
<source>Ctrl+F</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="152"/>
<source>Imgur upload controls</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="155"/>
<source>&amp;Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="158"/>
<source>Ctrl+U</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="174"/>
<source>Fullscreen capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="177"/>
<source>Take a screenshot of your entire desktop.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="186"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>NamingDialog</name>
<message>
<location filename="../dialogs/namingdialog.ui" line="14"/>
<source>Naming Options - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="45"/>
<source>Leading zeros:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="100"/>
<source>Date Format:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="167"/>
<source>Flip naming.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>OptionsDialog</name>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="520"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="522"/>
<source>Restore Defaults</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="536"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="538"/>
<source>Version %1</source>
<translation type="unfinished">バージョン %1</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>Hotkey conflict</source>
<translation>ホットキーの重複</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>You have assigned the same hotkeys to more than one action.</source>
<translation>同じキーが違う操作に重複指定されています。</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>Filename character error</source>
<translation>ファイル名のエラー</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>The filename can&apos;t contain any of the following characters: ? : \ / * &quot; &lt; &gt; |</source>
<translation>以下の文字はファイル名に使用できません: ? : \ / * &quot; &lt; &gt; |</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>Final Destination</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>You can&apos;t take screenshots unless you enable either file saving or the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="449"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="447"/>
<source>Select where you want to save the screenshots</source>
<translation>キャプチャ画像の保存先の選択</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="462"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="461"/>
<source>Lightscreen - Restore Default Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="463"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="462"/>
<source>Restoring the default options will cause you to lose all of your current configuration.</source>
<translation>現在の設定をクリアして初期状態に戻します。</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="466"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="465"/>
<source>Restore</source>
<translation>復元</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="467"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="466"/>
<source>Don&apos;t Restore</source>
<translation>復元しない</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="137"/>
- <location filename="../dialogs/optionsdialog.cpp" line="502"/>
- <location filename="../dialogs/optionsdialog.cpp" line="508"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="135"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="501"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="507"/>
<source>screenshot.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="504"/>
- <location filename="../dialogs/optionsdialog.cpp" line="506"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="503"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="505"/>
<source>.screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="187"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="185"/>
<source>Install &apos;OptiPNG&apos;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="14"/>
<source>Options - Lightscreen</source>
<translation>オプション - Lightscreen</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="42"/>
<source>File</source>
<translation>ファイル</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="60"/>
<source>&amp;Directory:</source>
<translation>ディレクトリ(&amp;D):</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="100"/>
+ <location filename="../dialogs/optionsdialog.ui" line="96"/>
<source>The prefix for the screenshot file</source>
<translation>保存ファイル名のプリフィクス</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="103"/>
+ <location filename="../dialogs/optionsdialog.ui" line="99"/>
<source>&amp;Filename:</source>
<translation>ファイル名(&amp;F):</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="121"/>
+ <location filename="../dialogs/optionsdialog.ui" line="117"/>
<source>The prefix will be inserted before the &lt;em&gt;Naming&lt;/em&gt; in the screenshot file and it is usually used to distinguish files. It can be left blank.</source>
<translation>プリフィクスは画像の保存時に&lt;em&gt;ファイル名に常に使用&lt;/em&gt;される語句です。空欄にしておくこともできます。</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="137"/>
+ <location filename="../dialogs/optionsdialog.ui" line="133"/>
<source>(number)</source>
<translation>(連番)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="142"/>
+ <location filename="../dialogs/optionsdialog.ui" line="138"/>
<source>(date)</source>
<translation>(日時)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="147"/>
+ <location filename="../dialogs/optionsdialog.ui" line="143"/>
<source>(timestamp)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="173"/>
+ <location filename="../dialogs/optionsdialog.ui" line="165"/>
<source>The file format for the screenshot</source>
<translation>画像ファイルの保存フォーマット</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="176"/>
+ <location filename="../dialogs/optionsdialog.ui" line="168"/>
<source>F&amp;ormat:</source>
<translation>フォーマット(&amp;O):</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="208"/>
+ <location filename="../dialogs/optionsdialog.ui" line="200"/>
<source>&amp;Quality:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="152"/>
+ <location filename="../dialogs/optionsdialog.ui" line="148"/>
<source>(none)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="314"/>
+ <location filename="../dialogs/optionsdialog.ui" line="306"/>
<source>System Startup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="367"/>
+ <location filename="../dialogs/optionsdialog.ui" line="359"/>
<source>Hotkeys</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="373"/>
+ <location filename="../dialogs/optionsdialog.ui" line="365"/>
<source>Captures</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="394"/>
+ <location filename="../dialogs/optionsdialog.ui" line="386"/>
<source>&amp;Fullscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="417"/>
+ <location filename="../dialogs/optionsdialog.ui" line="409"/>
<source>Window &amp;Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="446"/>
+ <location filename="../dialogs/optionsdialog.ui" line="438"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="462"/>
+ <location filename="../dialogs/optionsdialog.ui" line="454"/>
<source>Screen &amp;Area</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="475"/>
+ <location filename="../dialogs/optionsdialog.ui" line="467"/>
<source>Lightscreen Control</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="496"/>
+ <location filename="../dialogs/optionsdialog.ui" line="488"/>
<source>&amp;Open the program window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="512"/>
+ <location filename="../dialogs/optionsdialog.ui" line="504"/>
<source>Open the &amp;directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="539"/>
+ <location filename="../dialogs/optionsdialog.ui" line="531"/>
<source>Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="587"/>
+ <location filename="../dialogs/optionsdialog.ui" line="579"/>
<source>Interface</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="606"/>
+ <location filename="../dialogs/optionsdialog.ui" line="598"/>
<source>C&amp;losing hides the main window.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="898"/>
+ <location filename="../dialogs/optionsdialog.ui" line="890"/>
<source>Default action:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="925"/>
- <location filename="../dialogs/optionsdialog.cpp" line="129"/>
- <location filename="../dialogs/optionsdialog.cpp" line="132"/>
+ <location filename="../dialogs/optionsdialog.ui" line="917"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="127"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="130"/>
<source>Screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="934"/>
+ <location filename="../dialogs/optionsdialog.ui" line="926"/>
<source>Choose where to save each screenshot (&quot;&amp;Save as&quot;).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="941"/>
+ <location filename="../dialogs/optionsdialog.ui" line="933"/>
<source>&amp;Grab only the active monitor.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="967"/>
+ <location filename="../dialogs/optionsdialog.ui" line="959"/>
<source>Runs OptiPNG which reduces screenshot file size.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1036"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1028"/>
<source>Replace screenshots when there&apos;s an existing file.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1115"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1107"/>
<source>Clipboard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1131"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1123"/>
<source>After uploading, copy the imgur URL to the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1141"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1133"/>
<source>History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1150"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1142"/>
<source>Save my screenshot history.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1050"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1042"/>
<source>Upload all my screenshots automatically.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1059"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1051"/>
<source>D&amp;elay:</source>
<translation>遅延(&amp;E):</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1072"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1064"/>
<source>Selecting anything other than 0 in this option will cause the program to &lt;b&gt;wait&lt;/b&gt; that amount of seconds before taking the screenshot.</source>
<translation>プログラムがキャプチャーを行うときの&lt;b&gt;待機時間&lt;/b&gt;(秒)を設定します。0 より大きい数値で指定してください。</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1075"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1067"/>
<source>none</source>
<translation>なし</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1230"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1222"/>
<source>Lightscreen is a simple tool to take screenshots, designed to be customizable and lightweight.&lt;br&gt;&lt;br&gt;
Created by &lt;a href=&quot;http://ckaiser.com.ar&quot;&gt;Christian Kaiser&lt;/a&gt;, using the &lt;a href=&quot;#aboutqt&quot;&gt;Qt toolkit&lt;/a&gt; for the graphical user interface.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1244"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1236"/>
<source>Released under the &lt;a href=&quot;http://www.gnu.org/licenses/gpl-2.0.html&quot;&gt;GNU General Public License&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Special thanks goes to the &lt;a href=&quot;http://lightscreen.sourceforge.net/about&quot;&gt;Donators and Translators&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="850"/>
- <location filename="../dialogs/optionsdialog.ui" line="1084"/>
+ <location filename="../dialogs/optionsdialog.ui" line="842"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1076"/>
<source> seconds</source>
<translation> 秒</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="275"/>
+ <location filename="../dialogs/optionsdialog.ui" line="267"/>
<source>&lt;u&gt;Preview&lt;/u&gt;:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="755"/>
+ <location filename="../dialogs/optionsdialog.ui" line="747"/>
<source>Maximum Size:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="806"/>
+ <location filename="../dialogs/optionsdialog.ui" line="798"/>
<source>Position:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="863"/>
+ <location filename="../dialogs/optionsdialog.ui" line="855"/>
<source> and </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="880"/>
- <location filename="../dialogs/optionsdialog.ui" line="909"/>
+ <location filename="../dialogs/optionsdialog.ui" line="872"/>
+ <location filename="../dialogs/optionsdialog.ui" line="901"/>
<source>save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="885"/>
- <location filename="../dialogs/optionsdialog.ui" line="914"/>
+ <location filename="../dialogs/optionsdialog.ui" line="877"/>
+ <location filename="../dialogs/optionsdialog.ui" line="906"/>
<source>upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="890"/>
+ <location filename="../dialogs/optionsdialog.ui" line="882"/>
<source>cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1209"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1201"/>
<source>Chec&amp;k Now</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1224"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1216"/>
<source>About</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1269"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1261"/>
<source>&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Visit Sourceforge project site&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Visit Lightscreen home page&lt;/a&gt;</source>
<translation type="unfinished">&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;SourceForge プロジェクト ページへ&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Lightscreen のホーム ページへ&lt;/a&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="326"/>
+ <location filename="../dialogs/optionsdialog.ui" line="318"/>
<source>&amp;Run Lightscreen at system startup.</source>
<translation>Lightscreen を Windows のスタートアップに登録(&amp;R).</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="354"/>
+ <location filename="../dialogs/optionsdialog.ui" line="346"/>
<source>H&amp;ide the main window.</source>
<translation>メイン ウィンドウを表示しない(&amp;I).</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="599"/>
+ <location filename="../dialogs/optionsdialog.ui" line="591"/>
<source>Sho&amp;w a system tray icon.</source>
<translation>システム トレイにアイコンを表示(&amp;W).</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="613"/>
+ <location filename="../dialogs/optionsdialog.ui" line="605"/>
<source>&amp;Hide Lightscreen while taking a screenshot.</source>
<translation>キャプチャー後に Lightscreen を隠す(&amp;H).</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="955"/>
+ <location filename="../dialogs/optionsdialog.ui" line="947"/>
<source>&amp;Magnify around the mouse in Area mode.</source>
<translation>指定範囲モードでカーソルの周辺を拡大(&amp;M).</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="695"/>
+ <location filename="../dialogs/optionsdialog.ui" line="687"/>
<source>&amp;Language:</source>
<translation>使用言語(&amp;L):</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="712"/>
+ <location filename="../dialogs/optionsdialog.ui" line="704"/>
<source>Click here to go to the Lightscreen homepage to learn more about translations.</source>
<translation>ここをクリックして、Lightscreen のホームページで翻訳情報を確認。</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="715"/>
+ <location filename="../dialogs/optionsdialog.ui" line="707"/>
<source>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;More information..&lt;/a&gt;</source>
<translation>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;情報をチェック..&lt;/a&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="681"/>
+ <location filename="../dialogs/optionsdialog.ui" line="673"/>
<source>&amp;Notify with:</source>
<translation>通知方法(&amp;N):</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="27"/>
<source>General</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="628"/>
+ <location filename="../dialogs/optionsdialog.ui" line="620"/>
<source>Shows a completion message once the screenshot is saved, clicking this message takes you to the directory where the screenshot was saved.</source>
<translation>スクリーンショットの保存後にメッセージが表示されます。メッセージ バルーンをクリックすれば保存先を開くことができます。</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="631"/>
+ <location filename="../dialogs/optionsdialog.ui" line="623"/>
<source>Tray icon Popup</source>
<translation>トレイにポップアップ</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="638"/>
+ <location filename="../dialogs/optionsdialog.ui" line="630"/>
<source>&amp;Sound cue</source>
<translation>通知音(&amp;S)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="221"/>
+ <location filename="../dialogs/optionsdialog.ui" line="213"/>
<source>This slider goes from 0 to 100. 100 being the highest quality and 0 the lowest.&lt;br&gt;
Quality is related to file size and of course to readability and overall quality of the image.</source>
<translation>このスライダでキャプチャの品質を変更します。0 から 100 まで。低品質は左へ、高品質は右はへ。&lt;br&gt;
品質は画像のファイル サイズと見映えに影響を及ぼします。</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1124"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1116"/>
<source>&amp;Copy the screenshot to the clipboard.</source>
<translation>スナップショットをクリップボードにコピー(&amp;C).</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="948"/>
+ <location filename="../dialogs/optionsdialog.ui" line="940"/>
<source>Inc&amp;lude the cursor in the screenshot.</source>
<translation>カーソルもキャプチャーする(&amp;L).</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="970"/>
+ <location filename="../dialogs/optionsdialog.ui" line="962"/>
<source>O&amp;ptimize PNG screenshots.</source>
<translation>最適化 PNG スクリーンショットを使用(&amp;P).</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="128"/>
+ <location filename="../dialogs/optionsdialog.ui" line="124"/>
<source>The naming is inserted after the prefix and is what makes each screenshot file unique to avoid overwriting.&lt;br /&gt;
&lt;b&gt;Numeric&lt;/b&gt;: inserts a number in sequence, 1, 2, 3..&lt;br /&gt;
&lt;b&gt;Date&lt;/b&gt;: inserts the current date and time, in the form of dd-MM-yyyy, click the &quot;wrench&quot; button on the right to customize the format.&lt;br /&gt;
&lt;b&gt;Timestamp&lt;/b&gt;: inserts a number, a Unix timestamp, which is the number of seconds passed since 1970-1-1 00:00:00.&lt;br /&gt;
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1043"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1035"/>
<source>Snap area screenshots automatically (no resizing).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="740"/>
+ <location filename="../dialogs/optionsdialog.ui" line="732"/>
<source>Screenshot Previews</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="820"/>
+ <location filename="../dialogs/optionsdialog.ui" line="812"/>
<source>Top Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="825"/>
+ <location filename="../dialogs/optionsdialog.ui" line="817"/>
<source>Top Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="830"/>
+ <location filename="../dialogs/optionsdialog.ui" line="822"/>
<source>Bottom Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="835"/>
+ <location filename="../dialogs/optionsdialog.ui" line="827"/>
<source>Bottom Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="843"/>
+ <location filename="../dialogs/optionsdialog.ui" line="835"/>
<source>Auto-close after</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1170"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1162"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1180"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1172"/>
<source>Updater</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1189"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1181"/>
<source>Check for updates regularly.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>PreviewDialog</name>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="47"/>
- <location filename="../dialogs/previewdialog.cpp" line="308"/>
+ <location filename="../dialogs/previewdialog.cpp" line="46"/>
+ <location filename="../dialogs/previewdialog.cpp" line="307"/>
<source>Screenshot Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="158"/>
+ <location filename="../dialogs/previewdialog.cpp" line="157"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="180"/>
+ <location filename="../dialogs/previewdialog.cpp" line="179"/>
<source>Save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="305"/>
+ <location filename="../dialogs/previewdialog.cpp" line="304"/>
<source>Screenshot Preview (%1 of %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="406"/>
+ <location filename="../dialogs/previewdialog.cpp" line="405"/>
<source>Preview: Closing in %1</source>
<translation type="unfinished"></translation>
</message>
</context>
-<context>
- <name>QObject</name>
- <message>
- <location filename="../main.cpp" line="67"/>
- <source>Screen</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="68"/>
- <source>Area</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="69"/>
- <source>Active Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="70"/>
- <source>Pick Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="72"/>
- <source>Upload Last</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="73"/>
- <source>View History</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="75"/>
- <source>Go to Folder</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
<context>
<name>Screenshot</name>
<message>
- <location filename="../tools/screenshot.cpp" line="217"/>
+ <location filename="../tools/screenshot.cpp" line="216"/>
<source>Save as..</source>
<translation>名づけて保存..</translation>
</message>
</context>
<context>
<name>Uploader</name>
<message>
- <location filename="../tools/uploader.cpp" line="105"/>
+ <location filename="../tools/uploader.cpp" line="103"/>
<source>Uploading...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="71"/>
+ <location filename="../tools/uploader.cpp" line="69"/>
<source>Screenshot file not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="74"/>
+ <location filename="../tools/uploader.cpp" line="72"/>
<source>Could not reach imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="77"/>
+ <location filename="../tools/uploader.cpp" line="75"/>
<source>You have exceeded your upload quota.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="80"/>
+ <location filename="../tools/uploader.cpp" line="78"/>
<source>Upload failed for %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>WindowPicker</name>
<message>
- <location filename="../tools/windowpicker.cpp" line="52"/>
+ <location filename="../tools/windowpicker.cpp" line="50"/>
<source>Lightscreen Window Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="55"/>
+ <location filename="../tools/windowpicker.cpp" line="53"/>
<source>Grab the window picker by clicking and holding down the mouse button, then drag it to the window of your choice and release it to capture.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="65"/>
+ <location filename="../tools/windowpicker.cpp" line="63"/>
<source> - Start dragging to select windows</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="72"/>
+ <location filename="../tools/windowpicker.cpp" line="70"/>
<source>Close</source>
<translation type="unfinished">閉じる</translation>
</message>
</context>
</TS>
diff --git a/translations/polish.qm b/translations/polish.qm
index c47930f..669cc27 100644
Binary files a/translations/polish.qm and b/translations/polish.qm differ
diff --git a/translations/polish.ts b/translations/polish.ts
index 3cfa8a3..a82be01 100644
--- a/translations/polish.ts
+++ b/translations/polish.ts
@@ -1,1180 +1,1180 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="pl_PL">
<context>
<name>AreaDialog</name>
<message>
- <location filename="../dialogs/areadialog.cpp" line="56"/>
+ <location filename="../dialogs/areadialog.cpp" line="54"/>
<source>Lightscreen Area Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/areadialog.cpp" line="363"/>
+ <location filename="../dialogs/areadialog.cpp" line="361"/>
<source>Lightscreen area mode:
Use your mouse to draw a rectangle to capture.
Press any key or right click to exit.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HistoryDialog</name>
<message>
<location filename="../dialogs/historydialog.ui" line="14"/>
<source>Screenshot History</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="33"/>
<source>Type here to filter through the screenshots in the list.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="43"/>
<source>Double click the path to open the image with the default picture viewer, you can also double-click the URL to open it on your web browser.
Right click items to get access to more options.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="70"/>
<source>Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="93"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="100"/>
<source>Close</source>
<translation type="unfinished">Zamknij</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="32"/>
- <location filename="../dialogs/historydialog.cpp" line="245"/>
- <location filename="../dialogs/historydialog.cpp" line="256"/>
- <location filename="../dialogs/historydialog.cpp" line="262"/>
+ <location filename="../dialogs/historydialog.cpp" line="28"/>
+ <location filename="../dialogs/historydialog.cpp" line="241"/>
+ <location filename="../dialogs/historydialog.cpp" line="252"/>
+ <location filename="../dialogs/historydialog.cpp" line="258"/>
<source>Filter..</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="112"/>
+ <location filename="../dialogs/historydialog.cpp" line="108"/>
<source>Clearing the screenshot history</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="113"/>
+ <location filename="../dialogs/historydialog.cpp" line="109"/>
<source>Are you sure you want to clear your entire screenshot history?
This cannot be undone.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="114"/>
+ <location filename="../dialogs/historydialog.cpp" line="110"/>
<source>Clear History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="115"/>
+ <location filename="../dialogs/historydialog.cpp" line="111"/>
<source>Don&apos;t Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy Path</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy URL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="133"/>
+ <location filename="../dialogs/historydialog.cpp" line="129"/>
<source>Delete from imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="134"/>
+ <location filename="../dialogs/historydialog.cpp" line="130"/>
<source>Open Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="136"/>
+ <location filename="../dialogs/historydialog.cpp" line="132"/>
<source>Remove history entry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="39"/>
+ <location filename="../dialogs/historydialog.cpp" line="35"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="40"/>
+ <location filename="../dialogs/historydialog.cpp" line="36"/>
<source>URL</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HotkeyWidget</name>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="36"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="34"/>
<source>Click to select hotkey...</source>
<translation>Kliknij aby wybrać klawisz skrótu...</translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="86"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="84"/>
<source>Type your hotkey</source>
<translation>Wpisz twój klawisz skrótu</translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="95"/>
- <location filename="../widgets/hotkeywidget.cpp" line="116"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="93"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="114"/>
<source>Invalid hotkey</source>
<translation>Błąd klawisza skrótu</translation>
</message>
</context>
+<context>
+ <name>JumpList</name>
+ <message>
+ <location filename="../main.cpp" line="65"/>
+ <source>Screen</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="66"/>
+ <source>Area</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="67"/>
+ <source>Active Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="68"/>
+ <source>Pick Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="70"/>
+ <source>Upload Last</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="71"/>
+ <source>View History</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="73"/>
+ <source>Go to Folder</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
<context>
<name>LightscreenWindow</name>
<message>
- <location filename="../lightscreenwindow.cpp" line="237"/>
- <location filename="../lightscreenwindow.cpp" line="577"/>
- <location filename="../lightscreenwindow.cpp" line="698"/>
- <location filename="../lightscreenwindow.cpp" line="724"/>
+ <location filename="../lightscreenwindow.cpp" line="235"/>
+ <location filename="../lightscreenwindow.cpp" line="575"/>
+ <location filename="../lightscreenwindow.cpp" line="696"/>
+ <location filename="../lightscreenwindow.cpp" line="722"/>
<source>Lightscreen</source>
<translation>Lightscreen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="238"/>
+ <location filename="../lightscreenwindow.cpp" line="236"/>
<source>You have chosen to hide Lightscreen when there&apos;s no system tray icon, so you will not be able to access the program &lt;b&gt;unless you have selected a hotkey to do so&lt;/b&gt;.&lt;br&gt;What do you want to do?</source>
<translation>Wybrałeś ukrycie programu Lightscreen bez ikony w zasobniku systemowym, dlatego program będzie niedostępny &lt;b&gt;chyba że ustawiłeś dla niego klawisz skrótu&lt;/b&gt;.&lt;br&gt;Czy chcesz to wykonać?</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="243"/>
+ <location filename="../lightscreenwindow.cpp" line="241"/>
<source>Hide but enable tray</source>
<translation>Ukryj ale włącz zasobnik</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="245"/>
+ <location filename="../lightscreenwindow.cpp" line="243"/>
<source>Hide and don&apos;t warn</source>
<translation>Ukryj i nie ostrzegaj</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="247"/>
+ <location filename="../lightscreenwindow.cpp" line="245"/>
<source>Just hide</source>
<translation>Tylko ukryj</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="418"/>
+ <location filename="../lightscreenwindow.cpp" line="416"/>
<source>processing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="423"/>
+ <location filename="../lightscreenwindow.cpp" line="421"/>
<source>uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="426"/>
+ <location filename="../lightscreenwindow.cpp" line="424"/>
<source>processing and uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="433"/>
+ <location filename="../lightscreenwindow.cpp" line="431"/>
<source>Lightscreen is currently %1 screenshots. Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="435"/>
+ <location filename="../lightscreenwindow.cpp" line="433"/>
<source>Don&apos;t Quit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="280"/>
- <location filename="../lightscreenwindow.cpp" line="904"/>
+ <location filename="../lightscreenwindow.cpp" line="278"/>
+ <location filename="../lightscreenwindow.cpp" line="902"/>
<source>&amp;Cancel upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="281"/>
- <location filename="../lightscreenwindow.cpp" line="905"/>
+ <location filename="../lightscreenwindow.cpp" line="279"/>
+ <location filename="../lightscreenwindow.cpp" line="903"/>
<source>Cancel the currently uploading screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="640"/>
+ <location filename="../lightscreenwindow.cpp" line="638"/>
<source>The screenshot was not taken</source>
<translation>Nie zrobiono zrzutu ekranu</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="882"/>
+ <location filename="../lightscreenwindow.cpp" line="880"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="885"/>
+ <location filename="../lightscreenwindow.cpp" line="883"/>
<source>&amp;Pick Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="636"/>
+ <location filename="../lightscreenwindow.cpp" line="634"/>
<source>Saved to &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="430"/>
<source>Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="641"/>
+ <location filename="../lightscreenwindow.cpp" line="639"/>
<source>An error occurred.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>%1 uploaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>Click here to go to %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="653"/>
+ <location filename="../lightscreenwindow.cpp" line="651"/>
<source>Upload error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="276"/>
- <location filename="../lightscreenwindow.cpp" line="900"/>
+ <location filename="../lightscreenwindow.cpp" line="274"/>
+ <location filename="../lightscreenwindow.cpp" line="898"/>
<source>&amp;Upload last</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="277"/>
- <location filename="../lightscreenwindow.cpp" line="901"/>
+ <location filename="../lightscreenwindow.cpp" line="275"/>
+ <location filename="../lightscreenwindow.cpp" line="899"/>
<source>Upload the last screenshot you took to imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="910"/>
+ <location filename="../lightscreenwindow.cpp" line="908"/>
<source>View History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="274"/>
- <location filename="../lightscreenwindow.cpp" line="930"/>
+ <location filename="../lightscreenwindow.cpp" line="272"/>
+ <location filename="../lightscreenwindow.cpp" line="928"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Closed to tray</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Lightscreen will keep running, you can disable this in the options menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="287"/>
+ <location filename="../lightscreenwindow.cpp" line="285"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="375"/>
- <location filename="../lightscreenwindow.cpp" line="378"/>
+ <location filename="../lightscreenwindow.cpp" line="373"/>
+ <location filename="../lightscreenwindow.cpp" line="376"/>
<source>Success!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="382"/>
- <location filename="../lightscreenwindow.cpp" line="385"/>
+ <location filename="../lightscreenwindow.cpp" line="380"/>
+ <location filename="../lightscreenwindow.cpp" line="383"/>
<source>Failed!</source>
<translation>Błąd!</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="389"/>
+ <location filename="../lightscreenwindow.cpp" line="387"/>
<source>Cancelled!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="559"/>
+ <location filename="../lightscreenwindow.cpp" line="557"/>
<source>Some hotkeys could not be registered, they might already be in use</source>
<translation>Nie można zarejestrować niektórych klawiszy skrótu, mogą już być w użytku</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="562"/>
+ <location filename="../lightscreenwindow.cpp" line="560"/>
<source>&lt;br&gt;The failed hotkeys are the following:</source>
<translatorcomment>&lt;br&gt;Błędne klawisze skrótu to:</translatorcomment>
<translation></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="571"/>
+ <location filename="../lightscreenwindow.cpp" line="569"/>
<source>&lt;br&gt;The failed hotkey is &lt;b&gt;%1&lt;/b&gt;</source>
<translation>&lt;br&gt;Błędny klawisz skrótu to &lt;b&gt;%1&lt;/b&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="574"/>
+ <location filename="../lightscreenwindow.cpp" line="572"/>
<source>&lt;br&gt;&lt;i&gt;What do you want to do?&lt;/i&gt;</source>
<translation>&lt;br&gt;&lt;i&gt;Co chcesz wykonać?&lt;/i&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="580"/>
+ <location filename="../lightscreenwindow.cpp" line="578"/>
<source>Change</source>
<translation>Zmień</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="581"/>
+ <location filename="../lightscreenwindow.cpp" line="579"/>
<source>Disable</source>
<translation>Wyłącz</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="694"/>
+ <location filename="../lightscreenwindow.cpp" line="692"/>
<source>%1 uploading - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Do you want to cancel all screenshot uploads?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="665"/>
- <location filename="../lightscreenwindow.cpp" line="923"/>
+ <location filename="../lightscreenwindow.cpp" line="663"/>
+ <location filename="../lightscreenwindow.cpp" line="921"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Upload cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Don&apos;t Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="434"/>
- <location filename="../lightscreenwindow.cpp" line="582"/>
+ <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="580"/>
<source>Quit</source>
<translation>Zakończ</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="725"/>
+ <location filename="../lightscreenwindow.cpp" line="723"/>
<source>There&apos;s a new version of Lightscreen available.&lt;br&gt;Would you like to see more information?&lt;br&gt;(&lt;em&gt;You can turn this notification off&lt;/em&gt;)</source>
<translation>Dostępna jest nowa wersja programu Lightscreen.&lt;br&gt;Czy chcesz zobaczyć dalsze informacje?&lt;br&gt;(&lt;em&gt;Możesz wyłączyć ten komunikat&lt;/em&gt;)</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="729"/>
+ <location filename="../lightscreenwindow.cpp" line="727"/>
<source>Turn Off</source>
<translation>Wyłącz</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="730"/>
+ <location filename="../lightscreenwindow.cpp" line="728"/>
<source>Remind Me Later</source>
<translation>Przypominaj później</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="780"/>
+ <location filename="../lightscreenwindow.cpp" line="778"/>
<source>%1% of %2 uploads - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="783"/>
+ <location filename="../lightscreenwindow.cpp" line="781"/>
<source>%1% - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="879"/>
+ <location filename="../lightscreenwindow.cpp" line="877"/>
<source>&amp;Screen</source>
<translation>&amp;Ekran</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="888"/>
+ <location filename="../lightscreenwindow.cpp" line="886"/>
<source>&amp;Area</source>
<translation>Obsz&amp;ar</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="917"/>
+ <location filename="../lightscreenwindow.cpp" line="915"/>
<source>&amp;Go to Folder</source>
<translation>&amp;Przejdź do folderu</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="876"/>
+ <location filename="../lightscreenwindow.cpp" line="874"/>
<source>Show&amp;/Hide</source>
<translation>Pokaż&amp;/Ukryj</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="914"/>
+ <location filename="../lightscreenwindow.cpp" line="912"/>
<source>View &amp;Options</source>
<translation>Pokaż &amp;Opcje</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="920"/>
+ <location filename="../lightscreenwindow.cpp" line="918"/>
<source>&amp;Quit</source>
<translation>&amp;Zakończ</translation>
</message>
</context>
<context>
<name>LightscreenWindowClass</name>
<message>
<location filename="../lightscreenwindow.ui" line="20"/>
<source>Lightscreen</source>
<translation>Lightscreen</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="49"/>
<source>Area capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="52"/>
<source>Capture a specific area of your desktop, resize and move it around!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="64"/>
<source>Ctrl+A</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="80"/>
<source>Pick window</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="83"/>
<source>Drop the picker onto a window to capture it.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="92"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="108"/>
<source>Configure Lightscreen</source>
<translation>Skonfiguruj Lightscreen</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="111"/>
<source>&amp;Options</source>
<translation>&amp;Opcje</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="114"/>
<source>Ctrl+O</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="130"/>
<source>Open the current Screenshot folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="133"/>
<source>&amp;Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="136"/>
<source>Ctrl+F</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="152"/>
<source>Imgur upload controls</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="155"/>
<source>&amp;Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="158"/>
<source>Ctrl+U</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="174"/>
<source>Fullscreen capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="177"/>
<source>Take a screenshot of your entire desktop.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="186"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>NamingDialog</name>
<message>
<location filename="../dialogs/namingdialog.ui" line="14"/>
<source>Naming Options - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="45"/>
<source>Leading zeros:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="100"/>
<source>Date Format:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="167"/>
<source>Flip naming.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>OptionsDialog</name>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="520"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="522"/>
<source>Restore Defaults</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="536"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="538"/>
<source>Version %1</source>
<translation type="unfinished">Wersja %1</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>Hotkey conflict</source>
<translation>Konflikt z klawiszami skrótu</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>You have assigned the same hotkeys to more than one action.</source>
<translation>Ustawiłeś te same skróty klawiszy dla więcej niż jednej akcji.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>Filename character error</source>
<translation></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>The filename can&apos;t contain any of the following characters: ? : \ / * &quot; &lt; &gt; |</source>
<translation></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>Final Destination</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>You can&apos;t take screenshots unless you enable either file saving or the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="449"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="447"/>
<source>Select where you want to save the screenshots</source>
<translation>Wybierz gdzie chcesz zapisywać zrzuty ekranu</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="462"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="461"/>
<source>Lightscreen - Restore Default Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="463"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="462"/>
<source>Restoring the default options will cause you to lose all of your current configuration.</source>
<translation>Odtworzenie domyślnych opcji powoduje utratę aktualnej konfiguracji.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="466"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="465"/>
<source>Restore</source>
<translation>Odtwórz</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="467"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="466"/>
<source>Don&apos;t Restore</source>
<translation>Nie Odtwarzaj</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="137"/>
- <location filename="../dialogs/optionsdialog.cpp" line="502"/>
- <location filename="../dialogs/optionsdialog.cpp" line="508"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="135"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="501"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="507"/>
<source>screenshot.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="504"/>
- <location filename="../dialogs/optionsdialog.cpp" line="506"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="503"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="505"/>
<source>.screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="187"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="185"/>
<source>Install &apos;OptiPNG&apos;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="14"/>
<source>Options - Lightscreen</source>
<translation>Opcje - Lightscreen</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="42"/>
<source>File</source>
<translation>&amp;Plik</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="60"/>
<source>&amp;Directory:</source>
<translation>K&amp;atalog:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="100"/>
+ <location filename="../dialogs/optionsdialog.ui" line="96"/>
<source>The prefix for the screenshot file</source>
<translation>Prefiks dla pliku zrzutu ekranu</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="103"/>
+ <location filename="../dialogs/optionsdialog.ui" line="99"/>
<source>&amp;Filename:</source>
<translation>&amp;Nazwa pliku:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="121"/>
+ <location filename="../dialogs/optionsdialog.ui" line="117"/>
<source>The prefix will be inserted before the &lt;em&gt;Naming&lt;/em&gt; in the screenshot file and it is usually used to distinguish files. It can be left blank.</source>
<translation>Prefiks zostanie wstawiony przed nadaniem nazwy pliku zrzutu ekranu i jest zwykle używany do odróżnienia plików. Może być pusty.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="137"/>
+ <location filename="../dialogs/optionsdialog.ui" line="133"/>
<source>(number)</source>
<translation>(numer)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="147"/>
+ <location filename="../dialogs/optionsdialog.ui" line="143"/>
<source>(timestamp)</source>
<translation>(czas)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="142"/>
+ <location filename="../dialogs/optionsdialog.ui" line="138"/>
<source>(date)</source>
<translation>(data)</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="27"/>
<source>General</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="173"/>
+ <location filename="../dialogs/optionsdialog.ui" line="165"/>
<source>The file format for the screenshot</source>
<translation>Format pliku dla zrzutu ekranu</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="176"/>
+ <location filename="../dialogs/optionsdialog.ui" line="168"/>
<source>F&amp;ormat:</source>
<translation>&amp;Format:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1059"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1051"/>
<source>D&amp;elay:</source>
<translation>Opóźni&amp;enie:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1072"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1064"/>
<source>Selecting anything other than 0 in this option will cause the program to &lt;b&gt;wait&lt;/b&gt; that amount of seconds before taking the screenshot.</source>
<translation>Wybór wartości tej opcji innej niż 0 spowoduje, że program &lt;b&gt;czeka&lt;/b&gt; podaną ilość sekund przed podjęciem zrzutu ekranu.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1075"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1067"/>
<source>none</source>
<translation>brak</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="850"/>
- <location filename="../dialogs/optionsdialog.ui" line="1084"/>
+ <location filename="../dialogs/optionsdialog.ui" line="842"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1076"/>
<source> seconds</source>
<translation> sekund(y)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="326"/>
+ <location filename="../dialogs/optionsdialog.ui" line="318"/>
<source>&amp;Run Lightscreen at system startup.</source>
<translation>Uruchom Lightscreen przy &amp;starcie systemu.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="354"/>
+ <location filename="../dialogs/optionsdialog.ui" line="346"/>
<source>H&amp;ide the main window.</source>
<translation>&amp;Ukryj główne okno.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="599"/>
+ <location filename="../dialogs/optionsdialog.ui" line="591"/>
<source>Sho&amp;w a system tray icon.</source>
<translation>&amp;Pokaż ikonę w zasobniku systemowym.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="613"/>
+ <location filename="../dialogs/optionsdialog.ui" line="605"/>
<source>&amp;Hide Lightscreen while taking a screenshot.</source>
<translation>&amp;Ukryj Lightscreen podczas zrzutu ekranu.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="955"/>
+ <location filename="../dialogs/optionsdialog.ui" line="947"/>
<source>&amp;Magnify around the mouse in Area mode.</source>
<translation>&amp;Szkło powiększające wokół myszy w trybie obszaru.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="695"/>
+ <location filename="../dialogs/optionsdialog.ui" line="687"/>
<source>&amp;Language:</source>
<translation>&amp;Język:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="712"/>
+ <location filename="../dialogs/optionsdialog.ui" line="704"/>
<source>Click here to go to the Lightscreen homepage to learn more about translations.</source>
<translation>Kliknij tutaj aby przejść do strony głównej Lightscreen, aby dowiedzieć się więcej na temat tłumaczeń.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="715"/>
+ <location filename="../dialogs/optionsdialog.ui" line="707"/>
<source>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;More information..&lt;/a&gt;</source>
<translation>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;Więcej informacji..&lt;/a&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="681"/>
+ <location filename="../dialogs/optionsdialog.ui" line="673"/>
<source>&amp;Notify with:</source>
<translation>Zawiadom przez:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="208"/>
+ <location filename="../dialogs/optionsdialog.ui" line="200"/>
<source>&amp;Quality:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="152"/>
+ <location filename="../dialogs/optionsdialog.ui" line="148"/>
<source>(none)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="314"/>
+ <location filename="../dialogs/optionsdialog.ui" line="306"/>
<source>System Startup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="367"/>
+ <location filename="../dialogs/optionsdialog.ui" line="359"/>
<source>Hotkeys</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="373"/>
+ <location filename="../dialogs/optionsdialog.ui" line="365"/>
<source>Captures</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="394"/>
+ <location filename="../dialogs/optionsdialog.ui" line="386"/>
<source>&amp;Fullscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="417"/>
+ <location filename="../dialogs/optionsdialog.ui" line="409"/>
<source>Window &amp;Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="446"/>
+ <location filename="../dialogs/optionsdialog.ui" line="438"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="462"/>
+ <location filename="../dialogs/optionsdialog.ui" line="454"/>
<source>Screen &amp;Area</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="475"/>
+ <location filename="../dialogs/optionsdialog.ui" line="467"/>
<source>Lightscreen Control</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="496"/>
+ <location filename="../dialogs/optionsdialog.ui" line="488"/>
<source>&amp;Open the program window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="512"/>
+ <location filename="../dialogs/optionsdialog.ui" line="504"/>
<source>Open the &amp;directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="539"/>
+ <location filename="../dialogs/optionsdialog.ui" line="531"/>
<source>Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="587"/>
+ <location filename="../dialogs/optionsdialog.ui" line="579"/>
<source>Interface</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="606"/>
+ <location filename="../dialogs/optionsdialog.ui" line="598"/>
<source>C&amp;losing hides the main window.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="628"/>
+ <location filename="../dialogs/optionsdialog.ui" line="620"/>
<source>Shows a completion message once the screenshot is saved, clicking this message takes you to the directory where the screenshot was saved.</source>
<translation>Pokazuje komunikat po zapisaniu zrzutu ekranu, kliknięcie na tą wiadomość przenosi cię do katalogu, w którym został zapisany zrzut ekranu.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="631"/>
+ <location filename="../dialogs/optionsdialog.ui" line="623"/>
<source>Tray icon Popup</source>
<translation>&amp;Ikonę Popup w zasobniku</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="638"/>
+ <location filename="../dialogs/optionsdialog.ui" line="630"/>
<source>&amp;Sound cue</source>
<translation>Efekt &amp;dźwiękowy</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="898"/>
+ <location filename="../dialogs/optionsdialog.ui" line="890"/>
<source>Default action:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="941"/>
+ <location filename="../dialogs/optionsdialog.ui" line="933"/>
<source>&amp;Grab only the active monitor.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="967"/>
+ <location filename="../dialogs/optionsdialog.ui" line="959"/>
<source>Runs OptiPNG which reduces screenshot file size.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1036"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1028"/>
<source>Replace screenshots when there&apos;s an existing file.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1115"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1107"/>
<source>Clipboard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1131"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1123"/>
<source>After uploading, copy the imgur URL to the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1141"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1133"/>
<source>History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1150"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1142"/>
<source>Save my screenshot history.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1043"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1035"/>
<source>Snap area screenshots automatically (no resizing).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1230"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1222"/>
<source>Lightscreen is a simple tool to take screenshots, designed to be customizable and lightweight.&lt;br&gt;&lt;br&gt;
Created by &lt;a href=&quot;http://ckaiser.com.ar&quot;&gt;Christian Kaiser&lt;/a&gt;, using the &lt;a href=&quot;#aboutqt&quot;&gt;Qt toolkit&lt;/a&gt; for the graphical user interface.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1244"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1236"/>
<source>Released under the &lt;a href=&quot;http://www.gnu.org/licenses/gpl-2.0.html&quot;&gt;GNU General Public License&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Special thanks goes to the &lt;a href=&quot;http://lightscreen.sourceforge.net/about&quot;&gt;Donators and Translators&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="755"/>
+ <location filename="../dialogs/optionsdialog.ui" line="747"/>
<source>Maximum Size:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="806"/>
+ <location filename="../dialogs/optionsdialog.ui" line="798"/>
<source>Position:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="863"/>
+ <location filename="../dialogs/optionsdialog.ui" line="855"/>
<source> and </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="880"/>
- <location filename="../dialogs/optionsdialog.ui" line="909"/>
+ <location filename="../dialogs/optionsdialog.ui" line="872"/>
+ <location filename="../dialogs/optionsdialog.ui" line="901"/>
<source>save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="885"/>
- <location filename="../dialogs/optionsdialog.ui" line="914"/>
+ <location filename="../dialogs/optionsdialog.ui" line="877"/>
+ <location filename="../dialogs/optionsdialog.ui" line="906"/>
<source>upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="890"/>
+ <location filename="../dialogs/optionsdialog.ui" line="882"/>
<source>cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1050"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1042"/>
<source>Upload all my screenshots automatically.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1209"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1201"/>
<source>Chec&amp;k Now</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1224"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1216"/>
<source>About</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1269"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1261"/>
<source>&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Visit Sourceforge project site&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Visit Lightscreen home page&lt;/a&gt;</source>
<translation type="unfinished">&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Odwiedź stronę projektu na Sourceforge&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Odwieź główną stronę Lightscreen&lt;/a&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="221"/>
+ <location filename="../dialogs/optionsdialog.ui" line="213"/>
<source>This slider goes from 0 to 100. 100 being the highest quality and 0 the lowest.&lt;br&gt;
Quality is related to file size and of course to readability and overall quality of the image.</source>
<translation>Ten suwak ma wartości od 0 do 100. 100 to najwyższa jakość a 0 najniższa.&lt;br&gt;
Różnica jakości związana jest z rozmiarem pliku, jego czytelnością i ogólnym wyglądem obrazu.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1124"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1116"/>
<source>&amp;Copy the screenshot to the clipboard.</source>
<translation>Kopiuj zrzut ekranu do &amp;schowka.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="948"/>
+ <location filename="../dialogs/optionsdialog.ui" line="940"/>
<source>Inc&amp;lude the cursor in the screenshot.</source>
<translation>&amp;Dołącz kursor w zrzucie ekranu.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="925"/>
- <location filename="../dialogs/optionsdialog.cpp" line="129"/>
- <location filename="../dialogs/optionsdialog.cpp" line="132"/>
+ <location filename="../dialogs/optionsdialog.ui" line="917"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="127"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="130"/>
<source>Screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="934"/>
+ <location filename="../dialogs/optionsdialog.ui" line="926"/>
<source>Choose where to save each screenshot (&quot;&amp;Save as&quot;).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="970"/>
+ <location filename="../dialogs/optionsdialog.ui" line="962"/>
<source>O&amp;ptimize PNG screenshots.</source>
<translation>&amp;Polepsz pliki PNG.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="128"/>
+ <location filename="../dialogs/optionsdialog.ui" line="124"/>
<source>The naming is inserted after the prefix and is what makes each screenshot file unique to avoid overwriting.&lt;br /&gt;
&lt;b&gt;Numeric&lt;/b&gt;: inserts a number in sequence, 1, 2, 3..&lt;br /&gt;
&lt;b&gt;Date&lt;/b&gt;: inserts the current date and time, in the form of dd-MM-yyyy, click the &quot;wrench&quot; button on the right to customize the format.&lt;br /&gt;
&lt;b&gt;Timestamp&lt;/b&gt;: inserts a number, a Unix timestamp, which is the number of seconds passed since 1970-1-1 00:00:00.&lt;br /&gt;
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="275"/>
+ <location filename="../dialogs/optionsdialog.ui" line="267"/>
<source>&lt;u&gt;Preview&lt;/u&gt;:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="740"/>
+ <location filename="../dialogs/optionsdialog.ui" line="732"/>
<source>Screenshot Previews</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="820"/>
+ <location filename="../dialogs/optionsdialog.ui" line="812"/>
<source>Top Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="825"/>
+ <location filename="../dialogs/optionsdialog.ui" line="817"/>
<source>Top Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="830"/>
+ <location filename="../dialogs/optionsdialog.ui" line="822"/>
<source>Bottom Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="835"/>
+ <location filename="../dialogs/optionsdialog.ui" line="827"/>
<source>Bottom Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="843"/>
+ <location filename="../dialogs/optionsdialog.ui" line="835"/>
<source>Auto-close after</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1170"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1162"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1180"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1172"/>
<source>Updater</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1189"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1181"/>
<source>Check for updates regularly.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>PreviewDialog</name>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="47"/>
- <location filename="../dialogs/previewdialog.cpp" line="308"/>
+ <location filename="../dialogs/previewdialog.cpp" line="46"/>
+ <location filename="../dialogs/previewdialog.cpp" line="307"/>
<source>Screenshot Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="158"/>
+ <location filename="../dialogs/previewdialog.cpp" line="157"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="180"/>
+ <location filename="../dialogs/previewdialog.cpp" line="179"/>
<source>Save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="305"/>
+ <location filename="../dialogs/previewdialog.cpp" line="304"/>
<source>Screenshot Preview (%1 of %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="406"/>
+ <location filename="../dialogs/previewdialog.cpp" line="405"/>
<source>Preview: Closing in %1</source>
<translation type="unfinished"></translation>
</message>
</context>
-<context>
- <name>QObject</name>
- <message>
- <location filename="../main.cpp" line="67"/>
- <source>Screen</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="68"/>
- <source>Area</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="69"/>
- <source>Active Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="70"/>
- <source>Pick Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="72"/>
- <source>Upload Last</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="73"/>
- <source>View History</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="75"/>
- <source>Go to Folder</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
<context>
<name>Screenshot</name>
<message>
- <location filename="../tools/screenshot.cpp" line="217"/>
+ <location filename="../tools/screenshot.cpp" line="216"/>
<source>Save as..</source>
<translation>Zapisz jako..</translation>
</message>
</context>
<context>
<name>Uploader</name>
<message>
- <location filename="../tools/uploader.cpp" line="105"/>
+ <location filename="../tools/uploader.cpp" line="103"/>
<source>Uploading...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="71"/>
+ <location filename="../tools/uploader.cpp" line="69"/>
<source>Screenshot file not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="74"/>
+ <location filename="../tools/uploader.cpp" line="72"/>
<source>Could not reach imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="77"/>
+ <location filename="../tools/uploader.cpp" line="75"/>
<source>You have exceeded your upload quota.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="80"/>
+ <location filename="../tools/uploader.cpp" line="78"/>
<source>Upload failed for %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>WindowPicker</name>
<message>
- <location filename="../tools/windowpicker.cpp" line="52"/>
+ <location filename="../tools/windowpicker.cpp" line="50"/>
<source>Lightscreen Window Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="55"/>
+ <location filename="../tools/windowpicker.cpp" line="53"/>
<source>Grab the window picker by clicking and holding down the mouse button, then drag it to the window of your choice and release it to capture.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="65"/>
+ <location filename="../tools/windowpicker.cpp" line="63"/>
<source> - Start dragging to select windows</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="72"/>
+ <location filename="../tools/windowpicker.cpp" line="70"/>
<source>Close</source>
<translation type="unfinished">Zamknij</translation>
</message>
</context>
</TS>
diff --git a/translations/portuguese.qm b/translations/portuguese.qm
index fb9ed37..ef0e0d1 100644
Binary files a/translations/portuguese.qm and b/translations/portuguese.qm differ
diff --git a/translations/portuguese.ts b/translations/portuguese.ts
index 83ea49e..798e2e4 100644
--- a/translations/portuguese.ts
+++ b/translations/portuguese.ts
@@ -1,1179 +1,1179 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="pt_BR" sourcelanguage="en">
<context>
<name>AreaDialog</name>
<message>
- <location filename="../dialogs/areadialog.cpp" line="56"/>
+ <location filename="../dialogs/areadialog.cpp" line="54"/>
<source>Lightscreen Area Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/areadialog.cpp" line="363"/>
+ <location filename="../dialogs/areadialog.cpp" line="361"/>
<source>Lightscreen area mode:
Use your mouse to draw a rectangle to capture.
Press any key or right click to exit.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HistoryDialog</name>
<message>
<location filename="../dialogs/historydialog.ui" line="14"/>
<source>Screenshot History</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="33"/>
<source>Type here to filter through the screenshots in the list.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="43"/>
<source>Double click the path to open the image with the default picture viewer, you can also double-click the URL to open it on your web browser.
Right click items to get access to more options.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="70"/>
<source>Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="93"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="100"/>
<source>Close</source>
<translation type="unfinished">Fechar</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="32"/>
- <location filename="../dialogs/historydialog.cpp" line="245"/>
- <location filename="../dialogs/historydialog.cpp" line="256"/>
- <location filename="../dialogs/historydialog.cpp" line="262"/>
+ <location filename="../dialogs/historydialog.cpp" line="28"/>
+ <location filename="../dialogs/historydialog.cpp" line="241"/>
+ <location filename="../dialogs/historydialog.cpp" line="252"/>
+ <location filename="../dialogs/historydialog.cpp" line="258"/>
<source>Filter..</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="112"/>
+ <location filename="../dialogs/historydialog.cpp" line="108"/>
<source>Clearing the screenshot history</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="113"/>
+ <location filename="../dialogs/historydialog.cpp" line="109"/>
<source>Are you sure you want to clear your entire screenshot history?
This cannot be undone.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="114"/>
+ <location filename="../dialogs/historydialog.cpp" line="110"/>
<source>Clear History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="115"/>
+ <location filename="../dialogs/historydialog.cpp" line="111"/>
<source>Don&apos;t Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy Path</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy URL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="133"/>
+ <location filename="../dialogs/historydialog.cpp" line="129"/>
<source>Delete from imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="134"/>
+ <location filename="../dialogs/historydialog.cpp" line="130"/>
<source>Open Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="136"/>
+ <location filename="../dialogs/historydialog.cpp" line="132"/>
<source>Remove history entry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="39"/>
+ <location filename="../dialogs/historydialog.cpp" line="35"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="40"/>
+ <location filename="../dialogs/historydialog.cpp" line="36"/>
<source>URL</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HotkeyWidget</name>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="36"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="34"/>
<source>Click to select hotkey...</source>
<translation>Clique para selecionar uma hotkey...</translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="86"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="84"/>
<source>Type your hotkey</source>
<translation>Pressione sua hotkey</translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="95"/>
- <location filename="../widgets/hotkeywidget.cpp" line="116"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="93"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="114"/>
<source>Invalid hotkey</source>
<translation>Hotkey inválida</translation>
</message>
</context>
+<context>
+ <name>JumpList</name>
+ <message>
+ <location filename="../main.cpp" line="65"/>
+ <source>Screen</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="66"/>
+ <source>Area</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="67"/>
+ <source>Active Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="68"/>
+ <source>Pick Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="70"/>
+ <source>Upload Last</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="71"/>
+ <source>View History</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="73"/>
+ <source>Go to Folder</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
<context>
<name>LightscreenWindow</name>
<message>
- <location filename="../lightscreenwindow.cpp" line="237"/>
- <location filename="../lightscreenwindow.cpp" line="577"/>
- <location filename="../lightscreenwindow.cpp" line="698"/>
- <location filename="../lightscreenwindow.cpp" line="724"/>
+ <location filename="../lightscreenwindow.cpp" line="235"/>
+ <location filename="../lightscreenwindow.cpp" line="575"/>
+ <location filename="../lightscreenwindow.cpp" line="696"/>
+ <location filename="../lightscreenwindow.cpp" line="722"/>
<source>Lightscreen</source>
<translation>Lightscreen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="238"/>
+ <location filename="../lightscreenwindow.cpp" line="236"/>
<source>You have chosen to hide Lightscreen when there&apos;s no system tray icon, so you will not be able to access the program &lt;b&gt;unless you have selected a hotkey to do so&lt;/b&gt;.&lt;br&gt;What do you want to do?</source>
<translation>Você escolheu esconder o lightscreen mesmo sem o ícone na área de notificaçao, então você não terá acesso ao programa &lt;b&gt;a menos que você selecione uma hotkey para isso&lt;/b&gt;.&lt;br&gt;O que você deseja fazer?</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="243"/>
+ <location filename="../lightscreenwindow.cpp" line="241"/>
<source>Hide but enable tray</source>
<translation>Esconder e habilitar o ícone na área de notificaçao</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="245"/>
+ <location filename="../lightscreenwindow.cpp" line="243"/>
<source>Hide and don&apos;t warn</source>
<translation>Esconder e não avisar</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="247"/>
+ <location filename="../lightscreenwindow.cpp" line="245"/>
<source>Just hide</source>
<translation>Apenas esconda</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="418"/>
+ <location filename="../lightscreenwindow.cpp" line="416"/>
<source>processing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="423"/>
+ <location filename="../lightscreenwindow.cpp" line="421"/>
<source>uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="426"/>
+ <location filename="../lightscreenwindow.cpp" line="424"/>
<source>processing and uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="433"/>
+ <location filename="../lightscreenwindow.cpp" line="431"/>
<source>Lightscreen is currently %1 screenshots. Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="435"/>
+ <location filename="../lightscreenwindow.cpp" line="433"/>
<source>Don&apos;t Quit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="280"/>
- <location filename="../lightscreenwindow.cpp" line="904"/>
+ <location filename="../lightscreenwindow.cpp" line="278"/>
+ <location filename="../lightscreenwindow.cpp" line="902"/>
<source>&amp;Cancel upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="281"/>
- <location filename="../lightscreenwindow.cpp" line="905"/>
+ <location filename="../lightscreenwindow.cpp" line="279"/>
+ <location filename="../lightscreenwindow.cpp" line="903"/>
<source>Cancel the currently uploading screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="640"/>
+ <location filename="../lightscreenwindow.cpp" line="638"/>
<source>The screenshot was not taken</source>
<translation>A screenshot não foi feita</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="882"/>
+ <location filename="../lightscreenwindow.cpp" line="880"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="885"/>
+ <location filename="../lightscreenwindow.cpp" line="883"/>
<source>&amp;Pick Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="636"/>
+ <location filename="../lightscreenwindow.cpp" line="634"/>
<source>Saved to &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="430"/>
<source>Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="641"/>
+ <location filename="../lightscreenwindow.cpp" line="639"/>
<source>An error occurred.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>%1 uploaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>Click here to go to %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="653"/>
+ <location filename="../lightscreenwindow.cpp" line="651"/>
<source>Upload error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="276"/>
- <location filename="../lightscreenwindow.cpp" line="900"/>
+ <location filename="../lightscreenwindow.cpp" line="274"/>
+ <location filename="../lightscreenwindow.cpp" line="898"/>
<source>&amp;Upload last</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="277"/>
- <location filename="../lightscreenwindow.cpp" line="901"/>
+ <location filename="../lightscreenwindow.cpp" line="275"/>
+ <location filename="../lightscreenwindow.cpp" line="899"/>
<source>Upload the last screenshot you took to imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="910"/>
+ <location filename="../lightscreenwindow.cpp" line="908"/>
<source>View History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="274"/>
- <location filename="../lightscreenwindow.cpp" line="930"/>
+ <location filename="../lightscreenwindow.cpp" line="272"/>
+ <location filename="../lightscreenwindow.cpp" line="928"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Closed to tray</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Lightscreen will keep running, you can disable this in the options menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="287"/>
+ <location filename="../lightscreenwindow.cpp" line="285"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="375"/>
- <location filename="../lightscreenwindow.cpp" line="378"/>
+ <location filename="../lightscreenwindow.cpp" line="373"/>
+ <location filename="../lightscreenwindow.cpp" line="376"/>
<source>Success!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="382"/>
- <location filename="../lightscreenwindow.cpp" line="385"/>
+ <location filename="../lightscreenwindow.cpp" line="380"/>
+ <location filename="../lightscreenwindow.cpp" line="383"/>
<source>Failed!</source>
<translation>Falhou!</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="389"/>
+ <location filename="../lightscreenwindow.cpp" line="387"/>
<source>Cancelled!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="559"/>
+ <location filename="../lightscreenwindow.cpp" line="557"/>
<source>Some hotkeys could not be registered, they might already be in use</source>
<translation>Alguma(s) hotkey(s) não pode(puderam) ser registrada(s), ela(s) pode(m) estar em uso</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="562"/>
+ <location filename="../lightscreenwindow.cpp" line="560"/>
<source>&lt;br&gt;The failed hotkeys are the following:</source>
<translation>&lt;br&gt;A(s) hotkey(s) é(são):</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="571"/>
+ <location filename="../lightscreenwindow.cpp" line="569"/>
<source>&lt;br&gt;The failed hotkey is &lt;b&gt;%1&lt;/b&gt;</source>
<translation>&lt;br&gt;A hotkey é &lt;b&gt;%1&lt;/b&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="574"/>
+ <location filename="../lightscreenwindow.cpp" line="572"/>
<source>&lt;br&gt;&lt;i&gt;What do you want to do?&lt;/i&gt;</source>
<translation>&lt;br&gt;&lt;i&gt;O que você deseja fazer?&lt;/i&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="580"/>
+ <location filename="../lightscreenwindow.cpp" line="578"/>
<source>Change</source>
<translation>Trocar</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="581"/>
+ <location filename="../lightscreenwindow.cpp" line="579"/>
<source>Disable</source>
<translation>Desabilitar</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="694"/>
+ <location filename="../lightscreenwindow.cpp" line="692"/>
<source>%1 uploading - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Do you want to cancel all screenshot uploads?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="665"/>
- <location filename="../lightscreenwindow.cpp" line="923"/>
+ <location filename="../lightscreenwindow.cpp" line="663"/>
+ <location filename="../lightscreenwindow.cpp" line="921"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Upload cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Don&apos;t Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="434"/>
- <location filename="../lightscreenwindow.cpp" line="582"/>
+ <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="580"/>
<source>Quit</source>
<translation>Sair</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="725"/>
+ <location filename="../lightscreenwindow.cpp" line="723"/>
<source>There&apos;s a new version of Lightscreen available.&lt;br&gt;Would you like to see more information?&lt;br&gt;(&lt;em&gt;You can turn this notification off&lt;/em&gt;)</source>
<translation>Existe uma nova versão do Lightscreen.&lt;br&gt;Você gostaria de mais informaçoes?&lt;br&gt;(&lt;em&gt;Você pode desligar essa notificação&lt;/em&gt;)</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="729"/>
+ <location filename="../lightscreenwindow.cpp" line="727"/>
<source>Turn Off</source>
<translation>Desligar</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="730"/>
+ <location filename="../lightscreenwindow.cpp" line="728"/>
<source>Remind Me Later</source>
<translation>Lembrar mais tarde</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="780"/>
+ <location filename="../lightscreenwindow.cpp" line="778"/>
<source>%1% of %2 uploads - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="783"/>
+ <location filename="../lightscreenwindow.cpp" line="781"/>
<source>%1% - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="879"/>
+ <location filename="../lightscreenwindow.cpp" line="877"/>
<source>&amp;Screen</source>
<translation>T&amp;ela</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="888"/>
+ <location filename="../lightscreenwindow.cpp" line="886"/>
<source>&amp;Area</source>
<translation>Áre&amp;a</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="917"/>
+ <location filename="../lightscreenwindow.cpp" line="915"/>
<source>&amp;Go to Folder</source>
<translation>&amp;Ir para a pasta</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="876"/>
+ <location filename="../lightscreenwindow.cpp" line="874"/>
<source>Show&amp;/Hide</source>
<translation>Mostrar/Escond&amp;er</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="914"/>
+ <location filename="../lightscreenwindow.cpp" line="912"/>
<source>View &amp;Options</source>
<translation>Ver &amp;Opções</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="920"/>
+ <location filename="../lightscreenwindow.cpp" line="918"/>
<source>&amp;Quit</source>
<translation>Sa&amp;ir</translation>
</message>
</context>
<context>
<name>LightscreenWindowClass</name>
<message>
<location filename="../lightscreenwindow.ui" line="20"/>
<source>Lightscreen</source>
<translation>Lightscreen</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="49"/>
<source>Area capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="52"/>
<source>Capture a specific area of your desktop, resize and move it around!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="64"/>
<source>Ctrl+A</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="80"/>
<source>Pick window</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="83"/>
<source>Drop the picker onto a window to capture it.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="92"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="108"/>
<source>Configure Lightscreen</source>
<translation>Configurar o Lightscreen</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="111"/>
<source>&amp;Options</source>
<translation>&amp;Opções</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="114"/>
<source>Ctrl+O</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="130"/>
<source>Open the current Screenshot folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="133"/>
<source>&amp;Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="136"/>
<source>Ctrl+F</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="152"/>
<source>Imgur upload controls</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="155"/>
<source>&amp;Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="158"/>
<source>Ctrl+U</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="174"/>
<source>Fullscreen capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="177"/>
<source>Take a screenshot of your entire desktop.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="186"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>NamingDialog</name>
<message>
<location filename="../dialogs/namingdialog.ui" line="14"/>
<source>Naming Options - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="45"/>
<source>Leading zeros:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="100"/>
<source>Date Format:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="167"/>
<source>Flip naming.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>OptionsDialog</name>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="520"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="522"/>
<source>Restore Defaults</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="536"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="538"/>
<source>Version %1</source>
<translation type="unfinished">Versão %1</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>Hotkey conflict</source>
<translation>Conflito entre Hotkeys</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>You have assigned the same hotkeys to more than one action.</source>
<translation>Você designou a mesma hotkey para mais de uma ação.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>Filename character error</source>
<translation>Caractere não permitido no nome do arquivo</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>The filename can&apos;t contain any of the following characters: ? : \ / * &quot; &lt; &gt; |</source>
<translation>O nome do arquivo não pode conter os seguintes caracteres: ? : \ / * &quot; &lt; &gt; |</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>Final Destination</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>You can&apos;t take screenshots unless you enable either file saving or the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="449"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="447"/>
<source>Select where you want to save the screenshots</source>
<translation>Selecione um local para salvar as screenshots</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="462"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="461"/>
<source>Lightscreen - Restore Default Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="463"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="462"/>
<source>Restoring the default options will cause you to lose all of your current configuration.</source>
<translation>Restaurando as opções padrão causará a perda das configurações atuais.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="466"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="465"/>
<source>Restore</source>
<translation>Restaurar</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="467"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="466"/>
<source>Don&apos;t Restore</source>
<translation>Não restaurar</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="137"/>
- <location filename="../dialogs/optionsdialog.cpp" line="502"/>
- <location filename="../dialogs/optionsdialog.cpp" line="508"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="135"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="501"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="507"/>
<source>screenshot.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="504"/>
- <location filename="../dialogs/optionsdialog.cpp" line="506"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="503"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="505"/>
<source>.screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="187"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="185"/>
<source>Install &apos;OptiPNG&apos;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="14"/>
<source>Options - Lightscreen</source>
<translation>Opções do Lightscreen</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="42"/>
<source>File</source>
<translation>Arquivo</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="60"/>
<source>&amp;Directory:</source>
<translation>&amp;Pasta:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="100"/>
+ <location filename="../dialogs/optionsdialog.ui" line="96"/>
<source>The prefix for the screenshot file</source>
<translation>O prefixo para o nome do arquivo</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="103"/>
+ <location filename="../dialogs/optionsdialog.ui" line="99"/>
<source>&amp;Filename:</source>
<translation>&amp;Nome do arquivo:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="121"/>
+ <location filename="../dialogs/optionsdialog.ui" line="117"/>
<source>The prefix will be inserted before the &lt;em&gt;Naming&lt;/em&gt; in the screenshot file and it is usually used to distinguish files. It can be left blank.</source>
<translation>The prefix will be inserted before the &lt;em&gt;Naming&lt;/em&gt; in the screenshot file and it is usually used to distinguish files. It can be left blank.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="137"/>
+ <location filename="../dialogs/optionsdialog.ui" line="133"/>
<source>(number)</source>
<translation>(número)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="142"/>
+ <location filename="../dialogs/optionsdialog.ui" line="138"/>
<source>(date)</source>
<translation>(data)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="147"/>
+ <location filename="../dialogs/optionsdialog.ui" line="143"/>
<source>(timestamp)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="173"/>
+ <location filename="../dialogs/optionsdialog.ui" line="165"/>
<source>The file format for the screenshot</source>
<translation>Formato de arquivo</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="176"/>
+ <location filename="../dialogs/optionsdialog.ui" line="168"/>
<source>F&amp;ormat:</source>
<translation>F&amp;ormato:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="208"/>
+ <location filename="../dialogs/optionsdialog.ui" line="200"/>
<source>&amp;Quality:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="152"/>
+ <location filename="../dialogs/optionsdialog.ui" line="148"/>
<source>(none)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="314"/>
+ <location filename="../dialogs/optionsdialog.ui" line="306"/>
<source>System Startup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="367"/>
+ <location filename="../dialogs/optionsdialog.ui" line="359"/>
<source>Hotkeys</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="373"/>
+ <location filename="../dialogs/optionsdialog.ui" line="365"/>
<source>Captures</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="394"/>
+ <location filename="../dialogs/optionsdialog.ui" line="386"/>
<source>&amp;Fullscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="417"/>
+ <location filename="../dialogs/optionsdialog.ui" line="409"/>
<source>Window &amp;Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="446"/>
+ <location filename="../dialogs/optionsdialog.ui" line="438"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="462"/>
+ <location filename="../dialogs/optionsdialog.ui" line="454"/>
<source>Screen &amp;Area</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="475"/>
+ <location filename="../dialogs/optionsdialog.ui" line="467"/>
<source>Lightscreen Control</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="496"/>
+ <location filename="../dialogs/optionsdialog.ui" line="488"/>
<source>&amp;Open the program window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="512"/>
+ <location filename="../dialogs/optionsdialog.ui" line="504"/>
<source>Open the &amp;directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="539"/>
+ <location filename="../dialogs/optionsdialog.ui" line="531"/>
<source>Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="587"/>
+ <location filename="../dialogs/optionsdialog.ui" line="579"/>
<source>Interface</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="606"/>
+ <location filename="../dialogs/optionsdialog.ui" line="598"/>
<source>C&amp;losing hides the main window.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="898"/>
+ <location filename="../dialogs/optionsdialog.ui" line="890"/>
<source>Default action:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="925"/>
- <location filename="../dialogs/optionsdialog.cpp" line="129"/>
- <location filename="../dialogs/optionsdialog.cpp" line="132"/>
+ <location filename="../dialogs/optionsdialog.ui" line="917"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="127"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="130"/>
<source>Screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="934"/>
+ <location filename="../dialogs/optionsdialog.ui" line="926"/>
<source>Choose where to save each screenshot (&quot;&amp;Save as&quot;).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="941"/>
+ <location filename="../dialogs/optionsdialog.ui" line="933"/>
<source>&amp;Grab only the active monitor.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="967"/>
+ <location filename="../dialogs/optionsdialog.ui" line="959"/>
<source>Runs OptiPNG which reduces screenshot file size.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1036"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1028"/>
<source>Replace screenshots when there&apos;s an existing file.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1115"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1107"/>
<source>Clipboard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1131"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1123"/>
<source>After uploading, copy the imgur URL to the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1141"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1133"/>
<source>History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1150"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1142"/>
<source>Save my screenshot history.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1050"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1042"/>
<source>Upload all my screenshots automatically.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1059"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1051"/>
<source>D&amp;elay:</source>
<translation>Atras&amp;o:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1072"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1064"/>
<source>Selecting anything other than 0 in this option will cause the program to &lt;b&gt;wait&lt;/b&gt; that amount of seconds before taking the screenshot.</source>
<translation>Selecting anything other than 0 in this option will cause the program to &lt;b&gt;wait&lt;/b&gt; that amount of seconds before taking the screenshot.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1075"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1067"/>
<source>none</source>
<translation>nenhum</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1230"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1222"/>
<source>Lightscreen is a simple tool to take screenshots, designed to be customizable and lightweight.&lt;br&gt;&lt;br&gt;
Created by &lt;a href=&quot;http://ckaiser.com.ar&quot;&gt;Christian Kaiser&lt;/a&gt;, using the &lt;a href=&quot;#aboutqt&quot;&gt;Qt toolkit&lt;/a&gt; for the graphical user interface.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1244"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1236"/>
<source>Released under the &lt;a href=&quot;http://www.gnu.org/licenses/gpl-2.0.html&quot;&gt;GNU General Public License&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Special thanks goes to the &lt;a href=&quot;http://lightscreen.sourceforge.net/about&quot;&gt;Donators and Translators&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="850"/>
- <location filename="../dialogs/optionsdialog.ui" line="1084"/>
+ <location filename="../dialogs/optionsdialog.ui" line="842"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1076"/>
<source> seconds</source>
<translation> segundos</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="275"/>
+ <location filename="../dialogs/optionsdialog.ui" line="267"/>
<source>&lt;u&gt;Preview&lt;/u&gt;:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="755"/>
+ <location filename="../dialogs/optionsdialog.ui" line="747"/>
<source>Maximum Size:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="806"/>
+ <location filename="../dialogs/optionsdialog.ui" line="798"/>
<source>Position:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="863"/>
+ <location filename="../dialogs/optionsdialog.ui" line="855"/>
<source> and </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="880"/>
- <location filename="../dialogs/optionsdialog.ui" line="909"/>
+ <location filename="../dialogs/optionsdialog.ui" line="872"/>
+ <location filename="../dialogs/optionsdialog.ui" line="901"/>
<source>save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="885"/>
- <location filename="../dialogs/optionsdialog.ui" line="914"/>
+ <location filename="../dialogs/optionsdialog.ui" line="877"/>
+ <location filename="../dialogs/optionsdialog.ui" line="906"/>
<source>upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="890"/>
+ <location filename="../dialogs/optionsdialog.ui" line="882"/>
<source>cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1209"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1201"/>
<source>Chec&amp;k Now</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1224"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1216"/>
<source>About</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1269"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1261"/>
<source>&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Visit Sourceforge project site&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Visit Lightscreen home page&lt;/a&gt;</source>
<translation type="unfinished">&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Visite o site do projeto na Sourceforge&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Visite o site do Lightscreen&lt;/a&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="326"/>
+ <location filename="../dialogs/optionsdialog.ui" line="318"/>
<source>&amp;Run Lightscreen at system startup.</source>
<translation>&amp;Abrir o Lighscreen na inicialização do sistema.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="354"/>
+ <location filename="../dialogs/optionsdialog.ui" line="346"/>
<source>H&amp;ide the main window.</source>
<translation>Esconder a janela pr&amp;incipal.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="599"/>
+ <location filename="../dialogs/optionsdialog.ui" line="591"/>
<source>Sho&amp;w a system tray icon.</source>
<translation>Mostrar ícone na área de n&amp;otificação.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="613"/>
+ <location filename="../dialogs/optionsdialog.ui" line="605"/>
<source>&amp;Hide Lightscreen while taking a screenshot.</source>
<translation>&amp;Esconder o Lighscreen durande a screenshot.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="955"/>
+ <location filename="../dialogs/optionsdialog.ui" line="947"/>
<source>&amp;Magnify around the mouse in Area mode.</source>
<translation>Zoom da área do &amp;mouse.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="695"/>
+ <location filename="../dialogs/optionsdialog.ui" line="687"/>
<source>&amp;Language:</source>
<translation>&amp;Idioma:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="712"/>
+ <location filename="../dialogs/optionsdialog.ui" line="704"/>
<source>Click here to go to the Lightscreen homepage to learn more about translations.</source>
<translation>Clique aqui para ir até a página no Lightscreen e aprenda mais sobre atualizações.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="715"/>
+ <location filename="../dialogs/optionsdialog.ui" line="707"/>
<source>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;More information..&lt;/a&gt;</source>
<translation>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;Mais informações...&lt;/a&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="681"/>
+ <location filename="../dialogs/optionsdialog.ui" line="673"/>
<source>&amp;Notify with:</source>
<translation>&amp;Notificar com:</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="27"/>
<source>General</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="628"/>
+ <location filename="../dialogs/optionsdialog.ui" line="620"/>
<source>Shows a completion message once the screenshot is saved, clicking this message takes you to the directory where the screenshot was saved.</source>
<translation>Mostrar mensagem quando uma screenshot for capturada.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="631"/>
+ <location filename="../dialogs/optionsdialog.ui" line="623"/>
<source>Tray icon Popup</source>
<translation>Balão na área de notificação</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="638"/>
+ <location filename="../dialogs/optionsdialog.ui" line="630"/>
<source>&amp;Sound cue</source>
<translation>&amp;Som</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="221"/>
+ <location filename="../dialogs/optionsdialog.ui" line="213"/>
<source>This slider goes from 0 to 100. 100 being the highest quality and 0 the lowest.&lt;br&gt;
Quality is related to file size and of course to readability and overall quality of the image.</source>
<translation>This slider goes from 0 to 100. 100 being the highest quality and 0 the lowest.&lt;br&gt;
Quality is related to file size and of course to readability and overall quality of the image.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1124"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1116"/>
<source>&amp;Copy the screenshot to the clipboard.</source>
<translation>&amp;Copiar a Screenshot para a área de transferência.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="948"/>
+ <location filename="../dialogs/optionsdialog.ui" line="940"/>
<source>Inc&amp;lude the cursor in the screenshot.</source>
<translation>Inc&amp;luir o cursor do mouse na screenshot.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="970"/>
+ <location filename="../dialogs/optionsdialog.ui" line="962"/>
<source>O&amp;ptimize PNG screenshots.</source>
<translation>O&amp;ptimizar as screenshots salvas como PNG.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="128"/>
+ <location filename="../dialogs/optionsdialog.ui" line="124"/>
<source>The naming is inserted after the prefix and is what makes each screenshot file unique to avoid overwriting.&lt;br /&gt;
&lt;b&gt;Numeric&lt;/b&gt;: inserts a number in sequence, 1, 2, 3..&lt;br /&gt;
&lt;b&gt;Date&lt;/b&gt;: inserts the current date and time, in the form of dd-MM-yyyy, click the &quot;wrench&quot; button on the right to customize the format.&lt;br /&gt;
&lt;b&gt;Timestamp&lt;/b&gt;: inserts a number, a Unix timestamp, which is the number of seconds passed since 1970-1-1 00:00:00.&lt;br /&gt;
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1043"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1035"/>
<source>Snap area screenshots automatically (no resizing).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="740"/>
+ <location filename="../dialogs/optionsdialog.ui" line="732"/>
<source>Screenshot Previews</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="820"/>
+ <location filename="../dialogs/optionsdialog.ui" line="812"/>
<source>Top Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="825"/>
+ <location filename="../dialogs/optionsdialog.ui" line="817"/>
<source>Top Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="830"/>
+ <location filename="../dialogs/optionsdialog.ui" line="822"/>
<source>Bottom Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="835"/>
+ <location filename="../dialogs/optionsdialog.ui" line="827"/>
<source>Bottom Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="843"/>
+ <location filename="../dialogs/optionsdialog.ui" line="835"/>
<source>Auto-close after</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1170"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1162"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1180"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1172"/>
<source>Updater</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1189"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1181"/>
<source>Check for updates regularly.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>PreviewDialog</name>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="47"/>
- <location filename="../dialogs/previewdialog.cpp" line="308"/>
+ <location filename="../dialogs/previewdialog.cpp" line="46"/>
+ <location filename="../dialogs/previewdialog.cpp" line="307"/>
<source>Screenshot Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="158"/>
+ <location filename="../dialogs/previewdialog.cpp" line="157"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="180"/>
+ <location filename="../dialogs/previewdialog.cpp" line="179"/>
<source>Save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="305"/>
+ <location filename="../dialogs/previewdialog.cpp" line="304"/>
<source>Screenshot Preview (%1 of %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="406"/>
+ <location filename="../dialogs/previewdialog.cpp" line="405"/>
<source>Preview: Closing in %1</source>
<translation type="unfinished"></translation>
</message>
</context>
-<context>
- <name>QObject</name>
- <message>
- <location filename="../main.cpp" line="67"/>
- <source>Screen</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="68"/>
- <source>Area</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="69"/>
- <source>Active Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="70"/>
- <source>Pick Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="72"/>
- <source>Upload Last</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="73"/>
- <source>View History</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="75"/>
- <source>Go to Folder</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
<context>
<name>Screenshot</name>
<message>
- <location filename="../tools/screenshot.cpp" line="217"/>
+ <location filename="../tools/screenshot.cpp" line="216"/>
<source>Save as..</source>
<translation>Salvar como..</translation>
</message>
</context>
<context>
<name>Uploader</name>
<message>
- <location filename="../tools/uploader.cpp" line="105"/>
+ <location filename="../tools/uploader.cpp" line="103"/>
<source>Uploading...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="71"/>
+ <location filename="../tools/uploader.cpp" line="69"/>
<source>Screenshot file not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="74"/>
+ <location filename="../tools/uploader.cpp" line="72"/>
<source>Could not reach imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="77"/>
+ <location filename="../tools/uploader.cpp" line="75"/>
<source>You have exceeded your upload quota.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="80"/>
+ <location filename="../tools/uploader.cpp" line="78"/>
<source>Upload failed for %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>WindowPicker</name>
<message>
- <location filename="../tools/windowpicker.cpp" line="52"/>
+ <location filename="../tools/windowpicker.cpp" line="50"/>
<source>Lightscreen Window Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="55"/>
+ <location filename="../tools/windowpicker.cpp" line="53"/>
<source>Grab the window picker by clicking and holding down the mouse button, then drag it to the window of your choice and release it to capture.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="65"/>
+ <location filename="../tools/windowpicker.cpp" line="63"/>
<source> - Start dragging to select windows</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="72"/>
+ <location filename="../tools/windowpicker.cpp" line="70"/>
<source>Close</source>
<translation type="unfinished">Fechar</translation>
</message>
</context>
</TS>
diff --git a/translations/russian.qm b/translations/russian.qm
index 73da0c7..cb89bcd 100644
Binary files a/translations/russian.qm and b/translations/russian.qm differ
diff --git a/translations/russian.ts b/translations/russian.ts
index 604e404..9f77310 100644
--- a/translations/russian.ts
+++ b/translations/russian.ts
@@ -1,1179 +1,1179 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="ru_RU">
<context>
<name>AreaDialog</name>
<message>
- <location filename="../dialogs/areadialog.cpp" line="56"/>
+ <location filename="../dialogs/areadialog.cpp" line="54"/>
<source>Lightscreen Area Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/areadialog.cpp" line="363"/>
+ <location filename="../dialogs/areadialog.cpp" line="361"/>
<source>Lightscreen area mode:
Use your mouse to draw a rectangle to capture.
Press any key or right click to exit.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HistoryDialog</name>
<message>
<location filename="../dialogs/historydialog.ui" line="14"/>
<source>Screenshot History</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="33"/>
<source>Type here to filter through the screenshots in the list.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="43"/>
<source>Double click the path to open the image with the default picture viewer, you can also double-click the URL to open it on your web browser.
Right click items to get access to more options.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="70"/>
<source>Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="93"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="100"/>
<source>Close</source>
<translation type="unfinished">Закрыть</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="32"/>
- <location filename="../dialogs/historydialog.cpp" line="245"/>
- <location filename="../dialogs/historydialog.cpp" line="256"/>
- <location filename="../dialogs/historydialog.cpp" line="262"/>
+ <location filename="../dialogs/historydialog.cpp" line="28"/>
+ <location filename="../dialogs/historydialog.cpp" line="241"/>
+ <location filename="../dialogs/historydialog.cpp" line="252"/>
+ <location filename="../dialogs/historydialog.cpp" line="258"/>
<source>Filter..</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="112"/>
+ <location filename="../dialogs/historydialog.cpp" line="108"/>
<source>Clearing the screenshot history</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="113"/>
+ <location filename="../dialogs/historydialog.cpp" line="109"/>
<source>Are you sure you want to clear your entire screenshot history?
This cannot be undone.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="114"/>
+ <location filename="../dialogs/historydialog.cpp" line="110"/>
<source>Clear History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="115"/>
+ <location filename="../dialogs/historydialog.cpp" line="111"/>
<source>Don&apos;t Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy Path</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy URL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="133"/>
+ <location filename="../dialogs/historydialog.cpp" line="129"/>
<source>Delete from imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="134"/>
+ <location filename="../dialogs/historydialog.cpp" line="130"/>
<source>Open Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="136"/>
+ <location filename="../dialogs/historydialog.cpp" line="132"/>
<source>Remove history entry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="39"/>
+ <location filename="../dialogs/historydialog.cpp" line="35"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="40"/>
+ <location filename="../dialogs/historydialog.cpp" line="36"/>
<source>URL</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HotkeyWidget</name>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="36"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="34"/>
<source>Click to select hotkey...</source>
<translation type="unfinished">Нажмите для выбора горячей клавиши...</translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="86"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="84"/>
<source>Type your hotkey</source>
<translation type="unfinished">Нажмите Ваши горячие клавиши</translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="95"/>
- <location filename="../widgets/hotkeywidget.cpp" line="116"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="93"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="114"/>
<source>Invalid hotkey</source>
<translation type="unfinished">Недействительная горячая клавиша</translation>
</message>
</context>
+<context>
+ <name>JumpList</name>
+ <message>
+ <location filename="../main.cpp" line="65"/>
+ <source>Screen</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="66"/>
+ <source>Area</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="67"/>
+ <source>Active Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="68"/>
+ <source>Pick Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="70"/>
+ <source>Upload Last</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="71"/>
+ <source>View History</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="73"/>
+ <source>Go to Folder</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
<context>
<name>LightscreenWindow</name>
<message>
- <location filename="../lightscreenwindow.cpp" line="237"/>
- <location filename="../lightscreenwindow.cpp" line="577"/>
- <location filename="../lightscreenwindow.cpp" line="698"/>
- <location filename="../lightscreenwindow.cpp" line="724"/>
+ <location filename="../lightscreenwindow.cpp" line="235"/>
+ <location filename="../lightscreenwindow.cpp" line="575"/>
+ <location filename="../lightscreenwindow.cpp" line="696"/>
+ <location filename="../lightscreenwindow.cpp" line="722"/>
<source>Lightscreen</source>
<translation type="unfinished">Lightscreen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="238"/>
+ <location filename="../lightscreenwindow.cpp" line="236"/>
<source>You have chosen to hide Lightscreen when there&apos;s no system tray icon, so you will not be able to access the program &lt;b&gt;unless you have selected a hotkey to do so&lt;/b&gt;.&lt;br&gt;What do you want to do?</source>
<translation type="unfinished">Вы выбрали скрыть Lightscreen так, что иконка в системном трее не будет отображаться, и Вы не сможете получить доступ к программе, &lt;b&gt;если не определены горячие клавиши&lt;/b&gt;.&lt;br&gt;Что Вы хотите сделать?</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="243"/>
+ <location filename="../lightscreenwindow.cpp" line="241"/>
<source>Hide but enable tray</source>
<translation type="unfinished">Скрыть, но оставить в системном трее</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="245"/>
+ <location filename="../lightscreenwindow.cpp" line="243"/>
<source>Hide and don&apos;t warn</source>
<translation type="unfinished">Скрыть не предупреждая</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="247"/>
+ <location filename="../lightscreenwindow.cpp" line="245"/>
<source>Just hide</source>
<translation type="unfinished">Просто скрыть</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="418"/>
+ <location filename="../lightscreenwindow.cpp" line="416"/>
<source>processing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="423"/>
+ <location filename="../lightscreenwindow.cpp" line="421"/>
<source>uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="426"/>
+ <location filename="../lightscreenwindow.cpp" line="424"/>
<source>processing and uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="433"/>
+ <location filename="../lightscreenwindow.cpp" line="431"/>
<source>Lightscreen is currently %1 screenshots. Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="435"/>
+ <location filename="../lightscreenwindow.cpp" line="433"/>
<source>Don&apos;t Quit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="280"/>
- <location filename="../lightscreenwindow.cpp" line="904"/>
+ <location filename="../lightscreenwindow.cpp" line="278"/>
+ <location filename="../lightscreenwindow.cpp" line="902"/>
<source>&amp;Cancel upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="281"/>
- <location filename="../lightscreenwindow.cpp" line="905"/>
+ <location filename="../lightscreenwindow.cpp" line="279"/>
+ <location filename="../lightscreenwindow.cpp" line="903"/>
<source>Cancel the currently uploading screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="640"/>
+ <location filename="../lightscreenwindow.cpp" line="638"/>
<source>The screenshot was not taken</source>
<translation type="unfinished">Скриншот не сделан</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="882"/>
+ <location filename="../lightscreenwindow.cpp" line="880"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="885"/>
+ <location filename="../lightscreenwindow.cpp" line="883"/>
<source>&amp;Pick Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="636"/>
+ <location filename="../lightscreenwindow.cpp" line="634"/>
<source>Saved to &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="430"/>
<source>Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="641"/>
+ <location filename="../lightscreenwindow.cpp" line="639"/>
<source>An error occurred.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>%1 uploaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>Click here to go to %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="653"/>
+ <location filename="../lightscreenwindow.cpp" line="651"/>
<source>Upload error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="276"/>
- <location filename="../lightscreenwindow.cpp" line="900"/>
+ <location filename="../lightscreenwindow.cpp" line="274"/>
+ <location filename="../lightscreenwindow.cpp" line="898"/>
<source>&amp;Upload last</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="277"/>
- <location filename="../lightscreenwindow.cpp" line="901"/>
+ <location filename="../lightscreenwindow.cpp" line="275"/>
+ <location filename="../lightscreenwindow.cpp" line="899"/>
<source>Upload the last screenshot you took to imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="910"/>
+ <location filename="../lightscreenwindow.cpp" line="908"/>
<source>View History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="274"/>
- <location filename="../lightscreenwindow.cpp" line="930"/>
+ <location filename="../lightscreenwindow.cpp" line="272"/>
+ <location filename="../lightscreenwindow.cpp" line="928"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Closed to tray</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Lightscreen will keep running, you can disable this in the options menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="287"/>
+ <location filename="../lightscreenwindow.cpp" line="285"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="375"/>
- <location filename="../lightscreenwindow.cpp" line="378"/>
+ <location filename="../lightscreenwindow.cpp" line="373"/>
+ <location filename="../lightscreenwindow.cpp" line="376"/>
<source>Success!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="382"/>
- <location filename="../lightscreenwindow.cpp" line="385"/>
+ <location filename="../lightscreenwindow.cpp" line="380"/>
+ <location filename="../lightscreenwindow.cpp" line="383"/>
<source>Failed!</source>
<translation type="unfinished">Ошибка!</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="389"/>
+ <location filename="../lightscreenwindow.cpp" line="387"/>
<source>Cancelled!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="559"/>
+ <location filename="../lightscreenwindow.cpp" line="557"/>
<source>Some hotkeys could not be registered, they might already be in use</source>
<translation type="unfinished">Некоторые клавиши не зарегистрированы, поскольку уже могут быть в эксплуатации</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="562"/>
+ <location filename="../lightscreenwindow.cpp" line="560"/>
<source>&lt;br&gt;The failed hotkeys are the following:</source>
<translation type="unfinished">&lt;br&gt; Следующие клавиши не верны:</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="571"/>
+ <location filename="../lightscreenwindow.cpp" line="569"/>
<source>&lt;br&gt;The failed hotkey is &lt;b&gt;%1&lt;/b&gt;</source>
<translation type="unfinished">&lt;br&gt;Неверная горячая клавиша&lt;b&gt;%1&lt;/b&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="574"/>
+ <location filename="../lightscreenwindow.cpp" line="572"/>
<source>&lt;br&gt;&lt;i&gt;What do you want to do?&lt;/i&gt;</source>
<translation type="unfinished">&lt;br&gt;&lt;i&gt;Что Вы хотите сделать?&lt;/i&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="580"/>
+ <location filename="../lightscreenwindow.cpp" line="578"/>
<source>Change</source>
<translation type="unfinished">Изменить</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="581"/>
+ <location filename="../lightscreenwindow.cpp" line="579"/>
<source>Disable</source>
<translation type="unfinished">Отключить</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="694"/>
+ <location filename="../lightscreenwindow.cpp" line="692"/>
<source>%1 uploading - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Do you want to cancel all screenshot uploads?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="665"/>
- <location filename="../lightscreenwindow.cpp" line="923"/>
+ <location filename="../lightscreenwindow.cpp" line="663"/>
+ <location filename="../lightscreenwindow.cpp" line="921"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Upload cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Don&apos;t Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="434"/>
- <location filename="../lightscreenwindow.cpp" line="582"/>
+ <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="580"/>
<source>Quit</source>
<translation type="unfinished">Выход</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="725"/>
+ <location filename="../lightscreenwindow.cpp" line="723"/>
<source>There&apos;s a new version of Lightscreen available.&lt;br&gt;Would you like to see more information?&lt;br&gt;(&lt;em&gt;You can turn this notification off&lt;/em&gt;)</source>
<translation type="unfinished">В новой версии Lightscreen.&lt;br&gt;Вы хотели бы увидеть больше информации?&lt;br&gt;(&lt;em&gt;Вы можете просто выключить это уведомление&lt;/em&gt;)</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="729"/>
+ <location filename="../lightscreenwindow.cpp" line="727"/>
<source>Turn Off</source>
<translation type="unfinished">Отключить</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="730"/>
+ <location filename="../lightscreenwindow.cpp" line="728"/>
<source>Remind Me Later</source>
<translation type="unfinished">Напомнить позже</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="780"/>
+ <location filename="../lightscreenwindow.cpp" line="778"/>
<source>%1% of %2 uploads - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="783"/>
+ <location filename="../lightscreenwindow.cpp" line="781"/>
<source>%1% - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="879"/>
+ <location filename="../lightscreenwindow.cpp" line="877"/>
<source>&amp;Screen</source>
<translation type="unfinished">&amp;Экран</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="888"/>
+ <location filename="../lightscreenwindow.cpp" line="886"/>
<source>&amp;Area</source>
<translation type="unfinished">О&amp;бласть</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="917"/>
+ <location filename="../lightscreenwindow.cpp" line="915"/>
<source>&amp;Go to Folder</source>
<translation type="unfinished">&amp;Перейти в папку</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="876"/>
+ <location filename="../lightscreenwindow.cpp" line="874"/>
<source>Show&amp;/Hide</source>
<translation type="unfinished">Показать&amp;/Скрыть</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="914"/>
+ <location filename="../lightscreenwindow.cpp" line="912"/>
<source>View &amp;Options</source>
<translation type="unfinished">Просмотр &amp;Настроек</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="920"/>
+ <location filename="../lightscreenwindow.cpp" line="918"/>
<source>&amp;Quit</source>
<translation type="unfinished">Выхо&amp;д</translation>
</message>
</context>
<context>
<name>LightscreenWindowClass</name>
<message>
<location filename="../lightscreenwindow.ui" line="20"/>
<source>Lightscreen</source>
<translation type="unfinished">Lightscreen</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="49"/>
<source>Area capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="52"/>
<source>Capture a specific area of your desktop, resize and move it around!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="64"/>
<source>Ctrl+A</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="80"/>
<source>Pick window</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="83"/>
<source>Drop the picker onto a window to capture it.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="92"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="108"/>
<source>Configure Lightscreen</source>
<translation type="unfinished">Конфигурация Lightscreen</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="111"/>
<source>&amp;Options</source>
<translation type="unfinished">&amp;Настройки</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="114"/>
<source>Ctrl+O</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="130"/>
<source>Open the current Screenshot folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="133"/>
<source>&amp;Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="136"/>
<source>Ctrl+F</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="152"/>
<source>Imgur upload controls</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="155"/>
<source>&amp;Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="158"/>
<source>Ctrl+U</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="174"/>
<source>Fullscreen capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="177"/>
<source>Take a screenshot of your entire desktop.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="186"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>NamingDialog</name>
<message>
<location filename="../dialogs/namingdialog.ui" line="14"/>
<source>Naming Options - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="45"/>
<source>Leading zeros:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="100"/>
<source>Date Format:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="167"/>
<source>Flip naming.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>OptionsDialog</name>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="520"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="522"/>
<source>Restore Defaults</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="536"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="538"/>
<source>Version %1</source>
<translation type="unfinished">Версия %1</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>Hotkey conflict</source>
<translation type="unfinished">Конфликт горячих клавиш</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>You have assigned the same hotkeys to more than one action.</source>
<translation type="unfinished">Вы присвоили одинаковые горячие клавиши для более одного действия.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>Filename character error</source>
<translation type="unfinished">Ошибка в символе имени файла</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>The filename can&apos;t contain any of the following characters: ? : \ / * &quot; &lt; &gt; |</source>
<translation type="unfinished">Имя файла не может содержать любой из следующих символов: ? : \ / * &quot; &lt; &gt; |</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>Final Destination</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>You can&apos;t take screenshots unless you enable either file saving or the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="449"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="447"/>
<source>Select where you want to save the screenshots</source>
<translation type="unfinished">Выберите, где вы хотите сохранить скриншот</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="462"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="461"/>
<source>Lightscreen - Restore Default Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="463"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="462"/>
<source>Restoring the default options will cause you to lose all of your current configuration.</source>
<translation type="unfinished">Восстановление настроек по умолчанию приведет к потере всей вашей текущей конфигурации.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="466"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="465"/>
<source>Restore</source>
<translation type="unfinished">Восстановить</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="467"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="466"/>
<source>Don&apos;t Restore</source>
<translation type="unfinished">Не восстанавливать</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="137"/>
- <location filename="../dialogs/optionsdialog.cpp" line="502"/>
- <location filename="../dialogs/optionsdialog.cpp" line="508"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="135"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="501"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="507"/>
<source>screenshot.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="504"/>
- <location filename="../dialogs/optionsdialog.cpp" line="506"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="503"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="505"/>
<source>.screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="187"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="185"/>
<source>Install &apos;OptiPNG&apos;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="14"/>
<source>Options - Lightscreen</source>
<translation type="unfinished">Настройки - Lightscreen</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="42"/>
<source>File</source>
<translation type="unfinished">Файл</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="60"/>
<source>&amp;Directory:</source>
<translation type="unfinished">&amp;Папка:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="100"/>
+ <location filename="../dialogs/optionsdialog.ui" line="96"/>
<source>The prefix for the screenshot file</source>
<translation type="unfinished">Префикс в имени файла скиншота</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="103"/>
+ <location filename="../dialogs/optionsdialog.ui" line="99"/>
<source>&amp;Filename:</source>
<translation type="unfinished">Имя &amp;файла:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="121"/>
+ <location filename="../dialogs/optionsdialog.ui" line="117"/>
<source>The prefix will be inserted before the &lt;em&gt;Naming&lt;/em&gt; in the screenshot file and it is usually used to distinguish files. It can be left blank.</source>
<translation type="unfinished">Префикс будет вставлен в &lt;em&gt;Имя&lt;/em&gt; файла скриншота и он,обычно, используется для индентификации фалов. Он может остаться пустым.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="137"/>
+ <location filename="../dialogs/optionsdialog.ui" line="133"/>
<source>(number)</source>
<translation type="unfinished">(номер)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="147"/>
+ <location filename="../dialogs/optionsdialog.ui" line="143"/>
<source>(timestamp)</source>
<translation type="unfinished">(timestamp)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="142"/>
+ <location filename="../dialogs/optionsdialog.ui" line="138"/>
<source>(date)</source>
<translation type="unfinished">(дата)</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="27"/>
<source>General</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="173"/>
+ <location filename="../dialogs/optionsdialog.ui" line="165"/>
<source>The file format for the screenshot</source>
<translation type="unfinished">Формат файла для скриншота</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="176"/>
+ <location filename="../dialogs/optionsdialog.ui" line="168"/>
<source>F&amp;ormat:</source>
<translation type="unfinished">&amp;Формат:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1059"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1051"/>
<source>D&amp;elay:</source>
<translation type="unfinished">Пау&amp;за:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1072"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1064"/>
<source>Selecting anything other than 0 in this option will cause the program to &lt;b&gt;wait&lt;/b&gt; that amount of seconds before taking the screenshot.</source>
<translation type="unfinished">Выбор любого значения кроме 0, заставит программу подождать прежде, чем сделать скриншот.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1075"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1067"/>
<source>none</source>
<translation type="unfinished">нет</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="850"/>
- <location filename="../dialogs/optionsdialog.ui" line="1084"/>
+ <location filename="../dialogs/optionsdialog.ui" line="842"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1076"/>
<source> seconds</source>
<translation type="unfinished">секунд</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="326"/>
+ <location filename="../dialogs/optionsdialog.ui" line="318"/>
<source>&amp;Run Lightscreen at system startup.</source>
<translation type="unfinished">&amp;Запустить Lightscreen при запуске системы.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="354"/>
+ <location filename="../dialogs/optionsdialog.ui" line="346"/>
<source>H&amp;ide the main window.</source>
<translation type="unfinished">Скр&amp;ыть главное окно.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="599"/>
+ <location filename="../dialogs/optionsdialog.ui" line="591"/>
<source>Sho&amp;w a system tray icon.</source>
<translation type="unfinished">Показывать иконку в &amp;системном трее.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="613"/>
+ <location filename="../dialogs/optionsdialog.ui" line="605"/>
<source>&amp;Hide Lightscreen while taking a screenshot.</source>
<translation type="unfinished">C&amp;крыть Lightscreen при создании скриншота.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="955"/>
+ <location filename="../dialogs/optionsdialog.ui" line="947"/>
<source>&amp;Magnify around the mouse in Area mode.</source>
<translation type="unfinished">Пре&amp;увеличить область захвата вокруг курсора в режиме захвата области.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="695"/>
+ <location filename="../dialogs/optionsdialog.ui" line="687"/>
<source>&amp;Language:</source>
<translation type="unfinished">&amp;Язык:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="712"/>
+ <location filename="../dialogs/optionsdialog.ui" line="704"/>
<source>Click here to go to the Lightscreen homepage to learn more about translations.</source>
<translation type="unfinished">Нажмите здесь, чтобы перейти на домашнюю страницу Lightscreen и получить больше информацию о переводе.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="715"/>
+ <location filename="../dialogs/optionsdialog.ui" line="707"/>
<source>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;More information..&lt;/a&gt;</source>
<translation type="unfinished">&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;Больше информации..&lt;/a&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="681"/>
+ <location filename="../dialogs/optionsdialog.ui" line="673"/>
<source>&amp;Notify with:</source>
<translation type="unfinished">&amp;Уведомлять:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="208"/>
+ <location filename="../dialogs/optionsdialog.ui" line="200"/>
<source>&amp;Quality:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="152"/>
+ <location filename="../dialogs/optionsdialog.ui" line="148"/>
<source>(none)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="314"/>
+ <location filename="../dialogs/optionsdialog.ui" line="306"/>
<source>System Startup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="367"/>
+ <location filename="../dialogs/optionsdialog.ui" line="359"/>
<source>Hotkeys</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="373"/>
+ <location filename="../dialogs/optionsdialog.ui" line="365"/>
<source>Captures</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="394"/>
+ <location filename="../dialogs/optionsdialog.ui" line="386"/>
<source>&amp;Fullscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="417"/>
+ <location filename="../dialogs/optionsdialog.ui" line="409"/>
<source>Window &amp;Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="446"/>
+ <location filename="../dialogs/optionsdialog.ui" line="438"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="462"/>
+ <location filename="../dialogs/optionsdialog.ui" line="454"/>
<source>Screen &amp;Area</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="475"/>
+ <location filename="../dialogs/optionsdialog.ui" line="467"/>
<source>Lightscreen Control</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="496"/>
+ <location filename="../dialogs/optionsdialog.ui" line="488"/>
<source>&amp;Open the program window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="512"/>
+ <location filename="../dialogs/optionsdialog.ui" line="504"/>
<source>Open the &amp;directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="539"/>
+ <location filename="../dialogs/optionsdialog.ui" line="531"/>
<source>Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="587"/>
+ <location filename="../dialogs/optionsdialog.ui" line="579"/>
<source>Interface</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="606"/>
+ <location filename="../dialogs/optionsdialog.ui" line="598"/>
<source>C&amp;losing hides the main window.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="628"/>
+ <location filename="../dialogs/optionsdialog.ui" line="620"/>
<source>Shows a completion message once the screenshot is saved, clicking this message takes you to the directory where the screenshot was saved.</source>
<translation type="unfinished">Показывать сообщение о выполнении, после сохранении скриншота, нажав на это сообщение Вы перейдёте в папку, где был сохранён скриншот.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="631"/>
+ <location filename="../dialogs/optionsdialog.ui" line="623"/>
<source>Tray icon Popup</source>
<translation type="unfinished">Всплывающее сообщение</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="638"/>
+ <location filename="../dialogs/optionsdialog.ui" line="630"/>
<source>&amp;Sound cue</source>
<translation type="unfinished">Зв&amp;уковой сигнал</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="898"/>
+ <location filename="../dialogs/optionsdialog.ui" line="890"/>
<source>Default action:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="941"/>
+ <location filename="../dialogs/optionsdialog.ui" line="933"/>
<source>&amp;Grab only the active monitor.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="967"/>
+ <location filename="../dialogs/optionsdialog.ui" line="959"/>
<source>Runs OptiPNG which reduces screenshot file size.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1036"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1028"/>
<source>Replace screenshots when there&apos;s an existing file.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1115"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1107"/>
<source>Clipboard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1131"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1123"/>
<source>After uploading, copy the imgur URL to the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1141"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1133"/>
<source>History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1150"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1142"/>
<source>Save my screenshot history.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1043"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1035"/>
<source>Snap area screenshots automatically (no resizing).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1230"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1222"/>
<source>Lightscreen is a simple tool to take screenshots, designed to be customizable and lightweight.&lt;br&gt;&lt;br&gt;
Created by &lt;a href=&quot;http://ckaiser.com.ar&quot;&gt;Christian Kaiser&lt;/a&gt;, using the &lt;a href=&quot;#aboutqt&quot;&gt;Qt toolkit&lt;/a&gt; for the graphical user interface.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1244"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1236"/>
<source>Released under the &lt;a href=&quot;http://www.gnu.org/licenses/gpl-2.0.html&quot;&gt;GNU General Public License&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Special thanks goes to the &lt;a href=&quot;http://lightscreen.sourceforge.net/about&quot;&gt;Donators and Translators&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="755"/>
+ <location filename="../dialogs/optionsdialog.ui" line="747"/>
<source>Maximum Size:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="806"/>
+ <location filename="../dialogs/optionsdialog.ui" line="798"/>
<source>Position:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="863"/>
+ <location filename="../dialogs/optionsdialog.ui" line="855"/>
<source> and </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="880"/>
- <location filename="../dialogs/optionsdialog.ui" line="909"/>
+ <location filename="../dialogs/optionsdialog.ui" line="872"/>
+ <location filename="../dialogs/optionsdialog.ui" line="901"/>
<source>save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="885"/>
- <location filename="../dialogs/optionsdialog.ui" line="914"/>
+ <location filename="../dialogs/optionsdialog.ui" line="877"/>
+ <location filename="../dialogs/optionsdialog.ui" line="906"/>
<source>upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="890"/>
+ <location filename="../dialogs/optionsdialog.ui" line="882"/>
<source>cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1050"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1042"/>
<source>Upload all my screenshots automatically.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1209"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1201"/>
<source>Chec&amp;k Now</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1224"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1216"/>
<source>About</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1269"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1261"/>
<source>&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Visit Sourceforge project site&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Visit Lightscreen home page&lt;/a&gt;</source>
<translation type="unfinished">&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Посетить сайт Sourceforge project&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Посетитьдомашнюю страницу Lightscreen&lt;/a&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="221"/>
+ <location filename="../dialogs/optionsdialog.ui" line="213"/>
<source>This slider goes from 0 to 100. 100 being the highest quality and 0 the lowest.&lt;br&gt;
Quality is related to file size and of course to readability and overall quality of the image.</source>
<translation type="unfinished">Бегунок перемещается от 0 до 100. 100 - это наивысшее качество, а 0 - самое низкое.&lt;br&gt;
От качества зависит размер файла, читабельность и общее качество изображения.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1124"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1116"/>
<source>&amp;Copy the screenshot to the clipboard.</source>
<translation type="unfinished">&amp;Копировать скриншот в буфер.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="948"/>
+ <location filename="../dialogs/optionsdialog.ui" line="940"/>
<source>Inc&amp;lude the cursor in the screenshot.</source>
<translation type="unfinished">Вк&amp;лючить курсор в скриншот.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="925"/>
- <location filename="../dialogs/optionsdialog.cpp" line="129"/>
- <location filename="../dialogs/optionsdialog.cpp" line="132"/>
+ <location filename="../dialogs/optionsdialog.ui" line="917"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="127"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="130"/>
<source>Screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="934"/>
+ <location filename="../dialogs/optionsdialog.ui" line="926"/>
<source>Choose where to save each screenshot (&quot;&amp;Save as&quot;).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="970"/>
+ <location filename="../dialogs/optionsdialog.ui" line="962"/>
<source>O&amp;ptimize PNG screenshots.</source>
<translation type="unfinished">О&amp;птимизация PNG скриншота.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="128"/>
+ <location filename="../dialogs/optionsdialog.ui" line="124"/>
<source>The naming is inserted after the prefix and is what makes each screenshot file unique to avoid overwriting.&lt;br /&gt;
&lt;b&gt;Numeric&lt;/b&gt;: inserts a number in sequence, 1, 2, 3..&lt;br /&gt;
&lt;b&gt;Date&lt;/b&gt;: inserts the current date and time, in the form of dd-MM-yyyy, click the &quot;wrench&quot; button on the right to customize the format.&lt;br /&gt;
&lt;b&gt;Timestamp&lt;/b&gt;: inserts a number, a Unix timestamp, which is the number of seconds passed since 1970-1-1 00:00:00.&lt;br /&gt;
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="275"/>
+ <location filename="../dialogs/optionsdialog.ui" line="267"/>
<source>&lt;u&gt;Preview&lt;/u&gt;:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="740"/>
+ <location filename="../dialogs/optionsdialog.ui" line="732"/>
<source>Screenshot Previews</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="820"/>
+ <location filename="../dialogs/optionsdialog.ui" line="812"/>
<source>Top Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="825"/>
+ <location filename="../dialogs/optionsdialog.ui" line="817"/>
<source>Top Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="830"/>
+ <location filename="../dialogs/optionsdialog.ui" line="822"/>
<source>Bottom Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="835"/>
+ <location filename="../dialogs/optionsdialog.ui" line="827"/>
<source>Bottom Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="843"/>
+ <location filename="../dialogs/optionsdialog.ui" line="835"/>
<source>Auto-close after</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1170"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1162"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1180"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1172"/>
<source>Updater</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1189"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1181"/>
<source>Check for updates regularly.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>PreviewDialog</name>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="47"/>
- <location filename="../dialogs/previewdialog.cpp" line="308"/>
+ <location filename="../dialogs/previewdialog.cpp" line="46"/>
+ <location filename="../dialogs/previewdialog.cpp" line="307"/>
<source>Screenshot Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="158"/>
+ <location filename="../dialogs/previewdialog.cpp" line="157"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="180"/>
+ <location filename="../dialogs/previewdialog.cpp" line="179"/>
<source>Save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="305"/>
+ <location filename="../dialogs/previewdialog.cpp" line="304"/>
<source>Screenshot Preview (%1 of %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="406"/>
+ <location filename="../dialogs/previewdialog.cpp" line="405"/>
<source>Preview: Closing in %1</source>
<translation type="unfinished"></translation>
</message>
</context>
-<context>
- <name>QObject</name>
- <message>
- <location filename="../main.cpp" line="67"/>
- <source>Screen</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="68"/>
- <source>Area</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="69"/>
- <source>Active Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="70"/>
- <source>Pick Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="72"/>
- <source>Upload Last</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="73"/>
- <source>View History</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="75"/>
- <source>Go to Folder</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
<context>
<name>Screenshot</name>
<message>
- <location filename="../tools/screenshot.cpp" line="217"/>
+ <location filename="../tools/screenshot.cpp" line="216"/>
<source>Save as..</source>
<translation type="unfinished">Сохранить как..</translation>
</message>
</context>
<context>
<name>Uploader</name>
<message>
- <location filename="../tools/uploader.cpp" line="105"/>
+ <location filename="../tools/uploader.cpp" line="103"/>
<source>Uploading...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="71"/>
+ <location filename="../tools/uploader.cpp" line="69"/>
<source>Screenshot file not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="74"/>
+ <location filename="../tools/uploader.cpp" line="72"/>
<source>Could not reach imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="77"/>
+ <location filename="../tools/uploader.cpp" line="75"/>
<source>You have exceeded your upload quota.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="80"/>
+ <location filename="../tools/uploader.cpp" line="78"/>
<source>Upload failed for %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>WindowPicker</name>
<message>
- <location filename="../tools/windowpicker.cpp" line="52"/>
+ <location filename="../tools/windowpicker.cpp" line="50"/>
<source>Lightscreen Window Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="55"/>
+ <location filename="../tools/windowpicker.cpp" line="53"/>
<source>Grab the window picker by clicking and holding down the mouse button, then drag it to the window of your choice and release it to capture.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="65"/>
+ <location filename="../tools/windowpicker.cpp" line="63"/>
<source> - Start dragging to select windows</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="72"/>
+ <location filename="../tools/windowpicker.cpp" line="70"/>
<source>Close</source>
<translation type="unfinished">Закрыть</translation>
</message>
</context>
</TS>
diff --git a/translations/spanish.qm b/translations/spanish.qm
index bca29c5..4df64e8 100644
Binary files a/translations/spanish.qm and b/translations/spanish.qm differ
diff --git a/translations/spanish.ts b/translations/spanish.ts
index 570813e..9fdd800 100644
--- a/translations/spanish.ts
+++ b/translations/spanish.ts
@@ -1,1191 +1,1191 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="es">
<context>
<name>AreaDialog</name>
<message>
- <location filename="../dialogs/areadialog.cpp" line="56"/>
+ <location filename="../dialogs/areadialog.cpp" line="54"/>
<source>Lightscreen Area Mode</source>
<translation>Lightscreen - Modo de Área</translation>
</message>
<message>
- <location filename="../dialogs/areadialog.cpp" line="363"/>
+ <location filename="../dialogs/areadialog.cpp" line="361"/>
<source>Lightscreen area mode:
Use your mouse to draw a rectangle to capture.
Press any key or right click to exit.</source>
<translation>Modo de área de pantalla:
Use el mouse para dibujar un rectangulo a capturar.
Presione cualquier tecla o el botón derecho del mouse para salir.</translation>
</message>
</context>
<context>
<name>HistoryDialog</name>
<message>
<location filename="../dialogs/historydialog.ui" line="14"/>
<source>Screenshot History</source>
<translation>Historial de Capturas</translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="33"/>
<source>Type here to filter through the screenshots in the list.</source>
<translation>Escriba aqui para filtrar las capturas de la lista.</translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="43"/>
<source>Double click the path to open the image with the default picture viewer, you can also double-click the URL to open it on your web browser.
Right click items to get access to more options.</source>
<translation>Haga doble click en el nombre de archivo para abrir la imagen y en la dirección URL para abirla en su navegador.
Haga click con el botón derecho del mouse para acceder a mas opciones.</translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="70"/>
<source>Clear</source>
<translation>Limpiar</translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="93"/>
<source>Upload</source>
<translation>Subir</translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="100"/>
<source>Close</source>
<translation>Cerrar</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="32"/>
- <location filename="../dialogs/historydialog.cpp" line="245"/>
- <location filename="../dialogs/historydialog.cpp" line="256"/>
- <location filename="../dialogs/historydialog.cpp" line="262"/>
+ <location filename="../dialogs/historydialog.cpp" line="28"/>
+ <location filename="../dialogs/historydialog.cpp" line="241"/>
+ <location filename="../dialogs/historydialog.cpp" line="252"/>
+ <location filename="../dialogs/historydialog.cpp" line="258"/>
<source>Filter..</source>
<translation>Filtrar..</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="112"/>
+ <location filename="../dialogs/historydialog.cpp" line="108"/>
<source>Clearing the screenshot history</source>
<translation>Limpiando el historial de capturas</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="113"/>
+ <location filename="../dialogs/historydialog.cpp" line="109"/>
<source>Are you sure you want to clear your entire screenshot history?
This cannot be undone.</source>
<translation>Esta seguro que desea borrar todo su historial de capturas?
No podra volver atras.</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="114"/>
+ <location filename="../dialogs/historydialog.cpp" line="110"/>
<source>Clear History</source>
<translation>Limpiar Historial</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="115"/>
+ <location filename="../dialogs/historydialog.cpp" line="111"/>
<source>Don&apos;t Clear</source>
<translation>No Limpiar</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy Path</source>
<translation>Copiar Ruta</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy URL</source>
<translation>Copiar URL</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="133"/>
+ <location filename="../dialogs/historydialog.cpp" line="129"/>
<source>Delete from imgur.com</source>
<translation>Borrar en imgur.com</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="134"/>
+ <location filename="../dialogs/historydialog.cpp" line="130"/>
<source>Open Location</source>
<translation>Abir Carpeta</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="136"/>
+ <location filename="../dialogs/historydialog.cpp" line="132"/>
<source>Remove history entry</source>
<translation>Remover entrada de historial</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="39"/>
+ <location filename="../dialogs/historydialog.cpp" line="35"/>
<source>Screenshot</source>
<translation>Captura</translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="40"/>
+ <location filename="../dialogs/historydialog.cpp" line="36"/>
<source>URL</source>
<translation>URL</translation>
</message>
</context>
<context>
<name>HotkeyWidget</name>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="36"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="34"/>
<source>Click to select hotkey...</source>
<translation>Click para elegir atajo...</translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="86"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="84"/>
<source>Type your hotkey</source>
<translation>Escriba su atajo</translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="95"/>
- <location filename="../widgets/hotkeywidget.cpp" line="116"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="93"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="114"/>
<source>Invalid hotkey</source>
<translation>Atajo invalido</translation>
</message>
</context>
+<context>
+ <name>JumpList</name>
+ <message>
+ <location filename="../main.cpp" line="65"/>
+ <source>Screen</source>
+ <translation>Pantalla</translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="66"/>
+ <source>Area</source>
+ <translation>Area</translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="67"/>
+ <source>Active Window</source>
+ <translation>Ventana Activa</translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="68"/>
+ <source>Pick Window</source>
+ <translation>Elegir Ventana</translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="70"/>
+ <source>Upload Last</source>
+ <translation>Subir Última</translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="71"/>
+ <source>View History</source>
+ <translation>Ver Historial</translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="73"/>
+ <source>Go to Folder</source>
+ <translation>Ir a Carpeta</translation>
+ </message>
+</context>
<context>
<name>LightscreenWindow</name>
<message>
- <location filename="../lightscreenwindow.cpp" line="237"/>
- <location filename="../lightscreenwindow.cpp" line="577"/>
- <location filename="../lightscreenwindow.cpp" line="698"/>
- <location filename="../lightscreenwindow.cpp" line="724"/>
+ <location filename="../lightscreenwindow.cpp" line="235"/>
+ <location filename="../lightscreenwindow.cpp" line="575"/>
+ <location filename="../lightscreenwindow.cpp" line="696"/>
+ <location filename="../lightscreenwindow.cpp" line="722"/>
<source>Lightscreen</source>
<translation>Lightscreen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="238"/>
+ <location filename="../lightscreenwindow.cpp" line="236"/>
<source>You have chosen to hide Lightscreen when there&apos;s no system tray icon, so you will not be able to access the program &lt;b&gt;unless you have selected a hotkey to do so&lt;/b&gt;.&lt;br&gt;What do you want to do?</source>
<translation>Ha elegido esconder Lightscreen cuando este no tiene un ícono en la barra de tareas, por lo que no podrá acceder al programa &lt;b&gt;a menos que haya seleccionado un atajo para hacerlo.&lt;/b&gt;.&lt;br&gt;¿Qué desea hacer?</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="243"/>
+ <location filename="../lightscreenwindow.cpp" line="241"/>
<source>Hide but enable tray</source>
<translation>Esconder pero habilitar ícono</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="245"/>
+ <location filename="../lightscreenwindow.cpp" line="243"/>
<source>Hide and don&apos;t warn</source>
<translation>Esconder y no advertir</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="247"/>
+ <location filename="../lightscreenwindow.cpp" line="245"/>
<source>Just hide</source>
<translation>Solo esconder</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="430"/>
<source>Are you sure you want to quit?</source>
<translation>Esta seguro que desea salir?</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="636"/>
+ <location filename="../lightscreenwindow.cpp" line="634"/>
<source>Saved to &quot;%1&quot;</source>
<translation>Guardada en &quot;%1&quot;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="640"/>
+ <location filename="../lightscreenwindow.cpp" line="638"/>
<source>The screenshot was not taken</source>
<translation>La captura no fue realizada</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>%1 uploaded</source>
<translation>%1 subido</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>Click here to go to %1</source>
<translation>Haga click aqui para ir a %1</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="653"/>
+ <location filename="../lightscreenwindow.cpp" line="651"/>
<source>Upload error</source>
<translation>Error de subida</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="882"/>
+ <location filename="../lightscreenwindow.cpp" line="880"/>
<source>Active &amp;Window</source>
<translation>&amp;Ventana Activa</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="885"/>
+ <location filename="../lightscreenwindow.cpp" line="883"/>
<source>&amp;Pick Window</source>
<translation>&amp;Elegir Ventana</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="276"/>
- <location filename="../lightscreenwindow.cpp" line="900"/>
+ <location filename="../lightscreenwindow.cpp" line="274"/>
+ <location filename="../lightscreenwindow.cpp" line="898"/>
<source>&amp;Upload last</source>
- <translation>&amp;Subir ultima</translation>
+ <translation>&amp;Subir última</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="277"/>
- <location filename="../lightscreenwindow.cpp" line="901"/>
+ <location filename="../lightscreenwindow.cpp" line="275"/>
+ <location filename="../lightscreenwindow.cpp" line="899"/>
<source>Upload the last screenshot you took to imgur.com</source>
- <translation>Subir la ultima captura que tomó a imgur.com</translation>
+ <translation>Subir la última captura que tomó a imgur.com</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="287"/>
+ <location filename="../lightscreenwindow.cpp" line="285"/>
<source>View &amp;History</source>
<translation>Ver &amp;Historial</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="694"/>
+ <location filename="../lightscreenwindow.cpp" line="692"/>
<source>%1 uploading - Lightscreen</source>
<translation>%1 subiendo - Lightscreen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="780"/>
+ <location filename="../lightscreenwindow.cpp" line="778"/>
<source>%1% of %2 uploads - Lightscreen</source>
<translation>%1 de %2 subidas - Lightscreen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="783"/>
+ <location filename="../lightscreenwindow.cpp" line="781"/>
<source>%1% - Lightscreen</source>
<translation>%1% - Lightscreen</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="910"/>
+ <location filename="../lightscreenwindow.cpp" line="908"/>
<source>View History</source>
<translation>Ver Historial</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="274"/>
- <location filename="../lightscreenwindow.cpp" line="930"/>
+ <location filename="../lightscreenwindow.cpp" line="272"/>
+ <location filename="../lightscreenwindow.cpp" line="928"/>
<source>Upload</source>
<translation>Subida</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Closed to tray</source>
<translation>Cerrado a barra de tareas </translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Lightscreen will keep running, you can disable this in the options menu.</source>
<translation>Lightscreen continuará ejecutandose, esto puede ser deshabilitado en el menú de opciones.</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="375"/>
- <location filename="../lightscreenwindow.cpp" line="378"/>
+ <location filename="../lightscreenwindow.cpp" line="373"/>
+ <location filename="../lightscreenwindow.cpp" line="376"/>
<source>Success!</source>
<translation>Éxito!</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="389"/>
+ <location filename="../lightscreenwindow.cpp" line="387"/>
<source>Cancelled!</source>
<translation>Cancelada!</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="418"/>
+ <location filename="../lightscreenwindow.cpp" line="416"/>
<source>processing</source>
<translation>procesando</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="423"/>
+ <location filename="../lightscreenwindow.cpp" line="421"/>
<source>uploading</source>
<translation>subiendo</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="426"/>
+ <location filename="../lightscreenwindow.cpp" line="424"/>
<source>processing and uploading</source>
<translation>procesando y subiendo</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="433"/>
+ <location filename="../lightscreenwindow.cpp" line="431"/>
<source>Lightscreen is currently %1 screenshots. Are you sure you want to quit?</source>
<translation>Lightscreen actualmente esta %1 capturas. Esta seguro que desea salir?</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="559"/>
+ <location filename="../lightscreenwindow.cpp" line="557"/>
<source>Some hotkeys could not be registered, they might already be in use</source>
<translation>Algunos atajos no pudieron ser registrados, puede que ya estén en uso</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="574"/>
+ <location filename="../lightscreenwindow.cpp" line="572"/>
<source>&lt;br&gt;&lt;i&gt;What do you want to do?&lt;/i&gt;</source>
<translation>&lt;br&gt;&lt;i&gt;Que desea hacer?&lt;/i&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="280"/>
- <location filename="../lightscreenwindow.cpp" line="904"/>
+ <location filename="../lightscreenwindow.cpp" line="278"/>
+ <location filename="../lightscreenwindow.cpp" line="902"/>
<source>&amp;Cancel upload</source>
<translation>&amp;Cancelar subida</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="281"/>
- <location filename="../lightscreenwindow.cpp" line="905"/>
+ <location filename="../lightscreenwindow.cpp" line="279"/>
+ <location filename="../lightscreenwindow.cpp" line="903"/>
<source>Cancel the currently uploading screenshots</source>
<translation>Cancelar las subidas en curso</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Do you want to cancel all screenshot uploads?</source>
<translation>Desea cancelar todas las subidas en curso?</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="876"/>
+ <location filename="../lightscreenwindow.cpp" line="874"/>
<source>Show&amp;/Hide</source>
<translation>Mostrar&amp;/Esconder</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="665"/>
- <location filename="../lightscreenwindow.cpp" line="923"/>
+ <location filename="../lightscreenwindow.cpp" line="663"/>
+ <location filename="../lightscreenwindow.cpp" line="921"/>
<source>Screenshot</source>
<translation>Captura</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Upload cancel</source>
<translation>Cancelar subida</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Cancel</source>
<translation>Cancelar</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Don&apos;t Cancel</source>
<translation>No Cancelar</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="879"/>
+ <location filename="../lightscreenwindow.cpp" line="877"/>
<source>&amp;Screen</source>
<translation>&amp;Pantalla</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="435"/>
+ <location filename="../lightscreenwindow.cpp" line="433"/>
<source>Don&apos;t Quit</source>
<translation>No Salir</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="382"/>
- <location filename="../lightscreenwindow.cpp" line="385"/>
+ <location filename="../lightscreenwindow.cpp" line="380"/>
+ <location filename="../lightscreenwindow.cpp" line="383"/>
<source>Failed!</source>
<translation>Error!</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="562"/>
+ <location filename="../lightscreenwindow.cpp" line="560"/>
<source>&lt;br&gt;The failed hotkeys are the following:</source>
<translation>&lt;br&gt;Las hotkeys en uso son las siguientes:</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="571"/>
+ <location filename="../lightscreenwindow.cpp" line="569"/>
<source>&lt;br&gt;The failed hotkey is &lt;b&gt;%1&lt;/b&gt;</source>
<translation>&lt;br&gt;El atajo que ha fallado es &lt;b&gt;%1&lt;/b&gt;</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="580"/>
+ <location filename="../lightscreenwindow.cpp" line="578"/>
<source>Change</source>
<translation>Cambiar</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="581"/>
+ <location filename="../lightscreenwindow.cpp" line="579"/>
<source>Disable</source>
<translation>Deshabilitar</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="434"/>
- <location filename="../lightscreenwindow.cpp" line="582"/>
+ <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="580"/>
<source>Quit</source>
<translation>Salir</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="888"/>
+ <location filename="../lightscreenwindow.cpp" line="886"/>
<source>&amp;Area</source>
<translation>&amp;Área</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="914"/>
+ <location filename="../lightscreenwindow.cpp" line="912"/>
<source>View &amp;Options</source>
<translation>Ver las &amp;Opciones</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="917"/>
+ <location filename="../lightscreenwindow.cpp" line="915"/>
<source>&amp;Go to Folder</source>
<translation>&amp;Ir a la carpeta</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="641"/>
+ <location filename="../lightscreenwindow.cpp" line="639"/>
<source>An error occurred.</source>
<translation>Ha ocurrido un error.</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="920"/>
+ <location filename="../lightscreenwindow.cpp" line="918"/>
<source>&amp;Quit</source>
<translation>&amp;Salir</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="725"/>
+ <location filename="../lightscreenwindow.cpp" line="723"/>
<source>There&apos;s a new version of Lightscreen available.&lt;br&gt;Would you like to see more information?&lt;br&gt;(&lt;em&gt;You can turn this notification off&lt;/em&gt;)</source>
<translation>Hay una nueva versión de Lightscreen disponible.&lt;br&gt;Desea ver más información?&lt;br&gt;(&lt;em&gt;Puede desactivar esta notificación&lt;/em&gt;)</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="729"/>
+ <location filename="../lightscreenwindow.cpp" line="727"/>
<source>Turn Off</source>
<translation>Desactivar</translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="730"/>
+ <location filename="../lightscreenwindow.cpp" line="728"/>
<source>Remind Me Later</source>
<translation>Más Tarde</translation>
</message>
</context>
<context>
<name>LightscreenWindowClass</name>
<message>
<location filename="../lightscreenwindow.ui" line="20"/>
<source>Lightscreen</source>
<translation>Lightscreen</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="49"/>
<source>Area capture</source>
<translation>Captura de area</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="52"/>
<source>Capture a specific area of your desktop, resize and move it around!</source>
<translation>Captura un area específica del escritorio, cambiele el tamaño y muevala!</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="64"/>
<source>Ctrl+A</source>
<translation>Ctrl+A</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="80"/>
<source>Pick window</source>
<translation>Elegir ventana</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="83"/>
<source>Drop the picker onto a window to capture it.</source>
<translation>Arraste el blanco hacia una ventana para capturarla.</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="92"/>
<source>Ctrl+P</source>
<translation>Ctrl+E</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="108"/>
<source>Configure Lightscreen</source>
<translation>Configurar Lightscreen</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="111"/>
<source>&amp;Options</source>
<translation>&amp;Opciones</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="114"/>
<source>Ctrl+O</source>
<translation>Ctrl+O</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="130"/>
<source>Open the current Screenshot folder</source>
<translation>Abrir la carpeta de Capturas</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="133"/>
<source>&amp;Folder</source>
<translation>&amp;Carpeta</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="136"/>
<source>Ctrl+F</source>
<translation>Ctrl+C</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="152"/>
<source>Imgur upload controls</source>
<translation>Subida a imgur</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="155"/>
<source>&amp;Upload</source>
<translation>&amp;Subir</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="158"/>
<source>Ctrl+U</source>
<translation>Ctrl+S</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="174"/>
<source>Fullscreen capture</source>
<translation>Captura de pantalla completa</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="177"/>
<source>Take a screenshot of your entire desktop.</source>
<translation>Captura la totalidad de su pantalla.</translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="186"/>
<source>Ctrl+S</source>
<translation>Ctrl+P</translation>
</message>
</context>
<context>
<name>NamingDialog</name>
<message>
<location filename="../dialogs/namingdialog.ui" line="14"/>
<source>Naming Options - Lightscreen</source>
<translation>Opciones de Nombre - Lightscreen</translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="45"/>
<source>Leading zeros:</source>
<translation>Ceros a la izquierda:</translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="100"/>
<source>Date Format:</source>
<translation>Formato de fecha:</translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="167"/>
<source>Flip naming.</source>
<translation>Dar vuelta el nombre.</translation>
</message>
</context>
<context>
<name>OptionsDialog</name>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="520"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="522"/>
<source>Restore Defaults</source>
<translation>Restablecer por defecto</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="536"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="538"/>
<source>Version %1</source>
<translation>Versión %1</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>Hotkey conflict</source>
<translation>Conflicto de atajos</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>You have assigned the same hotkeys to more than one action.</source>
<translation>Has asignado el mismo atajo a más de una acción.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>Filename character error</source>
<translation>Error de nombre de archivo</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>The filename can&apos;t contain any of the following characters: ? : \ / * &quot; &lt; &gt; |</source>
<translation>El nombre de archivo no puede contener ninguno de los siguientes caracteres: ? : \ / * &quot; &lt; &gt; |</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>Final Destination</source>
<translation>Destino Final</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>You can&apos;t take screenshots unless you enable either file saving or the clipboard.</source>
<translation>No puede realizar capturas a menos que active guardar archivos o copiar al portapeles.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="449"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="447"/>
<source>Select where you want to save the screenshots</source>
<translation>Seleccione donde quiere guardar las capturas</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="462"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="461"/>
<source>Lightscreen - Restore Default Options</source>
<translation>Lightscreen - Restablecer Opciones por Defecto</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="137"/>
- <location filename="../dialogs/optionsdialog.cpp" line="502"/>
- <location filename="../dialogs/optionsdialog.cpp" line="508"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="135"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="501"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="507"/>
<source>screenshot.</source>
<translation>captura.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="504"/>
- <location filename="../dialogs/optionsdialog.cpp" line="506"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="503"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="505"/>
<source>.screenshot</source>
<translation>.captura</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="187"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="185"/>
<source>Install &apos;OptiPNG&apos;</source>
<translation>Instale &apos;OptiPNG&apos;</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="14"/>
<source>Options - Lightscreen</source>
<translation>Opciones - Lightscreen</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="27"/>
<source>General</source>
<translation>General</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="100"/>
+ <location filename="../dialogs/optionsdialog.ui" line="96"/>
<source>The prefix for the screenshot file</source>
<translation>El prefijo para la captura</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="128"/>
+ <location filename="../dialogs/optionsdialog.ui" line="124"/>
<source>The naming is inserted after the prefix and is what makes each screenshot file unique to avoid overwriting.&lt;br /&gt;
&lt;b&gt;Numeric&lt;/b&gt;: inserts a number in sequence, 1, 2, 3..&lt;br /&gt;
&lt;b&gt;Date&lt;/b&gt;: inserts the current date and time, in the form of dd-MM-yyyy, click the &quot;wrench&quot; button on the right to customize the format.&lt;br /&gt;
&lt;b&gt;Timestamp&lt;/b&gt;: inserts a number, a Unix timestamp, which is the number of seconds passed since 1970-1-1 00:00:00.&lt;br /&gt;
</source>
<translation>El nombre es insertado despues del prefijo y es lo que hace unico a cada archivo de captura.&lt;br&gt;
&lt;b&gt;Numero&lt;/b&gt;: inserta un numero secuencial: 1, 2, 3...&lt;br&gt;
&lt;b&gt;Fecha&lt;/b&gt;: inserta la fecha y hora actual, en formato dd-MM-yyyy, haga click en el botón de configuracion a la derecha para configurar el formato.&lt;br&gt;
&lt;b&gt;Tiempo Unix&lt;/b&gt;: inserta la cantidad de segundos desde 1970-1-1 00:00:00 (timestamp de Unix)&lt;br&gt;
</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="137"/>
+ <location filename="../dialogs/optionsdialog.ui" line="133"/>
<source>(number)</source>
<translation>(numero)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="147"/>
+ <location filename="../dialogs/optionsdialog.ui" line="143"/>
<source>(timestamp)</source>
<translation>(tiempo unix)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="173"/>
+ <location filename="../dialogs/optionsdialog.ui" line="165"/>
<source>The file format for the screenshot</source>
<translation>El formato de la captura</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="208"/>
+ <location filename="../dialogs/optionsdialog.ui" line="200"/>
<source>&amp;Quality:</source>
<translation>Cali&amp;dad:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="152"/>
+ <location filename="../dialogs/optionsdialog.ui" line="148"/>
<source>(none)</source>
<translation>(ninguno)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="314"/>
+ <location filename="../dialogs/optionsdialog.ui" line="306"/>
<source>System Startup</source>
<translation>Inicio del Sistema</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="367"/>
+ <location filename="../dialogs/optionsdialog.ui" line="359"/>
<source>Hotkeys</source>
<translation>Atajos</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="373"/>
+ <location filename="../dialogs/optionsdialog.ui" line="365"/>
<source>Captures</source>
<translation>Capturas</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="394"/>
+ <location filename="../dialogs/optionsdialog.ui" line="386"/>
<source>&amp;Fullscreen</source>
<translation>&amp;Pantalla Completa</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="417"/>
+ <location filename="../dialogs/optionsdialog.ui" line="409"/>
<source>Window &amp;Picker</source>
<translation>Elegir &amp;Ventana</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="446"/>
+ <location filename="../dialogs/optionsdialog.ui" line="438"/>
<source>Active &amp;Window</source>
<translation>Ventana &amp;Activa</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="462"/>
+ <location filename="../dialogs/optionsdialog.ui" line="454"/>
<source>Screen &amp;Area</source>
<translation>Á&amp;rea de Pantalla</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="475"/>
+ <location filename="../dialogs/optionsdialog.ui" line="467"/>
<source>Lightscreen Control</source>
<translation>Control del Lightscreen</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="496"/>
+ <location filename="../dialogs/optionsdialog.ui" line="488"/>
<source>&amp;Open the program window</source>
<translation>A&amp;brir la ventana del programa</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="512"/>
+ <location filename="../dialogs/optionsdialog.ui" line="504"/>
<source>Open the &amp;directory</source>
<translation>Abrir el &amp;directorio</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="539"/>
+ <location filename="../dialogs/optionsdialog.ui" line="531"/>
<source>Options</source>
<translation>Opciones</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="587"/>
+ <location filename="../dialogs/optionsdialog.ui" line="579"/>
<source>Interface</source>
<translation>Interface</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="606"/>
+ <location filename="../dialogs/optionsdialog.ui" line="598"/>
<source>C&amp;losing hides the main window.</source>
<translation>Cerrar esconde &amp;la ventana principal.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="898"/>
+ <location filename="../dialogs/optionsdialog.ui" line="890"/>
<source>Default action:</source>
<translation>Acción por defecto:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="925"/>
- <location filename="../dialogs/optionsdialog.cpp" line="129"/>
- <location filename="../dialogs/optionsdialog.cpp" line="132"/>
+ <location filename="../dialogs/optionsdialog.ui" line="917"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="127"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="130"/>
<source>Screenshots</source>
<translation>Capturas</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="934"/>
+ <location filename="../dialogs/optionsdialog.ui" line="926"/>
<source>Choose where to save each screenshot (&quot;&amp;Save as&quot;).</source>
<translation>Elegir cuando y &amp;donde guardar cada captura (&quot;Guardar como&quot;).</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1036"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1028"/>
<source>Replace screenshots when there&apos;s an existing file.</source>
<translation>Reemplazar captura cuando el archivo ya existe.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1115"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1107"/>
<source>Clipboard</source>
<translation>Portapapeles</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1131"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1123"/>
<source>After uploading, copy the imgur URL to the clipboard.</source>
<translation>Despues de subir, copiar la dirección de imgur al portapeles.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1141"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1133"/>
<source>History</source>
<translation>Historial</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1150"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1142"/>
<source>Save my screenshot history.</source>
<translation>Guardar un historial de capturas.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1043"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1035"/>
<source>Snap area screenshots automatically (no resizing).</source>
<translation>Capturar áreas automaticamente (sin ajustar tamaño).</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1230"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1222"/>
<source>Lightscreen is a simple tool to take screenshots, designed to be customizable and lightweight.&lt;br&gt;&lt;br&gt;
Created by &lt;a href=&quot;http://ckaiser.com.ar&quot;&gt;Christian Kaiser&lt;/a&gt;, using the &lt;a href=&quot;#aboutqt&quot;&gt;Qt toolkit&lt;/a&gt; for the graphical user interface.</source>
<translation>Lightscreen es una herramienta simple para sacar capturas de pantalla, diseñada para ser configurable y liviana.&lt;br&gt;&lt;br&gt;
Creada por &lt;a href=&quot;http://ckaiser.com.ar&quot;&gt;Christian Kaiser&lt;/a&gt;, usando las &lt;a href=&quot;#aboutqt&quot;&gt;herramientas Qt&lt;/a&gt; para la interface grafica.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1244"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1236"/>
<source>Released under the &lt;a href=&quot;http://www.gnu.org/licenses/gpl-2.0.html&quot;&gt;GNU General Public License&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Special thanks goes to the &lt;a href=&quot;http://lightscreen.sourceforge.net/about&quot;&gt;Donators and Translators&lt;/a&gt;.</source>
<translation>Bajo la licencia &lt;a href=&quot;http://www.gnu.org/licenses/gpl-2.0.html&quot;&gt;GNU General Public License&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Un agradecimiento especial a los &lt;a href=&quot;http://lightscreen.sourceforge.net/about&quot;&gt;Donadores y Traductores&lt;/a&gt;.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="755"/>
+ <location filename="../dialogs/optionsdialog.ui" line="747"/>
<source>Maximum Size:</source>
<translation>Tamaño Máximo:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="275"/>
+ <location filename="../dialogs/optionsdialog.ui" line="267"/>
<source>&lt;u&gt;Preview&lt;/u&gt;:</source>
<translation>&lt;u&gt;Vista Previa&lt;/u&gt;:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="806"/>
+ <location filename="../dialogs/optionsdialog.ui" line="798"/>
<source>Position:</source>
<translation>Posicion:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="863"/>
+ <location filename="../dialogs/optionsdialog.ui" line="855"/>
<source> and </source>
<translation> y </translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="880"/>
- <location filename="../dialogs/optionsdialog.ui" line="909"/>
+ <location filename="../dialogs/optionsdialog.ui" line="872"/>
+ <location filename="../dialogs/optionsdialog.ui" line="901"/>
<source>save</source>
<translation>guardar</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="885"/>
- <location filename="../dialogs/optionsdialog.ui" line="914"/>
+ <location filename="../dialogs/optionsdialog.ui" line="877"/>
+ <location filename="../dialogs/optionsdialog.ui" line="906"/>
<source>upload</source>
<translation>subir</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="890"/>
+ <location filename="../dialogs/optionsdialog.ui" line="882"/>
<source>cancel</source>
<translation>cancelar</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1050"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1042"/>
<source>Upload all my screenshots automatically.</source>
<translation>Subir todas mis capturas automaticamente.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1209"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1201"/>
<source>Chec&amp;k Now</source>
<translation>Buscar A&amp;hora</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1224"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1216"/>
<source>About</source>
<translation>Acerca De</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1269"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1261"/>
<source>&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Visit Sourceforge project site&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Visit Lightscreen home page&lt;/a&gt;</source>
<translation>&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Visite la pagina del proyecto en SourceForge&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Visite la pagina principal del Lightscreen&lt;/a&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="463"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="462"/>
<source>Restoring the default options will cause you to lose all of your current configuration.</source>
<translation>Restablecer las opciones por defecto hara que pierda toda su configuración actual.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="466"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="465"/>
<source>Restore</source>
<translation>Restablecer</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="467"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="466"/>
<source>Don&apos;t Restore</source>
<translation>No Restablecer</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="850"/>
- <location filename="../dialogs/optionsdialog.ui" line="1084"/>
+ <location filename="../dialogs/optionsdialog.ui" line="842"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1076"/>
<source> seconds</source>
<translation> segundos</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="599"/>
+ <location filename="../dialogs/optionsdialog.ui" line="591"/>
<source>Sho&amp;w a system tray icon.</source>
<translation>Mo&amp;strar un ícono en la barra de tareas.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="613"/>
+ <location filename="../dialogs/optionsdialog.ui" line="605"/>
<source>&amp;Hide Lightscreen while taking a screenshot.</source>
<translation>Esconder Lig&amp;htscreen mientras se captura.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="712"/>
+ <location filename="../dialogs/optionsdialog.ui" line="704"/>
<source>Click here to go to the Lightscreen homepage to learn more about translations.</source>
<translation>Haz click aquí para ir a la página del Lightscreen y aprender mas sobre traducciones.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="715"/>
+ <location filename="../dialogs/optionsdialog.ui" line="707"/>
<source>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;More information..&lt;/a&gt;</source>
<translation>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;Más información..&lt;/a&gt;</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="221"/>
+ <location filename="../dialogs/optionsdialog.ui" line="213"/>
<source>This slider goes from 0 to 100. 100 being the highest quality and 0 the lowest.&lt;br&gt;
Quality is related to file size and of course to readability and overall quality of the image.</source>
<translation>Este slider va desde a 0 a 100. 100 siendo la mayor calidad y 0 la más baja.&lt;br&gt;
La calidad tiene relacion con el tamaño del archivo y la legibilidad/calidad general de la imagen.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="121"/>
+ <location filename="../dialogs/optionsdialog.ui" line="117"/>
<source>The prefix will be inserted before the &lt;em&gt;Naming&lt;/em&gt; in the screenshot file and it is usually used to distinguish files. It can be left blank.</source>
<translation>El prefijo sera insertado antes del &lt;em&gt;Nombre&lt;/em&gt; en la captura y es generalmente usado para distinguir los archivos. Puede ser dejado en blanco.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1072"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1064"/>
<source>Selecting anything other than 0 in this option will cause the program to &lt;b&gt;wait&lt;/b&gt; that amount of seconds before taking the screenshot.</source>
<translation>Seleccionar algo que no sea 0 causara que el programa &lt;b&gt;espere&lt;/b&gt; esa cantidad de segundos antes de sacar la captura.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="955"/>
+ <location filename="../dialogs/optionsdialog.ui" line="947"/>
<source>&amp;Magnify around the mouse in Area mode.</source>
<translation>Aumentar alrededor del &amp;mouse en modo Área.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="695"/>
+ <location filename="../dialogs/optionsdialog.ui" line="687"/>
<source>&amp;Language:</source>
<translation>&amp;Idioma:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="681"/>
+ <location filename="../dialogs/optionsdialog.ui" line="673"/>
<source>&amp;Notify with:</source>
<translation>&amp;Noficar con:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="631"/>
+ <location filename="../dialogs/optionsdialog.ui" line="623"/>
<source>Tray icon Popup</source>
<translation>Popup en el ícono de barra de tareas</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="638"/>
+ <location filename="../dialogs/optionsdialog.ui" line="630"/>
<source>&amp;Sound cue</source>
<translation>&amp;Sonido</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="42"/>
<source>File</source>
<translation>Archivo</translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="60"/>
<source>&amp;Directory:</source>
<translation>&amp;Directorio:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="103"/>
+ <location filename="../dialogs/optionsdialog.ui" line="99"/>
<source>&amp;Filename:</source>
<translation>&amp;Archivo:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="142"/>
+ <location filename="../dialogs/optionsdialog.ui" line="138"/>
<source>(date)</source>
<translation>(fecha)</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="176"/>
+ <location filename="../dialogs/optionsdialog.ui" line="168"/>
<source>F&amp;ormat:</source>
<translation>F&amp;ormato:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1059"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1051"/>
<source>D&amp;elay:</source>
<translation>R&amp;etraso:</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1075"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1067"/>
<source>none</source>
<translation>ninguno</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="326"/>
+ <location filename="../dialogs/optionsdialog.ui" line="318"/>
<source>&amp;Run Lightscreen at system startup.</source>
<translation>Ejecuta&amp;r Lightscreen cuando inicia el sistema.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="354"/>
+ <location filename="../dialogs/optionsdialog.ui" line="346"/>
<source>H&amp;ide the main window.</source>
<translation>Esconder la ventana pr&amp;incipal.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1124"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1116"/>
<source>&amp;Copy the screenshot to the clipboard.</source>
<translation>&amp;Copiar la captura al portapeles.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="948"/>
+ <location filename="../dialogs/optionsdialog.ui" line="940"/>
<source>Inc&amp;lude the cursor in the screenshot.</source>
<translation>Inc&amp;luir el cursor en la captura.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="970"/>
+ <location filename="../dialogs/optionsdialog.ui" line="962"/>
<source>O&amp;ptimize PNG screenshots.</source>
<translation>O&amp;ptimizar capturas PNG.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="941"/>
+ <location filename="../dialogs/optionsdialog.ui" line="933"/>
<source>&amp;Grab only the active monitor.</source>
<translation>&amp;Tomar solo el monitor activo.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="967"/>
+ <location filename="../dialogs/optionsdialog.ui" line="959"/>
<source>Runs OptiPNG which reduces screenshot file size.</source>
<translation>Ejecuta OptiPNG el cual reduce el tamaño de archivo de las capturas.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="740"/>
+ <location filename="../dialogs/optionsdialog.ui" line="732"/>
<source>Screenshot Previews</source>
<translation>Vista Previa de Capturas</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="820"/>
+ <location filename="../dialogs/optionsdialog.ui" line="812"/>
<source>Top Left</source>
<translation>Arriba-Izquierda</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="825"/>
+ <location filename="../dialogs/optionsdialog.ui" line="817"/>
<source>Top Right</source>
<translation>Abajo-Derecha</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="830"/>
+ <location filename="../dialogs/optionsdialog.ui" line="822"/>
<source>Bottom Left</source>
<translation>Abajo-Izquierda</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="835"/>
+ <location filename="../dialogs/optionsdialog.ui" line="827"/>
<source>Bottom Right</source>
<translation>Abajo-Derecha</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="843"/>
+ <location filename="../dialogs/optionsdialog.ui" line="835"/>
<source>Auto-close after</source>
<translation>Cerrar despues de</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1170"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1162"/>
<source>View &amp;History</source>
<translation>Ver &amp;Historial</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1180"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1172"/>
<source>Updater</source>
<translation>Actualizador</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1189"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1181"/>
<source>Check for updates regularly.</source>
<translation>Buscar actualizaciones periodicamente.</translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="628"/>
+ <location filename="../dialogs/optionsdialog.ui" line="620"/>
<source>Shows a completion message once the screenshot is saved, clicking this message takes you to the directory where the screenshot was saved.</source>
<translation>Muestra un mensaje al completar una captura, clickear en este mensaje lleva al directorio donde la misma fue guardada.</translation>
</message>
</context>
<context>
<name>PreviewDialog</name>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="47"/>
- <location filename="../dialogs/previewdialog.cpp" line="308"/>
+ <location filename="../dialogs/previewdialog.cpp" line="46"/>
+ <location filename="../dialogs/previewdialog.cpp" line="307"/>
<source>Screenshot Preview</source>
<translation>Vista Previa de Captura</translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="158"/>
+ <location filename="../dialogs/previewdialog.cpp" line="157"/>
<source>Upload</source>
<translation>Subir</translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="180"/>
+ <location filename="../dialogs/previewdialog.cpp" line="179"/>
<source>Save</source>
<translation>Guardar</translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="305"/>
+ <location filename="../dialogs/previewdialog.cpp" line="304"/>
<source>Screenshot Preview (%1 of %2)</source>
<translation>Vista Previa de Captura (%1 de %2)</translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="406"/>
+ <location filename="../dialogs/previewdialog.cpp" line="405"/>
<source>Preview: Closing in %1</source>
<translation>Vista Previa: Cerrando en %1</translation>
</message>
</context>
-<context>
- <name>QObject</name>
- <message>
- <location filename="../main.cpp" line="67"/>
- <source>Screen</source>
- <translation>Pantalla</translation>
- </message>
- <message>
- <location filename="../main.cpp" line="68"/>
- <source>Area</source>
- <translation>Área</translation>
- </message>
- <message>
- <location filename="../main.cpp" line="69"/>
- <source>Active Window</source>
- <translation>Ventana Activa</translation>
- </message>
- <message>
- <location filename="../main.cpp" line="70"/>
- <source>Pick Window</source>
- <translation>Elegir Ventana</translation>
- </message>
- <message>
- <location filename="../main.cpp" line="72"/>
- <source>Upload Last</source>
- <translation>Subir Ultima</translation>
- </message>
- <message>
- <location filename="../main.cpp" line="73"/>
- <source>View History</source>
- <translation>Ver Historial</translation>
- </message>
- <message>
- <location filename="../main.cpp" line="75"/>
- <source>Go to Folder</source>
- <translation>Ir a la carpeta</translation>
- </message>
-</context>
<context>
<name>Screenshot</name>
<message>
- <location filename="../tools/screenshot.cpp" line="217"/>
+ <location filename="../tools/screenshot.cpp" line="216"/>
<source>Save as..</source>
<translation>Guardar como..</translation>
</message>
</context>
<context>
<name>Uploader</name>
<message>
- <location filename="../tools/uploader.cpp" line="105"/>
+ <location filename="../tools/uploader.cpp" line="103"/>
<source>Uploading...</source>
<translation>Subiendo...</translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="71"/>
+ <location filename="../tools/uploader.cpp" line="69"/>
<source>Screenshot file not found.</source>
<translation>Archivo de captura no encontrado.</translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="74"/>
+ <location filename="../tools/uploader.cpp" line="72"/>
<source>Could not reach imgur.com</source>
<translation>No se pudo conectar a imgur.com</translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="77"/>
+ <location filename="../tools/uploader.cpp" line="75"/>
<source>You have exceeded your upload quota.</source>
<translation>Ha excedido su cuota de subida.</translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="80"/>
+ <location filename="../tools/uploader.cpp" line="78"/>
<source>Upload failed for %1.</source>
<translation>La subida ha fallado para %1.</translation>
</message>
</context>
<context>
<name>WindowPicker</name>
<message>
- <location filename="../tools/windowpicker.cpp" line="52"/>
+ <location filename="../tools/windowpicker.cpp" line="50"/>
<source>Lightscreen Window Picker</source>
<translation>Lightscreen: Eligiendo Ventana</translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="55"/>
+ <location filename="../tools/windowpicker.cpp" line="53"/>
<source>Grab the window picker by clicking and holding down the mouse button, then drag it to the window of your choice and release it to capture.</source>
<translation>Haga click y mantenga apretado para mover el seleccionador a la ventana que desee capturar.</translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="65"/>
+ <location filename="../tools/windowpicker.cpp" line="63"/>
<source> - Start dragging to select windows</source>
<translation> - Comienze a arrastrar para seleccionar ventanas</translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="72"/>
+ <location filename="../tools/windowpicker.cpp" line="70"/>
<source>Close</source>
<translation>Cerrar</translation>
</message>
</context>
</TS>
diff --git a/translations/untranslated.qm b/translations/untranslated.qm
index be651ee..3738845 100644
Binary files a/translations/untranslated.qm and b/translations/untranslated.qm differ
diff --git a/translations/untranslated.ts b/translations/untranslated.ts
index 7a316ee..0589e12 100644
--- a/translations/untranslated.ts
+++ b/translations/untranslated.ts
@@ -1,1178 +1,1178 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0">
<context>
<name>AreaDialog</name>
<message>
- <location filename="../dialogs/areadialog.cpp" line="56"/>
+ <location filename="../dialogs/areadialog.cpp" line="54"/>
<source>Lightscreen Area Mode</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/areadialog.cpp" line="363"/>
+ <location filename="../dialogs/areadialog.cpp" line="361"/>
<source>Lightscreen area mode:
Use your mouse to draw a rectangle to capture.
Press any key or right click to exit.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HistoryDialog</name>
<message>
<location filename="../dialogs/historydialog.ui" line="14"/>
<source>Screenshot History</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="33"/>
<source>Type here to filter through the screenshots in the list.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="43"/>
<source>Double click the path to open the image with the default picture viewer, you can also double-click the URL to open it on your web browser.
Right click items to get access to more options.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="70"/>
<source>Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="93"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/historydialog.ui" line="100"/>
<source>Close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="32"/>
- <location filename="../dialogs/historydialog.cpp" line="245"/>
- <location filename="../dialogs/historydialog.cpp" line="256"/>
- <location filename="../dialogs/historydialog.cpp" line="262"/>
+ <location filename="../dialogs/historydialog.cpp" line="28"/>
+ <location filename="../dialogs/historydialog.cpp" line="241"/>
+ <location filename="../dialogs/historydialog.cpp" line="252"/>
+ <location filename="../dialogs/historydialog.cpp" line="258"/>
<source>Filter..</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="112"/>
+ <location filename="../dialogs/historydialog.cpp" line="108"/>
<source>Clearing the screenshot history</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="113"/>
+ <location filename="../dialogs/historydialog.cpp" line="109"/>
<source>Are you sure you want to clear your entire screenshot history?
This cannot be undone.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="114"/>
+ <location filename="../dialogs/historydialog.cpp" line="110"/>
<source>Clear History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="115"/>
+ <location filename="../dialogs/historydialog.cpp" line="111"/>
<source>Don&apos;t Clear</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy Path</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="129"/>
+ <location filename="../dialogs/historydialog.cpp" line="125"/>
<source>Copy URL</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="133"/>
+ <location filename="../dialogs/historydialog.cpp" line="129"/>
<source>Delete from imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="134"/>
+ <location filename="../dialogs/historydialog.cpp" line="130"/>
<source>Open Location</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="136"/>
+ <location filename="../dialogs/historydialog.cpp" line="132"/>
<source>Remove history entry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="39"/>
+ <location filename="../dialogs/historydialog.cpp" line="35"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/historydialog.cpp" line="40"/>
+ <location filename="../dialogs/historydialog.cpp" line="36"/>
<source>URL</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HotkeyWidget</name>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="36"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="34"/>
<source>Click to select hotkey...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="86"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="84"/>
<source>Type your hotkey</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../widgets/hotkeywidget.cpp" line="95"/>
- <location filename="../widgets/hotkeywidget.cpp" line="116"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="93"/>
+ <location filename="../widgets/hotkeywidget.cpp" line="114"/>
<source>Invalid hotkey</source>
<translation type="unfinished"></translation>
</message>
</context>
+<context>
+ <name>JumpList</name>
+ <message>
+ <location filename="../main.cpp" line="65"/>
+ <source>Screen</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="66"/>
+ <source>Area</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="67"/>
+ <source>Active Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="68"/>
+ <source>Pick Window</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="70"/>
+ <source>Upload Last</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="71"/>
+ <source>View History</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.cpp" line="73"/>
+ <source>Go to Folder</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
<context>
<name>LightscreenWindow</name>
<message>
- <location filename="../lightscreenwindow.cpp" line="237"/>
- <location filename="../lightscreenwindow.cpp" line="577"/>
- <location filename="../lightscreenwindow.cpp" line="698"/>
- <location filename="../lightscreenwindow.cpp" line="724"/>
+ <location filename="../lightscreenwindow.cpp" line="235"/>
+ <location filename="../lightscreenwindow.cpp" line="575"/>
+ <location filename="../lightscreenwindow.cpp" line="696"/>
+ <location filename="../lightscreenwindow.cpp" line="722"/>
<source>Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="238"/>
+ <location filename="../lightscreenwindow.cpp" line="236"/>
<source>You have chosen to hide Lightscreen when there&apos;s no system tray icon, so you will not be able to access the program &lt;b&gt;unless you have selected a hotkey to do so&lt;/b&gt;.&lt;br&gt;What do you want to do?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="243"/>
+ <location filename="../lightscreenwindow.cpp" line="241"/>
<source>Hide but enable tray</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="245"/>
+ <location filename="../lightscreenwindow.cpp" line="243"/>
<source>Hide and don&apos;t warn</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="247"/>
+ <location filename="../lightscreenwindow.cpp" line="245"/>
<source>Just hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="430"/>
<source>Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="640"/>
+ <location filename="../lightscreenwindow.cpp" line="638"/>
<source>The screenshot was not taken</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>%1 uploaded</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="668"/>
+ <location filename="../lightscreenwindow.cpp" line="666"/>
<source>Click here to go to %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="653"/>
+ <location filename="../lightscreenwindow.cpp" line="651"/>
<source>Upload error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="418"/>
+ <location filename="../lightscreenwindow.cpp" line="416"/>
<source>processing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="423"/>
+ <location filename="../lightscreenwindow.cpp" line="421"/>
<source>uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="426"/>
+ <location filename="../lightscreenwindow.cpp" line="424"/>
<source>processing and uploading</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="433"/>
+ <location filename="../lightscreenwindow.cpp" line="431"/>
<source>Lightscreen is currently %1 screenshots. Are you sure you want to quit?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="780"/>
+ <location filename="../lightscreenwindow.cpp" line="778"/>
<source>%1% of %2 uploads - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="783"/>
+ <location filename="../lightscreenwindow.cpp" line="781"/>
<source>%1% - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="882"/>
+ <location filename="../lightscreenwindow.cpp" line="880"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="885"/>
+ <location filename="../lightscreenwindow.cpp" line="883"/>
<source>&amp;Pick Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="276"/>
- <location filename="../lightscreenwindow.cpp" line="900"/>
+ <location filename="../lightscreenwindow.cpp" line="274"/>
+ <location filename="../lightscreenwindow.cpp" line="898"/>
<source>&amp;Upload last</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="277"/>
- <location filename="../lightscreenwindow.cpp" line="901"/>
+ <location filename="../lightscreenwindow.cpp" line="275"/>
+ <location filename="../lightscreenwindow.cpp" line="899"/>
<source>Upload the last screenshot you took to imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="280"/>
- <location filename="../lightscreenwindow.cpp" line="904"/>
+ <location filename="../lightscreenwindow.cpp" line="278"/>
+ <location filename="../lightscreenwindow.cpp" line="902"/>
<source>&amp;Cancel upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="281"/>
- <location filename="../lightscreenwindow.cpp" line="905"/>
+ <location filename="../lightscreenwindow.cpp" line="279"/>
+ <location filename="../lightscreenwindow.cpp" line="903"/>
<source>Cancel the currently uploading screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="287"/>
+ <location filename="../lightscreenwindow.cpp" line="285"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Do you want to cancel all screenshot uploads?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="910"/>
+ <location filename="../lightscreenwindow.cpp" line="908"/>
<source>View History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="274"/>
- <location filename="../lightscreenwindow.cpp" line="930"/>
+ <location filename="../lightscreenwindow.cpp" line="272"/>
+ <location filename="../lightscreenwindow.cpp" line="928"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Closed to tray</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="227"/>
+ <location filename="../lightscreenwindow.cpp" line="225"/>
<source>Lightscreen will keep running, you can disable this in the options menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="382"/>
- <location filename="../lightscreenwindow.cpp" line="385"/>
+ <location filename="../lightscreenwindow.cpp" line="380"/>
+ <location filename="../lightscreenwindow.cpp" line="383"/>
<source>Failed!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="389"/>
+ <location filename="../lightscreenwindow.cpp" line="387"/>
<source>Cancelled!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="559"/>
+ <location filename="../lightscreenwindow.cpp" line="557"/>
<source>Some hotkeys could not be registered, they might already be in use</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="562"/>
+ <location filename="../lightscreenwindow.cpp" line="560"/>
<source>&lt;br&gt;The failed hotkeys are the following:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="571"/>
+ <location filename="../lightscreenwindow.cpp" line="569"/>
<source>&lt;br&gt;The failed hotkey is &lt;b&gt;%1&lt;/b&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="574"/>
+ <location filename="../lightscreenwindow.cpp" line="572"/>
<source>&lt;br&gt;&lt;i&gt;What do you want to do?&lt;/i&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="580"/>
+ <location filename="../lightscreenwindow.cpp" line="578"/>
<source>Change</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="581"/>
+ <location filename="../lightscreenwindow.cpp" line="579"/>
<source>Disable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="665"/>
- <location filename="../lightscreenwindow.cpp" line="923"/>
+ <location filename="../lightscreenwindow.cpp" line="663"/>
+ <location filename="../lightscreenwindow.cpp" line="921"/>
<source>Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="694"/>
+ <location filename="../lightscreenwindow.cpp" line="692"/>
<source>%1 uploading - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Upload cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="755"/>
+ <location filename="../lightscreenwindow.cpp" line="753"/>
<source>Don&apos;t Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="434"/>
- <location filename="../lightscreenwindow.cpp" line="582"/>
+ <location filename="../lightscreenwindow.cpp" line="432"/>
+ <location filename="../lightscreenwindow.cpp" line="580"/>
<source>Quit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="725"/>
+ <location filename="../lightscreenwindow.cpp" line="723"/>
<source>There&apos;s a new version of Lightscreen available.&lt;br&gt;Would you like to see more information?&lt;br&gt;(&lt;em&gt;You can turn this notification off&lt;/em&gt;)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="729"/>
+ <location filename="../lightscreenwindow.cpp" line="727"/>
<source>Turn Off</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="730"/>
+ <location filename="../lightscreenwindow.cpp" line="728"/>
<source>Remind Me Later</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="879"/>
+ <location filename="../lightscreenwindow.cpp" line="877"/>
<source>&amp;Screen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="435"/>
+ <location filename="../lightscreenwindow.cpp" line="433"/>
<source>Don&apos;t Quit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="636"/>
+ <location filename="../lightscreenwindow.cpp" line="634"/>
<source>Saved to &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="641"/>
+ <location filename="../lightscreenwindow.cpp" line="639"/>
<source>An error occurred.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="888"/>
+ <location filename="../lightscreenwindow.cpp" line="886"/>
<source>&amp;Area</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="917"/>
+ <location filename="../lightscreenwindow.cpp" line="915"/>
<source>&amp;Go to Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="375"/>
- <location filename="../lightscreenwindow.cpp" line="378"/>
+ <location filename="../lightscreenwindow.cpp" line="373"/>
+ <location filename="../lightscreenwindow.cpp" line="376"/>
<source>Success!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="876"/>
+ <location filename="../lightscreenwindow.cpp" line="874"/>
<source>Show&amp;/Hide</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="914"/>
+ <location filename="../lightscreenwindow.cpp" line="912"/>
<source>View &amp;Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../lightscreenwindow.cpp" line="920"/>
+ <location filename="../lightscreenwindow.cpp" line="918"/>
<source>&amp;Quit</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>LightscreenWindowClass</name>
<message>
<location filename="../lightscreenwindow.ui" line="20"/>
<source>Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="49"/>
<source>Area capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="52"/>
<source>Capture a specific area of your desktop, resize and move it around!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="64"/>
<source>Ctrl+A</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="80"/>
<source>Pick window</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="83"/>
<source>Drop the picker onto a window to capture it.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="92"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="108"/>
<source>Configure Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="111"/>
<source>&amp;Options</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="114"/>
<source>Ctrl+O</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="130"/>
<source>Open the current Screenshot folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="133"/>
<source>&amp;Folder</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="136"/>
<source>Ctrl+F</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="152"/>
<source>Imgur upload controls</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="155"/>
<source>&amp;Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="158"/>
<source>Ctrl+U</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="174"/>
<source>Fullscreen capture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="177"/>
<source>Take a screenshot of your entire desktop.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../lightscreenwindow.ui" line="186"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>NamingDialog</name>
<message>
<location filename="../dialogs/namingdialog.ui" line="14"/>
<source>Naming Options - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="45"/>
<source>Leading zeros:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="100"/>
<source>Date Format:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/namingdialog.ui" line="167"/>
<source>Flip naming.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>OptionsDialog</name>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="520"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="522"/>
<source>Restore Defaults</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="536"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="538"/>
<source>Version %1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>Hotkey conflict</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="81"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="79"/>
<source>You have assigned the same hotkeys to more than one action.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>Filename character error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="86"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="84"/>
<source>The filename can&apos;t contain any of the following characters: ? : \ / * &quot; &lt; &gt; |</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>Final Destination</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="91"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="89"/>
<source>You can&apos;t take screenshots unless you enable either file saving or the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="449"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="447"/>
<source>Select where you want to save the screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="462"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="461"/>
<source>Lightscreen - Restore Default Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="463"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="462"/>
<source>Restoring the default options will cause you to lose all of your current configuration.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="466"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="465"/>
<source>Restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="467"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="466"/>
<source>Don&apos;t Restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="137"/>
- <location filename="../dialogs/optionsdialog.cpp" line="502"/>
- <location filename="../dialogs/optionsdialog.cpp" line="508"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="135"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="501"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="507"/>
<source>screenshot.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="504"/>
- <location filename="../dialogs/optionsdialog.cpp" line="506"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="503"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="505"/>
<source>.screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.cpp" line="187"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="185"/>
<source>Install &apos;OptiPNG&apos;</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="14"/>
<source>Options - Lightscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="42"/>
<source>File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="60"/>
<source>&amp;Directory:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="100"/>
+ <location filename="../dialogs/optionsdialog.ui" line="96"/>
<source>The prefix for the screenshot file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="103"/>
+ <location filename="../dialogs/optionsdialog.ui" line="99"/>
<source>&amp;Filename:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="121"/>
+ <location filename="../dialogs/optionsdialog.ui" line="117"/>
<source>The prefix will be inserted before the &lt;em&gt;Naming&lt;/em&gt; in the screenshot file and it is usually used to distinguish files. It can be left blank.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="128"/>
+ <location filename="../dialogs/optionsdialog.ui" line="124"/>
<source>The naming is inserted after the prefix and is what makes each screenshot file unique to avoid overwriting.&lt;br /&gt;
&lt;b&gt;Numeric&lt;/b&gt;: inserts a number in sequence, 1, 2, 3..&lt;br /&gt;
&lt;b&gt;Date&lt;/b&gt;: inserts the current date and time, in the form of dd-MM-yyyy, click the &quot;wrench&quot; button on the right to customize the format.&lt;br /&gt;
&lt;b&gt;Timestamp&lt;/b&gt;: inserts a number, a Unix timestamp, which is the number of seconds passed since 1970-1-1 00:00:00.&lt;br /&gt;
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="137"/>
+ <location filename="../dialogs/optionsdialog.ui" line="133"/>
<source>(number)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="142"/>
+ <location filename="../dialogs/optionsdialog.ui" line="138"/>
<source>(date)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="147"/>
+ <location filename="../dialogs/optionsdialog.ui" line="143"/>
<source>(timestamp)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="173"/>
+ <location filename="../dialogs/optionsdialog.ui" line="165"/>
<source>The file format for the screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="176"/>
+ <location filename="../dialogs/optionsdialog.ui" line="168"/>
<source>F&amp;ormat:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="208"/>
+ <location filename="../dialogs/optionsdialog.ui" line="200"/>
<source>&amp;Quality:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="152"/>
+ <location filename="../dialogs/optionsdialog.ui" line="148"/>
<source>(none)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="314"/>
+ <location filename="../dialogs/optionsdialog.ui" line="306"/>
<source>System Startup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="367"/>
+ <location filename="../dialogs/optionsdialog.ui" line="359"/>
<source>Hotkeys</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="373"/>
+ <location filename="../dialogs/optionsdialog.ui" line="365"/>
<source>Captures</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="394"/>
+ <location filename="../dialogs/optionsdialog.ui" line="386"/>
<source>&amp;Fullscreen</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="417"/>
+ <location filename="../dialogs/optionsdialog.ui" line="409"/>
<source>Window &amp;Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="446"/>
+ <location filename="../dialogs/optionsdialog.ui" line="438"/>
<source>Active &amp;Window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="462"/>
+ <location filename="../dialogs/optionsdialog.ui" line="454"/>
<source>Screen &amp;Area</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="475"/>
+ <location filename="../dialogs/optionsdialog.ui" line="467"/>
<source>Lightscreen Control</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="496"/>
+ <location filename="../dialogs/optionsdialog.ui" line="488"/>
<source>&amp;Open the program window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="512"/>
+ <location filename="../dialogs/optionsdialog.ui" line="504"/>
<source>Open the &amp;directory</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="539"/>
+ <location filename="../dialogs/optionsdialog.ui" line="531"/>
<source>Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="587"/>
+ <location filename="../dialogs/optionsdialog.ui" line="579"/>
<source>Interface</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="606"/>
+ <location filename="../dialogs/optionsdialog.ui" line="598"/>
<source>C&amp;losing hides the main window.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="898"/>
+ <location filename="../dialogs/optionsdialog.ui" line="890"/>
<source>Default action:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="925"/>
- <location filename="../dialogs/optionsdialog.cpp" line="129"/>
- <location filename="../dialogs/optionsdialog.cpp" line="132"/>
+ <location filename="../dialogs/optionsdialog.ui" line="917"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="127"/>
+ <location filename="../dialogs/optionsdialog.cpp" line="130"/>
<source>Screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="934"/>
+ <location filename="../dialogs/optionsdialog.ui" line="926"/>
<source>Choose where to save each screenshot (&quot;&amp;Save as&quot;).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="941"/>
+ <location filename="../dialogs/optionsdialog.ui" line="933"/>
<source>&amp;Grab only the active monitor.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="967"/>
+ <location filename="../dialogs/optionsdialog.ui" line="959"/>
<source>Runs OptiPNG which reduces screenshot file size.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1036"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1028"/>
<source>Replace screenshots when there&apos;s an existing file.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1115"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1107"/>
<source>Clipboard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1131"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1123"/>
<source>After uploading, copy the imgur URL to the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1141"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1133"/>
<source>History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1150"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1142"/>
<source>Save my screenshot history.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1050"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1042"/>
<source>Upload all my screenshots automatically.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1059"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1051"/>
<source>D&amp;elay:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1072"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1064"/>
<source>Selecting anything other than 0 in this option will cause the program to &lt;b&gt;wait&lt;/b&gt; that amount of seconds before taking the screenshot.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1075"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1067"/>
<source>none</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1230"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1222"/>
<source>Lightscreen is a simple tool to take screenshots, designed to be customizable and lightweight.&lt;br&gt;&lt;br&gt;
Created by &lt;a href=&quot;http://ckaiser.com.ar&quot;&gt;Christian Kaiser&lt;/a&gt;, using the &lt;a href=&quot;#aboutqt&quot;&gt;Qt toolkit&lt;/a&gt; for the graphical user interface.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1244"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1236"/>
<source>Released under the &lt;a href=&quot;http://www.gnu.org/licenses/gpl-2.0.html&quot;&gt;GNU General Public License&lt;/a&gt;.&lt;br&gt;&lt;br&gt;
Special thanks goes to the &lt;a href=&quot;http://lightscreen.sourceforge.net/about&quot;&gt;Donators and Translators&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="850"/>
- <location filename="../dialogs/optionsdialog.ui" line="1084"/>
+ <location filename="../dialogs/optionsdialog.ui" line="842"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1076"/>
<source> seconds</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="275"/>
+ <location filename="../dialogs/optionsdialog.ui" line="267"/>
<source>&lt;u&gt;Preview&lt;/u&gt;:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="755"/>
+ <location filename="../dialogs/optionsdialog.ui" line="747"/>
<source>Maximum Size:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="806"/>
+ <location filename="../dialogs/optionsdialog.ui" line="798"/>
<source>Position:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="863"/>
+ <location filename="../dialogs/optionsdialog.ui" line="855"/>
<source> and </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="880"/>
- <location filename="../dialogs/optionsdialog.ui" line="909"/>
+ <location filename="../dialogs/optionsdialog.ui" line="872"/>
+ <location filename="../dialogs/optionsdialog.ui" line="901"/>
<source>save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="885"/>
- <location filename="../dialogs/optionsdialog.ui" line="914"/>
+ <location filename="../dialogs/optionsdialog.ui" line="877"/>
+ <location filename="../dialogs/optionsdialog.ui" line="906"/>
<source>upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="890"/>
+ <location filename="../dialogs/optionsdialog.ui" line="882"/>
<source>cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1209"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1201"/>
<source>Chec&amp;k Now</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1224"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1216"/>
<source>About</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1269"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1261"/>
<source>&lt;a href=&quot;https://sourceforge.net/projects/lightscreen/&quot;&gt;Visit Sourceforge project site&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://lightscreen.sourceforge.net/&quot;&gt;Visit Lightscreen home page&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="326"/>
+ <location filename="../dialogs/optionsdialog.ui" line="318"/>
<source>&amp;Run Lightscreen at system startup.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="354"/>
+ <location filename="../dialogs/optionsdialog.ui" line="346"/>
<source>H&amp;ide the main window.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="599"/>
+ <location filename="../dialogs/optionsdialog.ui" line="591"/>
<source>Sho&amp;w a system tray icon.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="613"/>
+ <location filename="../dialogs/optionsdialog.ui" line="605"/>
<source>&amp;Hide Lightscreen while taking a screenshot.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="955"/>
+ <location filename="../dialogs/optionsdialog.ui" line="947"/>
<source>&amp;Magnify around the mouse in Area mode.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="695"/>
+ <location filename="../dialogs/optionsdialog.ui" line="687"/>
<source>&amp;Language:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="712"/>
+ <location filename="../dialogs/optionsdialog.ui" line="704"/>
<source>Click here to go to the Lightscreen homepage to learn more about translations.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="715"/>
+ <location filename="../dialogs/optionsdialog.ui" line="707"/>
<source>&lt;a href=&quot;http://lightscreen.sourceforge.net/translation&quot;&gt;More information..&lt;/a&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="681"/>
+ <location filename="../dialogs/optionsdialog.ui" line="673"/>
<source>&amp;Notify with:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../dialogs/optionsdialog.ui" line="27"/>
<source>General</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="628"/>
+ <location filename="../dialogs/optionsdialog.ui" line="620"/>
<source>Shows a completion message once the screenshot is saved, clicking this message takes you to the directory where the screenshot was saved.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="631"/>
+ <location filename="../dialogs/optionsdialog.ui" line="623"/>
<source>Tray icon Popup</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="638"/>
+ <location filename="../dialogs/optionsdialog.ui" line="630"/>
<source>&amp;Sound cue</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="221"/>
+ <location filename="../dialogs/optionsdialog.ui" line="213"/>
<source>This slider goes from 0 to 100. 100 being the highest quality and 0 the lowest.&lt;br&gt;
Quality is related to file size and of course to readability and overall quality of the image.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1124"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1116"/>
<source>&amp;Copy the screenshot to the clipboard.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="948"/>
+ <location filename="../dialogs/optionsdialog.ui" line="940"/>
<source>Inc&amp;lude the cursor in the screenshot.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="970"/>
+ <location filename="../dialogs/optionsdialog.ui" line="962"/>
<source>O&amp;ptimize PNG screenshots.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1043"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1035"/>
<source>Snap area screenshots automatically (no resizing).</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="740"/>
+ <location filename="../dialogs/optionsdialog.ui" line="732"/>
<source>Screenshot Previews</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="820"/>
+ <location filename="../dialogs/optionsdialog.ui" line="812"/>
<source>Top Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="825"/>
+ <location filename="../dialogs/optionsdialog.ui" line="817"/>
<source>Top Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="830"/>
+ <location filename="../dialogs/optionsdialog.ui" line="822"/>
<source>Bottom Left</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="835"/>
+ <location filename="../dialogs/optionsdialog.ui" line="827"/>
<source>Bottom Right</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="843"/>
+ <location filename="../dialogs/optionsdialog.ui" line="835"/>
<source>Auto-close after</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1170"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1162"/>
<source>View &amp;History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1180"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1172"/>
<source>Updater</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/optionsdialog.ui" line="1189"/>
+ <location filename="../dialogs/optionsdialog.ui" line="1181"/>
<source>Check for updates regularly.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>PreviewDialog</name>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="47"/>
- <location filename="../dialogs/previewdialog.cpp" line="308"/>
+ <location filename="../dialogs/previewdialog.cpp" line="46"/>
+ <location filename="../dialogs/previewdialog.cpp" line="307"/>
<source>Screenshot Preview</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="158"/>
+ <location filename="../dialogs/previewdialog.cpp" line="157"/>
<source>Upload</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="180"/>
+ <location filename="../dialogs/previewdialog.cpp" line="179"/>
<source>Save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="305"/>
+ <location filename="../dialogs/previewdialog.cpp" line="304"/>
<source>Screenshot Preview (%1 of %2)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../dialogs/previewdialog.cpp" line="406"/>
+ <location filename="../dialogs/previewdialog.cpp" line="405"/>
<source>Preview: Closing in %1</source>
<translation type="unfinished"></translation>
</message>
</context>
-<context>
- <name>QObject</name>
- <message>
- <location filename="../main.cpp" line="67"/>
- <source>Screen</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="68"/>
- <source>Area</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="69"/>
- <source>Active Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="70"/>
- <source>Pick Window</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="72"/>
- <source>Upload Last</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="73"/>
- <source>View History</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../main.cpp" line="75"/>
- <source>Go to Folder</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
<context>
<name>Screenshot</name>
<message>
- <location filename="../tools/screenshot.cpp" line="217"/>
+ <location filename="../tools/screenshot.cpp" line="216"/>
<source>Save as..</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>Uploader</name>
<message>
- <location filename="../tools/uploader.cpp" line="105"/>
+ <location filename="../tools/uploader.cpp" line="103"/>
<source>Uploading...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="71"/>
+ <location filename="../tools/uploader.cpp" line="69"/>
<source>Screenshot file not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="74"/>
+ <location filename="../tools/uploader.cpp" line="72"/>
<source>Could not reach imgur.com</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="77"/>
+ <location filename="../tools/uploader.cpp" line="75"/>
<source>You have exceeded your upload quota.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/uploader.cpp" line="80"/>
+ <location filename="../tools/uploader.cpp" line="78"/>
<source>Upload failed for %1.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>WindowPicker</name>
<message>
- <location filename="../tools/windowpicker.cpp" line="52"/>
+ <location filename="../tools/windowpicker.cpp" line="50"/>
<source>Lightscreen Window Picker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="55"/>
+ <location filename="../tools/windowpicker.cpp" line="53"/>
<source>Grab the window picker by clicking and holding down the mouse button, then drag it to the window of your choice and release it to capture.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="65"/>
+ <location filename="../tools/windowpicker.cpp" line="63"/>
<source> - Start dragging to select windows</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../tools/windowpicker.cpp" line="72"/>
+ <location filename="../tools/windowpicker.cpp" line="70"/>
<source>Close</source>
<translation type="unfinished"></translation>
</message>
</context>
</TS>

File Metadata

Mime Type
text/x-diff
Expires
Wed, Jun 17, 9:13 PM (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
70016
Default Alt Text
(630 KB)

Event Timeline