diff --git a/src/config/geneneralconf.cpp b/src/config/geneneralconf.cpp index a5ef99f5..85b5822d 100644 --- a/src/config/geneneralconf.cpp +++ b/src/config/geneneralconf.cpp @@ -36,6 +36,7 @@ GeneneralConf::GeneneralConf(QWidget *parent) : QWidget(parent) { initShowDesktopNotification(); initShowTrayIcon(); initAutostart(); + initShowStartupLaunchMessage(); initCloseAfterCapture(); initCopyAndCloseAfterUpload(); @@ -78,6 +79,10 @@ void GeneneralConf::autostartChanged(bool checked) { ConfigHandler().setStartupLaunch(checked); } +void GeneneralConf::showStartupLaunchMessageChanged(bool checked) { + ConfigHandler().setShowStartupLaunchMessage(checked); +} + void GeneneralConf::closeAfterCaptureChanged(bool checked) { ConfigHandler().setCloseAfterScreenshot(checked); } @@ -201,8 +206,7 @@ void GeneneralConf::initConfingButtons() { } void GeneneralConf::initAutostart() { - m_autostart = - new QCheckBox(tr("Launch at startup"), this); + m_autostart = new QCheckBox(tr("Launch at startup"), this); ConfigHandler config; bool checked = config.startupLaunchValue(); m_autostart->setChecked(checked); @@ -213,6 +217,19 @@ void GeneneralConf::initAutostart() { &GeneneralConf::autostartChanged); } +void GeneneralConf::initShowStartupLaunchMessage() { + m_showStartupLaunchMessage = new QCheckBox(tr("Show startup message on launch"), this); + ConfigHandler config; + bool checked = config.showStartupLaunchMessage(); + m_showStartupLaunchMessage->setChecked(checked); + m_showStartupLaunchMessage->setToolTip(tr("Launch Flameshot")); + m_layout->addWidget(m_showStartupLaunchMessage); + + connect(m_showStartupLaunchMessage, &QCheckBox::clicked, [](bool checked) { + ConfigHandler().setShowStartupLaunchMessage(checked); + }); +} + void GeneneralConf::initCloseAfterCapture() { m_closeAfterCapture = new QCheckBox(tr("Close application after capture"), this); ConfigHandler config; diff --git a/src/config/geneneralconf.h b/src/config/geneneralconf.h index ae40ef76..4f1b0877 100644 --- a/src/config/geneneralconf.h +++ b/src/config/geneneralconf.h @@ -36,6 +36,7 @@ private slots: void showDesktopNotificationChanged(bool checked); void showTrayIconChanged(bool checked); void autostartChanged(bool checked); + void showStartupLaunchMessageChanged(bool checked); void closeAfterCaptureChanged(bool checked); void importConfiguration(); void exportFileConfiguration(); @@ -47,6 +48,7 @@ private: QCheckBox *m_showTray; QCheckBox *m_helpMessage; QCheckBox *m_autostart; + QCheckBox *m_showStartupLaunchMessage; QCheckBox *m_closeAfterCapture; QCheckBox *m_copyAndCloseAfterUpload; QPushButton *m_importButton; @@ -58,6 +60,7 @@ private: void initShowTrayIcon(); void initConfingButtons(); void initAutostart(); + void initShowStartupLaunchMessage(); void initCloseAfterCapture(); void initCopyAndCloseAfterUpload(); }; diff --git a/src/core/controller.cpp b/src/core/controller.cpp index 17ba6150..13561e9f 100644 --- a/src/core/controller.cpp +++ b/src/core/controller.cpp @@ -226,7 +226,7 @@ void Controller::enableTrayIcon() { }; connect(m_trayIcon, &QSystemTrayIcon::activated, this, trayIconActivated); m_trayIcon->show(); - if (!ConfigHandler().startupLaunchValue()) { + if (ConfigHandler().showStartupLaunchMessage()) { m_trayIcon->showMessage("Flameshot", QObject::tr("Application is started successfully"), QSystemTrayIcon::Information, diff --git a/src/utils/confighandler.cpp b/src/utils/confighandler.cpp index d9dcd5b7..573778e3 100644 --- a/src/utils/confighandler.cpp +++ b/src/utils/confighandler.cpp @@ -321,6 +321,17 @@ void ConfigHandler::setStartupLaunch(const bool start) { m_settings.setValue(QStringLiteral("startupLaunch"), start); } +bool ConfigHandler::showStartupLaunchMessage() { + if (!m_settings.contains(QStringLiteral("showStartupLaunchMessage"))) { + m_settings.setValue(QStringLiteral("showStartupLaunchMessage"), true); + } + return m_settings.value(QStringLiteral("showStartupLaunchMessage")).toBool(); +} + +void ConfigHandler::setShowStartupLaunchMessage(const bool showStartupLaunchMessage){ + m_settings.setValue(QStringLiteral("showStartupLaunchMessage"), showStartupLaunchMessage); +} + int ConfigHandler::contrastOpacityValue() { int opacity = 190; if (m_settings.contains(QStringLiteral("contrastOpacity"))) { diff --git a/src/utils/confighandler.h b/src/utils/confighandler.h index f37704cf..1690caeb 100644 --- a/src/utils/confighandler.h +++ b/src/utils/confighandler.h @@ -67,6 +67,9 @@ public: bool startupLaunchValue(); void setStartupLaunch(const bool); + bool showStartupLaunchMessage(); + void setShowStartupLaunchMessage(const bool); + int contrastOpacityValue(); void setContrastOpacity(const int); diff --git a/translations/Internationalization_ca.ts b/translations/Internationalization_ca.ts index c4f89f93..6511632f 100644 --- a/translations/Internationalization_ca.ts +++ b/translations/Internationalization_ca.ts @@ -327,112 +327,118 @@ 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 startup message on launch + + + + Close application after capture - + Close after taking a screenshot - + Copy URL after upload - + Copy URL and close window after upload diff --git a/translations/Internationalization_de_DE.ts b/translations/Internationalization_de_DE.ts index daf21b2e..045e4db7 100644 --- a/translations/Internationalization_de_DE.ts +++ b/translations/Internationalization_de_DE.ts @@ -330,112 +330,118 @@ 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 startup message on launch + + + + Close application after capture - + Close after taking a screenshot - + Copy URL after upload - + Copy URL and close window after upload diff --git a/translations/Internationalization_es.ts b/translations/Internationalization_es.ts index 2cbbb6e9..1d31bd31 100644 --- a/translations/Internationalization_es.ts +++ b/translations/Internationalization_es.ts @@ -330,112 +330,118 @@ 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 startup message on launch + + + + Close application after capture - + Close after taking a screenshot - + Copy URL after upload - + Copy URL and close window after upload diff --git a/translations/Internationalization_fr.ts b/translations/Internationalization_fr.ts index 02e82f50..c6307ef4 100644 --- a/translations/Internationalization_fr.ts +++ b/translations/Internationalization_fr.ts @@ -330,112 +330,118 @@ 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 startup 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 diff --git a/translations/Internationalization_hu.ts b/translations/Internationalization_hu.ts index 4d414bba..99623f6f 100644 --- a/translations/Internationalization_hu.ts +++ b/translations/Internationalization_hu.ts @@ -381,6 +381,10 @@ Press Space to open the side panel. Copy URL and close window after upload + + Show startup message on launch + + HistoryWidget diff --git a/translations/Internationalization_ja.ts b/translations/Internationalization_ja.ts index 8c2535c6..bc14a43b 100644 --- a/translations/Internationalization_ja.ts +++ b/translations/Internationalization_ja.ts @@ -330,112 +330,118 @@ 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 startup message on launch + + + + Close application after capture - + Close after taking a screenshot - + Copy URL after upload - + Copy URL and close window after upload diff --git a/translations/Internationalization_ka.ts b/translations/Internationalization_ka.ts index 8572fbe4..c6324ad8 100644 --- a/translations/Internationalization_ka.ts +++ b/translations/Internationalization_ka.ts @@ -326,112 +326,118 @@ 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 startup message on launch + + + + Close application after capture - + Close after taking a screenshot - + Copy URL after upload - + Copy URL and close window after upload diff --git a/translations/Internationalization_nl.ts b/translations/Internationalization_nl.ts index c8f53884..d244812e 100644 --- a/translations/Internationalization_nl.ts +++ b/translations/Internationalization_nl.ts @@ -330,112 +330,118 @@ 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 startup message on launch + + + + Close application after capture - + Close after taking a screenshot - + Copy URL after upload - + Copy URL and close window after upload diff --git a/translations/Internationalization_pl.ts b/translations/Internationalization_pl.ts index 6b9e2d5a..feb57487 100644 --- a/translations/Internationalization_pl.ts +++ b/translations/Internationalization_pl.ts @@ -329,112 +329,118 @@ 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 startup message on launch + + + + Close application after capture - + Close after taking a screenshot - + Copy URL after upload - + Copy URL and close window after upload diff --git a/translations/Internationalization_pt_br.ts b/translations/Internationalization_pt_br.ts index 10eae5b4..29c65059 100644 --- a/translations/Internationalization_pt_br.ts +++ b/translations/Internationalization_pt_br.ts @@ -330,112 +330,118 @@ 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 startup message on launch + + + + Close application after capture - + Close after taking a screenshot - + Copy URL after upload - + Copy URL and close window after upload diff --git a/translations/Internationalization_ru.ts b/translations/Internationalization_ru.ts index b33ae4ce..32a7fc6c 100644 --- a/translations/Internationalization_ru.ts +++ b/translations/Internationalization_ru.ts @@ -338,112 +338,118 @@ 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 startup 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 после загрузки и закрыть окно diff --git a/translations/Internationalization_sk.ts b/translations/Internationalization_sk.ts index bd759099..1bb68125 100644 --- a/translations/Internationalization_sk.ts +++ b/translations/Internationalization_sk.ts @@ -330,112 +330,118 @@ 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 startup 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 diff --git a/translations/Internationalization_sr.ts b/translations/Internationalization_sr.ts index 9fb01cc3..832a86d0 100644 --- a/translations/Internationalization_sr.ts +++ b/translations/Internationalization_sr.ts @@ -330,112 +330,118 @@ 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 startup message on launch + + + + Close application after capture - + Close after taking a screenshot - + Copy URL after upload - + Copy URL and close window after upload diff --git a/translations/Internationalization_tr.ts b/translations/Internationalization_tr.ts index f5df7fce..6af8733f 100644 --- a/translations/Internationalization_tr.ts +++ b/translations/Internationalization_tr.ts @@ -330,112 +330,118 @@ 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 startup message on launch + + + + Close application after capture - + Close after taking a screenshot - + Copy URL after upload - + Copy URL and close window after upload diff --git a/translations/Internationalization_uk.ts b/translations/Internationalization_uk.ts index bb73b6c0..0294ea03 100644 --- a/translations/Internationalization_uk.ts +++ b/translations/Internationalization_uk.ts @@ -338,112 +338,118 @@ 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 startup 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 та закрити вікно після завантаження diff --git a/translations/Internationalization_zh_CN.ts b/translations/Internationalization_zh_CN.ts index caa7d105..8d0569be 100644 --- a/translations/Internationalization_zh_CN.ts +++ b/translations/Internationalization_zh_CN.ts @@ -331,112 +331,118 @@ 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 startup message on launch + + + + Close application after capture 捕获后关闭 - + Close after taking a screenshot 获取屏幕截图后关闭 - + Copy URL after upload - + Copy URL and close window after upload diff --git a/translations/Internationalization_zh_TW.ts b/translations/Internationalization_zh_TW.ts index c2f7c709..2346505a 100644 --- a/translations/Internationalization_zh_TW.ts +++ b/translations/Internationalization_zh_TW.ts @@ -326,112 +326,118 @@ 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 startup message on launch + + + + Close application after capture - + Close after taking a screenshot - + Copy URL after upload - + Copy URL and close window after upload