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 6c9bd989..4f78993f 100644 --- a/src/utils/screenshotsaver.cpp +++ b/src/utils/screenshotsaver.cpp @@ -79,9 +79,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 message Mostra 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 notifications Mostra les notificacions d'escriptori - + Show tray icon Mostra la icona en la barra de tasques - + Show the systemtray icon Mostra la icona en la barra de tasques - - + + Import Importar - - - + + + Error Error - + Unable to read file. Impossible llegir el fitxer. - - + + Unable to write file. Impossible escriure al fitxer. - + Save File Guardar Arxiu - + Confirm Reset Confirmar Reset - + Are you sure you want to reset the configuration? Esteu segur que voleu reiniciar la configuració? - + Configuration File Fitxer de Configuració - + Export Exportar - + Reset Reset - + Launch at startup Llanç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 Error S'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 - - + + Import Importieren - - - + + + Error Fehler - + Unable to read file. Datei kann nicht gelesen werden. - - + + Unable to write file. Datei kann nicht geschrieben werden. - + Save File Datei speichern - + Confirm Reset Zurücksetzen bestätigen - + Are you sure you want to reset the configuration? Sind Sie sicher, dass sie die Konfiguration zurücksetzen wollen? - + Show help message Hilfetext anzeigen - + Show the help message at the beginning in the capture mode. Hilfetext am Start der Auswahl anzeigen. - - + + Show desktop notifications Zeige Desktopbenachrichtigungen - + Show tray icon Zeige Taskleistensymbol - + Show the systemtray icon Zeigt das Taskleistensymbol - + Configuration File Konfigurationsdatei - + Export Exportieren - + Reset Zurücksetzen - + Launch at startup Automatisch starten - - + + Launch Flameshot Starte 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 Error Speicherfehler - + 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 - - + + Import Importar - - - + + + Error Error - + Unable to read file. Imposible leer el archivo. - - + + Unable to write file. Imposible escribir el archivo. - + Save File Guardar Archivo - + Confirm Reset Confirmar Reset - + Are you sure you want to reset the configuration? ¿Estás seguro de que quieres reiniciar la configuración? - + Show help message Mostrar 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 notifications Mostrar notificaciones del escritorio - + Show tray icon Mostrar icono en la barra de tareas - + Show the systemtray icon Mostrar el icono en la barra de tareas - + Configuration File Archivo de Configuración - + Export Exportar - + Reset Reset - + Launch at startup Lanzar en el arranque - - + + Launch Flameshot Lanzar 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 Error Error 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 - - + + Import Importer - - - + + + Error Erreur - + Unable to read file. Impossible de lire le fichier. - - + + Unable to write file. Impossible d'écrire le fichier. - + Save File Sauvegarder le fichier - + Confirm Reset Confirmer la Réinitialisation - + Are you sure you want to reset the configuration? Êtes-vous sûr de vouloir réinitialiser la configuration ? - + Show help message Montrer 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 notifications Afficher les notifications du bureau - + Show tray icon Afficher les icones de la barre d'état - + Show the systemtray icon Afficher l'icône dans la barre de tâches - + Configuration File Fichier de Configuration - + Export Exporter - + Reset Réinitialiser - + Launch at startup Lancer au démarrage - - + + Launch Flameshot Démarrer Flameshot - + Show welcome message on launch - + Close application after capture Fermer après une capture - + Close after taking a screenshot Fermer 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 Error Erreur 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 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 @@ 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 - - + + Import Importeren - - - + + + Error Fout - + Unable to read file. Kan bestand niet uitlezen. - - + + Unable to write file. Kan bestand niet wegschrijven. - + Save File Bestand opslaan - + Confirm Reset Herstellen bevestigen - + Are you sure you want to reset the configuration? Weet je zeker dat je de standwaardwaarden van de configuratie wilt herstellen? - + Show help message Uitleg 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 notifications Bureaubladmeldingen tonen - + Show tray icon Systeemvakpictogram tonen - + Show the systemtray icon Toont het systeemvakpictogram - + Configuration File Configuratiebestand - + Export Exporteren - + Reset Standaardwaarden - + Launch at startup Automatisch opstarten - - + + Launch Flameshot Flameshot 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 Error Fout 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 - - + + Import Import - - - + + + Error Błąd - + Unable to read file. Nie można odczytać pliku. - - + + Unable to write file. Nie można zapisać pliku. - + Save File Zapisz plik - + Confirm Reset Potwierdź Reset - + Are you sure you want to reset the configuration? Czy na pewno chcesz zresetować konfigurację? - + Show help message Pokaż podpowiedzi - + Show the help message at the beginning in the capture mode. Pokaż podpowiedzi na początku trybu przechwytywania. - - + + Show desktop notifications Pokaż powiadomienia ekranowe - + Show tray icon Pokaż ikonę w trayu - + Show the systemtray icon Pokaż ikonę w zasobniku systemowym - + Configuration File Plik konfiguracyjny - + Export Export - + Reset Reset - + Launch at startup Uruchom podczas startu - - + + Launch Flameshot Uruchom 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 Error Błą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 - - + + Import Importar - - - + + + Error Erro - + 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 File Salvar Arquivo - + Confirm Reset Confirmar Reset - + Are you sure you want to reset the configuration? Tem certeza que deseja resetar a configuração? - + Show help message Mostrar 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 notifications Mostrar notificações de Desktop - + Show tray icon Mostrar ícone de tray - + Show the systemtray icon Mosrar ícone na barra de aplicações - + Configuration File Arquivo de Configurações - + Export Exportar - + Reset Reset - + Launch at startup Iniciar junto com o sistema - - + + Launch Flameshot Iniciar 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 Error Salvar 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 - - + + Import Importovať - - - + + + Error Chyba - + Unable to read file. Zlyhalo čítanie súboru. - - + + Unable to write file. Zlyhal zápis do súboru. - + Save File Uložiť súbor - + Confirm Reset Potvrdiť Reset - + Are you sure you want to reset the configuration? Naozaj si želáte resetovať aktuálnu konfiguráciu? - + Show help message Zobraziť 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 notifications Zobraziť systémové upozornenia - + Show tray icon Zobraziť stavovú ikonu - + Show the systemtray icon Zobraziť ikonu v stavovej oblasti - + Configuration File Súbor s konfiguráciou - + Export Exportovať - + Reset Resetovať - + Launch at startup Spúšťať pri štarte - - + + Launch Flameshot Spustiť Flameshot - + Show welcome message on launch - + Close application after capture Zavrieť po vytvorení snímky - + Close after taking a screenshot Zatvoriť 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 Error Chyba 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 - - + + Import Dışa aktar - - - + + + Error Hata - + Unable to read file. Dosya okunamıyor. - - + + Unable to write file. Dosya yazılamıyor. - + Save File Dosyayı Kaydet - + Confirm Reset Sıfırlamayı Onayla - + Are you sure you want to reset the configuration? Ayarları sıfırlamak istediğinizden emin misiniz? - + Show help message Yardı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 notifications Masaüstü bildirimlerini göster - + Show tray icon Tepsi simgesini göster - + Show the systemtray icon Sistem tepsisi simgesini göster - + Configuration File Yapılandırma Dosyası - + Export Dışa aktar - + Reset Sıfırla - + Launch at startup Başlangıçta başlatın - - + + Launch Flameshot Flameshot'ı 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 Error Kaydetme 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 + +