diff --git a/src/tools/imgs3/imgs3uploader.cpp b/src/tools/imgs3/imgs3uploader.cpp index bc289f48..a6afaa14 100644 --- a/src/tools/imgs3/imgs3uploader.cpp +++ b/src/tools/imgs3/imgs3uploader.cpp @@ -46,6 +46,7 @@ #include #include #include +#include ImgS3Uploader::ImgS3Uploader(const QPixmap &capture, QWidget *parent) : diff --git a/src/utils/confighandler.cpp b/src/utils/confighandler.cpp index 216d24ea..6fe77800 100644 --- a/src/utils/confighandler.cpp +++ b/src/utils/confighandler.cpp @@ -79,15 +79,23 @@ void ConfigHandler::setButtons(const QVector &buttons QVector ConfigHandler::getUserColors() { QVector colors; const QVector &defaultColors = { - Qt::darkRed, + Qt::white, Qt::red, - Qt::yellow, Qt::green, - Qt::darkGreen, - Qt::cyan, Qt::blue, + Qt::black, + Qt::darkRed, + Qt::darkGreen, + Qt::darkBlue, + Qt::darkGray, + Qt::cyan, Qt::magenta, - Qt::darkMagenta + Qt::yellow, + Qt::lightGray, + Qt::darkCyan, + Qt::darkMagenta, + Qt::darkYellow, + QColor() }; if (m_settings.contains(QStringLiteral("userColors"))) { diff --git a/src/utils/confighandler.h b/src/utils/confighandler.h index 6dccbb86..a4316ebc 100644 --- a/src/utils/confighandler.h +++ b/src/utils/confighandler.h @@ -82,7 +82,6 @@ public: bool copyPathAfterSaveEnabled(); void setCopyPathAfterSaveEnabled(const bool); - void setDefaults(); void setAllTheButtons(); diff --git a/src/utils/history.cpp b/src/utils/history.cpp index c58c6d60..d3a4ba33 100644 --- a/src/utils/history.cpp +++ b/src/utils/history.cpp @@ -2,7 +2,6 @@ #include "src/utils/confighandler.h" #include #include -#include #include diff --git a/src/widgets/capture/capturewidget.cpp b/src/widgets/capture/capturewidget.cpp index d75eab93..5942a776 100644 --- a/src/widgets/capture/capturewidget.cpp +++ b/src/widgets/capture/capturewidget.cpp @@ -189,7 +189,10 @@ QPixmap CaptureWidget::pixmap() { } void CaptureWidget::deleteToolwidgetOrClose() { - if (m_toolWidget) { + if(m_panel->isVisible()){ + m_panel->hide(); + } + else if (m_toolWidget) { m_toolWidget->deleteLater(); m_toolWidget = nullptr; } else { @@ -273,8 +276,8 @@ void CaptureWidget::paintEvent(QPaintEvent *) { void CaptureWidget::mousePressEvent(QMouseEvent *e) { if (e->button() == Qt::RightButton) { m_rightClick = true; - m_colorPicker->move(e->pos().x()-m_colorPicker->width()/2, - e->pos().y()-m_colorPicker->height()/2); + m_colorPicker->move(e->pos().x() - m_colorPicker->width() / 2, + e->pos().y() - m_colorPicker->height() / 2); m_colorPicker->raise(); m_colorPicker->show(); } else if (e->button() == Qt::LeftButton) { @@ -431,6 +434,9 @@ void CaptureWidget::mouseReleaseEvent(QMouseEvent *e) { if (e->button() == Qt::RightButton || m_colorPicker->isVisible()) { m_colorPicker->hide(); m_rightClick = false; + if(!m_context.color.isValid()) { + m_panel->show(); + } // when we end the drawing we have to register the last point and //add the temp modification to the list of modifications } else if (m_mouseIsClicked && m_activeTool) { @@ -559,7 +565,7 @@ void CaptureWidget::initPanel() { panelRect = QGuiApplication::primaryScreen()->geometry(); } panelRect.moveTo(mapFromGlobal(panelRect.topLeft())); - panelRect.setWidth(m_colorPicker->width() * 3); + panelRect.setWidth(m_colorPicker->width() * 1.5); m_panel->setGeometry(panelRect); SidePanelWidget *sidePanel = @@ -713,8 +719,10 @@ void CaptureWidget::handleButtonSignal(CaptureTool::Request r) { void CaptureWidget::setDrawColor(const QColor &c) { m_context.color = c; - ConfigHandler().setDrawColor(m_context.color); - emit colorChanged(c); + if(m_context.color.isValid()) { + ConfigHandler().setDrawColor(m_context.color); + emit colorChanged(c); + } } void CaptureWidget::setDrawThickness(const int &t) diff --git a/src/widgets/capture/colorpicker.cpp b/src/widgets/capture/colorpicker.cpp index e714b2b4..2c247392 100644 --- a/src/widgets/capture/colorpicker.cpp +++ b/src/widgets/capture/colorpicker.cpp @@ -32,17 +32,17 @@ ColorPicker::ColorPicker(QWidget *parent) : QWidget(parent) { // extraSize represents the extra space needed for the highlight of the // selected color. const int extraSize = 6; - double radius = (m_colorList.size()*m_colorAreaSize/1.3)/(3.141592); - resize(radius*2 + m_colorAreaSize + extraSize, - radius*2 + m_colorAreaSize+ extraSize); + double radius = (m_colorList.size() * m_colorAreaSize / 1.3) / 3.141592; + resize(radius * 2 + m_colorAreaSize + extraSize, + radius * 2 + m_colorAreaSize + extraSize); double degree = 360 / (m_colorList.size()); double degreeAcum = degree; // this line is the radius of the circle which will be rotated to add // the color components. - QLineF baseLine = QLineF(QPoint(radius+extraSize/2, radius+extraSize/2), - QPoint(radius*2, radius)); + QLineF baseLine = QLineF(QPoint(radius + extraSize / 2, radius+extraSize / 2), + QPoint(radius * 2, radius)); - for (int i = 0; i 0; radius -= nStep*2) { + // calculate color + float fHStep = (0.33 - h) / (nSteps / nStep / 2); + QColor color = QColor::fromHslF(h, 0.95, 0.5); + + // set color and draw circle + painter.setPen(color); + painter.setBrush(color); + painter.drawRoundRect(lastRect, 100, 100); + + // set next color, circle geometry + h += fHStep; + lastRect.setX(lastRect.x() + nStep); + lastRect.setY(lastRect.y() + nStep); + lastRect.setHeight(lastRect.height() - nStep); + lastRect.setWidth(lastRect.width() - nStep); + } + } } } diff --git a/src/widgets/historywidget.cpp b/src/widgets/historywidget.cpp index 138069a9..f313b543 100644 --- a/src/widgets/historywidget.cpp +++ b/src/widgets/historywidget.cpp @@ -7,7 +7,6 @@ #include #include #include -#include #include #include #include diff --git a/src/widgets/panel/utilitypanel.cpp b/src/widgets/panel/utilitypanel.cpp index 321a1308..f3104e35 100644 --- a/src/widgets/panel/utilitypanel.cpp +++ b/src/widgets/panel/utilitypanel.cpp @@ -21,6 +21,7 @@ #include #include #include +#include UtilityPanel::UtilityPanel(QWidget *parent) : QWidget(parent) { initInternalPanel(); @@ -63,18 +64,29 @@ void UtilityPanel::pushWidget(QWidget *w) { m_layout->addWidget(w); } +void UtilityPanel::show() { + setAttribute(Qt::WA_TransparentForMouseEvents, false); + m_showAnimation->setStartValue(QRect(-width(), 0, 0, height())); + m_showAnimation->setEndValue(QRect(0, 0, width(), height())); + m_internalPanel->show(); + m_showAnimation->start(); + QWidget::show(); +} + +void UtilityPanel::hide() { + setAttribute(Qt::WA_TransparentForMouseEvents); + m_hideAnimation->setStartValue(QRect(0, 0, width(), height())); + m_hideAnimation->setEndValue(QRect(-width(), 0, 0, height())); + m_hideAnimation->start(); + m_internalPanel->hide(); + QWidget::hide(); +} + void UtilityPanel::toggle() { if (m_internalPanel->isHidden()) { - setAttribute(Qt::WA_TransparentForMouseEvents, false); - m_showAnimation->setStartValue(QRect(-width(), 0, 0, height())); - m_showAnimation->setEndValue(QRect(0, 0, width(), height())); - m_internalPanel->show(); - m_showAnimation->start(); + show(); } else { - setAttribute(Qt::WA_TransparentForMouseEvents); - m_hideAnimation->setStartValue(QRect(0, 0, width(), height())); - m_hideAnimation->setEndValue(QRect(-width(), 0, 0, height())); - m_hideAnimation->start(); + hide(); } } @@ -95,4 +107,13 @@ void UtilityPanel::initInternalPanel() { m_internalPanel->setStyleSheet(QStringLiteral("QScrollArea {background-color: %1}") .arg(bgColor.name())); m_internalPanel->hide(); + + m_hide = new QPushButton(); + m_hide->setText(tr("Hide")); + m_upLayout->addWidget(m_hide); + connect(m_hide, SIGNAL(clicked()), this, SLOT(slotHidePanel())); +} + +void UtilityPanel::slotHidePanel() { + hide(); } diff --git a/src/widgets/panel/utilitypanel.h b/src/widgets/panel/utilitypanel.h index 8cf18a7b..c852073c 100644 --- a/src/widgets/panel/utilitypanel.h +++ b/src/widgets/panel/utilitypanel.h @@ -23,6 +23,7 @@ class QVBoxLayout; class QPropertyAnimation; class QScrollArea; +class QPushButton; class UtilityPanel : public QWidget { Q_OBJECT @@ -33,6 +34,8 @@ public: void addToolWidget(QWidget *w); void clearToolWidget(); void pushWidget(QWidget *w); + void hide(); + void show(); signals: void mouseEnter(); @@ -40,6 +43,7 @@ signals: public slots: void toggle(); + void slotHidePanel(); private: void initInternalPanel(); @@ -50,4 +54,5 @@ private: QVBoxLayout *m_layout; QPropertyAnimation *m_showAnimation; QPropertyAnimation *m_hideAnimation; + QPushButton *m_hide; }; diff --git a/translations/Internationalization_ca.ts b/translations/Internationalization_ca.ts index be90ee0d..705e0668 100644 --- a/translations/Internationalization_ca.ts +++ b/translations/Internationalization_ca.ts @@ -131,7 +131,7 @@ Imposible capturar la pantalla - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -452,27 +452,27 @@ Press Space to open the side panel. HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL Copia l'URL - + URL copied to clipboard. L'URL s'ha copiat al porta-retalls. - + Open in browser @@ -480,89 +480,89 @@ Press Space to open the side panel. ImgS3Uploader - + Uploading Image S'està pujant la imatge - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL Copia l'URL - + Open URL Obri l'URL - + Delete image - + Image to Clipboard. Imatge al porta-retalls. - + Unable to open the URL. No es pot obrir l'URL. - - + + URL copied to clipboard. L'URL s'ha copiat al porta-retalls. - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. La captura s'ha copiat al porta-retalls. @@ -1184,6 +1184,14 @@ You can find me in the system tray. Desfés l'última modificació + + UtilityPanel + + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_de_DE.ts b/translations/Internationalization_de_DE.ts index aa402869..7bf0de78 100644 --- a/translations/Internationalization_de_DE.ts +++ b/translations/Internationalization_de_DE.ts @@ -130,7 +130,7 @@ Bereich kann nicht erfasst werden - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -455,27 +455,27 @@ Drücke die Leertaste um das Seitenmenü zu öffnen. HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL URL kopieren - + URL copied to clipboard. URL kopiert. - + Open in browser @@ -483,89 +483,89 @@ Drücke die Leertaste um das Seitenmenü zu öffnen. ImgS3Uploader - + Uploading Image Bild hochladen - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL URL kopieren - + Open URL URL öffnen - + Delete image Bild löschen - + Image to Clipboard. Bild in Zwischenablage. - + Unable to open the URL. Kann URL nicht öffnen. - - + + URL copied to clipboard. URL kopiert. - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. Bildschirmaufnahme in Zwischenablage kopiert. @@ -1187,6 +1187,14 @@ You can find me in the system tray. Letzte Änderung verwerfen + + UtilityPanel + + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_es.ts b/translations/Internationalization_es.ts index 35f0e7a6..ae7c3354 100644 --- a/translations/Internationalization_es.ts +++ b/translations/Internationalization_es.ts @@ -130,7 +130,7 @@ Imposible capturar la pantalla - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -455,27 +455,27 @@ Presiona Espacio para abrir el panel lateral. HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL Copiar URL - + URL copied to clipboard. URL copiada al portapapeles. - + Open in browser @@ -483,89 +483,89 @@ Presiona Espacio para abrir el panel lateral. ImgS3Uploader - + Uploading Image Subiendo Imagen - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL Copiar URL - + Open URL Abrir URL - + Delete image Borrar imagen - + Image to Clipboard. Imagen al Portapapeles. - + Unable to open the URL. No puede abrir la URL. - - + + URL copied to clipboard. URL copiada al portapapeles. - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. Captura copiada al portapapeles. @@ -1187,6 +1187,14 @@ You can find me in the system tray. Borra la última modificación + + UtilityPanel + + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_fr.ts b/translations/Internationalization_fr.ts index 8982529b..b106f60a 100644 --- a/translations/Internationalization_fr.ts +++ b/translations/Internationalization_fr.ts @@ -130,7 +130,7 @@ Imposible de capturer l'écran - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -455,27 +455,27 @@ Appuyer sur Espace pour ouvrir le panneau latéral. HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL Copier l'URL - + URL copied to clipboard. URL copiée dans le Presse-papier. - + Open in browser @@ -483,89 +483,89 @@ Appuyer sur Espace pour ouvrir le panneau latéral. ImgS3Uploader - + Uploading Image Mise en ligne de l'image - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL Copier l'URL - + Open URL Ouvrir l'URL - + Delete image - + Image to Clipboard. Image dans le Presse-papier. - + Unable to open the URL. Impossible d'ouvrir l'URL. - - + + URL copied to clipboard. URL copiée dans le Presse-papier. - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. Capture d'écran copiée dans le Presse-papier. @@ -1187,6 +1187,14 @@ You can find me in the system tray. Annuler la dernière modification + + UtilityPanel + + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_hu.ts b/translations/Internationalization_hu.ts index b2fbe717..9bdcea73 100644 --- a/translations/Internationalization_hu.ts +++ b/translations/Internationalization_hu.ts @@ -995,6 +995,13 @@ You can find me in the system tray. Visszavonja az utolsó módosítást + + UtilityPanel + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_ja.ts b/translations/Internationalization_ja.ts index c1c28838..f07e20a0 100644 --- a/translations/Internationalization_ja.ts +++ b/translations/Internationalization_ja.ts @@ -130,7 +130,7 @@ 画面をキャプチャーできません - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -455,27 +455,27 @@ Enter を押すと画面をキャプチャー。 HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL URL をコピー - + URL copied to clipboard. URL をクリップボードにコピーしました。 - + Open in browser @@ -483,89 +483,89 @@ Enter を押すと画面をキャプチャー。 ImgS3Uploader - + Uploading Image 画像をアップロード中 - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL URL をコピー - + Open URL URL を開く - + Delete image 画像を削除 - + Image to Clipboard. 画像をクリップボードへ。 - + Unable to open the URL. URL を開けません。 - - + + URL copied to clipboard. URL をクリップボードにコピーしました。 - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. スクリーンショットをクリップボードにコピーしました。 @@ -1187,6 +1187,14 @@ You can find me in the system tray. 最後の変更を元に戻す + + UtilityPanel + + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_ka.ts b/translations/Internationalization_ka.ts index 3b11f61e..2d3c599e 100644 --- a/translations/Internationalization_ka.ts +++ b/translations/Internationalization_ka.ts @@ -130,7 +130,7 @@ ეკრანის გადაღება ვერ მოხერხდა - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -451,27 +451,27 @@ Press Space to open the side panel. HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL URL-ის კოპირება - + URL copied to clipboard. URL დაკოპირდა გაცვლის ბუფერში. - + Open in browser @@ -479,89 +479,89 @@ Press Space to open the side panel. ImgS3Uploader - + Uploading Image სურათის ატვირთვა - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL URL-ის კოპირება - + Open URL URL-ის გახსნა - + Delete image - + Image to Clipboard. სურათის გაცვლის ბუფერში გაგზავნა - + Unable to open the URL. URL-ის გახსნა ვერ მოხერხდა. - - + + URL copied to clipboard. URL დაკოპირდა გაცვლის ბუფერში. - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. სურათი დაკოპირდა გაცვლის ბუფერში. @@ -1183,6 +1183,14 @@ You can find me in the system tray. ბოლო ცვლილების გაუქმება + + UtilityPanel + + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_nl.ts b/translations/Internationalization_nl.ts index 93afd16b..24b61b0b 100644 --- a/translations/Internationalization_nl.ts +++ b/translations/Internationalization_nl.ts @@ -130,7 +130,7 @@ Kan scherm niet vastleggen - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -455,27 +455,27 @@ Druk op spatie om het zijpaneel te openen. HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL URL kopiëren - + URL copied to clipboard. URL gekopieerd naar klembord. - + Open in browser @@ -483,89 +483,89 @@ Druk op spatie om het zijpaneel te openen. ImgS3Uploader - + Uploading Image Bezig met uploaden van afbeelding... - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL URL kopiëren - + Open URL URL openen - + Delete image Afbeelding verwijderen - + Image to Clipboard. Afbeelding naar klembord. - + Unable to open the URL. Kan URL niet openen. - - + + URL copied to clipboard. URL gekopieerd naar klembord. - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. Schermafdruk gekopieerd naar klembord. @@ -1188,6 +1188,14 @@ You can find me in the system tray. Laatste wijziging ongedaan maken + + UtilityPanel + + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_pl.ts b/translations/Internationalization_pl.ts index dbb18796..e4c084af 100644 --- a/translations/Internationalization_pl.ts +++ b/translations/Internationalization_pl.ts @@ -130,7 +130,7 @@ Nie można przechwycić ekranu - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -454,27 +454,27 @@ Spacja, aby pokazać panel boczny. HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL Kopiuj URL - + URL copied to clipboard. URL skopiowany do schowka. - + Open in browser @@ -482,89 +482,89 @@ Spacja, aby pokazać panel boczny. ImgS3Uploader - + Uploading Image Wysyłanie obrazka - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL Kopiuj URL - + Open URL Otwórz URL - + Delete image Usuń obrazek - + Image to Clipboard. Obrazek do schowka. - + Unable to open the URL. Nie można otworzyć adresu URL. - - + + URL copied to clipboard. URL skopiowany do schowka. - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. Zrzut ekranu skopiowany do schowka. @@ -1186,6 +1186,14 @@ You can find me in the system tray. Cofnij ostatnią zmianę + + UtilityPanel + + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_pt_br.ts b/translations/Internationalization_pt_br.ts index fe86b7dd..af102ace 100644 --- a/translations/Internationalization_pt_br.ts +++ b/translations/Internationalization_pt_br.ts @@ -130,7 +130,7 @@ Não foi possível capturar a tela - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -455,27 +455,27 @@ Pressione espaço abrir o painel lateral. HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL Copiar URL - + URL copied to clipboard. URL copiada para o clipboard. - + Open in browser @@ -483,89 +483,89 @@ Pressione espaço abrir o painel lateral. ImgS3Uploader - + Uploading Image Upando Imagem - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL Copiar URL - + Open URL Abrir URL - + Delete image Deletar imagem - + Image to Clipboard. Imagem no Clipboard. - + Unable to open the URL. Não foi possível abrir a URL. - - + + URL copied to clipboard. URL copiada para o clipboard. - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. Screenshot copiada para o clipboard. @@ -1187,6 +1187,14 @@ You can find me in the system tray. Desfaz a última modificação + + UtilityPanel + + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_ru.ts b/translations/Internationalization_ru.ts index 02613f0e..62be8f20 100644 --- a/translations/Internationalization_ru.ts +++ b/translations/Internationalization_ru.ts @@ -130,7 +130,7 @@ Не удалось захватить экран - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -471,27 +471,27 @@ Press Space to open the side panel. История скриншотов пустая - + Latest Uploads Последние загрузки - + Screenshots history is empty История скриншотов пуста - + Copy URL Скопировать URL - + URL copied to clipboard. URL скопирован в буфер обмена. - + Open in browser Открыть в браузере @@ -503,17 +503,17 @@ Press Space to open the side panel. Загрузить на S3 - + Uploading Image Загрузка изображения - + Upload image to S3 Загрузить на S3 - + Delete image from S3 Удалить скриншот с S3 @@ -522,74 +522,74 @@ Press Space to open the side panel. Удалить скриншот - + Remove screenshot from history? Удалить скриншот из истории? - + S3 Creds URL is not found in your configuration file Параметры доступов к S3 не найдены в конфигурационном файле - + Copy URL Скопировать URL - + Open URL Открыть URL - + Delete image Удалить изображение - + Image to Clipboard. Изображение в буфер обмена. - + Unable to open the URL. Не удалось открыть URL. - - + + URL copied to clipboard. URL скопирован в буфер обмена. - - + + Deleting image... Удаление скриншота... - + Unable to remove screenshot from the remote storage. Невозможно удалить снимок экрана из удаленного хранилища. - + Network error Ошибка сети - + Possibly it doesn't exist anymore Возможно, его больше не существует - + Do you want to remove screenshot from local history anyway? Вы все равно хотите удалить скриншот из локальной истории? - + Screenshot copied to clipboard. Снимок скопирован в буфер обмена. @@ -873,7 +873,7 @@ Press Space to open the side panel. Save screenshot - + Сохранить скриншот @@ -1219,6 +1219,14 @@ You can find me in the system tray. Отменить последнее изменение + + UtilityPanel + + + Hide + Спрятать + + VisualsEditor diff --git a/translations/Internationalization_sk.ts b/translations/Internationalization_sk.ts index 5a2aa4fe..61db0a29 100644 --- a/translations/Internationalization_sk.ts +++ b/translations/Internationalization_sk.ts @@ -130,7 +130,7 @@ Nepodarilo sa zachytiť obrazovku - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -455,27 +455,27 @@ Stlačte medzerník pre otvorenie postranného panelu. HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL Kopírovať URL - + URL copied to clipboard. URL skopírovaná do schránky. - + Open in browser @@ -483,89 +483,89 @@ Stlačte medzerník pre otvorenie postranného panelu. ImgS3Uploader - + Uploading Image Nahrávam obrázok - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL Kopírovať URL - + Open URL Otvoriť URL - + Delete image Vymazať obrázok - + Image to Clipboard. Obrázok do schránky. - + Unable to open the URL. Nepodarilo sa otvoriť URL. - - + + URL copied to clipboard. URL skopírovaná do schránky. - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. Snímka obrazovky bola skopírovaná do schránky. @@ -1187,6 +1187,14 @@ You can find me in the system tray. Vrátiť poslednú úpravu + + UtilityPanel + + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_sr.ts b/translations/Internationalization_sr.ts index 37fd02ac..37668c83 100644 --- a/translations/Internationalization_sr.ts +++ b/translations/Internationalization_sr.ts @@ -130,7 +130,7 @@ Нисам успео да снимим екран - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -455,27 +455,27 @@ Press Space to open the side panel. HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL Запамти интернет адресу - + URL copied to clipboard. Интернет адреса је сачувана у привременој меморији. - + Open in browser @@ -483,89 +483,89 @@ Press Space to open the side panel. ImgS3Uploader - + Uploading Image Објављујем слику - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL Запамти интернет адресу - + Open URL Посети интернет адресу - + Delete image Избриши слику - + Image to Clipboard. Сачувај у привремену меморију. - + Unable to open the URL. Нисам успео да посетим интернет адресу. - - + + URL copied to clipboard. Интернет адреса је сачувана у привременој меморији. - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. Слика је сачувана у привременој меморији. @@ -1188,6 +1188,14 @@ You can find me in the system tray. Поништи последњу измену + + UtilityPanel + + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_tr.ts b/translations/Internationalization_tr.ts index 9c1b9a8a..3c3beb0e 100644 --- a/translations/Internationalization_tr.ts +++ b/translations/Internationalization_tr.ts @@ -130,7 +130,7 @@ Ekran resmi alınamadı - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -455,27 +455,27 @@ Yan paneli açmak için Boşluk tuşuna basın. HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL URL Kopyala - + URL copied to clipboard. URL panoya kopyalandı. - + Open in browser @@ -483,89 +483,89 @@ Yan paneli açmak için Boşluk tuşuna basın. ImgS3Uploader - + Uploading Image Resim Yükleniyor - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL URL Kopyala - + Open URL URL Aç - + Delete image Resmi sil - + Image to Clipboard. Resim Pano'ya. - + Unable to open the URL. URL açılamıyor. - - + + URL copied to clipboard. URL panoya kopyalandı. - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. Ekran görüntüsü panoya kopyalandı. @@ -1187,6 +1187,14 @@ You can find me in the system tray. Son değişikliği geri al + + UtilityPanel + + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_uk.ts b/translations/Internationalization_uk.ts index 9320a67e..bdda9bc5 100644 --- a/translations/Internationalization_uk.ts +++ b/translations/Internationalization_uk.ts @@ -130,7 +130,7 @@ Не вдалось захопити екран - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -471,27 +471,27 @@ Press Space to open the side panel. Історія скріншотів пуста - + Latest Uploads Останні завантаження - + Screenshots history is empty Історія скріншотів пуста - + Copy URL Скопіювати URL - + URL copied to clipboard. URL скопійовано до буферу обміну. - + Open in browser Відкрити у браузері @@ -503,17 +503,17 @@ Press Space to open the side panel. Вивантажити на S3 - + Uploading Image Вивантаження зображення - + Upload image to S3 Завантажити на S3 - + Delete image from S3 Видалити скріншот з S3 @@ -522,74 +522,74 @@ Press Space to open the side panel. Видалити скіншот - + Remove screenshot from history? Видалити скріншот із історії? - + S3 Creds URL is not found in your configuration file Параметри доступів до S3 не знайдені у конфігураціонному файлі - + Copy URL Скопіювати URL - + Open URL Відкрити URL - + Delete image Видалити зображення - + Image to Clipboard. Зображення до буферу обміну. - + Unable to open the URL. Не вдалось відкрити URL. - - + + URL copied to clipboard. URL скопійовано до буферу обміну. - - + + Deleting image... Видалення скріншоту... - + Unable to remove screenshot from the remote storage. Не вдалося видалити скріншот із віддаленого сховища. - + Network error Помилка мережі - + Possibly it doesn't exist anymore Можливо, його більше не існує - + Do you want to remove screenshot from local history anyway? Ви все одно хочете видалити скріншот із локальної історії? - + Screenshot copied to clipboard. Знімок скопійовано до буферу обміну. @@ -873,7 +873,7 @@ Press Space to open the side panel. Save screenshot - + Зберегти скріншот @@ -1219,6 +1219,14 @@ You can find me in the system tray. Скасувати останню зміну + + UtilityPanel + + + Hide + Сховати + + VisualsEditor diff --git a/translations/Internationalization_zh_CN.ts b/translations/Internationalization_zh_CN.ts index 12a98f56..97c59ee4 100644 --- a/translations/Internationalization_zh_CN.ts +++ b/translations/Internationalization_zh_CN.ts @@ -131,7 +131,7 @@ 无法捕获屏幕 - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -456,27 +456,27 @@ Press Space to open the side panel. HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL 复制链接 - + URL copied to clipboard. 复制链接到剪贴板。 - + Open in browser @@ -484,89 +484,89 @@ Press Space to open the side panel. ImgS3Uploader - + Uploading Image 正在上传 - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL 复制链接 - + Open URL 打开链接 - + Delete image 删除图像 - + Image to Clipboard. 保存文件到剪贴板。 - + Unable to open the URL. 无法打开此链接。 - - + + URL copied to clipboard. 复制链接到剪贴板。 - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. 截图复制到剪贴板。 @@ -1188,6 +1188,14 @@ You can find me in the system tray. 撤消上次修改 + + UtilityPanel + + + Hide + + + VisualsEditor diff --git a/translations/Internationalization_zh_TW.ts b/translations/Internationalization_zh_TW.ts index f699d927..a61ddf79 100644 --- a/translations/Internationalization_zh_TW.ts +++ b/translations/Internationalization_zh_TW.ts @@ -130,7 +130,7 @@ 無法擷取螢幕 - + Select an area with the mouse, or press Esc to exit. Press Enter to capture the screen. Press Right Click to show the color picker. @@ -451,27 +451,27 @@ Press Space to open the side panel. HistoryWidget - + Latest Uploads - + Screenshots history is empty - + Copy URL 複製連結 - + URL copied to clipboard. 連結已複製到剪貼簿 - + Open in browser @@ -479,89 +479,89 @@ Press Space to open the side panel. ImgS3Uploader - + Uploading Image 正在上傳 - + Upload image to S3 - + Delete image from S3 - + Unable to remove screenshot from the remote storage. - + Network error - + Possibly it doesn't exist anymore - + Do you want to remove screenshot from local history anyway? - + S3 Creds URL is not found in your configuration file - + Copy URL 複製連結 - + Open URL 打開連結 - + Delete image - + Image to Clipboard. 將檔案複製到剪貼簿 - + Unable to open the URL. 無法打開此連結 - - + + URL copied to clipboard. 連結已複製到剪貼簿 - - + + Deleting image... - + Remove screenshot from history? - + Screenshot copied to clipboard. 截圖已複製到剪貼簿 @@ -1183,6 +1183,14 @@ You can find me in the system tray. 復原上次修改 + + UtilityPanel + + + Hide + + + VisualsEditor