diff --git a/src/config/filepathconfiguration.cpp b/src/config/filepathconfiguration.cpp
index 7ecafb43..278d6f18 100644
--- a/src/config/filepathconfiguration.cpp
+++ b/src/config/filepathconfiguration.cpp
@@ -62,12 +62,13 @@ void FilePathConfiguration::screenshotPathFixedSet() {
QFileDialog *dirDialog = new QFileDialog(this, tr("Select default path for Screenshots"));
dirDialog->setFileMode(QFileDialog::DirectoryOnly);
dirDialog->setOption(QFileDialog::ShowDirsOnly, true);
- QString filePath = dirDialog->getOpenFileName();
- QDir d = QFileInfo(filePath).absoluteDir();
- QString absolutePath = d.absolutePath();
- m_screenshotPathFixedDefault->setText(absolutePath);
- ConfigHandler config;
- config.setSavePathFixed(absolutePath);
+ if (dirDialog->exec()) {
+ QDir d = dirDialog->directory();
+ QString absolutePath = d.absolutePath();
+ m_screenshotPathFixedDefault->setText(absolutePath);
+ ConfigHandler config;
+ config.setSavePathFixed(absolutePath);
+ }
}
void FilePathConfiguration::screenshotPathFixedClear() {
diff --git a/src/config/geneneralconf.cpp b/src/config/geneneralconf.cpp
index 66b1664d..0732d631 100644
--- a/src/config/geneneralconf.cpp
+++ b/src/config/geneneralconf.cpp
@@ -39,6 +39,7 @@ GeneneralConf::GeneneralConf(QWidget *parent) : QWidget(parent) {
initShowStartupLaunchMessage();
initCloseAfterCapture();
initCopyAndCloseAfterUpload();
+ initCopyPathAfterSave();
// this has to be at the end
initConfingButtons();
@@ -52,6 +53,7 @@ void GeneneralConf::updateComponents() {
m_autostart->setChecked(config.startupLaunchValue());
m_closeAfterCapture->setChecked(config.closeAfterScreenshotValue());
m_copyAndCloseAfterUpload->setChecked(config.copyAndCloseAfterUploadEnabled());
+ m_copyPathAfterSave->setChecked(config.copyPathAfterSaveEnabled());
#if defined(Q_OS_LINUX) || defined(Q_OS_UNIX)
m_showTray->setChecked(!config.disabledTrayIconValue());
@@ -242,8 +244,7 @@ void GeneneralConf::initCloseAfterCapture() {
&GeneneralConf::closeAfterCaptureChanged);
}
-void GeneneralConf::initCopyAndCloseAfterUpload()
-{
+void GeneneralConf::initCopyAndCloseAfterUpload() {
m_copyAndCloseAfterUpload = new QCheckBox(tr("Copy URL after upload"), this);
ConfigHandler config;
m_copyAndCloseAfterUpload->setChecked(config.copyAndCloseAfterUploadEnabled());
@@ -254,3 +255,14 @@ void GeneneralConf::initCopyAndCloseAfterUpload()
ConfigHandler().setCopyAndCloseAfterUploadEnabled(checked);
});
}
+
+void GeneneralConf::initCopyPathAfterSave() {
+ m_copyPathAfterSave = new QCheckBox(tr("Copy file path after save"), this);
+ ConfigHandler config;
+ m_copyPathAfterSave->setChecked(config.copyPathAfterSaveEnabled());
+ m_copyPathAfterSave->setToolTip(tr("Copy file path after save"));
+ m_layout->addWidget(m_copyPathAfterSave);
+ connect(m_copyPathAfterSave, &QCheckBox::clicked, [](bool checked) {
+ ConfigHandler().setCopyPathAfterSaveEnabled(checked);
+ });
+}
diff --git a/src/config/geneneralconf.h b/src/config/geneneralconf.h
index 4f1b0877..e387a750 100644
--- a/src/config/geneneralconf.h
+++ b/src/config/geneneralconf.h
@@ -51,6 +51,7 @@ private:
QCheckBox *m_showStartupLaunchMessage;
QCheckBox *m_closeAfterCapture;
QCheckBox *m_copyAndCloseAfterUpload;
+ QCheckBox *m_copyPathAfterSave;
QPushButton *m_importButton;
QPushButton *m_exportButton;
QPushButton *m_resetButton;
@@ -63,4 +64,5 @@ private:
void initShowStartupLaunchMessage();
void initCloseAfterCapture();
void initCopyAndCloseAfterUpload();
+ void initCopyPathAfterSave();
};
diff --git a/src/utils/confighandler.cpp b/src/utils/confighandler.cpp
index 494d6fe8..216d24ea 100644
--- a/src/utils/confighandler.cpp
+++ b/src/utils/confighandler.cpp
@@ -380,6 +380,18 @@ void ConfigHandler::setCopyAndCloseAfterUploadEnabled(const bool value) {
m_settings.setValue(QStringLiteral("copyAndCloseAfterUpload"), value);
}
+bool ConfigHandler::copyPathAfterSaveEnabled() {
+ bool res = false;
+ if (m_settings.contains(QStringLiteral("copyPathAfterSave"))) {
+ res = m_settings.value(QStringLiteral("copyPathAfterSave")).toBool();
+ }
+ return res;
+}
+
+void ConfigHandler::setCopyPathAfterSaveEnabled(const bool value) {
+ m_settings.setValue(QStringLiteral("copyPathAfterSave"), value);
+}
+
void ConfigHandler::setDefaults() {
m_settings.clear();
}
diff --git a/src/utils/confighandler.h b/src/utils/confighandler.h
index 1690caeb..6dccbb86 100644
--- a/src/utils/confighandler.h
+++ b/src/utils/confighandler.h
@@ -79,6 +79,9 @@ public:
bool copyAndCloseAfterUploadEnabled();
void setCopyAndCloseAfterUploadEnabled(const bool);
+ bool copyPathAfterSaveEnabled();
+ void setCopyPathAfterSaveEnabled(const bool);
+
void setDefaults();
void setAllTheButtons();
diff --git a/src/utils/screenshotsaver.cpp b/src/utils/screenshotsaver.cpp
index ebd30c96..31bbb9b2 100644
--- a/src/utils/screenshotsaver.cpp
+++ b/src/utils/screenshotsaver.cpp
@@ -83,9 +83,14 @@ bool ScreenshotSaver::saveToFilesystemGUI(const QPixmap &capture) {
ok = capture.save(savePath);
if (ok) {
+ ConfigHandler config;
QString pathNoFile = savePath.left(savePath.lastIndexOf(QLatin1String("/")));
- ConfigHandler().setSavePath(pathNoFile);
+ config.setSavePath(pathNoFile);
QString msg = QObject::tr("Capture saved as ") + savePath;
+ if(config.copyPathAfterSaveEnabled()) {
+ QApplication::clipboard()->setText(savePath);
+ msg = QObject::tr("Capture saved and copied to the clipboard as ") + savePath;
+ }
SystemNotification().sendMessage(msg, savePath);
} else {
QString msg = QObject::tr("Error trying to save as ") + savePath;
diff --git a/translations/Internationalization_ca.ts b/translations/Internationalization_ca.ts
index 5dc9bbfb..503f9d3a 100644
--- a/translations/Internationalization_ca.ts
+++ b/translations/Internationalization_ca.ts
@@ -327,121 +327,127 @@ Press Space to open the side panel.
GeneneralConf
-
+ Show help messageMostra el missatge d'ajuda
-
+ Show the help message at the beginning in the capture mode.Mostra el missatge d'ajuda en iniciar el mode de captura.
-
-
+
+ Show desktop notificationsMostra les notificacions d'escriptori
-
+ Show tray iconMostra la icona en la barra de tasques
-
+ Show the systemtray iconMostra la icona en la barra de tasques
-
-
+
+ ImportImportar
-
-
-
+
+
+ ErrorError
-
+ Unable to read file.Impossible llegir el fitxer.
-
-
+
+ Unable to write file.Impossible escriure al fitxer.
-
+ Save FileGuardar Arxiu
-
+ Confirm ResetConfirmar Reset
-
+ Are you sure you want to reset the configuration?Esteu segur que voleu reiniciar la configuració?
-
+ Configuration FileFitxer de Configuració
-
+ ExportExportar
-
+ ResetReset
-
+ Launch at startupLlançament a l'inici
-
-
+
+ Launch Flameshot
-
+ Show welcome message on launch
-
+ Close application after capture
-
+ Close after taking a screenshot
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -812,22 +818,27 @@ Press Space to open the side panel.
QObject
-
+ Save ErrorS'ha produït un error en guardar
-
+ Capture saved as Anomena i guarda la captura
-
+ Error trying to save as S'ha produït un error en anomenar i guardar
+
+
+ Capture saved and copied to the clipboard as
+
+
diff --git a/translations/Internationalization_de_DE.ts b/translations/Internationalization_de_DE.ts
index 7ed05d5c..d4c34b2e 100644
--- a/translations/Internationalization_de_DE.ts
+++ b/translations/Internationalization_de_DE.ts
@@ -330,121 +330,127 @@ Drücke die Leertaste um das Seitenmenü zu öffnen.
GeneneralConf
-
-
+
+ ImportImportieren
-
-
-
+
+
+ ErrorFehler
-
+ Unable to read file.Datei kann nicht gelesen werden.
-
-
+
+ Unable to write file.Datei kann nicht geschrieben werden.
-
+ Save FileDatei speichern
-
+ Confirm ResetZurücksetzen bestätigen
-
+ Are you sure you want to reset the configuration?Sind Sie sicher, dass sie die Konfiguration zurücksetzen wollen?
-
+ Show help messageHilfetext anzeigen
-
+ Show the help message at the beginning in the capture mode.Hilfetext am Start der Auswahl anzeigen.
-
-
+
+ Show desktop notificationsZeige Desktopbenachrichtigungen
-
+ Show tray iconZeige Taskleistensymbol
-
+ Show the systemtray iconZeigt das Taskleistensymbol
-
+ Configuration FileKonfigurationsdatei
-
+ ExportExportieren
-
+ ResetZurücksetzen
-
+ Launch at startupAutomatisch starten
-
-
+
+ Launch FlameshotStarte Flameshot
-
+ Show welcome message on launch
-
+ Close application after capture
-
+ Close after taking a screenshot
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -815,13 +821,13 @@ Drücke die Leertaste um das Seitenmenü zu öffnen.
QObject
-
+ Save ErrorSpeicherfehler
-
+ Capture saved as Aufnahme gespeichert als
@@ -832,10 +838,15 @@ Drücke die Leertaste um das Seitenmenü zu öffnen.
-
+ Error trying to save as Fehler beim Speichern unter
+
+
+ Capture saved and copied to the clipboard as
+
+
diff --git a/translations/Internationalization_es.ts b/translations/Internationalization_es.ts
index dc88ca9c..811669a2 100644
--- a/translations/Internationalization_es.ts
+++ b/translations/Internationalization_es.ts
@@ -330,121 +330,127 @@ Presiona Espacio para abrir el panel lateral.
GeneneralConf
-
-
+
+ ImportImportar
-
-
-
+
+
+ ErrorError
-
+ Unable to read file.Imposible leer el archivo.
-
-
+
+ Unable to write file.Imposible escribir el archivo.
-
+ Save FileGuardar Archivo
-
+ Confirm ResetConfirmar Reset
-
+ Are you sure you want to reset the configuration?¿Estás seguro de que quieres reiniciar la configuración?
-
+ Show help messageMostrar mensaje de ayuda
-
+ Show the help message at the beginning in the capture mode.Muestra el mensaje de ayuda al iniciar el modo de captura.
-
-
+
+ Show desktop notificationsMostrar notificaciones del escritorio
-
+ Show tray iconMostrar icono en la barra de tareas
-
+ Show the systemtray iconMostrar el icono en la barra de tareas
-
+ Configuration FileArchivo de Configuración
-
+ ExportExportar
-
+ ResetReset
-
+ Launch at startupLanzar en el arranque
-
-
+
+ Launch FlameshotLanzar Flameshot
-
+ Show welcome message on launch
-
+ Close application after capture
-
+ Close after taking a screenshot
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -815,13 +821,13 @@ Presiona Espacio para abrir el panel lateral.
QObject
-
+ Save ErrorError al Guardar
-
+ Capture saved as Captura guardada como
@@ -832,10 +838,15 @@ Presiona Espacio para abrir el panel lateral.
-
+ Error trying to save as Error intentando guardar como
+
+
+ Capture saved and copied to the clipboard as
+
+
diff --git a/translations/Internationalization_fr.ts b/translations/Internationalization_fr.ts
index 51a34a17..40c624e7 100644
--- a/translations/Internationalization_fr.ts
+++ b/translations/Internationalization_fr.ts
@@ -330,121 +330,127 @@ Appuyer sur Espace pour ouvrir le panneau latéral.
GeneneralConf
-
-
+
+ ImportImporter
-
-
-
+
+
+ ErrorErreur
-
+ Unable to read file.Impossible de lire le fichier.
-
-
+
+ Unable to write file.Impossible d'écrire le fichier.
-
+ Save FileSauvegarder le fichier
-
+ Confirm ResetConfirmer la Réinitialisation
-
+ Are you sure you want to reset the configuration?Êtes-vous sûr de vouloir réinitialiser la configuration ?
-
+ Show help messageMontrer le message d'aide
-
+ Show the help message at the beginning in the capture mode.Afficher ce message au lancement du mode capture.
-
-
+
+ Show desktop notificationsAfficher les notifications du bureau
-
+ Show tray iconAfficher les icones de la barre d'état
-
+ Show the systemtray iconAfficher l'icône dans la barre de tâches
-
+ Configuration FileFichier de Configuration
-
+ ExportExporter
-
+ ResetRéinitialiser
-
+ Launch at startupLancer au démarrage
-
-
+
+ Launch FlameshotDémarrer Flameshot
-
+ Show welcome message on launch
-
+ Close application after captureFermer après une capture
-
+ Close after taking a screenshotFermer l'application après une capture d'écran
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -815,13 +821,13 @@ Appuyer sur Espace pour ouvrir le panneau latéral.
QObject
-
+ Save ErrorErreur lors de la sauvegarde
-
+ Capture saved as Capture d'écran sauvegardée sous
@@ -832,10 +838,15 @@ Appuyer sur Espace pour ouvrir le panneau latéral.
-
+ Error trying to save as Erreur lors de la sauvegarde sous
+
+
+ Capture saved and copied to the clipboard as
+
+
diff --git a/translations/Internationalization_hu.ts b/translations/Internationalization_hu.ts
index f2cdab71..b2daa6c3 100644
--- a/translations/Internationalization_hu.ts
+++ b/translations/Internationalization_hu.ts
@@ -385,6 +385,10 @@ Press Space to open the side panel.
Show welcome message on launch
+
+ Copy file path after save
+
+ HistoryWidget
@@ -727,6 +731,10 @@ You can find me in the system tray.
Hello, I'm here! Click icon in the tray to take a screenshot or click with a right button to see more options.
+
+ Capture saved and copied to the clipboard as
+
+ RectangleTool
diff --git a/translations/Internationalization_ja.ts b/translations/Internationalization_ja.ts
index 82a957b7..5c8408dc 100644
--- a/translations/Internationalization_ja.ts
+++ b/translations/Internationalization_ja.ts
@@ -330,121 +330,127 @@ Enter を押すと画面をキャプチャー。
GeneneralConf
-
+ Show help messageヘルプメッセージを表示する
-
+ Show the help message at the beginning in the capture mode.キャプチャーモード開始時にヘルプメッセージを表示する。
-
-
+
+ Show desktop notificationsデスクトップの通知を表示する
-
+ Show tray iconトレイアイコンを表示する
-
+ Show the systemtray iconシステムトレイアイコンを表示する
-
-
+
+ Importインポート
-
-
-
+
+
+ Errorエラー
-
+ Unable to read file.ファイルを読み込めません。
-
-
+
+ Unable to write file.ファイルに書き込めません。
-
+ Save Fileファイルを保存
-
+ Confirm Resetリセットの確認
-
+ Are you sure you want to reset the configuration?設定をリセットしてもよろしいですか?
-
+ Configuration File設定ファイル
-
+ Exportエクスポート
-
+ Resetリセット
-
+ Launch at startupスタートアップ時に起動する
-
-
+
+ Launch FlameshotFlameshot を起動する
-
+ Show welcome message on launch
-
+ Close application after capture
-
+ Close after taking a screenshot
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -815,13 +821,13 @@ Enter を押すと画面をキャプチャー。
QObject
-
+ Save Error保存エラー
-
+ Capture saved as キャプチャーを保存しました:
@@ -832,10 +838,15 @@ Enter を押すと画面をキャプチャー。
-
+ Error trying to save as 保存時にエラーが発生しました:
+
+
+ Capture saved and copied to the clipboard as
+
+
diff --git a/translations/Internationalization_ka.ts b/translations/Internationalization_ka.ts
index a13d2f2f..abf02694 100644
--- a/translations/Internationalization_ka.ts
+++ b/translations/Internationalization_ka.ts
@@ -326,121 +326,127 @@ Press Space to open the side panel.
GeneneralConf
-
-
+
+ Importიმპორტირება
-
-
-
+
+
+ Errorშეცდომა
-
+ Unable to read file.ფაილის წაკითხვა ვერ მოხერხდა.
-
-
+
+ Unable to write file.ფაილის ჩაწერა ვერ მოხერხდა.
-
+ Save Fileფაილის შენახვა
-
+ Confirm Resetგანულების დადასტურება
-
+ Are you sure you want to reset the configuration?დარწმუნებული ხართ, რომ გსურთ პარამეტრების განულება?
-
+ Show help messageდახმარების შეტყობინების ნახვა
-
+ Show the help message at the beginning in the capture mode.დახმარების შეტყობინების ნახვა გადაღების რეჟიმის დაწყებისას.
-
-
+
+ Show desktop notificationsცნობების ჩვენება სამუშაო მაგიდაზე
-
+ Show tray iconხატულის ჩვენება სისტემურ პანელზე
-
+ Show the systemtray iconხატულის ჩვენება სისტემურ პანელზე
-
+ Configuration Fileპარამეტრების ფაილი
-
+ Exportექსპორტირება
-
+ Resetგანულება
-
+ Launch at startupგაშვება სისტემის ჩატვირთვისას
-
-
+
+ Launch Flameshot
-
+ Show welcome message on launch
-
+ Close application after capture
-
+ Close after taking a screenshot
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -811,13 +817,13 @@ Press Space to open the side panel.
QObject
-
+ Save Errorშეცდომა შენახვისას
-
+ Capture saved as სურათი შენახულია როგორც:
@@ -828,10 +834,15 @@ Press Space to open the side panel.
-
+ Error trying to save as შეცდომა მცდელობისას შენახულიყო როგორც:
+
+
+ Capture saved and copied to the clipboard as
+
+
diff --git a/translations/Internationalization_nl.ts b/translations/Internationalization_nl.ts
index 84046493..52532b3c 100644
--- a/translations/Internationalization_nl.ts
+++ b/translations/Internationalization_nl.ts
@@ -330,121 +330,127 @@ Druk op spatie om het zijpaneel te openen.
GeneneralConf
-
-
+
+ ImportImporteren
-
-
-
+
+
+ ErrorFout
-
+ Unable to read file.Kan bestand niet uitlezen.
-
-
+
+ Unable to write file.Kan bestand niet wegschrijven.
-
+ Save FileBestand opslaan
-
+ Confirm ResetHerstellen bevestigen
-
+ Are you sure you want to reset the configuration?Weet je zeker dat je de standwaardwaarden van de configuratie wilt herstellen?
-
+ Show help messageUitleg tonen
-
+ Show the help message at the beginning in the capture mode.Toont een bericht met uitleg bij het openen van de vastlegmodus.
-
-
+
+ Show desktop notificationsBureaubladmeldingen tonen
-
+ Show tray iconSysteemvakpictogram tonen
-
+ Show the systemtray iconToont het systeemvakpictogram
-
+ Configuration FileConfiguratiebestand
-
+ ExportExporteren
-
+ ResetStandaardwaarden
-
+ Launch at startupAutomatisch opstarten
-
-
+
+ Launch FlameshotFlameshot openen
-
+ Show welcome message on launch
-
+ Close application after capture
-
+ Close after taking a screenshot
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -815,13 +821,13 @@ Druk op spatie om het zijpaneel te openen.
QObject
-
+ Save ErrorFout tijdens opslaan
-
+ Capture saved as Schermafdruk opgeslagen als
@@ -832,10 +838,15 @@ Druk op spatie om het zijpaneel te openen.
-
+ Error trying to save as Fout tijdens opslaan als
+
+
+ Capture saved and copied to the clipboard as
+
+
diff --git a/translations/Internationalization_pl.ts b/translations/Internationalization_pl.ts
index b785a13e..6f17affb 100644
--- a/translations/Internationalization_pl.ts
+++ b/translations/Internationalization_pl.ts
@@ -329,121 +329,127 @@ Spacja, aby pokazać panel boczny.
GeneneralConf
-
-
+
+ ImportImport
-
-
-
+
+
+ ErrorBłąd
-
+ Unable to read file.Nie można odczytać pliku.
-
-
+
+ Unable to write file.Nie można zapisać pliku.
-
+ Save FileZapisz plik
-
+ Confirm ResetPotwierdź Reset
-
+ Are you sure you want to reset the configuration?Czy na pewno chcesz zresetować konfigurację?
-
+ Show help messagePokaż podpowiedzi
-
+ Show the help message at the beginning in the capture mode.Pokaż podpowiedzi na początku trybu przechwytywania.
-
-
+
+ Show desktop notificationsPokaż powiadomienia ekranowe
-
+ Show tray iconPokaż ikonę w trayu
-
+ Show the systemtray iconPokaż ikonę w zasobniku systemowym
-
+ Configuration FilePlik konfiguracyjny
-
+ ExportExport
-
+ ResetReset
-
+ Launch at startupUruchom podczas startu
-
-
+
+ Launch FlameshotUruchom Flameshot
-
+ Show welcome message on launch
-
+ Close application after capture
-
+ Close after taking a screenshot
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -814,13 +820,13 @@ Spacja, aby pokazać panel boczny.
QObject
-
+ Save ErrorBłąd zapisu
-
+ Capture saved as Zaznaczenie zapisano jako
@@ -831,10 +837,15 @@ Spacja, aby pokazać panel boczny.
-
+ Error trying to save as Błąd przy próbie zapisu jako
+
+
+ Capture saved and copied to the clipboard as
+
+
diff --git a/translations/Internationalization_pt_br.ts b/translations/Internationalization_pt_br.ts
index 7eebc201..eb32f7bc 100644
--- a/translations/Internationalization_pt_br.ts
+++ b/translations/Internationalization_pt_br.ts
@@ -330,121 +330,127 @@ Pressione espaço abrir o painel lateral.
GeneneralConf
-
-
+
+ ImportImportar
-
-
-
+
+
+ ErrorErro
-
+ Unable to read file.Não foi possível ler o arquivo.
-
-
+
+ Unable to write file.Não foi possível escrever no arquivo.
-
+ Save FileSalvar Arquivo
-
+ Confirm ResetConfirmar Reset
-
+ Are you sure you want to reset the configuration?Tem certeza que deseja resetar a configuração?
-
+ Show help messageMostrar mensagem de ajuda
-
+ Show the help message at the beginning in the capture mode.Mostrar mensagem de ajuda no início do modo de captura.
-
-
+
+ Show desktop notificationsMostrar notificações de Desktop
-
+ Show tray iconMostrar ícone de tray
-
+ Show the systemtray iconMosrar ícone na barra de aplicações
-
+ Configuration FileArquivo de Configurações
-
+ ExportExportar
-
+ ResetReset
-
+ Launch at startupIniciar junto com o sistema
-
-
+
+ Launch FlameshotIniciar Flameshot
-
+ Show welcome message on launch
-
+ Close application after capture
-
+ Close after taking a screenshot
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -815,13 +821,13 @@ Pressione espaço abrir o painel lateral.
QObject
-
+ Save ErrorSalvar erro
-
+ Capture saved as Captura salva como
@@ -832,10 +838,15 @@ Pressione espaço abrir o painel lateral.
-
+ Error trying to save as Erro tentando salvar como
+
+
+ Capture saved and copied to the clipboard as
+
+
diff --git a/translations/Internationalization_ru.ts b/translations/Internationalization_ru.ts
index 93aeee33..50f5b4ee 100644
--- a/translations/Internationalization_ru.ts
+++ b/translations/Internationalization_ru.ts
@@ -338,121 +338,127 @@ Press Space to open the side panel.
GeneneralConf
-
-
+
+ ImportИмпорт
-
-
-
+
+
+ ErrorОшибка
-
+ Unable to read file.Не удалось прочитать файл.
-
-
+
+ Unable to write file.Не удалось записать файл.
-
+ Save FileСохранить файл
-
+ Confirm ResetПодтвердить сброс
-
+ Are you sure you want to reset the configuration?Вы действительно хотите сбросить настройки?
-
+ Show help messageПоказывать справочное сообщение
-
+ Show the help message at the beginning in the capture mode.Показывать справочное сообщение перед началом захвата экрана.
-
-
+
+ Show desktop notificationsПоказывать уведомления
-
+ Show tray iconПоказывать значок в трее
-
+ Show the systemtray iconПоказать значок в системном трее
-
+ Configuration FileФайл конфигурации
-
+ ExportЭкспорт
-
+ ResetСброс
-
+ Launch at startupЗапускать при старте системы
-
-
+
+ Launch FlameshotЗапустить Flameshot
-
+ Show welcome message on launchПоказывать приветствие при запуске
-
+ Close application after captureЗакрыть приложение после захвата
-
+ Close after taking a screenshotЗакрыть после получения скриншота
-
+ Copy URL after uploadСкопировать URL после загрузки
-
+ Copy URL and close window after uploadСкопировать URL после загрузки и закрыть окно
+
+
+
+ Copy file path after save
+ Копировать путь к сохраненному файлу
+ HistoryWidget
@@ -843,13 +849,13 @@ Press Space to open the side panel.
QObject
-
+ Save ErrorОшибка сохранения
-
+ Capture saved as Снимок сохранён как
@@ -860,10 +866,15 @@ Press Space to open the side panel.
-
+ Error trying to save as Ошибка при попытке сохранить как
+
+
+ Capture saved and copied to the clipboard as
+ Файл сохранен и путь к нему скопирован как
+
diff --git a/translations/Internationalization_sk.ts b/translations/Internationalization_sk.ts
index f99edd4b..98070e3a 100644
--- a/translations/Internationalization_sk.ts
+++ b/translations/Internationalization_sk.ts
@@ -330,121 +330,127 @@ Stlačte medzerník pre otvorenie postranného panelu.
GeneneralConf
-
-
+
+ ImportImportovať
-
-
-
+
+
+ ErrorChyba
-
+ Unable to read file.Zlyhalo čítanie súboru.
-
-
+
+ Unable to write file.Zlyhal zápis do súboru.
-
+ Save FileUložiť súbor
-
+ Confirm ResetPotvrdiť Reset
-
+ Are you sure you want to reset the configuration?Naozaj si želáte resetovať aktuálnu konfiguráciu?
-
+ Show help messageZobraziť nápovedu
-
+ Show the help message at the beginning in the capture mode.Zobraziť nápovedu na začiatku počas režimu zachytávania obrazovky.
-
-
+
+ Show desktop notificationsZobraziť systémové upozornenia
-
+ Show tray iconZobraziť stavovú ikonu
-
+ Show the systemtray iconZobraziť ikonu v stavovej oblasti
-
+ Configuration FileSúbor s konfiguráciou
-
+ ExportExportovať
-
+ ResetResetovať
-
+ Launch at startupSpúšťať pri štarte
-
-
+
+ Launch FlameshotSpustiť Flameshot
-
+ Show welcome message on launch
-
+ Close application after captureZavrieť po vytvorení snímky
-
+ Close after taking a screenshotZatvoriť po vytvorení snímky obrazovky
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -840,18 +846,23 @@ Stlačte medzerník pre otvorenie postranného panelu.
-
+ Capture saved as Snímka uložená ako
-
+ Error trying to save as Chyba pri ukladaní do
-
+
+ Capture saved and copied to the clipboard as
+
+
+
+ Save ErrorChyba pri ukladaní
diff --git a/translations/Internationalization_sr.ts b/translations/Internationalization_sr.ts
index a77f09c7..53c4f822 100644
--- a/translations/Internationalization_sr.ts
+++ b/translations/Internationalization_sr.ts
@@ -330,121 +330,127 @@ Press Space to open the side panel.
GeneneralConf
-
-
+
+ ImportУвоз
-
-
-
+
+
+ ErrorГрешка
-
+ Unable to read file.Нисам успео да прочитам датотеку.
-
-
+
+ Unable to write file.Нисам успео да сачувам датотеку.
-
+ Save FileСачувај датотеку
-
+ Confirm ResetПотврда поништавања
-
+ Are you sure you want to reset the configuration?Да ли сте сигурни да желите да поништите сва прилагођена подешавања?
-
+ Show help messageПриказуј поруку са упутством
-
+ Show the help message at the beginning in the capture mode.Приказуј поруку са кратким упутством на почетку снимања екрана.
-
-
+
+ Show desktop notificationsКористи системска обавештења
-
+ Show tray iconИконица на системској полици
-
+ Show the systemtray iconПриказуј иконицу на системској полици
-
+ Configuration FileДатотека са подешавањима
-
+ ExportИзвоз
-
+ ResetПоништи
-
+ Launch at startupПокрени на почетку
-
-
+
+ Launch FlameshotПокрени Flameshot
-
+ Show welcome message on launch
-
+ Close application after capture
-
+ Close after taking a screenshot
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -815,13 +821,13 @@ Press Space to open the side panel.
QObject
-
+ Save ErrorГрешка приликом упусивања
-
+ Capture saved as Сачувај снимак као
@@ -832,10 +838,15 @@ Press Space to open the side panel.
-
+ Error trying to save as Грешка приликом уписивања као
+
+
+ Capture saved and copied to the clipboard as
+
+
diff --git a/translations/Internationalization_tr.ts b/translations/Internationalization_tr.ts
index 81c6a68e..c6836d09 100644
--- a/translations/Internationalization_tr.ts
+++ b/translations/Internationalization_tr.ts
@@ -330,121 +330,127 @@ Yan paneli açmak için Boşluk tuşuna basın.
GeneneralConf
-
-
+
+ ImportDışa aktar
-
-
-
+
+
+ ErrorHata
-
+ Unable to read file.Dosya okunamıyor.
-
-
+
+ Unable to write file.Dosya yazılamıyor.
-
+ Save FileDosyayı Kaydet
-
+ Confirm ResetSıfırlamayı Onayla
-
+ Are you sure you want to reset the configuration?Ayarları sıfırlamak istediğinizden emin misiniz?
-
+ Show help messageYardım mesajını göster
-
+ Show the help message at the beginning in the capture mode.Yakalama modunda başında yardım mesajını gösterin.
-
-
+
+ Show desktop notificationsMasaüstü bildirimlerini göster
-
+ Show tray iconTepsi simgesini göster
-
+ Show the systemtray iconSistem tepsisi simgesini göster
-
+ Configuration FileYapılandırma Dosyası
-
+ ExportDışa aktar
-
+ ResetSıfırla
-
+ Launch at startupBaşlangıçta başlatın
-
-
+
+ Launch FlameshotFlameshot'ı başlat
-
+ Show welcome message on launch
-
+ Close application after capture
-
+ Close after taking a screenshot
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -815,13 +821,13 @@ Yan paneli açmak için Boşluk tuşuna basın.
QObject
-
+ Save ErrorKaydetme Hatası
-
+ Capture saved as Yakalama farklı kaydedildi
@@ -832,10 +838,15 @@ Yan paneli açmak için Boşluk tuşuna basın.
-
+ Error trying to save as Farklı kaydetmeye çalışılırken hata oluştu
+
+
+ Capture saved and copied to the clipboard as
+
+
diff --git a/translations/Internationalization_uk.ts b/translations/Internationalization_uk.ts
index ace5725c..9dd07351 100644
--- a/translations/Internationalization_uk.ts
+++ b/translations/Internationalization_uk.ts
@@ -338,121 +338,127 @@ Press Space to open the side panel.
GeneneralConf
-
-
+
+ ImportІмпорт
-
-
-
+
+
+ ErrorПомилка
-
+ Unable to read file.Не вдалось прочитати файл.
-
-
+
+ Unable to write file.Не вдалось записати файл.
-
+ Save FileЗберегти файл
-
+ Confirm ResetПідтвердити скидання
-
+ Are you sure you want to reset the configuration?Ви дійсно хочете скинути налаштування?
-
+ Show help messageПоказувати повідомлення довідки
-
+ Show the help message at the beginning in the capture mode.Показувати повідомлення довідки на початку режиму захоплення.
-
-
+
+ Show desktop notificationsПоказувати повідомлення
-
+ Show tray iconПоказувати значок на панелі
-
+ Show the systemtray iconПоказувати значок на панелі повідомленнь
-
+ Configuration FileФайл налаштувань
-
+ ExportЕкспорт
-
+ ResetСкинути
-
+ Launch at startupЗапускати при старті системи
-
-
+
+ Launch FlameshotЗапускати Flameshot
-
+ Show welcome message on launchПоказувати привітання при запуску
-
+ Close application after captureЗакрити прогрму після захвату
-
+ Close after taking a screenshotЗакрити програму після отримання скріншоту
-
+ Copy URL after uploadКопіювати URL після завантаження
-
+ Copy URL and close window after uploadКопіювати URL та закрити вікно після завантаження
+
+
+
+ Copy file path after save
+ Копіювати шлях до збереженного файлу
+ HistoryWidget
@@ -843,13 +849,13 @@ Press Space to open the side panel.
QObject
-
+ Save ErrorПомилка збереження
-
+ Capture saved as Знімок збережено як
@@ -860,10 +866,15 @@ Press Space to open the side panel.
-
+ Error trying to save as Помилка під час збереження як
+
+
+ Capture saved and copied to the clipboard as
+ Файл збережено та шлях до нього скопійовано як
+
diff --git a/translations/Internationalization_zh_CN.ts b/translations/Internationalization_zh_CN.ts
index 7b945c15..b5e3b8ee 100644
--- a/translations/Internationalization_zh_CN.ts
+++ b/translations/Internationalization_zh_CN.ts
@@ -331,121 +331,127 @@ Press Space to open the side panel.
GeneneralConf
-
+ Show help message显示帮助文档
-
+ Show the help message at the beginning in the capture mode.在捕获之前显示帮助信息。
-
-
+
+ Show desktop notifications显示桌面通知
-
+ Show tray icon显示托盘图标
-
+ Show the systemtray icon显示任务栏图标
-
-
+
+ Import导入
-
-
-
+
+
+ Error错误
-
+ Unable to read file.无法读取文件。
-
-
+
+ Unable to write file.无法写入文件。
-
+ Save File保存到文件
-
+ Confirm Reset确定重置
-
+ Are you sure you want to reset the configuration?你确定你想要重置配置?
-
+ Configuration File配置文件
-
+ Export导出
-
+ Reset重置
-
+ Launch at startup开机时启动
-
-
+
+ Launch Flameshot启动 Flameshot
-
+ Show welcome message on launch
-
+ Close application after capture捕获后关闭
-
+ Close after taking a screenshot获取屏幕截图后关闭
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -816,13 +822,13 @@ Press Space to open the side panel.
QObject
-
+ Save Error保存错误
-
+ Capture saved as 捕获已保存为
@@ -833,10 +839,15 @@ Press Space to open the side panel.
-
+ Error trying to save as 尝试另存为时出错
+
+
+ Capture saved and copied to the clipboard as
+
+
diff --git a/translations/Internationalization_zh_TW.ts b/translations/Internationalization_zh_TW.ts
index 6cfb9e50..30256acb 100644
--- a/translations/Internationalization_zh_TW.ts
+++ b/translations/Internationalization_zh_TW.ts
@@ -326,121 +326,127 @@ Press Space to open the side panel.
GeneneralConf
-
+ Show help message顯示説明資訊
-
+ Show the help message at the beginning in the capture mode.在擷取之前顯示説明資訊
-
-
+
+ Show desktop notifications顯示桌面通知
-
+ Show tray icon顯示託盤圖示
-
+ Show the systemtray icon顯示工作列圖示
-
-
+
+ Import匯入
-
-
-
+
+
+ Error錯誤
-
+ Unable to read file.無法讀取檔案
-
-
+
+ Unable to write file.無法寫入檔案
-
+ Save File存檔
-
+ Confirm Reset確認重設
-
+ Are you sure you want to reset the configuration?你確定你想要重設?
-
+ Configuration File設定檔
-
+ Export匯出
-
+ Reset重設
-
+ Launch at startup自動啟動
-
-
+
+ Launch Flameshot
-
+ Show welcome message on launch
-
+ Close application after capture
-
+ Close after taking a screenshot
-
+ Copy URL after upload
-
+ Copy URL and close window after upload
+
+
+
+ Copy file path after save
+
+ HistoryWidget
@@ -811,13 +817,13 @@ Press Space to open the side panel.
QObject
-
+ Save Error存檔錯誤
-
+ Capture saved as 截圖已另存為
@@ -828,10 +834,15 @@ Press Space to open the side panel.
-
+ Error trying to save as 嘗試另存新檔時發生錯誤
+
+
+ Capture saved and copied to the clipboard as
+
+