mirror of
https://github.com/fergalmoran/flameshot.git
synced 2026-01-31 07:37:09 +00:00
Merge pull request #17 from namecheap/feature/RND-472-screenshot-add-local-history-for-last-screenshots
Feature/rnd 472 screenshot add local history for last screenshots
This commit is contained in:
19
appveyor.yml
19
appveyor.yml
@@ -45,7 +45,6 @@ build_script:
|
||||
# scripts that run after build
|
||||
after_build:
|
||||
# Clone OpenSSL DLLs
|
||||
- git clone https://github.com/tamlok/openssl-utils.git openssl-utils.git
|
||||
- mkdir distrib\flameshot
|
||||
- windeployqt.exe --dir .\distrib\flameshot %APPVEYOR_BUILD_FOLDER%\build\release\flameshot.exe
|
||||
- copy "%APPVEYOR_BUILD_FOLDER%\build\release\flameshot.exe" "distrib\flameshot\flameshot.exe"
|
||||
@@ -59,13 +58,25 @@ after_build:
|
||||
- copy "%APPVEYOR_BUILD_FOLDER%\build\translations\Internationalization_*.qm" "distrib\flameshot\translations"
|
||||
# Delete translations\qt_*.qm
|
||||
- del /F /Q "distrib\flameshot\translations\qt_*.qm"
|
||||
# Copy OpenSSL DLLs
|
||||
- if "%PLATFORM%" EQU "X64" (xcopy "openssl-utils.git\win64\*.dll" "distrib\flameshot")
|
||||
- if "%PLATFORM%" EQU "x86" (xcopy "openssl-utils.git\win32\*.dll" "distrib\flameshot")
|
||||
# install vcredist-2015
|
||||
- cd distrib
|
||||
- if "%PLATFORM%" EQU "X64" (mv flameshot\vcredist_x64.exe flameshot\vcredist.exe)
|
||||
- if "%PLATFORM%" EQU "x86" (mv flameshot\vcredist_x86.exe flameshot\vcredist.exe)
|
||||
- 7z a flameshot_%flameshot_version%_win_%PLATFORM%.zip flameshot
|
||||
# Download and install vcredist-2013 for OpenSSL binnaries
|
||||
- if "%PLATFORM%" EQU "X64" appveyor DownloadFile https://slproweb.com/download/Win64OpenSSL_Light-1_0_2u.exe
|
||||
- if "%PLATFORM%" EQU "X64" (mv Win64OpenSSL_Light-1_0_2u.exe flameshot\OpenSSL_Light-1_0_2u.exe)
|
||||
- if "%PLATFORM%" EQU "x86" appveyor DownloadFile https://slproweb.com/download/Win32OpenSSL_Light-1_0_2u.exe
|
||||
- if "%PLATFORM%" EQU "x86" (mv Win32OpenSSL_Light-1_0_2u.exe flameshot\OpenSSL_Light-1_0_2u.exe)
|
||||
- flameshot\OpenSSL_Light-1_0_2u.exe /VERYSILENT /DIR="C:\OpenSSL_Temp"
|
||||
- cp C:\OpenSSL_Temp\libeay32.dll flameshot\libeay32.dll
|
||||
- cp C:\OpenSSL_Temp\libssl32.dll flameshot\libssl32.dll
|
||||
- cp C:\OpenSSL_Temp\ssleay32.dll flameshot\ssleay32.dll
|
||||
- rm flameshot\OpenSSL_Light-1_0_2u.exe
|
||||
- if "%PLATFORM%" EQU "X64" appveyor DownloadFile https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe
|
||||
- if "%PLATFORM%" EQU "X64" (mv vcredist_x64.exe flameshot\vcredist-2013.exe)
|
||||
- if "%PLATFORM%" EQU "x86" appveyor DownloadFile https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe
|
||||
- if "%PLATFORM%" EQU "x86" (mv vcredist_x86.exe flameshot\vcredist-2013.exe)
|
||||
# Build installation
|
||||
- cp ..\..\win_setup\flameshot.iss flameshot.iss
|
||||
- C:\InnoSetup\Compil32.exe /cc flameshot.iss
|
||||
|
||||
@@ -6,6 +6,8 @@
|
||||
|
||||
win32:LIBS += -luser32 -lshell32
|
||||
|
||||
LIBS += -Llibeay32 -Lssleay32
|
||||
|
||||
BASE_VERSION = 0.7.5
|
||||
TAG_VERSION = "$$system(git --git-dir $$PWD/.git rev-parse --short HEAD)"
|
||||
isEmpty(TAG_VERSION){
|
||||
@@ -83,6 +85,9 @@ DEFINES += QAPPLICATION_CLASS=QApplication
|
||||
|
||||
SOURCES += src/main.cpp \
|
||||
src/config/filepathconfiguration.cpp \
|
||||
src/widgets/historywidget.cpp \
|
||||
src/utils/configenterprise.cpp \
|
||||
src/utils/history.cpp \
|
||||
src/widgets/capture/buttonhandler.cpp \
|
||||
src/widgets/infowindow.cpp \
|
||||
src/config/configwindow.cpp \
|
||||
@@ -159,6 +164,9 @@ SOURCES += src/main.cpp \
|
||||
|
||||
HEADERS += src/widgets/capture/buttonhandler.h \
|
||||
src/config/filepathconfiguration.h \
|
||||
src/widgets/historywidget.h \
|
||||
src/utils/configenterprise.h \
|
||||
src/utils/history.h \
|
||||
src/widgets/infowindow.h \
|
||||
src/config/configwindow.h \
|
||||
src/widgets/capture/capturewidget.h \
|
||||
|
||||
@@ -22,14 +22,19 @@
|
||||
#include "src/config/configwindow.h"
|
||||
#include "src/widgets/capture/capturebutton.h"
|
||||
#include "src/widgets/capturelauncher.h"
|
||||
#include "src/widgets/notificationwidget.h"
|
||||
#include "src/utils/systemnotification.h"
|
||||
#include "src/utils/screengrabber.h"
|
||||
#include "src/utils/history.h"
|
||||
#include "src/utils/configenterprise.h"
|
||||
#include "src/widgets/historywidget.h"
|
||||
#include <QFile>
|
||||
#include <QApplication>
|
||||
#include <QSystemTrayIcon>
|
||||
#include <QAction>
|
||||
#include <QMenu>
|
||||
#include <QDesktopWidget>
|
||||
#include <QClipboard>
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
#include "src/core/globalshortcutfilter.h"
|
||||
@@ -171,6 +176,8 @@ void Controller::enableTrayIcon() {
|
||||
if (m_trayIcon) {
|
||||
return;
|
||||
}
|
||||
QMenu *trayIconMenu = new QMenu();
|
||||
|
||||
ConfigHandler().setDisabledTrayIcon(false);
|
||||
QAction *captureAction = new QAction(tr("&Take Screenshot"), this);
|
||||
connect(captureAction, &QAction::triggered, this, [this](){
|
||||
@@ -180,6 +187,7 @@ void Controller::enableTrayIcon() {
|
||||
QAction *launcherAction = new QAction(tr("&Open Launcher"), this);
|
||||
connect(launcherAction, &QAction::triggered, this,
|
||||
&Controller::openLauncherWindow);
|
||||
|
||||
QAction *configAction = new QAction(tr("&Configuration"), this);
|
||||
connect(configAction, &QAction::triggered, this,
|
||||
&Controller::openConfigWindow);
|
||||
@@ -190,10 +198,16 @@ void Controller::enableTrayIcon() {
|
||||
connect(quitAction, &QAction::triggered, qApp,
|
||||
&QCoreApplication::quit);
|
||||
|
||||
QMenu *trayIconMenu = new QMenu();
|
||||
// recent screenshots
|
||||
QAction *recentAction = new QAction(tr("&Latest Uploads"), this);
|
||||
connect(recentAction, SIGNAL(triggered()), this, SLOT(showRecentScreenshots()));
|
||||
|
||||
// generate menu
|
||||
trayIconMenu->addAction(captureAction);
|
||||
trayIconMenu->addAction(launcherAction);
|
||||
trayIconMenu->addSeparator();
|
||||
trayIconMenu->addAction(recentAction);
|
||||
trayIconMenu->addSeparator();
|
||||
trayIconMenu->addAction(configAction);
|
||||
trayIconMenu->addAction(infoAction);
|
||||
trayIconMenu->addSeparator();
|
||||
@@ -239,6 +253,11 @@ void Controller::updateConfigComponents() {
|
||||
}
|
||||
}
|
||||
|
||||
void Controller::showRecentScreenshots() {
|
||||
HistoryWidget *pHistory = new HistoryWidget();
|
||||
pHistory->exec();
|
||||
}
|
||||
|
||||
void Controller::startFullscreenCapture(const uint id) {
|
||||
bool ok = true;
|
||||
QPixmap p(ScreenGrabber().grabEntireDesktop(ok));
|
||||
|
||||
@@ -61,6 +61,8 @@ public slots:
|
||||
|
||||
void updateConfigComponents();
|
||||
|
||||
void showRecentScreenshots();
|
||||
|
||||
private slots:
|
||||
void startFullscreenCapture(const uint id = 0);
|
||||
void startVisualCapture(const uint id = 0,
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
|
||||
#include "globalshortcutfilter.h"
|
||||
#include "src/core/controller.h"
|
||||
#include "src/widgets/historywidget.h"
|
||||
#include <qt_windows.h>
|
||||
|
||||
GlobalShortcutFilter::GlobalShortcutFilter(QObject *parent) :
|
||||
@@ -24,7 +25,11 @@ GlobalShortcutFilter::GlobalShortcutFilter(QObject *parent) :
|
||||
{
|
||||
// Forced Print Screen
|
||||
if (RegisterHotKey(NULL, 1, 0, VK_SNAPSHOT)) {
|
||||
// ok
|
||||
// ok - capture screen
|
||||
}
|
||||
|
||||
if (RegisterHotKey(NULL, 2, MOD_SHIFT, VK_SNAPSHOT)) {
|
||||
// ok - show screenshots history
|
||||
}
|
||||
}
|
||||
|
||||
@@ -38,13 +43,23 @@ bool GlobalShortcutFilter::nativeEventFilter(
|
||||
|
||||
MSG* msg = static_cast<MSG*>(message);
|
||||
if (msg->message == WM_HOTKEY) {
|
||||
//const quint32 keycode = HIWORD(msg->lParam);
|
||||
//const quint32 modifiers = LOWORD(msg->lParam);
|
||||
|
||||
// TODO: this is just a temporal workwrround, proper global
|
||||
// support would need custom shortcuts defined by the user.
|
||||
Controller::getInstance()->requestCapture(
|
||||
CaptureRequest(CaptureRequest::GRAPHICAL_MODE));
|
||||
const quint32 keycode = HIWORD(msg->lParam);
|
||||
const quint32 modifiers = LOWORD(msg->lParam);
|
||||
|
||||
// Show screenshots history
|
||||
if(VK_SNAPSHOT == keycode && MOD_SHIFT == modifiers) {
|
||||
HistoryWidget *pHistory = new HistoryWidget();
|
||||
pHistory->show();
|
||||
}
|
||||
|
||||
// Capture screen
|
||||
if(VK_SNAPSHOT == keycode && 0 == modifiers) {
|
||||
Controller::getInstance()->requestCapture(
|
||||
CaptureRequest(CaptureRequest::GRAPHICAL_MODE));
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
@@ -22,6 +22,8 @@
|
||||
#include "src/widgets/imagelabel.h"
|
||||
#include "src/widgets/notificationwidget.h"
|
||||
#include "src/utils/confighandler.h"
|
||||
#include "src/utils/history.h"
|
||||
#include "src/utils/configenterprise.h"
|
||||
#include <QApplication>
|
||||
#include <QClipboard>
|
||||
#include <QDesktopServices>
|
||||
@@ -48,19 +50,6 @@
|
||||
ImgS3Uploader::ImgS3Uploader(const QPixmap &capture, QWidget *parent) :
|
||||
QWidget(parent), m_pixmap(capture)
|
||||
{
|
||||
QSettings *pSettings = nullptr;
|
||||
QString configIniPath = QDir(QDir::currentPath()).filePath("config.ini");
|
||||
#if defined(Q_OS_LINUX) || defined(Q_OS_UNIX)
|
||||
if(!(QFileInfo::exists(configIniPath) && QFileInfo(configIniPath).isFile())) {
|
||||
configIniPath = "/etc/flameshot/config.ini";
|
||||
}
|
||||
#endif
|
||||
pSettings = new QSettings(configIniPath, QSettings::IniFormat);
|
||||
pSettings->beginGroup("S3");
|
||||
m_s3CredsUrl = pSettings->value("S3_CREDS_URL").toString();
|
||||
m_s3XApiKey = pSettings->value("S3_X_API_KEY").toString();
|
||||
pSettings->endGroup();
|
||||
|
||||
setWindowTitle(tr("Upload to ImgS3"));
|
||||
setWindowIcon(QIcon(":img/app/flameshot.svg"));
|
||||
|
||||
@@ -83,13 +72,24 @@ ImgS3Uploader::ImgS3Uploader(const QPixmap &capture, QWidget *parent) :
|
||||
|
||||
setAttribute(Qt::WA_DeleteOnClose);
|
||||
|
||||
QString httpProxyHost = pSettings->value("HTTP_PROXY_HOST").toString();
|
||||
// get enterprise settings
|
||||
m_configEnterprise = new ConfigEnterprise();
|
||||
QSettings *settings = m_configEnterprise->settings();
|
||||
|
||||
// get s3 credentials
|
||||
settings->beginGroup("S3");
|
||||
m_s3CredsUrl = settings->value("S3_CREDS_URL").toString();
|
||||
m_s3XApiKey = settings->value("S3_X_API_KEY").toString();
|
||||
settings->endGroup();
|
||||
|
||||
// set proxy server parameters
|
||||
QString httpProxyHost = settings->value("HTTP_PROXY_HOST").toString();
|
||||
if(httpProxyHost.length() > 0) {
|
||||
qDebug() << "Using proxy server";
|
||||
m_proxy = new QNetworkProxy();
|
||||
|
||||
if(pSettings->contains("HTTP_PROXY_TYPE")) {
|
||||
switch (pSettings->value("HTTP_PROXY_TYPE").toInt()) {
|
||||
if(settings->contains("HTTP_PROXY_TYPE")) {
|
||||
switch (settings->value("HTTP_PROXY_TYPE").toInt()) {
|
||||
case 0:
|
||||
m_proxy->setType(QNetworkProxy::DefaultProxy);
|
||||
break;
|
||||
@@ -111,22 +111,32 @@ ImgS3Uploader::ImgS3Uploader(const QPixmap &capture, QWidget *parent) :
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// set proxy server parameters
|
||||
if(httpProxyHost.length() > 0) {
|
||||
m_proxy->setHostName(httpProxyHost);
|
||||
if(pSettings->contains("HTTP_PROXY_PORT")) {
|
||||
m_proxy->setPort(pSettings->value("HTTP_PROXY_PORT").toInt());
|
||||
} else {
|
||||
m_proxy->setPort(3128);
|
||||
}
|
||||
|
||||
if(pSettings->contains("HTTP_PROXY_USER")) {
|
||||
m_proxy->setUser(pSettings->value("HTTP_PROXY_USER").toString());
|
||||
int nProxyPort = 3128;
|
||||
if(settings->contains("HTTP_PROXY_PORT")) {
|
||||
nProxyPort = settings->value("HTTP_PROXY_PORT").toInt();
|
||||
}
|
||||
if(pSettings->contains("HTTP_PROXY_PASSWORD")) {
|
||||
m_proxy->setPassword(pSettings->value("HTTP_PROXY_PASSWORD").toString());
|
||||
m_proxy->setPort(nProxyPort);
|
||||
|
||||
qDebug() << "Proxy Host" << httpProxyHost;
|
||||
qDebug() << "Proxy Port" << nProxyPort;
|
||||
|
||||
if(settings->contains("HTTP_PROXY_USER")) {
|
||||
qDebug() << "Proxy user" << settings->value("HTTP_PROXY_PASSWORD").toString();
|
||||
m_proxy->setUser(settings->value("HTTP_PROXY_USER").toString());
|
||||
}
|
||||
if(settings->contains("HTTP_PROXY_PASSWORD")) {
|
||||
qDebug() << "Proxy password is not empty";
|
||||
m_proxy->setPassword(settings->value("HTTP_PROXY_PASSWORD").toString());
|
||||
}
|
||||
QNetworkProxy::setApplicationProxy(*m_proxy);
|
||||
m_NetworkAM->setProxy(*m_proxy);
|
||||
m_NetworkAMCreds->setProxy(*m_proxy);
|
||||
}
|
||||
|
||||
upload();
|
||||
@@ -135,6 +145,16 @@ ImgS3Uploader::ImgS3Uploader(const QPixmap &capture, QWidget *parent) :
|
||||
void ImgS3Uploader::handleReply(QNetworkReply *reply) {
|
||||
m_spinner->deleteLater();
|
||||
if (reply->error() == QNetworkReply::NoError) {
|
||||
// save history
|
||||
QString imageName = m_imageURL.toString();
|
||||
int lastSlash = imageName.lastIndexOf("/");
|
||||
if (lastSlash >= 0) {
|
||||
imageName = imageName.mid(lastSlash);
|
||||
}
|
||||
History history;
|
||||
history.save(m_pixmap, imageName);
|
||||
|
||||
// Copy url to clipboard if required
|
||||
if (ConfigHandler().copyAndCloseAfterUploadEnabled()) {
|
||||
QApplication::clipboard()->setText(m_imageURL.toString());
|
||||
SystemNotification().sendMessage(QObject::tr("URL copied to clipboard."));
|
||||
|
||||
@@ -30,6 +30,7 @@ class LoadSpinner;
|
||||
class QPushButton;
|
||||
class QUrl;
|
||||
class NotificationWidget;
|
||||
class ConfigEnterprise;
|
||||
|
||||
class ImgS3Uploader : public QWidget {
|
||||
Q_OBJECT
|
||||
@@ -49,6 +50,7 @@ private:
|
||||
void uploadToS3(QJsonDocument &response);
|
||||
|
||||
private:
|
||||
ConfigEnterprise *m_configEnterprise;
|
||||
QString m_s3CredsUrl;
|
||||
QString m_s3XApiKey;
|
||||
|
||||
|
||||
22
src/utils/configenterprise.cpp
Normal file
22
src/utils/configenterprise.cpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#include "configenterprise.h"
|
||||
#include <QDir>
|
||||
#include <QSettings>
|
||||
#include <QFileInfo>
|
||||
|
||||
|
||||
ConfigEnterprise::ConfigEnterprise()
|
||||
{
|
||||
// get enterprise settings
|
||||
m_settings = nullptr;
|
||||
QString configIniPath = QDir(QDir::currentPath()).filePath("config.ini");
|
||||
#if defined(Q_OS_LINUX) || defined(Q_OS_UNIX)
|
||||
if(!(QFileInfo::exists(configIniPath) && QFileInfo(configIniPath).isFile())) {
|
||||
configIniPath = "/etc/flameshot/config.ini";
|
||||
}
|
||||
#endif
|
||||
m_settings = new QSettings(configIniPath, QSettings::IniFormat);
|
||||
}
|
||||
|
||||
QSettings *ConfigEnterprise::settings() {
|
||||
return m_settings;
|
||||
}
|
||||
18
src/utils/configenterprise.h
Normal file
18
src/utils/configenterprise.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef CONFIGENTERPRISE_H
|
||||
#define CONFIGENTERPRISE_H
|
||||
|
||||
class QSettings;
|
||||
|
||||
|
||||
class ConfigEnterprise
|
||||
{
|
||||
public:
|
||||
ConfigEnterprise();
|
||||
|
||||
QSettings *settings();
|
||||
|
||||
private:
|
||||
QSettings *m_settings;
|
||||
};
|
||||
|
||||
#endif // CONFIGENTERPRISE_H
|
||||
54
src/utils/history.cpp
Normal file
54
src/utils/history.cpp
Normal file
@@ -0,0 +1,54 @@
|
||||
#include "history.h"
|
||||
#include "src/utils/confighandler.h"
|
||||
#include <QDir>
|
||||
#include <QFile>
|
||||
#include <QDebug>
|
||||
|
||||
|
||||
History::History()
|
||||
{
|
||||
// Get cache history path
|
||||
ConfigHandler config;
|
||||
#ifdef Q_OS_WIN
|
||||
m_historyPath = QDir::homePath() + "/AppData/Roaming/flameshot/history/";
|
||||
#else
|
||||
m_historyPath = QDir::homePath() + "/.cache/flameshot/history/";
|
||||
#endif
|
||||
|
||||
// Check if directory for history exists and create if doesn't
|
||||
QDir dir = QDir(m_historyPath);
|
||||
if (!dir.exists())
|
||||
dir.mkpath(".");
|
||||
}
|
||||
|
||||
const QString &History::path() {
|
||||
return m_historyPath;
|
||||
}
|
||||
|
||||
void History::save(const QPixmap &pixmap, const QString &fileName) {
|
||||
QFile file(path() + fileName);
|
||||
file.open(QIODevice::WriteOnly);
|
||||
pixmap.scaled(HISTORY_THUNB_WIDTH,
|
||||
HISTORY_THUNB_HEIGH,
|
||||
Qt::KeepAspectRatio,
|
||||
Qt::SmoothTransformation
|
||||
).save(&file, "PNG");
|
||||
history();
|
||||
}
|
||||
|
||||
const QList<QString> &History::history() {
|
||||
QDir directory(path());
|
||||
QStringList images = directory.entryList(QStringList() << "*.png" << "*.PNG", QDir::Files, QDir::Time);
|
||||
int cnt = 0;
|
||||
m_thumbs.clear();
|
||||
foreach(QString fileName, images) {
|
||||
if(++cnt <= HISTORY_MAX_SIZE) {
|
||||
m_thumbs.append(fileName);
|
||||
}
|
||||
else {
|
||||
QFile file(path() + fileName);
|
||||
file.remove();
|
||||
}
|
||||
}
|
||||
return m_thumbs;
|
||||
}
|
||||
28
src/utils/history.h
Normal file
28
src/utils/history.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef HISTORY_H
|
||||
#define HISTORY_H
|
||||
|
||||
#define HISTORY_MAX_SIZE 10
|
||||
#define HISTORY_THUNB_SCALE 1.5
|
||||
#define HISTORY_THUNB_WIDTH 160*HISTORY_THUNB_SCALE
|
||||
#define HISTORY_THUNB_HEIGH 90*HISTORY_THUNB_SCALE
|
||||
|
||||
#include <QList>
|
||||
#include <QString>
|
||||
#include <QPixmap>
|
||||
|
||||
|
||||
class History
|
||||
{
|
||||
public:
|
||||
History();
|
||||
|
||||
void save(const QPixmap &, const QString &);
|
||||
const QList<QString> &history();
|
||||
const QString &path();
|
||||
|
||||
private:
|
||||
QString m_historyPath;
|
||||
QList<QString> m_thumbs;
|
||||
};
|
||||
|
||||
#endif // HISTORY_H
|
||||
130
src/widgets/historywidget.cpp
Normal file
130
src/widgets/historywidget.cpp
Normal file
@@ -0,0 +1,130 @@
|
||||
#include "historywidget.h"
|
||||
#include "src/utils/history.h"
|
||||
#include "src/utils/configenterprise.h"
|
||||
#include "src/widgets/notificationwidget.h"
|
||||
#include <QVBoxLayout>
|
||||
#include <QHBoxLayout>
|
||||
#include <QPixmap>
|
||||
#include <QLabel>
|
||||
#include <QScrollArea>
|
||||
#include <QDebug>
|
||||
#include <QFileInfo>
|
||||
#include <QDateTime>
|
||||
#include <QPushButton>
|
||||
#include <QIcon>
|
||||
#include <QSettings>
|
||||
#include <QApplication>
|
||||
#include <QDesktopWidget>
|
||||
#include <QDesktopServices>
|
||||
#include <QClipboard>
|
||||
#include <QUrl>
|
||||
|
||||
|
||||
HistoryWidget::HistoryWidget(QWidget *parent) : QDialog(parent)
|
||||
{
|
||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
||||
setWindowTitle(tr("Screenshots history"));
|
||||
setFixedSize(800, this->height());
|
||||
m_notification = new NotificationWidget();
|
||||
|
||||
m_pVBox = new QVBoxLayout(this);
|
||||
m_pVBox->setAlignment(Qt::AlignTop);
|
||||
|
||||
QScrollArea *scrollArea = new QScrollArea( this );
|
||||
scrollArea->setVerticalScrollBarPolicy( Qt::ScrollBarAlwaysOn );
|
||||
scrollArea->setWidgetResizable( true );
|
||||
scrollArea->setGeometry( this->frameGeometry() );
|
||||
|
||||
QWidget *widget = new QWidget();
|
||||
scrollArea->setWidget( widget );
|
||||
widget->setLayout( m_pVBox );
|
||||
|
||||
loadHistory();
|
||||
}
|
||||
|
||||
void HistoryWidget::loadHistory() {
|
||||
History history = History();
|
||||
QList<QString> historyFiles = history.history();
|
||||
|
||||
ConfigEnterprise configEnterprise;
|
||||
QSettings *settings = configEnterprise.settings();
|
||||
settings->beginGroup("S3");
|
||||
QString s3BaseUrl = settings->value("S3_URL").toString();
|
||||
settings->endGroup();
|
||||
|
||||
if(historyFiles.isEmpty()) {
|
||||
QPushButton *buttonEmpty = new QPushButton;
|
||||
buttonEmpty->setText(tr("Screenshots history is empty"));
|
||||
buttonEmpty->setMinimumSize(1, HISTORYPIXMAP_MAX_PREVIEW_HEIGHT);
|
||||
connect(buttonEmpty, &QPushButton::clicked, this, [=](){
|
||||
this->close();
|
||||
});
|
||||
m_pVBox->addWidget(buttonEmpty);
|
||||
return;
|
||||
}
|
||||
foreach(QString fileName, historyFiles) {
|
||||
// generate url
|
||||
QString fullFileName = history.path() + fileName;
|
||||
QString url = s3BaseUrl + fileName;
|
||||
|
||||
// load pixmap
|
||||
QPixmap pixmap;
|
||||
pixmap.load( fullFileName, "png" );
|
||||
|
||||
if (pixmap.height() / HISTORYPIXMAP_MAX_PREVIEW_HEIGHT >= pixmap.width() / HISTORYPIXMAP_MAX_PREVIEW_WIDTH) {
|
||||
pixmap = pixmap.scaledToHeight(HISTORYPIXMAP_MAX_PREVIEW_HEIGHT);
|
||||
} else {
|
||||
pixmap = pixmap.scaledToWidth(HISTORYPIXMAP_MAX_PREVIEW_WIDTH);
|
||||
}
|
||||
|
||||
// get file info
|
||||
QFileInfo *pFileInfo = new QFileInfo(fullFileName);
|
||||
QString lastModified = pFileInfo->lastModified().toString(" yyyy-MM-dd hh:mm:ss");
|
||||
|
||||
// screenshot preview
|
||||
QLabel *pScreenshot = new QLabel();
|
||||
pScreenshot->setStyleSheet("padding: 5px;");
|
||||
pScreenshot->setMinimumHeight(HISTORYPIXMAP_MAX_PREVIEW_HEIGHT);
|
||||
pScreenshot->setPixmap(pixmap);
|
||||
|
||||
// screenshot datetime
|
||||
QLabel *pScreenshotText = new QLabel();
|
||||
pScreenshotText->setStyleSheet("padding: 5px;");
|
||||
pScreenshotText->setMinimumHeight(HISTORYPIXMAP_MAX_PREVIEW_HEIGHT);
|
||||
pScreenshotText->setText(lastModified);
|
||||
|
||||
// copy url
|
||||
QPushButton *buttonCopyUrl = new QPushButton;
|
||||
buttonCopyUrl->setText(tr("Copy URL"));
|
||||
buttonCopyUrl->setMinimumHeight(HISTORYPIXMAP_MAX_PREVIEW_HEIGHT);
|
||||
connect(buttonCopyUrl, &QPushButton::clicked, this, [=](){
|
||||
QApplication::clipboard()->setText(url);
|
||||
m_notification->showMessage(tr("URL copied to clipboard."));
|
||||
this->close();
|
||||
});
|
||||
|
||||
// open in browser
|
||||
QPushButton *buttonOpen = new QPushButton;
|
||||
buttonOpen->setText(tr("Open in browser"));
|
||||
buttonOpen->setMinimumHeight(HISTORYPIXMAP_MAX_PREVIEW_HEIGHT);
|
||||
connect(buttonOpen, &QPushButton::clicked, this, [=](){
|
||||
QDesktopServices::openUrl(QUrl(url));
|
||||
this->close();
|
||||
});
|
||||
|
||||
// layout
|
||||
QHBoxLayout *phbl = new QHBoxLayout();
|
||||
phbl->addWidget(pScreenshot);
|
||||
phbl->addWidget(pScreenshotText);
|
||||
phbl->addWidget(buttonCopyUrl);
|
||||
phbl->addWidget(buttonOpen);
|
||||
|
||||
phbl->setStretchFactor(pScreenshot, 3);
|
||||
phbl->setStretchFactor(pScreenshotText, 2);
|
||||
phbl->setStretchFactor(buttonCopyUrl, 2);
|
||||
phbl->setStretchFactor(buttonOpen, 2);
|
||||
|
||||
// add to scroll
|
||||
m_pVBox->addLayout(phbl);
|
||||
}
|
||||
}
|
||||
30
src/widgets/historywidget.h
Normal file
30
src/widgets/historywidget.h
Normal file
@@ -0,0 +1,30 @@
|
||||
#ifndef HISTORYWIDGET_H
|
||||
#define HISTORYWIDGET_H
|
||||
|
||||
#define HISTORYPIXMAP_MAX_PREVIEW_WIDTH 160
|
||||
#define HISTORYPIXMAP_MAX_PREVIEW_HEIGHT 90
|
||||
|
||||
#include <QObject>
|
||||
#include <QWidget>
|
||||
#include <QDialog>
|
||||
|
||||
class QVBoxLayout;
|
||||
class NotificationWidget;
|
||||
|
||||
class HistoryWidget : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit HistoryWidget(QWidget *parent = nullptr);
|
||||
|
||||
signals:
|
||||
|
||||
private:
|
||||
void loadHistory();
|
||||
|
||||
private:
|
||||
QVBoxLayout *m_pVBox;
|
||||
NotificationWidget *m_notification;
|
||||
};
|
||||
|
||||
#endif // HISTORYWIDGET_H
|
||||
@@ -61,7 +61,9 @@ QVector<const char *> InfoWindow::m_keys = {
|
||||
"CTRL + Z",
|
||||
QT_TR_NOOP("SPACEBAR"),
|
||||
QT_TR_NOOP("Right Click"),
|
||||
QT_TR_NOOP("Mouse Wheel")
|
||||
QT_TR_NOOP("Mouse Wheel"),
|
||||
"Print Screen",
|
||||
"SHIFT + Print Screen"
|
||||
};
|
||||
|
||||
QVector<const char *> InfoWindow::m_description = {
|
||||
@@ -73,7 +75,9 @@ QVector<const char *> InfoWindow::m_description = {
|
||||
QT_TR_NOOP("Undo the last modification"),
|
||||
QT_TR_NOOP("Toggle visibility of sidebar with options of the selected tool"),
|
||||
QT_TR_NOOP("Show color picker"),
|
||||
QT_TR_NOOP("Change the tool's thickness")
|
||||
QT_TR_NOOP("Change the tool's thickness"),
|
||||
QT_TR_NOOP("Capture screen"),
|
||||
QT_TR_NOOP("Screenshot history")
|
||||
};
|
||||
|
||||
void InfoWindow::initInfoTable() {
|
||||
|
||||
@@ -184,27 +184,32 @@ Press Space to open the side panel.</source>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&Configuració</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>&Informació</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>&Ix</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -433,44 +438,72 @@ Press Space to open the side panel.</source>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">S'està pujant la imatge</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Copia l'URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Obri l'URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Imatge al porta-retalls.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">No es pot obrir l'URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">L'URL s'ha copiat al porta-retalls.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">S'està pujant la imatge</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Copia l'URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Obri l'URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Imatge al porta-retalls.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">No es pot obrir l'URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">L'URL s'ha copiat al porta-retalls.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">La captura s'ha copiat al porta-retalls.</translation>
|
||||
</message>
|
||||
@@ -573,77 +606,87 @@ Press Space to open the side panel.</source>
|
||||
<translation>Roda del ratolí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>Mou la selecció 1 px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>Redimensiona la selecció 1 px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>Ix de la captura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Copia al porta-retalls</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>Guarda la selecció com a fitxer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>Desfés l'última modificació</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>Mostra el selector de color</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>Canvia el gruix de l'eina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>Tecla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>Descripció</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>Llicència</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>Versió</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>Dreceres</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>Dreceres disponibles en el mode de captura de pantalla.</translation>
|
||||
</message>
|
||||
@@ -757,7 +800,7 @@ Press Space to open the side panel.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">L'URL s'ha copiat al porta-retalls.</translation>
|
||||
|
||||
@@ -187,30 +187,35 @@ Drücke die Leertaste um das Seitenmenü zu öffnen.</translation>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation>&Bildschirmaufnahme anfertigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&Einstellungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>&Informationen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>&Beenden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -436,44 +441,72 @@ Drücke die Leertaste um das Seitenmenü zu öffnen.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Bild hochladen</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">URL kopieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">URL öffnen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Bild in Zwischenablage.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Kann URL nicht öffnen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL kopiert.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Bild hochladen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">URL kopieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">URL öffnen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Bild in Zwischenablage.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Kann URL nicht öffnen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL kopiert.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">Bildschirmaufnahme in Zwischenablage kopiert.</translation>
|
||||
</message>
|
||||
@@ -576,77 +609,87 @@ Drücke die Leertaste um das Seitenmenü zu öffnen.</translation>
|
||||
<translation>Mausrad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>Verschiebe Auswahl um 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>Größenänderung um 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>Auswahl verlassen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>In Zwischenablage kopieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>Speichere Auswahl als Datei</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>Letze Änderungen zurücksetzen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation>Öffne/Schließe Seitenauswahlmenü des gewählten Werkzeugs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>Zeige Farbauswahl</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>Ändere die Dicke des Werkzeugs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>Verfügbare Tastenkürzel im Aufnahmemodus.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>Taste</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>Beschreibung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>Lizenz</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>Version</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>Tastenkürzel</b></u></translation>
|
||||
</message>
|
||||
@@ -760,7 +803,7 @@ Drücke die Leertaste um das Seitenmenü zu öffnen.</translation>
|
||||
<translation>Kein Schreibzugriff auf</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL kopiert.</translation>
|
||||
|
||||
@@ -187,30 +187,35 @@ Presiona Espacio para abrir el panel lateral.</translation>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation>&Tomar captura de pantalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&Configuración</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>&Información</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>&Salir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -436,44 +441,72 @@ Presiona Espacio para abrir el panel lateral.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Subiendo Imagen</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Copiar URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Abrir URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Imagen al Portapapeles.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">No puede abrir la URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL copiada al portapapeles.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Subiendo Imagen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Copiar URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Abrir URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Imagen al Portapapeles.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">No puede abrir la URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL copiada al portapapeles.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">Captura copiada al portapapeles.</translation>
|
||||
</message>
|
||||
@@ -576,77 +609,87 @@ Presiona Espacio para abrir el panel lateral.</translation>
|
||||
<translation>Rueda del Ratón</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>Mover la selección 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>Redimensionar la selección 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>Salir de la captura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Copiar al portapapeles</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>Guardar la selección como un archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>Deshacer la última modificación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation>Alternar la visualización de la barra lateral de opciones de la herramienta seleccionada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>Mostrar el selector de color</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>Cambiar el grosor de la herramienta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>Atajos disponibles en el modo captura de pantalla.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>Tecla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>Descripción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>Licencia</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>Versión</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>Atajos</b></u></translation>
|
||||
</message>
|
||||
@@ -760,7 +803,7 @@ Presiona Espacio para abrir el panel lateral.</translation>
|
||||
<translation>Imposible escribir en</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL copiada al portapapeles.</translation>
|
||||
|
||||
@@ -187,30 +187,35 @@ Appuyer sur Espace pour ouvrir le panneau latéral.</translation>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation>&Capturer l'écran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&Configuration</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>&Informations</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>&Quitter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -436,44 +441,72 @@ Appuyer sur Espace pour ouvrir le panneau latéral.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Mise en ligne de l'image</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Copier l'URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Ouvrir l'URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Image dans le Presse-papier.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Impossible d'ouvrir l'URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL copiée dans le Presse-papier.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Mise en ligne de l'image</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Copier l'URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Ouvrir l'URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Image dans le Presse-papier.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Impossible d'ouvrir l'URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL copiée dans le Presse-papier.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">Capture d'écran copiée dans le Presse-papier.</translation>
|
||||
</message>
|
||||
@@ -576,77 +609,87 @@ Appuyer sur Espace pour ouvrir le panneau latéral.</translation>
|
||||
<translation>Molette de la Souris</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>Déplacer la sélection 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>Redimensionner la sélection 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>Quitter la capture d'écran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Copier vers le Presse-papier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>Sauvegarder la sélection vers un fichier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>Annuler la dernière modification</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>Afficher la palette de couleurs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>Changer l'épaisseur des outils</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>Raccourcis disponibles en mode capture d'écran.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>Clé</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>Description</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>Licences</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>Version</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>Raccourci</b></u></translation>
|
||||
</message>
|
||||
@@ -760,7 +803,7 @@ Appuyer sur Espace pour ouvrir le panneau latéral.</translation>
|
||||
<translation>Imposible d'écrire par dessus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL copiée dans le Presse-papier.</translation>
|
||||
|
||||
@@ -181,6 +181,10 @@ Press Space to open the side panel.</source>
|
||||
<source>&Open Launcher</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -378,6 +382,29 @@ Press Space to open the side panel.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL másolva a vágólapra.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">URL másolása</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
@@ -552,6 +579,14 @@ Press Space to open the side panel.</source>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LineTool</name>
|
||||
|
||||
@@ -187,30 +187,35 @@ Enter を押すと画面をキャプチャー。
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation>スクリーンショットを撮る(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>設定(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>情報(&I)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>終了(&Q)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -436,44 +441,72 @@ Enter を押すと画面をキャプチャー。
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">画像をアップロード中</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">URL をコピー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">URL を開く</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">画像をクリップボードへ。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">URL を開けません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL をクリップボードにコピーしました。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">画像をアップロード中</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">URL をコピー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">URL を開く</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">画像をクリップボードへ。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">URL を開けません。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL をクリップボードにコピーしました。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">スクリーンショットをクリップボードにコピーしました。</translation>
|
||||
</message>
|
||||
@@ -576,77 +609,87 @@ Enter を押すと画面をキャプチャー。
|
||||
<translation>マウスホイール</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>選択範囲を 1px 動かす</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>選択範囲を 1px リサイズする</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>キャプチャーを終了する</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>クリップボードにコピーする</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>選択範囲をファイルに保存する</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>最後の変更を元に戻す</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>カラーピッカーを表示する</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>ツールの値 (太さや濃さ) を変更する</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>キー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>説明</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>ライセンス</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>バージョン</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>ショートカット</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>スクリーンキャプチャーモードで利用可能なショートカット。</translation>
|
||||
</message>
|
||||
@@ -760,7 +803,7 @@ Enter を押すと画面をキャプチャー。
|
||||
<translation>書き込めません:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL をクリップボードにコピーしました。</translation>
|
||||
|
||||
@@ -183,30 +183,35 @@ Press Space to open the side panel.</source>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&პარამეტრები</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>&ინფორმაცია</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>&გამოსვლა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -432,44 +437,72 @@ Press Space to open the side panel.</source>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">სურათის ატვირთვა</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">URL-ის კოპირება</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">URL-ის გახსნა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">სურათის გაცვლის ბუფერში გაგზავნა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">URL-ის გახსნა ვერ მოხერხდა.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL დაკოპირდა გაცვლის ბუფერში.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">სურათის ატვირთვა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">URL-ის კოპირება</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">URL-ის გახსნა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">სურათის გაცვლის ბუფერში გაგზავნა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">URL-ის გახსნა ვერ მოხერხდა.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL დაკოპირდა გაცვლის ბუფერში.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">სურათი დაკოპირდა გაცვლის ბუფერში.</translation>
|
||||
</message>
|
||||
@@ -572,77 +605,87 @@ Press Space to open the side panel.</source>
|
||||
<translation>მაუსის გორგოლაჭი</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>შერჩეულის გადაადგილება 1px-ით</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>შერჩეულის ზომის შეცვლა 1px-ით</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>გადაღებიდან გამოსვლა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>გაცვლის ბუფერში კოპირება</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>შერჩეულის ფაილად შენახვა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>ბოლო ცვლილების გაუქმება</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>ფერის შესარჩევის ჩვენება</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>ხელსაწყოს სისქის შეცვლა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>გადაღების რეჟიმში ხელმისაწვდომი მალსახმობები.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>კლავიში</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>აღწერა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>ლიცენზია</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>ვერსია</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>მალსახმობები</b></u></translation>
|
||||
</message>
|
||||
@@ -756,7 +799,7 @@ Press Space to open the side panel.</source>
|
||||
<translation type="unfinished">შემდეგ მისამართზე ჩაწერა ვერ მოხერხდა:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL დაკოპირდა გაცვლის ბუფერში.</translation>
|
||||
|
||||
@@ -187,30 +187,35 @@ Druk op spatie om het zijpaneel te openen.</translation>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation>Schermafdruk &maken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&Configuratie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>&Informatie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>&Afsluiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -436,44 +441,72 @@ Druk op spatie om het zijpaneel te openen.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Bezig met uploaden van afbeelding...</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">URL kopiëren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">URL openen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Afbeelding naar klembord.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Kan URL niet openen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL gekopieerd naar klembord.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Bezig met uploaden van afbeelding...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">URL kopiëren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">URL openen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Afbeelding naar klembord.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Kan URL niet openen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL gekopieerd naar klembord.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">Schermafdruk gekopieerd naar klembord.</translation>
|
||||
</message>
|
||||
@@ -576,77 +609,87 @@ Druk op spatie om het zijpaneel te openen.</translation>
|
||||
<translation>Muiswiel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>Selectie 1px verplaatsen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>Afmetingen van selectie 1px aanpassen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>Vastleggen afsluiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Kopiëren naar klembord</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>Selectie opslaan als bestand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>Laatste wijziging ongedaan maken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation>Zijbalk met gereedschapsopties tonen/verbergen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>Kleurkiezer tonen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>Wijzig de gereedschapsdikte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>Beschikbare sneltoetsen in de vastlegmodus.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>Toets</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>Omschrijving</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>Лиценца</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>Верзија</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>Пречице</b></u></translation>
|
||||
</message>
|
||||
@@ -760,7 +803,7 @@ Druk op spatie om het zijpaneel te openen.</translation>
|
||||
<translation>Kan niet wegschrijven naar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL gekopieerd naar klembord.</translation>
|
||||
|
||||
@@ -186,30 +186,35 @@ Spacja, aby pokazać panel boczny.</translation>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation>&Zrzut ekranu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&Konfiguracja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>&Informacje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>&Wyjdź</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -435,44 +440,72 @@ Spacja, aby pokazać panel boczny.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Wysyłanie obrazka</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Kopiuj URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Otwórz URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Obrazek do schowka.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Nie można otworzyć adresu URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL skopiowany do schowka.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Wysyłanie obrazka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Kopiuj URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Otwórz URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Obrazek do schowka.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Nie można otworzyć adresu URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL skopiowany do schowka.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">Zrzut ekranu skopiowany do schowka.</translation>
|
||||
</message>
|
||||
@@ -575,77 +608,87 @@ Spacja, aby pokazać panel boczny.</translation>
|
||||
<translation>Kółko myszy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>Przesuń zaznaczenie o 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>Zmień rozmiar zaznaczenia o 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>Zakończ przechwytywanie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Kopiuj do schowka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>Zapisz zaznaczenie jako plik</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>Cofnij ostatnią modyfikację</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>Pokaż próbnik kolorów</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>Zmień grubość narzędzia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>Dostępne skróty w trybie przechwytywania obrazu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>Klawisz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>Działanie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>Licencja</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>Wersja</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>Skróty klawiszowe</b></u></translation>
|
||||
</message>
|
||||
@@ -759,7 +802,7 @@ Spacja, aby pokazać panel boczny.</translation>
|
||||
<translation>Nie można zapisać w</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL skopiowany do schowka.</translation>
|
||||
|
||||
@@ -187,30 +187,35 @@ Pressione espaço abrir o painel lateral.</translation>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation>&Tirar Screenshot</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&Configuração</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>&Informações</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>&Sair</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -436,44 +441,72 @@ Pressione espaço abrir o painel lateral.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Upando Imagem</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Copiar URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Abrir URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Imagem no Clipboard.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Não foi possível abrir a URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL copiada para o clipboard.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Upando Imagem</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Copiar URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Abrir URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Imagem no Clipboard.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Não foi possível abrir a URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL copiada para o clipboard.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">Screenshot copiada para o clipboard.</translation>
|
||||
</message>
|
||||
@@ -576,77 +609,87 @@ Pressione espaço abrir o painel lateral.</translation>
|
||||
<translation>Roda do mouse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>Move a seleção em 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>Redimensiona a seleção em 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>Sair da captura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Copiar ao clipboard</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>Salva seleção em um arquivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>Desfazer última modificação</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>Mostra seletor de cores</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>Muda a grossura do pincel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>Atalhos disponívels na tela de captura.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>Tecla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>Descrição</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>Licença</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>Versão</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>Atalhos</b></u></translation>
|
||||
</message>
|
||||
@@ -760,7 +803,7 @@ Pressione espaço abrir o painel lateral.</translation>
|
||||
<translation>Não foi possível escrever em</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL copiada para o clipboard.</translation>
|
||||
|
||||
@@ -187,30 +187,43 @@ Press Space to open the side panel.</source>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation>&Сделать снимок</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation>&Открыть</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&Настройка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>&Информация</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>&Выход</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation>Последние загрузки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Recent Screenshots</source>
|
||||
<translation type="vanished">Последние скриншоты</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Recent Screenshot</source>
|
||||
<translation type="vanished">&Недавние скриншоты</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -436,24 +449,56 @@ Press Space to open the side panel.</source>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation>Загрузить на S3</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation>История скриншотов</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation>Загрузка изображения</translation>
|
||||
<source>Screenshots history is epmty</source>
|
||||
<translation type="vanished">История скриншотов пустая</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation>История скриншотов пуста</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation>Скопировать URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation>URL скопирован в буфер обмена.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation>Открыть в браузере</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation>Загрузить на S3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation>Загрузка изображения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation>Скопировать URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation>Открыть URL</translation>
|
||||
</message>
|
||||
@@ -462,22 +507,22 @@ Press Space to open the side panel.</source>
|
||||
<translation type="vanished">Удалить изображение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation>Изображение в буфер обмена.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation>Не удалось открыть URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation>URL скопирован в буфер обмена.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation>Снимок скопирован в буфер обмена.</translation>
|
||||
</message>
|
||||
@@ -584,77 +629,87 @@ Press Space to open the side panel.</source>
|
||||
<translation>Колесико мыши</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>Переместить выделение на 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>Изменить размер выделения на 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>Выйти из захвата экрана</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Скопировать в буфер обмена</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>Сохранить выделение в файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>Отменить последнее изменение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation>Показать боковую панель с настройками выбранного инструмента</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>Показать выбор цвета</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>Изменить толщину инструмента</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation>Захватить экран</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation>История скриншотов</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>Доступные горячие клавиши в режиме захвата экрана.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>Клавиша</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>Описание</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>Лицензия</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>Версия</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>Горячие клавиши</b></u></translation>
|
||||
</message>
|
||||
@@ -768,7 +823,7 @@ Press Space to open the side panel.</source>
|
||||
<translation>Не удалось сохранить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation>URL скопирован в буфер обмена.</translation>
|
||||
|
||||
@@ -187,30 +187,35 @@ Stlačte medzerník pre otvorenie postranného panelu.</translation>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation>&Vytvoriť snímku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&Konfigurácia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>&Informácie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>&Ukončiť</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -436,44 +441,72 @@ Stlačte medzerník pre otvorenie postranného panelu.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Nahrávam obrázok</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Kopírovať URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Otvoriť URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Obrázok do schránky.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Nepodarilo sa otvoriť URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL skopírovaná do schránky.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Nahrávam obrázok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Kopírovať URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Otvoriť URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Obrázok do schránky.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Nepodarilo sa otvoriť URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL skopírovaná do schránky.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">Snímka obrazovky bola skopírovaná do schránky.</translation>
|
||||
</message>
|
||||
@@ -576,77 +609,87 @@ Stlačte medzerník pre otvorenie postranného panelu.</translation>
|
||||
<translation>Kolečko myši</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>Presunúť výber o 1 px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>Zmeniť rozmery výberu o 1 px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>Ukončiť zachytávanie obrazovky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Kopírovať do schránky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>Zapísať výber do súboru</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>Vrátiť poslednú úpravu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation>Prepnúť viditeľnosť bočnej lišty s možnosťami vybraného nástroja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>Zobraziť dialóg na výber farby</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>Zmena hrúbky nástroja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>Dostupné klávesové skratky v režime zachytávania obrazovky.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>Kláves</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>Popis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>Licencia</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>Verzia</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>Klávesové skratky</b></u></translation>
|
||||
</message>
|
||||
@@ -760,7 +803,7 @@ Stlačte medzerník pre otvorenie postranného panelu.</translation>
|
||||
<translation>Chyba pri ukladaní</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL skopírovaná do schránky.</translation>
|
||||
|
||||
@@ -187,30 +187,35 @@ Press Space to open the side panel.</source>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation>&Направи снимак екрана</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&Подешавања</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>Ин&формације</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>&Излаз</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -436,44 +441,72 @@ Press Space to open the side panel.</source>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Објављујем слику</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Запамти интернет адресу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Посети интернет адресу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Сачувај у привремену меморију.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Нисам успео да посетим интернет адресу.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">Интернет адреса је сачувана у привременој меморији.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Објављујем слику</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">Запамти интернет адресу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">Посети интернет адресу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Сачувај у привремену меморију.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">Нисам успео да посетим интернет адресу.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">Интернет адреса је сачувана у привременој меморији.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">Слика је сачувана у привременој меморији.</translation>
|
||||
</message>
|
||||
@@ -576,77 +609,87 @@ Press Space to open the side panel.</source>
|
||||
<translation>Точкић миша</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>Помери избор за 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>Увећај избор за 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>Излаз из снимача екрана</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Запамти у привременој меморији</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>Сачувај избор у датотеку</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>Поништи последње измене</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>Прикажи избор боје</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>Измени дебљину линије алата</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>Доступне пречице у моду снимка екрана.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>Тастер</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>Опис</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>Лиценца</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>Верзија</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>Пречице</b></u></translation>
|
||||
</message>
|
||||
@@ -760,7 +803,7 @@ Press Space to open the side panel.</source>
|
||||
<translation>Нисам успео са сачувам</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">Интернет адреса је сачувана у привременој меморији.</translation>
|
||||
|
||||
@@ -187,30 +187,35 @@ Yan paneli açmak için Boşluk tuşuna basın.</translation>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation>&Ekran Resmi Al</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&Ayarlar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>&Bilgi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>&Çıkış</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -436,44 +441,72 @@ Yan paneli açmak için Boşluk tuşuna basın.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Resim Yükleniyor</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">URL Kopyala</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">URL Aç</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Resim Pano'ya.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">URL açılamıyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL panoya kopyalandı.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">Resim Yükleniyor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">URL Kopyala</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">URL Aç</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">Resim Pano'ya.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">URL açılamıyor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL panoya kopyalandı.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">Ekran görüntüsü panoya kopyalandı.</translation>
|
||||
</message>
|
||||
@@ -576,77 +609,87 @@ Yan paneli açmak için Boşluk tuşuna basın.</translation>
|
||||
<translation>Fare Tekerleği</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>1px seçimini hareket ettir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>1px seçimini yeniden boyutlandır</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>Çıkış</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Panoya kopyala</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>Seçimi dosya olarak kaydet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>Son değişikliği geri al</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>Renk seçici göster</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>Araç kalınlığını değiştirin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>Ekran yakalama modunda kullanılabilir kısayollar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>Anahtar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>Tanım</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>Lisans</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>Sürüm</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>Kısayollar</b></u></translation>
|
||||
</message>
|
||||
@@ -760,7 +803,7 @@ Yan paneli açmak için Boşluk tuşuna basın.</translation>
|
||||
<translation>Yazma mümkün değil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">URL panoya kopyalandı.</translation>
|
||||
|
||||
@@ -187,30 +187,43 @@ Press Space to open the side panel.</source>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation>&Зробити знімок</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation>&Відчинити</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&Налаштування</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>&Інформація</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>Ви&йти</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation>Останні завантаження</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Recent Screenshots</source>
|
||||
<translation type="vanished">Нещодавні скріншоти</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Recent Screenshot</source>
|
||||
<translation type="vanished">Нещодавні скріншоти</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -436,24 +449,56 @@ Press Space to open the side panel.</source>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation>Вивантажити на S3</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation>Історія скріншотів</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation>Вивантаження зображення</translation>
|
||||
<source>Screenshots history is epmty</source>
|
||||
<translation type="vanished">Історія скріншотів пуста</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation>Історія скріншотів пуста</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation>Скопіювати URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation>URL скопійовано до буферу обміну.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation>Відкрити у браузері</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation>Вивантажити на S3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation>Вивантаження зображення</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation>Скопіювати URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation>Відкрити URL</translation>
|
||||
</message>
|
||||
@@ -462,22 +507,22 @@ Press Space to open the side panel.</source>
|
||||
<translation type="vanished">Видалити зображення</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation>Зображення до буферу обміну.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation>Не вдалось відкрити URL.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation>URL скопійовано до буферу обміну.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation>Знімок скопійовано до буферу обміну.</translation>
|
||||
</message>
|
||||
@@ -584,77 +629,87 @@ Press Space to open the side panel.</source>
|
||||
<translation>Колесо миші</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>Перемістити виділення на 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>Змінити розмір виділення на 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>Вийти із захоплення екрану</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>Копіювати до буферу обміну</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>Зберегти вибране до файлу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>Скасувати останню зміну</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation>Переключити видимість бічної панелі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>Показати вибір кольору</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>Змінити товщину інструменту</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation>Захватити екран</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation>Історія скріншотів</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>Доступні комбінації клавіш у режимі захоплення екрану.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>Клавіша</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>Опис</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>Ліцензія</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>Версія</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>Комбінації клавіш</b></u></translation>
|
||||
</message>
|
||||
@@ -768,7 +823,7 @@ Press Space to open the side panel.</source>
|
||||
<translation>Не вдалось зберегти</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation>URL скопійовано до буферу обміну.</translation>
|
||||
|
||||
@@ -188,30 +188,35 @@ Press Space to open the side panel.</source>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation>进行截图(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation>打开启动器(&O)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>配置(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>信息(&I)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>退出(&Q)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -437,44 +442,72 @@ Press Space to open the side panel.</source>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">正在上传</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">复制链接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">打开链接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">保存文件到剪贴板。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">无法打开此链接。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">复制链接到剪贴板。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">正在上传</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">复制链接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">打开链接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">保存文件到剪贴板。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">无法打开此链接。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">复制链接到剪贴板。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">截图复制到剪贴板。</translation>
|
||||
</message>
|
||||
@@ -577,77 +610,87 @@ Press Space to open the side panel.</source>
|
||||
<translation>鼠标滑轮</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>移动选择 1 px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>调整选择大小 1 px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>退出捕获</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>复制到剪贴板</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>将选择保存为文件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>撤消上次修改</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation>切换侧边栏可见性</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>显示颜色选择器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>改变工具的厚度</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>键</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>描述</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>许可证</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>版本</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>快捷键</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>屏幕捕捉模式中的可用快捷键。</translation>
|
||||
</message>
|
||||
@@ -761,7 +804,7 @@ Press Space to open the side panel.</source>
|
||||
<translation>无法写入</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">复制链接到剪贴板。</translation>
|
||||
|
||||
@@ -183,30 +183,35 @@ Press Space to open the side panel.</source>
|
||||
<context>
|
||||
<name>Controller</name>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="175"/>
|
||||
<location filename="../src/core/controller.cpp" line="182"/>
|
||||
<source>&Take Screenshot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="180"/>
|
||||
<location filename="../src/core/controller.cpp" line="187"/>
|
||||
<source>&Open Launcher</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="183"/>
|
||||
<location filename="../src/core/controller.cpp" line="191"/>
|
||||
<source>&Configuration</source>
|
||||
<translation>&設定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="186"/>
|
||||
<location filename="../src/core/controller.cpp" line="194"/>
|
||||
<source>&Information</source>
|
||||
<translation>&資訊</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="189"/>
|
||||
<location filename="../src/core/controller.cpp" line="197"/>
|
||||
<source>&Quit</source>
|
||||
<translation>&結束</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/controller.cpp" line="202"/>
|
||||
<source>&Latest Uploads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CopyTool</name>
|
||||
@@ -432,44 +437,72 @@ Press Space to open the side panel.</source>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<name>HistoryWidget</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="64"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="26"/>
|
||||
<source>Screenshots history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="71"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">正在上傳</translation>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="57"/>
|
||||
<source>Screenshots history is empty</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="298"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="98"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">複製連結</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="299"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">打開連結</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="300"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">將檔案複製到剪貼簿</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="316"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">無法打開此連結</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="322"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="102"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">連結已複製到剪貼簿</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="327"/>
|
||||
<location filename="../src/widgets/historywidget.cpp" line="108"/>
|
||||
<source>Open in browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ImgS3Uploader</name>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="53"/>
|
||||
<source>Upload to ImgS3</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="60"/>
|
||||
<source>Uploading Image</source>
|
||||
<translation type="unfinished">正在上傳</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="318"/>
|
||||
<source>Copy URL</source>
|
||||
<translation type="unfinished">複製連結</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="319"/>
|
||||
<source>Open URL</source>
|
||||
<translation type="unfinished">打開連結</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="320"/>
|
||||
<source>Image to Clipboard.</source>
|
||||
<translation type="unfinished">將檔案複製到剪貼簿</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="336"/>
|
||||
<source>Unable to open the URL.</source>
|
||||
<translation type="unfinished">無法打開此連結</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="342"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">連結已複製到剪貼簿</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="347"/>
|
||||
<source>Screenshot copied to clipboard.</source>
|
||||
<translation type="unfinished">截圖已複製到剪貼簿</translation>
|
||||
</message>
|
||||
@@ -572,77 +605,87 @@ Press Space to open the side panel.</source>
|
||||
<translation>滑鼠滑輪</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="68"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<source>Move selection 1px</source>
|
||||
<translation>移動 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="69"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<source>Resize selection 1px</source>
|
||||
<translation>調整大小 1px</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="70"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<source>Quit capture</source>
|
||||
<translation>結束擷取</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="71"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<source>Copy to clipboard</source>
|
||||
<translation>複製到剪貼簿</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="72"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<source>Save selection as a file</source>
|
||||
<translation>將選擇範圍另存新檔</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="73"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<source>Undo the last modification</source>
|
||||
<translation>復原上次修改</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="74"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<source>Toggle visibility of sidebar with options of the selected tool</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="75"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="77"/>
|
||||
<source>Show color picker</source>
|
||||
<translation>顯示顏色選擇器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="76"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="78"/>
|
||||
<source>Change the tool's thickness</source>
|
||||
<translation>改變工具的寬度</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="79"/>
|
||||
<source>Capture screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="80"/>
|
||||
<source>Screenshot history</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Key</source>
|
||||
<translation>鍵</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="92"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="96"/>
|
||||
<source>Description</source>
|
||||
<translation>描述</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="123"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="127"/>
|
||||
<source><u><b>License</b></u></source>
|
||||
<translation><u><b>授權條款</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="131"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="135"/>
|
||||
<source><u><b>Version</b></u></source>
|
||||
<translation><u><b>版本</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="141"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="145"/>
|
||||
<source><u><b>Shortcuts</b></u></source>
|
||||
<translation><u><b>快速鍵</b></u></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="81"/>
|
||||
<location filename="../src/widgets/infowindow.cpp" line="85"/>
|
||||
<source>Available shortcuts in the screen capture mode.</source>
|
||||
<translation>螢幕擷取模式中的可用快速鍵</translation>
|
||||
</message>
|
||||
@@ -756,7 +799,7 @@ Press Space to open the side panel.</source>
|
||||
<translation type="unfinished">無法寫入</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="140"/>
|
||||
<location filename="../src/tools/imgs3/imgs3uploader.cpp" line="160"/>
|
||||
<location filename="../src/tools/imgur/imguruploader.cpp" line="82"/>
|
||||
<source>URL copied to clipboard.</source>
|
||||
<translation type="unfinished">連結已複製到剪貼簿</translation>
|
||||
|
||||
@@ -41,14 +41,16 @@ qmake
|
||||
|
||||
# update qt translations, ignore if no `lupdate` utils is installed
|
||||
lupdate -recursive ./ -ts ./translations/* || true
|
||||
lrelease flameshot.pro
|
||||
|
||||
# push current release
|
||||
git add flameshot.pro ./win_setup/flameshot.iss appveyor.yml .travis.yml update_release_version.sh translations/
|
||||
git commit -m "Update version to ${BASE_VERSION_NEW}"
|
||||
git push ${GIT_REMOTE} -u release/${BASE_VERSION_NEW}
|
||||
#git push ${GIT_REMOTE} -u release/${BASE_VERSION_NEW}
|
||||
|
||||
# add new release tag
|
||||
git tag "v${BASE_VERSION_NEW}"
|
||||
git push ${GIT_REMOTE} --tags
|
||||
git push ${GIT_REMOTE} -u release/${BASE_VERSION_NEW} --tags
|
||||
#git push ${GIT_REMOTE} --tags
|
||||
|
||||
echo "New Flameshot version is: ${BASE_VERSION_NEW}"
|
||||
|
||||
@@ -32,6 +32,7 @@ Source: "flameshot\iconengines\*"; DestDir: "{app}\iconengines"
|
||||
Source: "flameshot\imageformats\*"; DestDir: "{app}\imageformats"
|
||||
Source: "flameshot\platforms\*"; DestDir: "{app}\platforms"
|
||||
Source: "flameshot\translations\*"; DestDir: "{app}\translations"
|
||||
Source: "flameshot\vcredist-2013.exe"; DestDir: {app}
|
||||
Source: "flameshot\vcredist.exe"; DestDir: {app}
|
||||
|
||||
[Icons]
|
||||
@@ -45,6 +46,9 @@ Name: "{group}\FlameShot Documentation"; Filename: "https://collab.namecheap.net
|
||||
; you don't need a [Registry] section.
|
||||
|
||||
[Run]
|
||||
Filename: {app}\vcredist-2013.exe; \
|
||||
Parameters: "/q /passive /Q:a /c:""msiexec /q /i vcredist.msi"""; \
|
||||
StatusMsg: "Installing VC++ 2013 Redistributables..."
|
||||
Filename: {app}\vcredist.exe; \
|
||||
Parameters: "/q /passive /Q:a /c:""msiexec /q /i vcredist.msi"""; \
|
||||
StatusMsg: "Installing VC++ 2015 Redistributables..."
|
||||
|
||||
Reference in New Issue
Block a user