mirror of
https://github.com/fergalmoran/flameshot.git
synced 2026-01-07 01:23:58 +00:00
Minor code fixes
This commit is contained in:
@@ -37,7 +37,8 @@ TRANSLATIONS = translations/Internationalization_es.ts \
|
||||
translations/Internationalization_ru.ts \
|
||||
translations/Internationalization_zh_CN.ts \
|
||||
translations/Internationalization_zh_TW.ts \
|
||||
translations/Internationalization_tr.ts
|
||||
translations/Internationalization_tr.ts \
|
||||
translations/Internationalization_ka.ts
|
||||
|
||||
# Generate translations in build
|
||||
TRANSLATIONS_FILES =
|
||||
|
||||
@@ -166,7 +166,7 @@ void CaptureButton::setColor(const QColor &c) {
|
||||
|
||||
// getButtonBaseSize returns the base size of the buttons
|
||||
size_t CaptureButton::buttonBaseSize() {
|
||||
return QApplication::fontMetrics().height() * 2.2 * qApp->devicePixelRatio();
|
||||
return QApplication::fontMetrics().lineSpacing() * 2.2;
|
||||
}
|
||||
|
||||
bool CaptureButton::iconIsWhiteByColor(const QColor &c) {
|
||||
|
||||
@@ -198,7 +198,7 @@ void CaptureWidget::paintEvent(QPaintEvent *) {
|
||||
QRectF bRect = painter.boundingRect(helpRect, Qt::AlignCenter, helpTxt);
|
||||
|
||||
// These four calls provide padding for the rect
|
||||
const int margin = QApplication::fontMetrics().width("-") * 2;
|
||||
const int margin = QApplication::fontMetrics().height() / 2;
|
||||
bRect.setWidth(bRect.width() + margin);
|
||||
bRect.setHeight(bRect.height() + margin);
|
||||
bRect.setX(bRect.x() - margin);
|
||||
@@ -622,8 +622,7 @@ void CaptureWidget::updateCursor() {
|
||||
}
|
||||
|
||||
int CaptureWidget::handleSize() {
|
||||
return (QApplication::fontMetrics().height() * 0.7) *
|
||||
qApp->devicePixelRatio();
|
||||
return (QApplication::fontMetrics().height() * 0.7);
|
||||
}
|
||||
|
||||
void CaptureWidget::copyScreenshot() {
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
#include "uicoloreditor.h"
|
||||
#include "clickablelabel.h"
|
||||
#include <QHBoxLayout>
|
||||
#include <QApplication>
|
||||
#include <QVBoxLayout>
|
||||
#include <QComboBox>
|
||||
#include <QMap>
|
||||
@@ -29,13 +30,17 @@ UIcolorEditor::UIcolorEditor(QWidget *parent) : QGroupBox(parent) {
|
||||
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
||||
m_hLayout = new QHBoxLayout;
|
||||
m_vLayout = new QVBoxLayout;
|
||||
m_hLayout->addItem(new QSpacerItem(10, 10, QSizePolicy::Expanding));
|
||||
|
||||
const size_t space = QApplication::fontMetrics().lineSpacing();
|
||||
m_hLayout->addItem(new QSpacerItem(space, space, QSizePolicy::Expanding));
|
||||
m_vLayout->setAlignment(Qt::AlignVCenter);
|
||||
|
||||
initButtons();
|
||||
initColorWheel();
|
||||
m_vLayout->addSpacing(10);
|
||||
|
||||
m_vLayout->addSpacing(space);
|
||||
m_hLayout->addLayout(m_vLayout);
|
||||
m_hLayout->addItem(new QSpacerItem(10, 10, QSizePolicy::Expanding));
|
||||
m_hLayout->addItem(new QSpacerItem(space, space, QSizePolicy::Expanding));
|
||||
setLayout(m_hLayout);
|
||||
updateComponents();
|
||||
}
|
||||
|
||||
@@ -454,7 +454,7 @@ Utilitzeu la roda del ratolí per a canviar el gruix de l'eina.</translatio
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<source>Save As</source>
|
||||
<translation>Anomena i guarda</translation>
|
||||
<translation type="vanished">Anomena i guarda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save Error</source>
|
||||
@@ -472,6 +472,14 @@ Utilitzeu la roda del ratolí per a canviar el gruix de l'eina.</translatio
|
||||
<source>Unable to connect via DBus</source>
|
||||
<translation>No es pot connectar mitjançant DBus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to write in</source>
|
||||
<translation type="unfinished">No es pot escriure a</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RectangleTool</name>
|
||||
|
||||
@@ -17,33 +17,33 @@
|
||||
<context>
|
||||
<name>AppLauncherWidget</name>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="55"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="56"/>
|
||||
<source>Open With</source>
|
||||
<translation>Abrir Con</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="70"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="71"/>
|
||||
<source>Launch in terminal</source>
|
||||
<translation>Lanzar en terminal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="71"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="72"/>
|
||||
<source>Keep open after selection</source>
|
||||
<translation>Mantener abierto tras la selección</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="98"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="110"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="99"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="111"/>
|
||||
<source>Error</source>
|
||||
<translation>Error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="98"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="99"/>
|
||||
<source>Unable to write in</source>
|
||||
<translation>Imposible escribir en</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="111"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="112"/>
|
||||
<source>Unable to launch in terminal.</source>
|
||||
<translation>Imposible lanzar en terminal.</translation>
|
||||
</message>
|
||||
@@ -77,12 +77,12 @@
|
||||
<context>
|
||||
<name>CaptureWidget</name>
|
||||
<message>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="93"/>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="87"/>
|
||||
<source>Unable to capture screen</source>
|
||||
<translation>Imposible capturar la pantalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="197"/>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="191"/>
|
||||
<source>Select an area with the mouse, or press Esc to exit.
|
||||
Press Enter to capture the screen.
|
||||
Press Right Click to show the color picker.
|
||||
@@ -109,7 +109,7 @@ Usa la rueda del ratón para cambiar el grosor de la herramienta.</translation>
|
||||
<context>
|
||||
<name>ConfigWindow</name>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="37"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="38"/>
|
||||
<source>Configuration</source>
|
||||
<translation>Configuración</translation>
|
||||
</message>
|
||||
@@ -122,17 +122,17 @@ Usa la rueda del ratón para cambiar el grosor de la herramienta.</translation>
|
||||
<translation type="vanished">Seleccionar Todos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="58"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="59"/>
|
||||
<source>Interface</source>
|
||||
<translation>Interfaz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="63"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="64"/>
|
||||
<source>Filename Editor</source>
|
||||
<translation>Editor de Nombre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="68"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="69"/>
|
||||
<source>General</source>
|
||||
<translation>General</translation>
|
||||
</message>
|
||||
@@ -547,24 +547,23 @@ Usa la rueda del ratón para cambiar el grosor de la herramienta.</translation>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="38"/>
|
||||
<source>Save As</source>
|
||||
<translation>Guardar Como</translation>
|
||||
<translation type="vanished">Guardar Como</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="74"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="73"/>
|
||||
<source>Save Error</source>
|
||||
<translation>Error al Guardar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="87"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="43"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="45"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="67"/>
|
||||
<source>Capture saved as </source>
|
||||
<translation>Captura guardada como </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="91"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="45"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="47"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="70"/>
|
||||
<source>Error trying to save as </source>
|
||||
<translation>Error intentando guardar como </translation>
|
||||
</message>
|
||||
@@ -575,6 +574,16 @@ Usa la rueda del ratón para cambiar el grosor de la herramienta.</translation>
|
||||
<source>Unable to connect via DBus</source>
|
||||
<translation>Imposible conectar mediante DBus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/openwithprogram.cpp" line="39"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/openwithprogram.cpp" line="40"/>
|
||||
<source>Unable to write in</source>
|
||||
<translation type="unfinished">Imposible escribir en</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RectangleTool</name>
|
||||
@@ -739,37 +748,37 @@ Usa la rueda del ratón para cambiar el grosor de la herramienta.</translation>
|
||||
<context>
|
||||
<name>UIcolorEditor</name>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="28"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="29"/>
|
||||
<source>UI Color Editor</source>
|
||||
<translation>Editor de Color de Interfaz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="86"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="92"/>
|
||||
<source>Change the color moving the selectors and see the changes in the preview buttons.</source>
|
||||
<translation>Cambia el color moviendo los selectores y observa los cambios en los botones de previsualización.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="96"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="102"/>
|
||||
<source>Select a Button to modify it</source>
|
||||
<translation>Selecciona un Botón para modificarlo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="105"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="111"/>
|
||||
<source>Main Color</source>
|
||||
<translation>Color Principal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="109"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="115"/>
|
||||
<source>Click on this button to set the edition mode of the main color.</source>
|
||||
<translation>Clica en este botón para aplicar el modo edición para el color primario.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="120"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="126"/>
|
||||
<source>Contrast Color</source>
|
||||
<translation>Color de Contraste</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="125"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="131"/>
|
||||
<source>Click on this button to set the edition mode of the contrast color.</source>
|
||||
<translation>Clica en este botón para aplicar el modo edición para el color de contraste.</translation>
|
||||
</message>
|
||||
|
||||
@@ -17,33 +17,33 @@
|
||||
<context>
|
||||
<name>AppLauncherWidget</name>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="55"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="56"/>
|
||||
<source>Open With</source>
|
||||
<translation>გახსნა პროგრამით</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="70"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="71"/>
|
||||
<source>Launch in terminal</source>
|
||||
<translation>ტერმინალში გაშვება</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="71"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="72"/>
|
||||
<source>Keep open after selection</source>
|
||||
<translation>არ დახურო დიალოგი არჩევის შემდეგ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="98"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="110"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="99"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="111"/>
|
||||
<source>Error</source>
|
||||
<translation>შეცდომა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="98"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="99"/>
|
||||
<source>Unable to write in</source>
|
||||
<translation>შემდეგ მისამართზე ჩაწერა ვერ მოხერხდა:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="111"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="112"/>
|
||||
<source>Unable to launch in terminal.</source>
|
||||
<translation>ტერმინალში გაშვება ვერ მოხერხდა.</translation>
|
||||
</message>
|
||||
@@ -77,12 +77,12 @@
|
||||
<context>
|
||||
<name>CaptureWidget</name>
|
||||
<message>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="93"/>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="87"/>
|
||||
<source>Unable to capture screen</source>
|
||||
<translation>ეკრანის გადაღება ვერ მოხერხდა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="197"/>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="191"/>
|
||||
<source>Select an area with the mouse, or press Esc to exit.
|
||||
Press Enter to capture the screen.
|
||||
Press Right Click to show the color picker.
|
||||
@@ -109,30 +109,30 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<context>
|
||||
<name>ConfigWindow</name>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="37"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="38"/>
|
||||
<source>Configuration</source>
|
||||
<translation>პარამეტრები</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Button Selection</source>
|
||||
<translation>ღილაკის არჩევა</translation>
|
||||
<translation type="vanished">ღილაკის არჩევა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Select All</source>
|
||||
<translation>ყველაფრის შერჩევა</translation>
|
||||
<translation type="vanished">ყველაფრის შერჩევა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="58"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="59"/>
|
||||
<source>Interface</source>
|
||||
<translation>ინტერფეისი</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="63"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="64"/>
|
||||
<source>Filename Editor</source>
|
||||
<translation>ფაილის სახელის რედაქტორი</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="68"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="69"/>
|
||||
<source>General</source>
|
||||
<translation>ზოგადი</translation>
|
||||
</message>
|
||||
@@ -543,24 +543,23 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="38"/>
|
||||
<source>Save As</source>
|
||||
<translation>შენახვა როგორც</translation>
|
||||
<translation type="vanished">შენახვა როგორც</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="74"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="73"/>
|
||||
<source>Save Error</source>
|
||||
<translation>შეცდომა შენახვისას</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="87"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="43"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="45"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="67"/>
|
||||
<source>Capture saved as </source>
|
||||
<translation>სურათი შენახულია როგორც: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="91"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="45"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="47"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="70"/>
|
||||
<source>Error trying to save as </source>
|
||||
<translation>შეცდომა მცდელობისას შენახულიყო როგორც: </translation>
|
||||
</message>
|
||||
@@ -571,6 +570,16 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<source>Unable to connect via DBus</source>
|
||||
<translation>DBus-ით დაკავშირება ვერ მოხერხდა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/openwithprogram.cpp" line="39"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">შეცდომა</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/openwithprogram.cpp" line="40"/>
|
||||
<source>Unable to write in</source>
|
||||
<translation type="unfinished">შემდეგ მისამართზე ჩაწერა ვერ მოხერხდა:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RectangleTool</name>
|
||||
@@ -735,37 +744,37 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<context>
|
||||
<name>UIcolorEditor</name>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="28"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="29"/>
|
||||
<source>UI Color Editor</source>
|
||||
<translation>ინტერფეისის ფერის რედაქტორი</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="86"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="92"/>
|
||||
<source>Change the color moving the selectors and see the changes in the preview buttons.</source>
|
||||
<translation>შეცვალეთ ფერი ნიშნულის გადაადგილებით და შეხედეთ ცვლილებებს გადასახედ ღილაკებზე.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="96"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="102"/>
|
||||
<source>Select a Button to modify it</source>
|
||||
<translation>აირჩიეთ ღილაკი მის შესაცვლელად</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="105"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="111"/>
|
||||
<source>Main Color</source>
|
||||
<translation>ძირითადი ფერი</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="109"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="115"/>
|
||||
<source>Click on this button to set the edition mode of the main color.</source>
|
||||
<translation>დააწექით ამ ღილაკს ძირითადი ფერის არჩევის რეჟიმის ჩასართავად.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="120"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="126"/>
|
||||
<source>Contrast Color</source>
|
||||
<translation>კონტრასტული ფერი</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="125"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="131"/>
|
||||
<source>Click on this button to set the edition mode of the contrast color.</source>
|
||||
<translation>დააწექით ამ ღილაკს კონტრასტული ფერის არჩევის რეჟიმის ჩასართავად.</translation>
|
||||
</message>
|
||||
@@ -17,33 +17,33 @@
|
||||
<context>
|
||||
<name>AppLauncherWidget</name>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="55"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="56"/>
|
||||
<source>Open With</source>
|
||||
<translation type="unfinished">Открыть с помощью</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="70"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="71"/>
|
||||
<source>Launch in terminal</source>
|
||||
<translation type="unfinished">Запустить в терминале</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="71"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="72"/>
|
||||
<source>Keep open after selection</source>
|
||||
<translation type="unfinished">Оставить запущенным после выделения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="98"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="110"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="99"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="111"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Ошибка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="98"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="99"/>
|
||||
<source>Unable to write in</source>
|
||||
<translation type="unfinished">Не удалось сохранить</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="111"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="112"/>
|
||||
<source>Unable to launch in terminal.</source>
|
||||
<translation type="unfinished">Не удалось запустить в терминале.</translation>
|
||||
</message>
|
||||
@@ -77,12 +77,12 @@
|
||||
<context>
|
||||
<name>CaptureWidget</name>
|
||||
<message>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="93"/>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="87"/>
|
||||
<source>Unable to capture screen</source>
|
||||
<translation type="unfinished">Не удалось захватить экран</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="197"/>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="191"/>
|
||||
<source>Select an area with the mouse, or press Esc to exit.
|
||||
Press Enter to capture the screen.
|
||||
Press Right Click to show the color picker.
|
||||
@@ -109,7 +109,7 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<context>
|
||||
<name>ConfigWindow</name>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="37"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="38"/>
|
||||
<source>Configuration</source>
|
||||
<translation type="unfinished">Настройка</translation>
|
||||
</message>
|
||||
@@ -122,17 +122,17 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<translation type="obsolete">Выбрать все</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="58"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="59"/>
|
||||
<source>Interface</source>
|
||||
<translation type="unfinished">Интерфейс</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="63"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="64"/>
|
||||
<source>Filename Editor</source>
|
||||
<translation type="unfinished">Редактор имен файлов</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="68"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="69"/>
|
||||
<source>General</source>
|
||||
<translation type="unfinished">Общее</translation>
|
||||
</message>
|
||||
@@ -543,24 +543,23 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="38"/>
|
||||
<source>Save As</source>
|
||||
<translation type="unfinished">Сохранить как</translation>
|
||||
<translation type="obsolete">Сохранить как</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="74"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="73"/>
|
||||
<source>Save Error</source>
|
||||
<translation type="unfinished">Ошибка сохранения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="87"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="43"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="45"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="67"/>
|
||||
<source>Capture saved as </source>
|
||||
<translation type="unfinished">Сохранить снимок как </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="91"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="45"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="47"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="70"/>
|
||||
<source>Error trying to save as </source>
|
||||
<translation type="unfinished">Ошибка при попытке сохранить как </translation>
|
||||
</message>
|
||||
@@ -571,6 +570,16 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<source>Unable to connect via DBus</source>
|
||||
<translation type="unfinished">Не удалось подключиться через DBus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/openwithprogram.cpp" line="39"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Ошибка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/openwithprogram.cpp" line="40"/>
|
||||
<source>Unable to write in</source>
|
||||
<translation type="unfinished">Не удалось сохранить</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RectangleTool</name>
|
||||
@@ -735,37 +744,37 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<context>
|
||||
<name>UIcolorEditor</name>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="28"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="29"/>
|
||||
<source>UI Color Editor</source>
|
||||
<translation type="unfinished">Редактор цвета интерфейса</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="86"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="92"/>
|
||||
<source>Change the color moving the selectors and see the changes in the preview buttons.</source>
|
||||
<translation type="unfinished">Измените цвет, перемещая выделение, и посмотрите изменения в кнопках предварительного просмотра.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="96"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="102"/>
|
||||
<source>Select a Button to modify it</source>
|
||||
<translation type="unfinished">Выберите кнопку, чтобы изменить ее</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="105"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="111"/>
|
||||
<source>Main Color</source>
|
||||
<translation type="unfinished">Основной цвет</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="109"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="115"/>
|
||||
<source>Click on this button to set the edition mode of the main color.</source>
|
||||
<translation type="unfinished">Нажмите на эту кнопку, чтобы перейти в режим редактирования основного цвета.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="120"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="126"/>
|
||||
<source>Contrast Color</source>
|
||||
<translation type="unfinished">Контрастный цвет</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="125"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="131"/>
|
||||
<source>Click on this button to set the edition mode of the contrast color.</source>
|
||||
<translation type="unfinished">Нажмите на эту кнопку, чтобы перейти в режим редактирования контрастного цвета.</translation>
|
||||
</message>
|
||||
|
||||
@@ -17,33 +17,33 @@
|
||||
<context>
|
||||
<name>AppLauncherWidget</name>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="55"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="56"/>
|
||||
<source>Open With</source>
|
||||
<translation>ile Aç</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="70"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="71"/>
|
||||
<source>Launch in terminal</source>
|
||||
<translation>Terminalde aç</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="71"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="72"/>
|
||||
<source>Keep open after selection</source>
|
||||
<translation>Seçimden sonra açık tutun</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="98"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="110"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="99"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="111"/>
|
||||
<source>Error</source>
|
||||
<translation>Hata</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="98"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="99"/>
|
||||
<source>Unable to write in</source>
|
||||
<translation>Yazmak mümkün değil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="111"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="112"/>
|
||||
<source>Unable to launch in terminal.</source>
|
||||
<translation>Terminalde başlatılamadı.</translation>
|
||||
</message>
|
||||
@@ -77,12 +77,12 @@
|
||||
<context>
|
||||
<name>CaptureWidget</name>
|
||||
<message>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="93"/>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="87"/>
|
||||
<source>Unable to capture screen</source>
|
||||
<translation>Ekran yakalanamadı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="197"/>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="191"/>
|
||||
<source>Select an area with the mouse, or press Esc to exit.
|
||||
Press Enter to capture the screen.
|
||||
Press Right Click to show the color picker.
|
||||
@@ -109,7 +109,7 @@ Araç boyutunu değiştirmek için Fare tekerleğini kullanın.</translation>
|
||||
<context>
|
||||
<name>ConfigWindow</name>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="37"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="38"/>
|
||||
<source>Configuration</source>
|
||||
<translation>Ayarlar</translation>
|
||||
</message>
|
||||
@@ -122,17 +122,17 @@ Araç boyutunu değiştirmek için Fare tekerleğini kullanın.</translation>
|
||||
<translation type="vanished">Seleccionar Todos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="58"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="59"/>
|
||||
<source>Interface</source>
|
||||
<translation>Arayüz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="63"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="64"/>
|
||||
<source>Filename Editor</source>
|
||||
<translation>Dosyaadı Düzenleyici</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="68"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="69"/>
|
||||
<source>General</source>
|
||||
<translation>Genel</translation>
|
||||
</message>
|
||||
@@ -547,24 +547,23 @@ Araç boyutunu değiştirmek için Fare tekerleğini kullanın.</translation>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="38"/>
|
||||
<source>Save As</source>
|
||||
<translation>Farklı Kaydet</translation>
|
||||
<translation type="vanished">Farklı Kaydet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="74"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="73"/>
|
||||
<source>Save Error</source>
|
||||
<translation>Hata Kaydet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="87"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="43"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="45"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="67"/>
|
||||
<source>Capture saved as </source>
|
||||
<translation>Yakalanma şu şekilde kaydedildi </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="91"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="45"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="47"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="70"/>
|
||||
<source>Error trying to save as </source>
|
||||
<translation>Olarak kaydedilmeye çalışılırken hata oluştu </translation>
|
||||
</message>
|
||||
@@ -575,6 +574,16 @@ Araç boyutunu değiştirmek için Fare tekerleğini kullanın.</translation>
|
||||
<source>Unable to connect via DBus</source>
|
||||
<translation>DBus ile bağlanılamadı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/openwithprogram.cpp" line="39"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Hata</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/openwithprogram.cpp" line="40"/>
|
||||
<source>Unable to write in</source>
|
||||
<translation type="unfinished">Yazmak mümkün değil</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RectangleTool</name>
|
||||
@@ -739,37 +748,37 @@ Araç boyutunu değiştirmek için Fare tekerleğini kullanın.</translation>
|
||||
<context>
|
||||
<name>UIcolorEditor</name>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="28"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="29"/>
|
||||
<source>UI Color Editor</source>
|
||||
<translation>UI Renk Editörü</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="86"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="92"/>
|
||||
<source>Change the color moving the selectors and see the changes in the preview buttons.</source>
|
||||
<translation>Seçicileri hareket ettiren rengi değiştirin ve önizleme düğmelerindeki değişiklikleri görün.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="96"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="102"/>
|
||||
<source>Select a Button to modify it</source>
|
||||
<translation>Değiştirmek için bir Düğme seçin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="105"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="111"/>
|
||||
<source>Main Color</source>
|
||||
<translation>Ana Renk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="109"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="115"/>
|
||||
<source>Click on this button to set the edition mode of the main color.</source>
|
||||
<translation>Ana rengin baskı modunu ayarlamak için bu düğmeyi tıklayın.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="120"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="126"/>
|
||||
<source>Contrast Color</source>
|
||||
<translation>Kontrast Renk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="125"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="131"/>
|
||||
<source>Click on this button to set the edition mode of the contrast color.</source>
|
||||
<translation>Kontrast renginin baskı modunu ayarlamak için bu düğmeyi tıklayın.</translation>
|
||||
</message>
|
||||
|
||||
@@ -17,33 +17,33 @@
|
||||
<context>
|
||||
<name>AppLauncherWidget</name>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="55"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="56"/>
|
||||
<source>Open With</source>
|
||||
<translation>打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="70"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="71"/>
|
||||
<source>Launch in terminal</source>
|
||||
<translation>在终端中启动</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="71"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="72"/>
|
||||
<source>Keep open after selection</source>
|
||||
<translation>选择后保持此窗口打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="98"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="110"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="99"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="111"/>
|
||||
<source>Error</source>
|
||||
<translation>错误</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="111"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="112"/>
|
||||
<source>Unable to launch in terminal.</source>
|
||||
<translation>无法在终端中启动。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="98"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="99"/>
|
||||
<source>Unable to write in</source>
|
||||
<translation>无法写入</translation>
|
||||
</message>
|
||||
@@ -77,7 +77,7 @@
|
||||
<context>
|
||||
<name>CaptureWidget</name>
|
||||
<message>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="197"/>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="191"/>
|
||||
<source>Select an area with the mouse, or press Esc to exit.
|
||||
Press Enter to capture the screen.
|
||||
Press Right Click to show the color picker.
|
||||
@@ -88,7 +88,7 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
使用鼠标滚轮来改变油漆工具的厚度。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="93"/>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="87"/>
|
||||
<source>Unable to capture screen</source>
|
||||
<translatorcomment>无法捕获屏幕</translatorcomment>
|
||||
<translation>无法捕获屏幕</translation>
|
||||
@@ -110,7 +110,7 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<context>
|
||||
<name>ConfigWindow</name>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="37"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="38"/>
|
||||
<source>Configuration</source>
|
||||
<translation>配置</translation>
|
||||
</message>
|
||||
@@ -123,17 +123,17 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<translation type="vanished">全选</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="58"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="59"/>
|
||||
<source>Interface</source>
|
||||
<translation>界面</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="63"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="64"/>
|
||||
<source>Filename Editor</source>
|
||||
<translation>文件名编辑器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="68"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="69"/>
|
||||
<source>General</source>
|
||||
<translation>常规</translation>
|
||||
</message>
|
||||
@@ -548,24 +548,23 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="38"/>
|
||||
<source>Save As</source>
|
||||
<translation>另存为</translation>
|
||||
<translation type="vanished">另存为</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="74"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="73"/>
|
||||
<source>Save Error</source>
|
||||
<translation>保存错误</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="87"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="43"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="45"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="67"/>
|
||||
<source>Capture saved as </source>
|
||||
<translation>捕获保存为 </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="91"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="45"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="47"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="70"/>
|
||||
<source>Error trying to save as </source>
|
||||
<translation>尝试另存为时出错 </translation>
|
||||
</message>
|
||||
@@ -576,6 +575,16 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<source>Unable to connect via DBus</source>
|
||||
<translation>无法通过DBus进行连接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/openwithprogram.cpp" line="39"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">错误</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/openwithprogram.cpp" line="40"/>
|
||||
<source>Unable to write in</source>
|
||||
<translation type="unfinished">无法写入</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RectangleTool</name>
|
||||
@@ -740,37 +749,37 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<context>
|
||||
<name>UIcolorEditor</name>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="28"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="29"/>
|
||||
<source>UI Color Editor</source>
|
||||
<translation>UI颜色编辑器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="86"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="92"/>
|
||||
<source>Change the color moving the selectors and see the changes in the preview buttons.</source>
|
||||
<translation>移动颜色选择并在预览按钮查看。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="96"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="102"/>
|
||||
<source>Select a Button to modify it</source>
|
||||
<translation>选择一个按钮来修改它</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="105"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="111"/>
|
||||
<source>Main Color</source>
|
||||
<translation>主色</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="109"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="115"/>
|
||||
<source>Click on this button to set the edition mode of the main color.</source>
|
||||
<translation>点击按钮设置主色。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="120"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="126"/>
|
||||
<source>Contrast Color</source>
|
||||
<translation>对比色</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="125"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="131"/>
|
||||
<source>Click on this button to set the edition mode of the contrast color.</source>
|
||||
<translation>点击按钮设置对比色。</translation>
|
||||
</message>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="1.0" language="zh_TW">
|
||||
<TS version="2.1" language="zh_TW">
|
||||
<context>
|
||||
<name>AppLauncher</name>
|
||||
<message>
|
||||
@@ -17,33 +17,33 @@
|
||||
<context>
|
||||
<name>AppLauncherWidget</name>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="55"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="56"/>
|
||||
<source>Open With</source>
|
||||
<translation>打開</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="70"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="71"/>
|
||||
<source>Launch in terminal</source>
|
||||
<translation>在終端機中啟動</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="71"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="72"/>
|
||||
<source>Keep open after selection</source>
|
||||
<translation>選擇後維持此視窗開啟</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="98"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="110"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="99"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="111"/>
|
||||
<source>Error</source>
|
||||
<translation>錯誤</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="111"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="112"/>
|
||||
<source>Unable to launch in terminal.</source>
|
||||
<translation>無法在終端機中啟動</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="98"/>
|
||||
<location filename="../src/capture/workers/launcher/applauncherwidget.cpp" line="99"/>
|
||||
<source>Unable to write in</source>
|
||||
<translation>無法寫入</translation>
|
||||
</message>
|
||||
@@ -77,7 +77,7 @@
|
||||
<context>
|
||||
<name>CaptureWidget</name>
|
||||
<message>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="197"/>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="191"/>
|
||||
<source>Select an area with the mouse, or press Esc to exit.
|
||||
Press Enter to capture the screen.
|
||||
Press Right Click to show the color picker.
|
||||
@@ -88,7 +88,7 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
使用滑鼠滾輪來改變繪製工具的寬度</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="93"/>
|
||||
<location filename="../src/capture/widget/capturewidget.cpp" line="87"/>
|
||||
<source>Unable to capture screen</source>
|
||||
<translation>無法擷取螢幕</translation>
|
||||
</message>
|
||||
@@ -109,30 +109,30 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<context>
|
||||
<name>ConfigWindow</name>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="37"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="38"/>
|
||||
<source>Configuration</source>
|
||||
<translation>設定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Button Selection</source>
|
||||
<translation>按鈕選擇</translation>
|
||||
<translation type="vanished">按鈕選擇</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Select All</source>
|
||||
<translation>全選</translation>
|
||||
<translation type="vanished">全選</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="58"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="59"/>
|
||||
<source>Interface</source>
|
||||
<translation>介面</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="63"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="64"/>
|
||||
<source>Filename Editor</source>
|
||||
<translation>檔案名稱編輯器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/configwindow.cpp" line="68"/>
|
||||
<location filename="../src/config/configwindow.cpp" line="69"/>
|
||||
<source>General</source>
|
||||
<translation>一般</translation>
|
||||
</message>
|
||||
@@ -459,7 +459,7 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Available shorcuts in the screen capture mode.</source>
|
||||
<translation>螢幕截取模式中的可用快速鍵</translation>
|
||||
<translation type="vanished">螢幕截取模式中的可用快速鍵</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/infowindow.cpp" line="76"/>
|
||||
@@ -547,24 +547,23 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="38"/>
|
||||
<source>Save As</source>
|
||||
<translation>另存為</translation>
|
||||
<translation type="vanished">另存為</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="74"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="73"/>
|
||||
<source>Save Error</source>
|
||||
<translation>存檔錯誤</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="87"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="43"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="45"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="67"/>
|
||||
<source>Capture saved as </source>
|
||||
<translation>截圖已另存為 </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/graphicalscreenshotsaver.cpp" line="91"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="45"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="47"/>
|
||||
<location filename="../src/capture/workers/screenshotsaver.cpp" line="70"/>
|
||||
<source>Error trying to save as </source>
|
||||
<translation>嘗試另存新檔時發生錯誤 </translation>
|
||||
</message>
|
||||
@@ -575,6 +574,16 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<source>Unable to connect via DBus</source>
|
||||
<translation>無法透過 DBus 進行連接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/openwithprogram.cpp" line="39"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">錯誤</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/capture/workers/launcher/openwithprogram.cpp" line="40"/>
|
||||
<source>Unable to write in</source>
|
||||
<translation type="unfinished">無法寫入</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RectangleTool</name>
|
||||
@@ -739,37 +748,37 @@ Use the Mouse Wheel to change the thickness of your tool.</source>
|
||||
<context>
|
||||
<name>UIcolorEditor</name>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="28"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="29"/>
|
||||
<source>UI Color Editor</source>
|
||||
<translation>UI 顏色編輯器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="86"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="92"/>
|
||||
<source>Change the color moving the selectors and see the changes in the preview buttons.</source>
|
||||
<translation>移動顏色選擇並在預覽按鈕檢視</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="96"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="102"/>
|
||||
<source>Select a Button to modify it</source>
|
||||
<translation>選擇一個按鈕來修改它</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="105"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="111"/>
|
||||
<source>Main Color</source>
|
||||
<translation>主色</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="109"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="115"/>
|
||||
<source>Click on this button to set the edition mode of the main color.</source>
|
||||
<translation>點選按鈕設定主色</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="120"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="126"/>
|
||||
<source>Contrast Color</source>
|
||||
<translation>對比色</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="125"/>
|
||||
<location filename="../src/config/uicoloreditor.cpp" line="131"/>
|
||||
<source>Click on this button to set the edition mode of the contrast color.</source>
|
||||
<translation>點選按鈕設定對比色</translation>
|
||||
</message>
|
||||
|
||||
Reference in New Issue
Block a user