diff --git a/assets/configs/deepin-ocr.common.json b/assets/configs/deepin-ocr.common.json new file mode 100644 index 00000000..c9bfbbfe --- /dev/null +++ b/assets/configs/deepin-ocr.common.json @@ -0,0 +1,17 @@ +{ + "magic": "dsg.config.meta", + "version": "1.0", + "contents": { + "IsGpuEnable": { + "value": true, + "serial": 0, + "flags": ["global"], + "name": "Using GPU acceleration on special machine", + "name[zh_CN]": "在特殊机型上是否使用GPU加速", + "description": "Using GPU acceleration on special machine", + "description[zh_CN]":"在特殊机型上是否使用GPU加速", + "permissions": "readwrite", + "visibility": "private" + } + } +} diff --git a/debian/changelog b/debian/changelog index d64e6762..8279d7fe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +deepin-ocr (6.5.14) unstable; urgency=medium + + * merge release/eagle to master + + -- dengzhongyuan Tue, 02 Dec 2025 14:27:14 +0800 + deepin-ocr (6.5.13) unstable; urgency=medium * chore: Update compiler flags for security enhancements @@ -115,6 +121,43 @@ deepin-ocr (1.1.0) unstable; urgency=medium -- TagBuilder Fri, 10 Mar 2023 10:16:55 +0800 +deepin-ocr (1.5.2) unstable; urgency=medium + + *Optimized vulkan dependencies + + -- xiepengfei Mon, 19 May 2025 15:33:24 +0800 + +deepin-ocr (1.5.1) unstable; urgency=medium + + *remove env kwayland-shell + + -- Liu zheng Wed, 06 Nov 2024 15:33:24 +0800 + +deepin-ocr (1.5.0) unstable; urgency=medium + + * adapt treeland + + -- Liu zheng Tue, 22 Oct 2024 20:32:59 +0800 + +deepin-ocr (1.1.2) unstable; urgency=medium + + * New version 1.1.2. + + -- xiepengfei Wed, 16 Aug 2023 11:43:41 +0800 + +deepin-ocr (1.1.1) unstable; urgency=medium + + * New version 1.1.1. + + -- xiepengfei Thur, 13 Apr 2023 15:08:32 +0800 + +deepin-ocr (1.1.0) unstable; urgency=medium + + * Use dtkocr instead of PaddleOCR-NCNN + * Add language change + + -- TagBuilder Fri, 10 Mar 2023 10:16:55 +0800 + deepin-ocr (1.0) unstable; urgency=medium * Pre-release for deepin-ocr 1.0 diff --git a/debian/control b/debian/control index d7c02b94..cdd93b46 100644 --- a/debian/control +++ b/debian/control @@ -4,14 +4,15 @@ Priority: optional Maintainer: Deepin Packages Builder Build-Depends: debhelper (>= 11), cmake, - pkg-config, - qt6-base-dev, - qt6-tools-dev, - qt6-tools-dev-tools, - libdtk6widget-dev, - libdtk6ocr-dev, + pkg-config, + qt6-base-dev [!mipsel !mips64el] | qtbase5-dev, + qt6-tools-dev [!mipsel !mips64el] | qttools5-dev, + qt6-tools-dev-tools [!mipsel !mips64el] | qttools5-dev-tools, + libdtk6widget-dev [!mipsel !mips64el] | libdtkwidget-dev, + libdtk6core-dev [!mipsel !mips64el] | libdtkcore-dev, libncnn-dev, - libopencv-mobile-dev + libopencv-mobile-dev, + libdtk6ocr-dev | libdtkocr-dev Standards-Version: 4.1.3 Homepage: http://www.deepin.org/ diff --git a/install_dconfig.cmake b/install_dconfig.cmake new file mode 100644 index 00000000..14db8265 --- /dev/null +++ b/install_dconfig.cmake @@ -0,0 +1,34 @@ +# SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd. +# +# SPDX-License-Identifier: CC0-1.0 + +# expect that all dconfigs of plugin is saved in ./assets/configs +function(INSTALL_DCONFIG CONFIG_NAME) + set(DConfigPath ${CMAKE_SOURCE_DIR}/assets/configs) + message("DConfigPath: ${DConfigPath}") + set(AppId "deepin-ocr") + set(ConfigName ${CONFIG_NAME}) + + if (DEFINED DSG_DATA_DIR) + message("-- DConfig is supported by DTK") + message("---- AppId: ${AppId}") + message("---- Base: ${DConfigPath}") + message("---- Files: ${DConfigPath}/${ConfigName}") + if(COMMAND dtk_add_config_meta_files) + message(STATUS "Using dtk_add_config_meta_files") + dtk_add_config_meta_files(APPID ${AppId} + BASE ${DConfigPath} + FILES ${DConfigPath}/${ConfigName}) + else() + message(STATUS "Using dconfig_meta_files") + dconfig_meta_files(APPID ${AppId} + BASE ${DConfigPath} + FILES ${DConfigPath}/${ConfigName}) + endif() + else() + set(DSG_DATA_DIR ${CMAKE_INSTALL_PREFIX}/share/dsg) + message("-- DConfig is NOT supported by DTK, install files into target path") + message("---- InstallTargetDir: ${DSG_DATA_DIR}/configs") + install(FILES ${DConfigPath}/${ConfigName} DESTINATION ${DSG_DATA_DIR}/configs/${AppId}) + endif() +endfunction() diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index bd92a4de..6d8563b8 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -5,6 +5,9 @@ cmake_minimum_required(VERSION 3.10) project(deepin-ocr) +#玲珑构建依赖目录 +include_directories(${CMAKE_INSTALL_PREFIX}/include) + set(ENABLE_Qt6 ON CACHE BOOL "Build with Qt6") find_package(Qt6 QUIET) @@ -24,6 +27,7 @@ include_directories(${CMAKE_INSTALL_PREFIX}/include) # for Qt set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD 17) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) @@ -68,12 +72,14 @@ include_directories(view) include_directories(service) include_directories(engine) include_directories(util) +include_directories(utils) aux_source_directory(. allSource) aux_source_directory(./view allSource) aux_source_directory(./service allSource) aux_source_directory(./engine allSource) aux_source_directory(./util allSource) +aux_source_directory(./utils allSource) # translation file(GLOB TargetTsFiles LIST_DIRECTORIES false ../translations/${PROJECT_NAME}*.ts) @@ -153,7 +159,11 @@ endif() # for dtk find_package(PkgConfig REQUIRED) -pkg_check_modules(ocr_lib REQUIRED dtk6ocr) +if(SUPPORT_QT6) + pkg_check_modules(ocr_lib REQUIRED dtk6ocr) +else() + pkg_check_modules(ocr_lib REQUIRED dtkocr) +endif() pkg_check_modules(InferenceEngine REQUIRED ncnn opencv_mobile) target_include_directories(${PROJECT_NAME} PUBLIC ${ocr_lib_INCLUDE_DIRS}) find_package(Dtk${DTK_VERSION_MAJOR} REQUIRED COMPONENTS Core Widget) @@ -193,6 +203,11 @@ if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) set(CMAKE_INSTALL_PREFIX /usr) endif() +#dde项目,期望CMAKE_INSTALL_PREFIX为/usr +if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX /usr) +endif () + # install set(PREFIX ${CMAKE_INSTALL_PREFIX}) set(TranslationDir ${PREFIX}/share/${PROJECT_NAME}/translations) @@ -211,3 +226,6 @@ install(FILES ${LangSrcs} DESTINATION ${TranslationDir}) install(FILES ../deepin-ocr.desktop DESTINATION ${DesktopDir}) install(FILES ../assets/deepin-ocr.svg DESTINATION ${AppIconDir}) install(FILES ../com.deepin.Ocr.service DESTINATION ${DBusServiceDir}) + +include(${CMAKE_SOURCE_DIR}/install_dconfig.cmake) +INSTALL_DCONFIG("deepin-ocr.common.json") \ No newline at end of file diff --git a/src/engine/OCREngine.cpp b/src/engine/OCREngine.cpp index 590ae3f5..a3720205 100644 --- a/src/engine/OCREngine.cpp +++ b/src/engine/OCREngine.cpp @@ -3,8 +3,11 @@ // SPDX-License-Identifier: GPL-3.0-or-later #include "OCREngine.h" -#include #include +#include +#include +#include +#include #include "util/log.h" OCREngine *OCREngine::instance() @@ -25,7 +28,7 @@ OCREngine::OCREngine() //此处存在产品设计缺陷: 无法选择插件,无鉴权入口,无性能方面的高级设置入口 //因此此处直接硬编码使用默认插件 qCInfo(dmOcr) << "Initializing OCR driver"; - + ocrDriver = new Dtk::Ocr::DOcr; const QString ocrV5 = "PPOCR_V5"; bool load = false; @@ -47,8 +50,19 @@ OCREngine::OCREngine() } ocrDriver->setUseMaxThreadsCount(2); + if (!isGpuEnable()) { + qWarning() << "GPU is not enabled"; + return; + } + + QProcess kxProc; + kxProc.setProgram("bash"); + kxProc.setArguments({"-c", "lscpu | grep name"}); + kxProc.start(); + kxProc.waitForFinished(); + QString cpuInfo = kxProc.readAllStandardOutput(); QFileInfo mtfi("/dev/mtgpu.0"); - if (mtfi.exists()) { + if (mtfi.exists() | !cpuInfo.contains("KX-7000")) { qCInfo(dmOcr) << "GPU device found, enabling Vulkan hardware acceleration"; ocrDriver->setUseHardware({{Dtk::Ocr::HardwareID::GPU_Vulkan, 0}}); } @@ -67,9 +81,8 @@ QString OCREngine::getRecogitionResult() m_isRunning = true; ocrDriver->analyze(); - - m_isRunning = false; QString result = ocrDriver->simpleResult(); + m_isRunning = false; qCInfo(dmOcr) << "OCR recognition completed"; return result; } @@ -88,3 +101,8 @@ bool OCREngine::setLanguage(const QString &language) } return success; } + +bool OCREngine::isGpuEnable() +{ + return DConfigManager::instance()->value(COMMON_GROUP, COMMON_ISGPUENABLE, true).toBool(); +} diff --git a/src/engine/OCREngine.h b/src/engine/OCREngine.h index 2f18fd5b..a2523ccf 100644 --- a/src/engine/OCREngine.h +++ b/src/engine/OCREngine.h @@ -33,6 +33,12 @@ class OCREngine private: OCREngine(); ~OCREngine() = default; + // 删除拷贝构造函数和赋值运算符,防止拷贝实例 + OCREngine(const OCREngine &) = delete; + OCREngine &operator=(const OCREngine &) = delete; + + // 某些机型,使用GPU进行OCR识别,会导致OCR崩溃 + bool isGpuEnable(); Dtk::Ocr::DOcr *ocrDriver; std::atomic_bool m_isRunning; diff --git a/src/mainwidget.cpp b/src/mainwidget.cpp index 84bbc355..18560619 100644 --- a/src/mainwidget.cpp +++ b/src/mainwidget.cpp @@ -128,6 +128,7 @@ void MainWidget::setupUi(QWidget *Widget) m_noResult->setAlignment(Qt::AlignCenter); m_noResult->setText(tr("No text recognized")); m_resultWidget->addWidget(m_noResult); + m_noResult->setVisible(false); connect(m_loadingOcr, &loadingWidget::sigChangeSize, [ = ] { loadingUi(); @@ -207,6 +208,7 @@ void MainWidget::setupUi(QWidget *Widget) } ocrSetting->setValue("language", resultLanguage); runRec(false); + m_noResult->setVisible(false); }); m_buttonHorizontalLayout->addWidget(recLabel, 0, Qt::AlignRight); @@ -251,7 +253,7 @@ void MainWidget::setupUi(QWidget *Widget) undoBtn->setIcon(DDciIcon(QString(":/assets/icon_return.dci"))); undoBtn->setMaximumSize(36, 36); undoBtn->setIconSize(QSize(14, 14)); - mainWindow->titlebar()->addWidget(undoBtn, Qt::AlignRight); + // mainWindow->titlebar()->addWidget(undoBtn, Qt::AlignRight); connect(undoBtn, &QPushButton::clicked, m_plainTextEdit, &QPlainTextEdit::undo); connect(m_plainTextEdit, &QPlainTextEdit::undoAvailable, undoBtn, &QPushButton::setEnabled); undoBtn->setEnabled(false); @@ -262,11 +264,22 @@ void MainWidget::setupUi(QWidget *Widget) redoBtn->setIcon(DDciIcon(QString(":/assets/icon_advance.dci"))); redoBtn->setMaximumSize(36, 36); redoBtn->setIconSize(QSize(14, 14)); - mainWindow->titlebar()->addWidget(redoBtn, Qt::AlignRight); + // mainWindow->titlebar()->addWidget(redoBtn, Qt::AlignRight); connect(redoBtn, &QPushButton::clicked, m_plainTextEdit, &QPlainTextEdit::redo); connect(m_plainTextEdit, &QPlainTextEdit::redoAvailable, redoBtn, &QPushButton::setEnabled); redoBtn->setEnabled(false); + QWidget *pWidget = new QWidget; + QHBoxLayout *pLay = new QHBoxLayout; + pWidget->setWindowFlags(pWidget->windowFlags() | Qt::FramelessWindowHint); + pWidget->setContentsMargins(0, 0, 0, 0); + pLay->setContentsMargins(0, 0, 0, 0); + pWidget->setLayout(pLay); + pLay->addWidget(undoBtn); + pLay->addSpacing(10); + pLay->addWidget(redoBtn); + mainWindow->titlebar()->addWidget(pWidget, Qt::AlignRight); + if (DGuiApplicationHelper::instance()->sizeMode() == DGuiApplicationHelper::CompactMode) { languageSelectBox->setFixedSize(160, 24); m_copyBtn->setMaximumSize(QSize(24, 24)); @@ -509,6 +522,7 @@ void MainWidget::loadString(const QString &string) } } else { resultEmpty(); + m_noResult->setVisible(true); } } diff --git a/src/utils/dconfigmanager.cpp b/src/utils/dconfigmanager.cpp new file mode 100644 index 00000000..d5a913fc --- /dev/null +++ b/src/utils/dconfigmanager.cpp @@ -0,0 +1,162 @@ +// SPDX-FileCopyrightText: 2022 - 2023 UnionTech Software Technology Co., Ltd. +// +// SPDX-License-Identifier: GPL-3.0-or-later + +#include "dconfigmanager.h" +#include "private/dconfigmanager_p.h" + +#include + +#include + +static constexpr char kCfgAppId[] { "deepin-ocr" }; + +DCORE_USE_NAMESPACE + +DConfigManager::DConfigManager(QObject *parent) + : QObject(parent), d(new DConfigManagerPrivate(this)) +{ + addConfig(COMMON_GROUP); +} + +DConfigManager *DConfigManager::instance() +{ + static DConfigManager ins; + return &ins; +} + +DConfigManager::~DConfigManager() +{ +#ifdef DTKCORE_CLASS_DConfig + QWriteLocker locker(&d->lock); + + auto configs = d->configs.values(); + std::for_each(configs.begin(), configs.end(), [](DConfig *cfg) { delete cfg; }); + d->configs.clear(); +#endif +} + +bool DConfigManager::addConfig(const QString &config, QString *err) +{ +#ifdef DTKCORE_CLASS_DConfig + QWriteLocker locker(&d->lock); + + if (d->configs.contains(config)) { + if (err) + *err = "config is already added"; + return false; + } + + auto cfg = DConfig::create(kCfgAppId, config, "", this); + if (!cfg) { + if (err) + *err = "cannot create config"; + return false; + } + + if (!cfg->isValid()) { + if (err) + *err = "config is not valid"; + delete cfg; + return false; + } + + d->configs.insert(config, cfg); + locker.unlock(); + connect(cfg, &DConfig::valueChanged, this, [=](const QString &key) { Q_EMIT valueChanged(config, key); }); +#endif + return true; +} + +bool DConfigManager::removeConfig(const QString &config, QString *err) +{ +#ifdef DTKCORE_CLASS_DConfig + QWriteLocker locker(&d->lock); + + if (d->configs.contains(config)) { + delete d->configs[config]; + d->configs.remove(config); + } +#endif + return true; +} + +QStringList DConfigManager::keys(const QString &config) const +{ +#ifdef DTKCORE_CLASS_DConfig + QReadLocker locker(&d->lock); + + if (!d->configs.contains(config)) + return QStringList(); + + return d->configs[config]->keyList(); +#else + return QStringList(); +#endif +} + +bool DConfigManager::contains(const QString &config, const QString &key) const +{ + return key.isEmpty() ? false : keys(config).contains(key); +} + +QVariant DConfigManager::value(const QString &config, const QString &key, const QVariant &fallback) const +{ +#ifdef DTKCORE_CLASS_DConfig + QReadLocker locker(&d->lock); + + if (d->configs.contains(config)) { + // 如果DConfig没刷新,存在有config但没key的情况 + if (!this->contains(config, key)) { + qWarning() << "DConfig has no key:" << key << "in config:" << config << "REBOOT may fix it"; + return fallback; + } + + //qDebug() << "dconfig:" << config << "key:" << key << "value:" << d->configs.value(config)->value(key, fallback); + return d->configs.value(config)->value(key, fallback); + } + else + qWarning() << "Config:" << config << "is not registered!!!"; + return fallback; +#else + return fallback; +#endif +} + +void DConfigManager::setValue(const QString &config, const QString &key, const QVariant &value) +{ +#ifdef DTKCORE_CLASS_DConfig + QReadLocker locker(&d->lock); + + if (d->configs.contains(config)) { + // 如果DConfig没刷新,存在有config但没key的情况 + if (!this->contains(config, key)) { + qWarning() << "DConfig has no key:" << key << "in config:" << config << "REBOOT may fix it"; + return; + } + + qInfo() << "dconfig:" << config << "key:" << key << "value:" << value; + d->configs.value(config)->setValue(key, value); + } else { + qWarning() << "Config:" << config << "is not registered!!!"; + } +#endif +} + +bool DConfigManager::validateConfigs(QStringList &invalidConfigs) const +{ +#ifdef DTKCORE_CLASS_DConfig + QReadLocker locker(&d->lock); + + bool ret = true; + for (auto iter = d->configs.cbegin(); iter != d->configs.cend(); ++iter) { + bool valid = iter.value()->isValid(); + if (!valid) + invalidConfigs << iter.key(); + ret &= valid; + } + return ret; +#else + return true; +#endif +} diff --git a/src/utils/dconfigmanager.h b/src/utils/dconfigmanager.h new file mode 100644 index 00000000..6f1cee0b --- /dev/null +++ b/src/utils/dconfigmanager.h @@ -0,0 +1,44 @@ +// SPDX-FileCopyrightText: 2022 - 2023 UnionTech Software Technology Co., Ltd. +// +// SPDX-License-Identifier: GPL-3.0-or-later + +#ifndef DCONFIGMANAGER_H +#define DCONFIGMANAGER_H + +#include +#include + +#define COMMON_GROUP "deepin-ocr.common" +#define COMMON_ISGPUENABLE "IsGpuEnable" + +class DConfigManagerPrivate; +class DConfigManager : public QObject +{ + Q_OBJECT + Q_DISABLE_COPY(DConfigManager) + +public: + static DConfigManager *instance(); + + bool addConfig(const QString &config, QString *err = nullptr); + bool removeConfig(const QString &config, QString *err = nullptr); + + QStringList keys(const QString &config) const; + bool contains(const QString &config, const QString &key) const; + QVariant value(const QString &config, const QString &key, const QVariant &fallback = QVariant()) const; + void setValue(const QString &config, const QString &key, const QVariant &value); + + bool validateConfigs(QStringList &invalidConfigs) const; + +Q_SIGNALS: + void valueChanged(const QString &config, const QString &key); + +private: + explicit DConfigManager(QObject *parent = nullptr); + virtual ~DConfigManager() override; + +private: + QScopedPointer d; +}; + +#endif // DCONFIGMANAGER_H diff --git a/src/utils/private/dconfigmanager_p.h b/src/utils/private/dconfigmanager_p.h new file mode 100644 index 00000000..317f19a0 --- /dev/null +++ b/src/utils/private/dconfigmanager_p.h @@ -0,0 +1,30 @@ +// SPDX-FileCopyrightText: 2022 - 2023 UnionTech Software Technology Co., Ltd. +// +// SPDX-License-Identifier: GPL-3.0-or-later + +#ifndef DCONFIGMANAGER_P_H +#define DCONFIGMANAGER_P_H + +#include +#include +#include + +DCORE_BEGIN_NAMESPACE +class DConfig; +DCORE_END_NAMESPACE + +class DConfigManager; +class DConfigManagerPrivate +{ + friend class DConfigManager; + DConfigManager *q { nullptr }; + + QMap configs; + QReadWriteLock lock; + +public: + explicit DConfigManagerPrivate(DConfigManager *qq) + : q(qq) {} +}; + +#endif // DCONFIGMANAGER_P_H diff --git a/translations/deepin-ocr.ts b/translations/deepin-ocr.ts index 8b3b79fd..a2e0d7e6 100644 --- a/translations/deepin-ocr.ts +++ b/translations/deepin-ocr.ts @@ -4,58 +4,58 @@ MainWidget - + No text recognized No text recognized - + Recognize language - + Simplified Chinese - + English - + Traditional Chinese - + Copy text Copy text - + Save as TXT Save as TXT - + Undo (Ctrl+Z) - + Redo (Ctrl+Shift+Z) - - + + Recognizing Recognizing - + Copied Copied @@ -94,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Tips: The clearer the image is, the more accurate the text is diff --git a/translations/deepin-ocr_af.ts b/translations/deepin-ocr_af.ts index fe26e291..a0a713e3 100644 --- a/translations/deepin-ocr_af.ts +++ b/translations/deepin-ocr_af.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized Geen teks herken - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text Kopieer teks - + Save as TXT Stoor as TXT - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing Herken - + Copied Kopieer @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR Wapen @@ -38,22 +71,22 @@ ResultTextView - + Copy Kopieer - + Cut Knip - + Select All Kies Al - + Paste Plak @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Tips: Hoe duidelik die beeld is, hoe akkuraat is die teks diff --git a/translations/deepin-ocr_am_ET.ts b/translations/deepin-ocr_am_ET.ts index 062fc7bd..f0ce25f7 100644 --- a/translations/deepin-ocr_am_ET.ts +++ b/translations/deepin-ocr_am_ET.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized տեքստ չի ճանաչվել - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text տեքստը անգրագիտել - + Save as TXT TXT որպես պահպանել - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing ճանաչում է - + Copied անգրագիտվել է @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR գործիքը @@ -38,22 +71,22 @@ ResultTextView - + Copy անգրագիտել - + Cut անգրագիտել և կտրել - + Select All բոլորը ընտրել - + Paste փոխադրել @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Խորացուցիչ տեսանյութի դեպքում տեքստը ավելի ճշգրիտ է diff --git a/translations/deepin-ocr_ar.ts b/translations/deepin-ocr_ar.ts index b90a9c1c..3f91f3ac 100644 --- a/translations/deepin-ocr_ar.ts +++ b/translations/deepin-ocr_ar.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized لم يتم التعرف على نص - + Recognize language التعرف على اللغة - + Simplified Chinese الصينية التقليدية - + English الإنجليزية - + Traditional Chinese الصينية التقليدية - + Copy text نسخ النص - + Save as TXT حفظ النص باسم - + Undo (Ctrl+Z) التراجع (Ctrl+Z) - + Redo (Ctrl+Shift+Z) إعادة (Ctrl+Shift+Z) - - + + Recognizing قيد التعرف - + Copied تم النسخ @@ -61,7 +63,7 @@ QObject - + OCR Tool أداة التعرف البصري على النصوص @@ -69,22 +71,22 @@ ResultTextView - + Copy نسخ - + Cut قص - + Select All تحديد الكل - + Paste لصق @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is نصيحة: كلما كانت الصورة أوضح ، كان النص أكثر دقة - \ No newline at end of file + diff --git a/translations/deepin-ocr_az.ts b/translations/deepin-ocr_az.ts index a7c37c32..12a6b622 100644 --- a/translations/deepin-ocr_az.ts +++ b/translations/deepin-ocr_az.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Mətn tanınmadı - + Recognize language Dilin təyin edilməsi - + Simplified Chinese Sadələşdirilmiş Çin dili - + English İngilis - + Traditional Chinese Ənənəvi Çin dili - + Copy text Mətnin surəti - + Save as TXT TXT kimi saxlayın - + Undo (Ctrl+Z) Qaytar (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Təkrarla (Ctrl+Shift+Z) - - + + Recognizing Tanınır - + Copied Kopyalandı @@ -61,7 +63,7 @@ QObject - + OCR Tool OCR Aləti @@ -69,22 +71,22 @@ ResultTextView - + Copy Surəti - + Cut Kəsmək - + Select All Hamısını seçin - + Paste Yerləşdirin @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Məsləhətlər: Şəkil nə qədər aydın olarsa mətn o qədər dəqiq oxunur - \ No newline at end of file + diff --git a/translations/deepin-ocr_bg.ts b/translations/deepin-ocr_bg.ts index 3cc9cc85..36515bdc 100644 --- a/translations/deepin-ocr_bg.ts +++ b/translations/deepin-ocr_bg.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized Не е признат текст - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text Копирай текст - + Save as TXT Запази като TXT - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing Признаване - + Copied Копиран @@ -30,7 +63,7 @@ QObject - + OCR Tool Инструмент за OCR @@ -38,22 +71,22 @@ ResultTextView - + Copy Копирай - + Cut Изрежи - + Select All Избери всичко - + Paste Постави @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Съвет: С по-ясна снимка текстът е по-точен diff --git a/translations/deepin-ocr_bn.ts b/translations/deepin-ocr_bn.ts index 4b00a162..af070cec 100644 --- a/translations/deepin-ocr_bn.ts +++ b/translations/deepin-ocr_bn.ts @@ -1,58 +1,61 @@ - + + + MainWidget - + No text recognized নন্ত্র লেখা পরিচিত হয়নি - + Recognize language ভাষা চিহ্নিত করুন - + Simplified Chinese সরল চীনা - + English ইংরেজী - + Traditional Chinese পূর্বীয় চীনা - + Copy text লেখা কopi করুন - + Save as TXT TXT আকারে সংরক্ষণ করুন - + Undo (Ctrl+Z) অ্যান্ডু (Ctrl+Z) - + Redo (Ctrl+Shift+Z) রেডো (Ctrl+Shift+Z) - + + Recognizing পরিচিতি করছে - + Copied কopi করা হয়েছে @@ -60,7 +63,7 @@ QObject - + OCR Tool OCR উপকরণ @@ -68,22 +71,22 @@ ResultTextView - + Copy কopi - + Cut কাট - + Select All সব নির্বাচন করুন - + Paste পাস্ট @@ -91,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is পয়েন্ট: ছবি আরও স্পষ্ট হলে, লেখা আরও সঠিক হবে diff --git a/translations/deepin-ocr_bo.ts b/translations/deepin-ocr_bo.ts index fb329e8e..60272bd7 100644 --- a/translations/deepin-ocr_bo.ts +++ b/translations/deepin-ocr_bo.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized ཡི་གེ་ངོས་ཟིན་མ་ཐུབ། - + Recognize language སྐད་ཡིག་ངོས་འཛིན། - + Simplified Chinese ཟོར་ཡང་རྒྱ་ཡིག - + English དབྱིན་ཡིག - + Traditional Chinese ཟོར་ལྕི་རྒྱ་ཡིག - + Copy text ཡི་གེ་པར་སློག - + Save as TXT TXTལ་ཉར་བ། - + Undo (Ctrl+Z) ཕྱིར་འཐེན།(Ctrl+Z) - + Redo (Ctrl+Shift+Z) བསྐྱར་བཟོ།(Ctrl+Shift+Z) - - + + Recognizing དབྱེ་བ་འབྱེད་བཞིན་པ། - + Copied པར་བསློགས། @@ -61,7 +63,7 @@ QObject - + OCR Tool པར་རིས་དབྱེ་འབྱེད་ཡོ་བྱད། @@ -69,22 +71,22 @@ ResultTextView - + Copy པར་སློག - + Cut དྲས་པ། - + Select All ཚང་མ་འདེམས། - + Paste སྦྱར་བ། @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is མཛའ་བརྩེའི་དྲན་སྐུལ། པར་རིས་གང་ཙམ་གྱིས་སྟབས་བདེ་བ་དང་གསལ་བ་ཡོད་ཚེ། དབྱེ་འབྱེད་ཀྱང་དེ་ཙམ་གྱིས་ཡང་དག་པ་ཡོད། - \ No newline at end of file + diff --git a/translations/deepin-ocr_br.ts b/translations/deepin-ocr_br.ts index 9d543c70..34ef564c 100644 --- a/translations/deepin-ocr_br.ts +++ b/translations/deepin-ocr_br.ts @@ -4,46 +4,58 @@ MainWidget + + Recognizing الإدراك + Copied تم نسخه + No text recognized لا يوجد نص تم إدراكه + Copy text نسخ النص + Save as TXT الحفظ ك TXT + Recognize language تعرف على اللغة + Simplified Chinese الصينية البسيطة + English الإنجليزية + Traditional Chinese الصينية التقليدية + Undo (Ctrl+Z) الاستعادة (Ctrl+Z) + Redo (Ctrl+Shift+Z) إعادة الاستعادة (Ctrl+Shift+Z) @@ -51,6 +63,7 @@ QObject + OCR Tool أداة التعرف على النص @@ -58,18 +71,22 @@ ResultTextView + Copy نسخ + Cut قص + Paste لصق + Select All اختر كل شيء @@ -77,6 +94,7 @@ Widget + Tips: The clearer the image is, the more accurate the text is نصائح: كلما كانت الصورة أوضح، زادت دقة النص diff --git a/translations/deepin-ocr_ca.ts b/translations/deepin-ocr_ca.ts index 5275efbb..dd319a71 100644 --- a/translations/deepin-ocr_ca.ts +++ b/translations/deepin-ocr_ca.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized No s'ha reconegut cap text. - + Recognize language Reconeix la llengua - + Simplified Chinese Xinès simplificat - + English Anglès - + Traditional Chinese Xinès tradicional - + Copy text Copia el text - + Save as TXT Desa'l com a TXT - + Undo (Ctrl+Z) Desfés (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Refés (Ctrl+Shift+Z) - - + + Recognizing Es reconeix - + Copied Copiat @@ -61,7 +63,7 @@ QObject - + OCR Tool Eina de ROC @@ -69,22 +71,22 @@ ResultTextView - + Copy Copia - + Cut Retalla - + Select All Selecciona-ho tot - + Paste Enganxa @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Consell: com més clara és la imatge, més precís és el text. - \ No newline at end of file + diff --git a/translations/deepin-ocr_cs.ts b/translations/deepin-ocr_cs.ts index 7fc7c94c..94b1dd72 100644 --- a/translations/deepin-ocr_cs.ts +++ b/translations/deepin-ocr_cs.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Nerozpoznán žádný text - + Recognize language Rozpoznat jazyk - + Simplified Chinese zjednodušená čínština - + English angličtina - + Traditional Chinese tradiční čínština - + Copy text Zkopírovat text - + Save as TXT Uložit jako TXT - + Undo (Ctrl+Z) Vzít zpět (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Zopakovat (Ctrl+Shift+Z) - - + + Recognizing Rozpoznává se - + Copied Zkopírováno @@ -61,7 +63,7 @@ QObject - + OCR Tool Nástroj pro rozpoznávání textu z obrázku @@ -69,22 +71,22 @@ ResultTextView - + Copy Zkopírovat - + Cut Vyjmout - + Select All Vybrat vše - + Paste Vložit @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Tipy: čím je obrázek kvalitnější, tím přesnější je rozpoznání textu - \ No newline at end of file + diff --git a/translations/deepin-ocr_da.ts b/translations/deepin-ocr_da.ts index 320e1c52..9900adb9 100644 --- a/translations/deepin-ocr_da.ts +++ b/translations/deepin-ocr_da.ts @@ -4,46 +4,58 @@ MainWidget + + Recognizing Genkognisering + Copied Kopieret + No text recognized Ingen tekst genkendt + Copy text Kopier tekst + Save as TXT Gem som TXT + Recognize language Genkend sprog + Simplified Chinese Forenklet kinesisk + English Engelsk + Traditional Chinese Traditionelt kinesisk + Undo (Ctrl+Z) Fortryd (Ctrl+Z) + Redo (Ctrl+Shift+Z) Gentag (Ctrl+Shift+Z) @@ -51,6 +63,7 @@ QObject + OCR Tool OCR-Værktøj @@ -58,18 +71,22 @@ ResultTextView + Copy Kopier + Cut Klip + Paste Indsæt + Select All Vælg alt @@ -77,6 +94,7 @@ Widget + Tips: The clearer the image is, the more accurate the text is Tip: Jo bedre billedet er, jo mere præcis er teksten diff --git a/translations/deepin-ocr_de.ts b/translations/deepin-ocr_de.ts index 48a74647..11bc43c2 100644 --- a/translations/deepin-ocr_de.ts +++ b/translations/deepin-ocr_de.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Kein Text erkannt - + Recognize language Sprache erkennen - + Simplified Chinese Vereinfachtes Chinesisch - + English Englisch - + Traditional Chinese Traditionelles Chinesisch - + Copy text Text kopieren - + Save as TXT Als TXT speichern - + Undo (Ctrl+Z) Rückgängig (Strg+Z) - + Redo (Ctrl+Shift+Z) Wiederherstellen (Strg+Umschalt+Z) - - + + Recognizing Wird erkannt - + Copied Kopiert @@ -61,7 +63,7 @@ QObject - + OCR Tool OCR-Werkzeug @@ -69,22 +71,22 @@ ResultTextView - + Copy Kopieren - + Cut Ausschneiden - + Select All Alles auswählen - + Paste Einfügen @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Tipp: Je klarer das Bild ist, desto genauer ist der Text - \ No newline at end of file + diff --git a/translations/deepin-ocr_el.ts b/translations/deepin-ocr_el.ts index 404890aa..ac7161af 100644 --- a/translations/deepin-ocr_el.ts +++ b/translations/deepin-ocr_el.ts @@ -4,57 +4,58 @@ MainWidget - + No text recognized Δεν αναγνωρίστηκε κείμενο - + Recognize language Αναγνωρίστε γλώσσα - + Simplified Chinese Απλοποιημένα Κινέζικα - + English Αγγλικά - + Traditional Chinese Κλασικά Κινέζικα - + Copy text Αντιγραφή κειμένου - + Save as TXT Αποθήκευση ως TXT - + Undo (Ctrl+Z) Αναίρεση (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Επαναφορά (Ctrl+Shift+Z) - + + Recognizing Αναγνώριση - + Copied Αντιγράφτηκε @@ -62,7 +63,7 @@ QObject - + OCR Tool Εργαλείο OCR @@ -70,22 +71,22 @@ ResultTextView - + Copy Αντιγραφή - + Cut Αποκοπή - + Select All Επιλογή όλων - + Paste Επικόλληση @@ -93,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Συμβουλές: Το καθαρότερο το εικόνα, το ακριβέστερο το κείμενο diff --git a/translations/deepin-ocr_en_AU.ts b/translations/deepin-ocr_en_AU.ts index 1606b8df..08b6d166 100644 --- a/translations/deepin-ocr_en_AU.ts +++ b/translations/deepin-ocr_en_AU.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized No text recognized - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text Copy text - + Save as TXT Save as TXT - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing Recognizing - + Copied Copied @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR Tool @@ -38,22 +71,22 @@ ResultTextView - + Copy Copy - + Cut Cut - + Select All Select All - + Paste Paste @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Tips: The clearer the image is, the more accurate the text is diff --git a/translations/deepin-ocr_en_GB.ts b/translations/deepin-ocr_en_GB.ts index 4f59ab57..ce87ea01 100644 --- a/translations/deepin-ocr_en_GB.ts +++ b/translations/deepin-ocr_en_GB.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized No text recognized - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text Copy text - + Save as TXT Save as TXT - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing Recognizing - + Copied Copied @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR Tool @@ -38,22 +71,22 @@ ResultTextView - + Copy Copy - + Cut Cut - + Select All Select All - + Paste Paste @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Tips: The clearer the image is, the more accurate the text is diff --git a/translations/deepin-ocr_en_US.ts b/translations/deepin-ocr_en_US.ts index 250f32e4..54c1f73e 100644 --- a/translations/deepin-ocr_en_US.ts +++ b/translations/deepin-ocr_en_US.ts @@ -4,46 +4,58 @@ MainWidget + + Recognizing + Copied + No text recognized + Copy text + Save as TXT + Recognize language + Simplified Chinese + English + Traditional Chinese + Undo (Ctrl+Z) + Redo (Ctrl+Shift+Z) @@ -51,6 +63,7 @@ QObject + OCR Tool @@ -58,18 +71,22 @@ ResultTextView + Copy + Cut + Paste + Select All @@ -77,6 +94,7 @@ Widget + Tips: The clearer the image is, the more accurate the text is diff --git a/translations/deepin-ocr_eo.ts b/translations/deepin-ocr_eo.ts index 19512d87..4931c2f9 100644 --- a/translations/deepin-ocr_eo.ts +++ b/translations/deepin-ocr_eo.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized Neniu teksto rekonstruita - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text Kopiu tekston - + Save as TXT Konservu kiel TXT - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing Rekonstruante - + Copied Kopiat @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR Instrumento @@ -38,22 +71,22 @@ ResultTextView - + Copy Kopiu - + Cut Forĵetu - + Select All Selektu ĉion - + Paste Almetu @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Ŝtato: La pli klara la bildo, la pli preciza la teksto. diff --git a/translations/deepin-ocr_es.ts b/translations/deepin-ocr_es.ts index b397575e..a959e817 100644 --- a/translations/deepin-ocr_es.ts +++ b/translations/deepin-ocr_es.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized No se reconoce ningún texto - + Recognize language Detectar el idioma - + Simplified Chinese Chino simplificado - + English Inglés - + Traditional Chinese Chino tradicional - + Copy text Copiar texto - + Save as TXT Guardar como TXT - + Undo (Ctrl+Z) Deshacer (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Rehacer (Ctrl+Mayús+Z) - - + + Recognizing Reconocer - + Copied Copiado @@ -61,7 +63,7 @@ QObject - + OCR Tool Herramienta OCR @@ -69,22 +71,22 @@ ResultTextView - + Copy Copiar - + Cut Cortar - + Select All Seleccionar todo - + Paste Pegar @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Consejos: Cuanto más clara sea la imagen, más preciso será el texto - \ No newline at end of file + diff --git a/translations/deepin-ocr_es_419.ts b/translations/deepin-ocr_es_419.ts index d3d20f5e..1bbee477 100644 --- a/translations/deepin-ocr_es_419.ts +++ b/translations/deepin-ocr_es_419.ts @@ -4,58 +4,58 @@ MainWidget - + No text recognized - + Recognize language - + Simplified Chinese - + English - + Traditional Chinese - + Copy text - + Save as TXT - + Undo (Ctrl+Z) - + Redo (Ctrl+Shift+Z) - - + + Recognizing - + Copied @@ -63,7 +63,7 @@ QObject - + OCR Tool @@ -71,22 +71,22 @@ ResultTextView - + Copy - + Cut - + Select All - + Paste @@ -94,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is diff --git a/translations/deepin-ocr_et.ts b/translations/deepin-ocr_et.ts index 11b38aea..0d5cda14 100644 --- a/translations/deepin-ocr_et.ts +++ b/translations/deepin-ocr_et.ts @@ -1,58 +1,61 @@ - + + + MainWidget - + No text recognized Teksti ei tunnistatud - + Recognize language Tuvasta keel - + Simplified Chinese Jätkveline korea - + English Inglise - + Traditional Chinese Traditsiooniline korea - + Copy text Kopeeri tekst - + Save as TXT Salvesta kui TXT - + Undo (Ctrl+Z) Tagasivõtmine (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Uuesti teha (Ctrl+Shift+Z) - + + Recognizing Tunnistamine - + Copied Kopeeritud @@ -60,7 +63,7 @@ QObject - + OCR Tool OCR一夜直译为“光学字符识别”工具 @@ -68,22 +71,22 @@ ResultTextView - + Copy Kopeeri - + Cut Lõiguta - + Select All Vali kõik - + Paste Liiguta @@ -91,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Mõistlik aidatavus: kõrgetemajal pilt on tekst paremini täpsed diff --git a/translations/deepin-ocr_eu.ts b/translations/deepin-ocr_eu.ts index b06b5170..188e6cdf 100644 --- a/translations/deepin-ocr_eu.ts +++ b/translations/deepin-ocr_eu.ts @@ -4,57 +4,58 @@ MainWidget - + No text recognized Ez da testu bat ezagutzen - + Recognize language Hizkuntza ezagutu - + Simplified Chinese Chinera errazatua - + English Ingelesa - + Traditional Chinese Chinera tradizionala - + Copy text Kopiatu testua - + Save as TXT Gorde TXT moduan - + Undo (Ctrl+Z) Berritu (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Berrabiarazi (Ctrl+Shift+Z) - + + Recognizing Ezagutzen - + Copied Kopiatua @@ -62,7 +63,7 @@ QObject - + OCR Tool OCR tresna @@ -70,22 +71,22 @@ ResultTextView - + Copy Kopiatu - + Cut Mugitu - + Select All Aukeratu dena - + Paste Itsatsi @@ -93,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Adierazpena: Bildetik osoa da, testua osoa da diff --git a/translations/deepin-ocr_fa.ts b/translations/deepin-ocr_fa.ts index 1a7bb527..7ecc5e2c 100644 --- a/translations/deepin-ocr_fa.ts +++ b/translations/deepin-ocr_fa.ts @@ -4,57 +4,58 @@ MainWidget - + No text recognized متنی شناسایی نشد - + Recognize language زبان را شناسایی کن - + Simplified Chinese چینی ساده - + English انگلیسی - + Traditional Chinese چینی سنتی - + Copy text متن را کپی کن - + Save as TXT ذخیره به عنوان TXT - + Undo (Ctrl+Z) لغو (کنترل + Z) - + Redo (Ctrl+Shift+Z) تکرار (کنترل + Shift + Z) - + + Recognizing در حال شناسایی - + Copied کپی شد @@ -62,7 +63,7 @@ QObject - + OCR Tool اِسِکرِیِن تُول @@ -70,22 +71,22 @@ ResultTextView - + Copy کپی - + Cut برید - + Select All همه را انتخاب کن - + Paste چسباندن @@ -93,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is نکته: تصویر پاکتری باشد، متن دقیقتری خواهد بود diff --git a/translations/deepin-ocr_fi.ts b/translations/deepin-ocr_fi.ts index 65eef0eb..a585ce5c 100644 --- a/translations/deepin-ocr_fi.ts +++ b/translations/deepin-ocr_fi.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Tekstiä ei tunnistettu - + Recognize language Tunnista kieli - + Simplified Chinese Yksinkertaistettu kiina - + English Englanti - + Traditional Chinese Perinteinen kiina - + Copy text Kopioi teksti - + Save as TXT Tallenna TXT - + Undo (Ctrl+Z) Kumoa (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Uudestaan (Ctrl+Shift+Z) - - + + Recognizing Tunnistaminen - + Copied Kopioitu @@ -61,7 +63,7 @@ QObject - + OCR Tool OCR-työkalu @@ -69,22 +71,22 @@ ResultTextView - + Copy Kopioi - + Cut Leikkaa - + Select All Valitse kaikki - + Paste Liitä @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Vinkki: Mitä selkeämpi kuva on, sitä tarkempi teksti - \ No newline at end of file + diff --git a/translations/deepin-ocr_fil.ts b/translations/deepin-ocr_fil.ts index d3a55da7..4cc5c33a 100644 --- a/translations/deepin-ocr_fil.ts +++ b/translations/deepin-ocr_fil.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized Wala pang tekstong nakilala - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text Kopyahin ang teksto - + Save as TXT I-save bilang TXT - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing Nakikilala - + Copied Nilikha @@ -30,7 +63,7 @@ QObject - + OCR Tool Tool para sa OCR @@ -38,22 +71,22 @@ ResultTextView - + Copy Kopyahin - + Cut I-cut - + Select All Piliin lahat - + Paste I-paste @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Tip: Ang mas malinaw ang larawan, ang mas tumpay ang teksto. diff --git a/translations/deepin-ocr_fr.ts b/translations/deepin-ocr_fr.ts index 74bdb63d..8ab6cd51 100644 --- a/translations/deepin-ocr_fr.ts +++ b/translations/deepin-ocr_fr.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Aucun texte reconnu - + Recognize language Déterminer la langue - + Simplified Chinese Chinois simplifié - + English Anglais - + Traditional Chinese Chinois traditionnel - + Copy text Copier le texte - + Save as TXT Enregistrer en tant que TXT - + Undo (Ctrl+Z) Annuler (Ctrl + Z) - + Redo (Ctrl+Shift+Z) Rétablir (Ctrl + Maj + Z) - - + + Recognizing Reconnaissance en cours - + Copied Copié @@ -61,7 +63,7 @@ QObject - + OCR Tool Outil OCR @@ -69,22 +71,22 @@ ResultTextView - + Copy Copier - + Cut Couper - + Select All Tout sélectionner - + Paste Coller @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Conseils : Plus l'image est claire, plus le texte est précis - \ No newline at end of file + diff --git a/translations/deepin-ocr_gl_ES.ts b/translations/deepin-ocr_gl_ES.ts index 402e8904..73f03579 100644 --- a/translations/deepin-ocr_gl_ES.ts +++ b/translations/deepin-ocr_gl_ES.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Non se recoñeceu ningún texto - + Recognize language Recoñecer a linguaxe - + Simplified Chinese Chinés simplificado - + English Inglés - + Traditional Chinese Chinés tradicional - + Copy text Copiar texto - + Save as TXT Gardar como TXT - + Undo (Ctrl+Z) Desfacer (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Refacer (Ctrl+Shift+Z) - - + + Recognizing Recoñecendo - + Copied Copiouse @@ -61,7 +63,7 @@ QObject - + OCR Tool Ferramenta OCR @@ -69,22 +71,22 @@ ResultTextView - + Copy Copiar - + Cut Cortar - + Select All Seleccionar todo - + Paste Pegar @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Consello: Canto máis clara sexa a imaxe, máis preciso será o texto. - \ No newline at end of file + diff --git a/translations/deepin-ocr_he.ts b/translations/deepin-ocr_he.ts index f3abdfe0..3e0d3270 100644 --- a/translations/deepin-ocr_he.ts +++ b/translations/deepin-ocr_he.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized לא זוהה טקסט - + Recognize language זיהוי שפה - + Simplified Chinese סינית מפושטת - + English אנגלית - + Traditional Chinese סינית מסורתית - + Copy text העתקת הטקסט - + Save as TXT שמירה כ־TXT - + Undo (Ctrl+Z) ביטול (Ctrl+Z) - + Redo (Ctrl+Shift+Z) ביצוע מחדש (Ctrl+Shift+Z) - - + + Recognizing מזהה - + Copied הועתק @@ -61,7 +63,7 @@ QObject - + OCR Tool כלי OCR @@ -69,22 +71,22 @@ ResultTextView - + Copy העתקה - + Cut גזירה - + Select All בחירה בהכול - + Paste הדבקה @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is עצות: ככל שהתמונה תהיה ברורה יותר כך הטקסט יהיה ברור יותר. - \ No newline at end of file + diff --git a/translations/deepin-ocr_hi_IN.ts b/translations/deepin-ocr_hi_IN.ts index 0f368fc6..36bb9160 100644 --- a/translations/deepin-ocr_hi_IN.ts +++ b/translations/deepin-ocr_hi_IN.ts @@ -1,58 +1,61 @@ - + + + MainWidget - + No text recognized लेख की पहचान करना विफल - + Recognize language भाषा पहचानें - + Simplified Chinese सरल चीनी - + English अंग्रेजी - + Traditional Chinese पारंपरिक चीनी - + Copy text लेख कॉपी करें - + Save as TXT TXT के रूप में संचित करें - + Undo (Ctrl+Z) उत्तर लेना (Ctrl+Z) - + Redo (Ctrl+Shift+Z) दोबारा करें (Ctrl+Shift+Z) - + + Recognizing पहचानना जारी - + Copied कॉपी करना सफल @@ -60,7 +63,7 @@ QObject - + OCR Tool ओसीआर साधन @@ -68,22 +71,22 @@ ResultTextView - + Copy कॉपी - + Cut कट - + Select All सभी चुनें - + Paste पेस्ट @@ -91,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is सहायक निर्देश : चित्र गुणवत्ता उच्च होने पर पहचाना गया लेख भी सटीक होगा diff --git a/translations/deepin-ocr_hr.ts b/translations/deepin-ocr_hr.ts index c1586206..b54cb917 100644 --- a/translations/deepin-ocr_hr.ts +++ b/translations/deepin-ocr_hr.ts @@ -1,58 +1,61 @@ - + + + MainWidget - + No text recognized Nema prepoznatog teksta - + Recognize language Prepoznaj jezik - + Simplified Chinese Pojednostavljeni kineski - + English Engleski - + Traditional Chinese Tradicionalni kineski - + Copy text Kopiraj tekst - + Save as TXT Spremi kao TXT - + Undo (Ctrl+Z) Povuči (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Ponovi (Ctrl+Shift+Z) - + + Recognizing Prepoznavanje - + Copied Kopirano @@ -60,7 +63,7 @@ QObject - + OCR Tool OCR alat @@ -68,22 +71,22 @@ ResultTextView - + Copy Kopiraj - + Cut Izreži - + Select All Odaberi sve - + Paste Zalijepi @@ -91,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Savjet: Češća je slika, tačnija je tekst diff --git a/translations/deepin-ocr_hu.ts b/translations/deepin-ocr_hu.ts index 2a41be8a..48744bd3 100644 --- a/translations/deepin-ocr_hu.ts +++ b/translations/deepin-ocr_hu.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Nincs felismerhető szöveg - + Recognize language Felismert nyelv - + Simplified Chinese Egyszerűsített kínai - + English Angol - + Traditional Chinese Hagyományos kínai - + Copy text Szöveg másolása - + Save as TXT Mentés TXT formátumban - + Undo (Ctrl+Z) Visszavonás (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Eredeti állapot (Ctrl+Shift+Z) - - + + Recognizing Felismerés... - + Copied Másolva @@ -61,7 +63,7 @@ QObject - + OCR Tool OCR Eszköz @@ -69,22 +71,22 @@ ResultTextView - + Copy Másolás - + Cut Kivágás - + Select All Összes kijelölése - + Paste Beillesztés @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Tippek: Minél tisztább a kép, annál pontosabb a szöveg felismerése - \ No newline at end of file + diff --git a/translations/deepin-ocr_hy.ts b/translations/deepin-ocr_hy.ts index 763c0271..3a1e3553 100644 --- a/translations/deepin-ocr_hy.ts +++ b/translations/deepin-ocr_hy.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized Տեքստ չի ճանաչվել - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text Կապակցել տեքստը - + Save as TXT Պահպանել TXT որպես - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing ճանաչում է - + Copied Կապակցվել է @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR գործիքը @@ -38,22 +71,22 @@ ResultTextView - + Copy Կապակցել - + Cut Կտրել - + Select All Ընտրել բոլորը - + Paste Փոխանցել @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Խորանալ: Իմագինը ավելի բացառիկ է, ավելի ճշգրիտ է տեքստը diff --git a/translations/deepin-ocr_id.ts b/translations/deepin-ocr_id.ts index 94684a90..3ed1716a 100644 --- a/translations/deepin-ocr_id.ts +++ b/translations/deepin-ocr_id.ts @@ -4,57 +4,58 @@ MainWidget - + No text recognized Tidak ada teks yang terdeteksi - + Recognize language Kenali bahasa - + Simplified Chinese Cina Sederhana - + English Bahasa Inggris - + Traditional Chinese Cina Tradisional - + Copy text Salin teks - + Save as TXT Simpan sebagai TXT - + Undo (Ctrl+Z) Batal (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Ulang (Ctrl+Shift+Z) - + + Recognizing Mengenali - + Copied Tersalin @@ -62,7 +63,7 @@ QObject - + OCR Tool Alat OCR @@ -70,22 +71,22 @@ ResultTextView - + Copy Salin - + Cut Potong - + Select All Pilih Semua - + Paste Tempel @@ -93,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Tips: Semakin jelas gambar, semakin akurat teksnya diff --git a/translations/deepin-ocr_it.ts b/translations/deepin-ocr_it.ts index b81e25d7..9d58f8e6 100644 --- a/translations/deepin-ocr_it.ts +++ b/translations/deepin-ocr_it.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Nessun testo riconosciuto - + Recognize language Riconosci lingua - + Simplified Chinese Cinese semplificato - + English Inglese - + Traditional Chinese Cinese tradizionale - + Copy text Copia testo - + Save as TXT Salva come TXT - + Undo (Ctrl+Z) Annulla (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Ripeti (Ctrl+Shift+Z) - - + + Recognizing Riconoscimento in corso - + Copied Copiato @@ -61,7 +63,7 @@ QObject - + OCR Tool Riconoscimento Visivo dei Caratteri -Optical Character Recognition- @@ -69,22 +71,22 @@ ResultTextView - + Copy Copia - + Cut Taglia - + Select All Seleziona tutto - + Paste Incolla @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Più nitida è l'immagine, migliore sarà la sua traduzione. - \ No newline at end of file + diff --git a/translations/deepin-ocr_ja.ts b/translations/deepin-ocr_ja.ts index 4ba676db..8b9804fc 100644 --- a/translations/deepin-ocr_ja.ts +++ b/translations/deepin-ocr_ja.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized テキストが認識されませんでした - + Recognize language 認識言語 - + Simplified Chinese 簡体中国語 - + English 英語 - + Traditional Chinese 繫体中国語 - + Copy text テキストをコピー - + Save as TXT TXTで保存 - + Undo (Ctrl+Z) 元に戻す (Ctrl+Z) - + Redo (Ctrl+Shift+Z) やり直す (Ctrl+Shift+Z) - - + + Recognizing 認識中 - + Copied コピーしました @@ -61,7 +63,7 @@ QObject - + OCR Tool OCRツール @@ -69,22 +71,22 @@ ResultTextView - + Copy コピー - + Cut 切り取り - + Select All すべて選択 - + Paste 貼り付け @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is ヒント: 画像が鮮明なほど認識制度が高くなります - \ No newline at end of file + diff --git a/translations/deepin-ocr_ka.ts b/translations/deepin-ocr_ka.ts index bbd8b85c..9364a880 100644 --- a/translations/deepin-ocr_ka.ts +++ b/translations/deepin-ocr_ka.ts @@ -4,57 +4,58 @@ MainWidget - + No text recognized ტექსტი არ არის განხილული - + Recognize language ენის განსაზღვრვა - + Simplified Chinese მარტივი ჩინური - + English ინგლისური - + Traditional Chinese კლასიკური ჩინური - + Copy text ტექსტის კოპირება - + Save as TXT შენახვა TXT სახით - + Undo (Ctrl+Z) დაბრუნება (Ctrl+Z) - + Redo (Ctrl+Shift+Z) განმეორება (Ctrl+Shift+Z) - + + Recognizing განსაზღვრა - + Copied კოპირდა @@ -62,7 +63,7 @@ QObject - + OCR Tool OCR ინსტრუმენტი @@ -70,22 +71,22 @@ ResultTextView - + Copy კოპირება - + Cut გადაკეტვა - + Select All ყველას არჩევა - + Paste ჩასმა @@ -93,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is გაფიქსირების შესახებ: სურათის უფრო გამარტივებული მასალა უფრო სწორი ტექსტს იძლევა diff --git a/translations/deepin-ocr_km_KH.ts b/translations/deepin-ocr_km_KH.ts index 3c7e867e..ef763ec3 100644 --- a/translations/deepin-ocr_km_KH.ts +++ b/translations/deepin-ocr_km_KH.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized មិនមានអក្សរណាមួយត្រូវបានស្គាល់ - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text ថតអក្សរ - + Save as TXT រក្សាទុកជាប្រភេទ TXT - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing កំពុងស្គាល់ - + Copied បានថត @@ -30,7 +63,7 @@ QObject - + OCR Tool ឧបករណ៍ OCR @@ -38,22 +71,22 @@ ResultTextView - + Copy ថត - + Cut កាត់ - + Select All ជ្រើសរើសទាំងអស់ - + Paste ត្រឡប់ @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is ប្រយោគ៖ ការបង្ហាញរូបភាពដែលច្បាស់លាស់នៅក្នុងអំឡុងពេលការស្គាល់អក្សរនឹងបានត្រឹមត្រូវបានប្រើប្រាស់យ៉ាងខ្លាំប្រាធ់។ diff --git a/translations/deepin-ocr_kn_IN.ts b/translations/deepin-ocr_kn_IN.ts index ae45dcac..d8a59550 100644 --- a/translations/deepin-ocr_kn_IN.ts +++ b/translations/deepin-ocr_kn_IN.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized ಟೆಕ್ಸ್ ಗುರುತಿಸಲಾಗಿಲ್ಲ - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text ಟೆಕ್ಸ್ ಕಾಪಿ ಮಾಡಿ - + Save as TXT TXT ರೂಪದಲ್ಲಿ ಸಂಗ್ರಹಿಸಿ - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing ಗುರುತಿಸುತ್ತಿದೆ - + Copied ಕಾಪಿ ಮಾಡಲಾಗಿದೆ @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR ಸಾಧನ @@ -38,22 +71,22 @@ ResultTextView - + Copy ಕಾಪಿ - + Cut ಕತ್ತಿ - + Select All ಪೂರ್ತಿ ಆಯ್ಕೆ - + Paste ಪೇಸ್ಟ್ @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is ಸಲಹೆ: ಇಮೇಜ್ ಕೆಲವು ಸ್ಪಷ್ಟವಾದಂತೆ, ಟೆಕ್ಸ್ ಅದ್ಭುತವಾಗಿರುತ್ತದೆ diff --git a/translations/deepin-ocr_ko.ts b/translations/deepin-ocr_ko.ts index 616c81be..8702306c 100644 --- a/translations/deepin-ocr_ko.ts +++ b/translations/deepin-ocr_ko.ts @@ -1,58 +1,61 @@ - + + + MainWidget - + No text recognized 인식된 텍스트가 없습니다 - + Recognize language 언어 인식 - + Simplified Chinese 간체 중국어 - + English 영어 - + Traditional Chinese 繁체 중국어 - + Copy text 텍스트 복사 - + Save as TXT TXT로 저장 - + Undo (Ctrl+Z) 실행 취소 (Ctrl+Z) - + Redo (Ctrl+Shift+Z) 다시 실행 (Ctrl+Shift+Z) - + + Recognizing 인식 중 - + Copied 복사됨 @@ -60,7 +63,7 @@ QObject - + OCR Tool OCR 도구 @@ -68,22 +71,22 @@ ResultTextView - + Copy 복사 - + Cut 자르기 - + Select All 모두 선택 - + Paste 붙여넣기 @@ -91,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is 팁: 이미지가 선명할수록 텍스트가 더 정확합니다. diff --git a/translations/deepin-ocr_ku.ts b/translations/deepin-ocr_ku.ts index a869dce6..80f92d8f 100644 --- a/translations/deepin-ocr_ku.ts +++ b/translations/deepin-ocr_ku.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized هیچ کرکه یو نەدەیە - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text تەکسی کۆپی کەویە - + Save as TXT بە TXT چاپ کەویە - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing تەکسی دەکەویە - + Copied کۆپی کەویە @@ -30,7 +63,7 @@ QObject - + OCR Tool ئەمەکە چاپ کردنەوە @@ -38,22 +71,22 @@ ResultTextView - + Copy کۆپی کەویە - + Cut کات کەویە - + Select All هەموو چاپ کەویە - + Paste پەسە کەویە @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is تەپس: ئەگەر چەمە گەورەتر بێت، تەکسی تەواوتر بێت diff --git a/translations/deepin-ocr_ku_IQ.ts b/translations/deepin-ocr_ku_IQ.ts index 7c2ee367..c9c523cd 100644 --- a/translations/deepin-ocr_ku_IQ.ts +++ b/translations/deepin-ocr_ku_IQ.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized هیچ متنی نەدۆزیت - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text متن کۆپ کەویت - + Save as TXT بە TXT پارچە کەویت - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing دۆزینەویت - + Copied کۆپ کەویت @@ -30,7 +63,7 @@ QObject - + OCR Tool ئەرەبیکرەویت @@ -38,22 +71,22 @@ ResultTextView - + Copy کۆپ کەویت - + Cut پارچە کەویت - + Select All هەموو نووسەرەویت - + Paste چاپ کەویت @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is تەپس: ئەگەر وێدەیەک بەتەنەکەریتەوە بەکارهێنریتەوە، متنەکە بەتەنەکەریتەوە بەکارهێنریتەوە diff --git a/translations/deepin-ocr_ky.ts b/translations/deepin-ocr_ky.ts index 210658d8..d4681f86 100644 --- a/translations/deepin-ocr_ky.ts +++ b/translations/deepin-ocr_ky.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized Мәтін танилмады - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text Мәтін көчөрөө - + Save as TXT TXT форматына сақлау - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing Танилды - + Copied Көчөрүү @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR ыңгай @@ -38,22 +71,22 @@ ResultTextView - + Copy Көчөрөө - + Cut Жылыҡтау - + Select All Барлығын таңлоо - + Paste Көпкөрөө @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Мәлүмәт: Көршеңгәрәк күрүнгән сурәт, мәтінге үлкән дәлдәләк болар diff --git a/translations/deepin-ocr_ky@Arab.ts b/translations/deepin-ocr_ky@Arab.ts index 1fa5ac0b..94c9bbe3 100644 --- a/translations/deepin-ocr_ky@Arab.ts +++ b/translations/deepin-ocr_ky@Arab.ts @@ -1,70 +1,102 @@ - + + + MainWidget - + No text recognized - + - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text - + - + Save as TXT - + + + + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + - - + + Recognizing - + - + Copied - + QObject - + OCR Tool - + ResultTextView - + Copy - + - + Cut - + - + Select All - + - + Paste - + Widget - + Tips: The clearer the image is, the more accurate the text is - + - \ No newline at end of file + diff --git a/translations/deepin-ocr_lo.ts b/translations/deepin-ocr_lo.ts index 13d7c0e7..14255400 100644 --- a/translations/deepin-ocr_lo.ts +++ b/translations/deepin-ocr_lo.ts @@ -4,58 +4,58 @@ MainWidget - + No text recognized ບໍ່ມີຂໍ້ຄວາມທີ່ຮັບຮູ້ - + Recognize language ຮັບຮູ້ພາສາ - + Simplified Chinese ຈີນງ່າຍ - + English ອັງກິດ - + Traditional Chinese ຈີນຢູ່ທີ່ສຸດ - + Copy text ຄັດລອກຂໍ້ຄວາມ - + Save as TXT ບັນທຶກເປັນ TXT - + Undo (Ctrl+Z) ຍົກເລີກ (Ctrl+Z) - + Redo (Ctrl+Shift+Z) ຍົກເລີກອີກຄັ້ງ (Ctrl+Shift+Z) - - + + Recognizing ກຳລັງຮັບຮູ້ - + Copied ຄັດລອກຂໍ້ຄວາມ @@ -94,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is ຄ່ານິຍົມ: ການພິມທີ່ຊັດເຈນກວ່າ, ການພິມທີ່ຖືກຕ້ອງກວ່າ diff --git a/translations/deepin-ocr_lt.ts b/translations/deepin-ocr_lt.ts index be9a4ca4..4166326b 100644 --- a/translations/deepin-ocr_lt.ts +++ b/translations/deepin-ocr_lt.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Nerakta tekstas - + Recognize language Raskite kalbą - + Simplified Chinese ,egu kalba - + English Anglų kalba - + Traditional Chinese Tųri Egų kalba - + Copy text Kopijuoti tekstą - + Save as TXT Išsaugoti kaip TXT - + Undo (Ctrl+Z) Atšaukti (Ctrl+Z - + Redo (Ctrl+Shift+Z) Atkurti (Ctrl+Shift+Z - - + + Recognizing Raskam - + Copied Kopijuotas @@ -61,7 +63,7 @@ QObject - + OCR Tool OCR įrankis @@ -69,22 +71,22 @@ ResultTextView - + Copy Kopijuoti - + Cut Iškirpti - + Select All Pasirinkti viską - + Paste Įklijuoti @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Pamoko: Žiūros geriau, tekstas geriau - \ No newline at end of file + diff --git a/translations/deepin-ocr_ml.ts b/translations/deepin-ocr_ml.ts index 128223c2..24440642 100644 --- a/translations/deepin-ocr_ml.ts +++ b/translations/deepin-ocr_ml.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized എന്തെങ്കിലും പാലിച്ചിട്ടില്ല - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text ടെക്സ്റ്റ് കോപ്പി - + Save as TXT TXT ആകാരത്തിൽ സേവ് ചെയ്യുക - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing ഓഫ് റെകെഗ്നിസ് - + Copied കോപ്പി ചെയ്തിട്ടുണ്ട് @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR ടൂൾ @@ -38,22 +71,22 @@ ResultTextView - + Copy കോപ്പി - + Cut കട്ട് - + Select All എല്ലാവരെയും തിരഞ്ഞെടുക്കുക - + Paste പേസ്റ്റ് @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is ടിപ്പ്: ചിത്രം കൂടുതൽ വ്യക്തമാണെങ്കിൽ, ടെക്സ്റ്റ് കൂടുതൽ ശരിയായിരിക്കും diff --git a/translations/deepin-ocr_mn.ts b/translations/deepin-ocr_mn.ts index 9be40df6..47a6e048 100644 --- a/translations/deepin-ocr_mn.ts +++ b/translations/deepin-ocr_mn.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized Текст олдоггүй - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text Текст хураах - + Save as TXT TXT-р хадгалах - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing Онлойх - + Copied Хураагдсан @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR-ын үзүүлбэр @@ -38,22 +71,22 @@ ResultTextView - + Copy Хураах - + Cut Хурааж устгах - + Select All Бүхийг сонгох - + Paste Нууцах @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Албан ёсны: Өгөж байгаа үзүүлбэрийн тодорхойлолт нь текстийн тодорхойлолтыг нэмэгдүүлнэ diff --git a/translations/deepin-ocr_mr.ts b/translations/deepin-ocr_mr.ts index 7b6da648..7e030a65 100644 --- a/translations/deepin-ocr_mr.ts +++ b/translations/deepin-ocr_mr.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized कोणताही टेक्स्ट ओळखला गेलेला नाही - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text टेक्स्ट कॉपी करा - + Save as TXT TXT म्हणून सेवा करा - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing ओळखत आहे - + Copied कॉपी केले @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR उपकरण @@ -38,22 +71,22 @@ ResultTextView - + Copy कॉपी - + Cut कट - + Select All सर्व निवडा - + Paste पेस्ट @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is सूचना: छाया जसा निर्माण होत आहे, तेनुसार टेक्स्ट तसा निर्माण होत आहे diff --git a/translations/deepin-ocr_ms.ts b/translations/deepin-ocr_ms.ts index 3df1b6db..0a25752e 100644 --- a/translations/deepin-ocr_ms.ts +++ b/translations/deepin-ocr_ms.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Tiada teks dikenal pasti - + Recognize language Bahasa dikenal pasti - + Simplified Chinese Bahasa Cina Mudah - + English Bahasa Inggeris - + Traditional Chinese Bahasa Cina Tradisional - + Copy text Salin teks - + Save as TXT Simpan sebagai TXT - + Undo (Ctrl+Z) Buat Asal (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Buat Semula (Ctrl+Shift+Z) - - + + Recognizing Melakukan Pengecaman - + Copied Disalin @@ -61,7 +63,7 @@ QObject - + OCR Tool Alat OCR @@ -69,22 +71,22 @@ ResultTextView - + Copy Salin - + Cut Potong - + Select All Pilih Semua - + Paste Tampal @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Petua: Lebih jelas imej, lebih tepat teks diperoleh - \ No newline at end of file + diff --git a/translations/deepin-ocr_my.ts b/translations/deepin-ocr_my.ts index 7c0910a0..e074d860 100644 --- a/translations/deepin-ocr_my.ts +++ b/translations/deepin-ocr_my.ts @@ -4,57 +4,58 @@ MainWidget - + No text recognized မှန်ကန်သောစာသားမရှိပါ - + Recognize language ဘာသာစကားကိုသိရှိပါ - + Simplified Chinese အက္ခရာပုံစံ ခွေးစာ - + English အင်္ဂလိပ် - + Traditional Chinese အမျိုးပုံစံ ခွေးစာ - + Copy text စာသားကိုကူးပြားပါ - + Save as TXT TXT အဖြစ်သိမ်းပါ - + Undo (Ctrl+Z) ပြန်လုပ်ချက် (Ctrl+Z) - + Redo (Ctrl+Shift+Z) ပြန်လုပ်ချက် (Ctrl+Shift+Z) - + + Recognizing သိရှိနေပါသည် - + Copied ကူးပြားပြီးပါသည် @@ -62,7 +63,7 @@ QObject - + OCR Tool OCR ကိရိယာ @@ -70,22 +71,22 @@ ResultTextView - + Copy ကူးပြား - + Cut ဖြုံ့ပြား - + Select All အားလုံးကိုရွေးပါ - + Paste ထည့်သွင်း @@ -93,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is လမ်းညွှန်းချက်: ဓာတ်ပုံ ပိုပြေးလျော်လေ စာသား ပိုမှန်လေပါသည် diff --git a/translations/deepin-ocr_nb.ts b/translations/deepin-ocr_nb.ts index 92b8b799..be8c8fe0 100644 --- a/translations/deepin-ocr_nb.ts +++ b/translations/deepin-ocr_nb.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Ingen tekst ble gjenkjent - + Recognize language Gjenkjenn språk - + Simplified Chinese Forenklet kinesisk - + English Engelsk - + Traditional Chinese Tradisjonell kinesisk - + Copy text Kopier tekst - + Save as TXT Lagre som tekstfil - + Undo (Ctrl+Z) Angre (CTRL+Z) - + Redo (Ctrl+Shift+Z) Gjør om (Ctrl+Shift+Z) - - + + Recognizing Gjenkjenner - + Copied Kopiert @@ -61,7 +63,7 @@ QObject - + OCR Tool OCR-verktøy @@ -69,22 +71,22 @@ ResultTextView - + Copy Kopier - + Cut Klipp ut - + Select All Velg alt - + Paste Lim inn @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Tips: Jo tydeligere bildet er, jo bedre vil gjenkjenningen fungere - \ No newline at end of file + diff --git a/translations/deepin-ocr_ne.ts b/translations/deepin-ocr_ne.ts index 1db40eb3..474a1113 100644 --- a/translations/deepin-ocr_ne.ts +++ b/translations/deepin-ocr_ne.ts @@ -4,57 +4,58 @@ MainWidget - + No text recognized कुनै पनि पाठ चिनियो - + Recognize language भाषा चिनियो - + Simplified Chinese सरलीकृत चीनी - + English अंग्रेजी - + Traditional Chinese पारंपरिक चीनी - + Copy text पाठ काट्नु - + Save as TXT TXT मा सेभ गर्नु - + Undo (Ctrl+Z) पुन: गर्नु (Ctrl+Z) - + Redo (Ctrl+Shift+Z) पुन: गर्नु (Ctrl+Shift+Z) - + + Recognizing चिनिरहेको - + Copied काटियो @@ -62,7 +63,7 @@ QObject - + OCR Tool OCR टोल @@ -70,22 +71,22 @@ ResultTextView - + Copy काट्नु - + Cut काट्नु - + Select All सबै चयन गर्नु - + Paste पेस्ट गर्नु @@ -93,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is सुझाव: छवि ज्यादा स्पष्ट हुन त्यो पाठ ज्यादा सटीक हुन्छ diff --git a/translations/deepin-ocr_nl.ts b/translations/deepin-ocr_nl.ts index 777997c2..ba8cede9 100644 --- a/translations/deepin-ocr_nl.ts +++ b/translations/deepin-ocr_nl.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Er is geen tekst aangetroffen - + Recognize language Taal herkennen - + Simplified Chinese Vereenvoudigd Chinees - + English Engels - + Traditional Chinese Traditioneel Chinees - + Copy text Tekst kopiëren - + Save as TXT Opslaan als txt-bestand - + Undo (Ctrl+Z) Ongedaan maken (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Opnieuw uitvoeren (Ctrl+Shift+Z) - - + + Recognizing Bezig met herkennen… - + Copied Gekopieerd @@ -61,7 +63,7 @@ QObject - + OCR Tool OCR-hulpmiddel @@ -69,22 +71,22 @@ ResultTextView - + Copy Kopiëren - + Cut Knippen - + Select All Alles selecteren - + Paste Plakken @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Tip: gebruik een heldere afbeelding zodat de tekst goed leesbaar is - \ No newline at end of file + diff --git a/translations/deepin-ocr_pl.ts b/translations/deepin-ocr_pl.ts index 338adc26..bbf41b70 100644 --- a/translations/deepin-ocr_pl.ts +++ b/translations/deepin-ocr_pl.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Nie rozpoznano żadnego tekstu - + Recognize language Rozpoznaj język - + Simplified Chinese Chiński uproszczony - + English Angielski - + Traditional Chinese Chiński tradycyjny - + Copy text Kopiuj tekst - + Save as TXT Zapisz jako TXT - + Undo (Ctrl+Z) Cofnij (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Ponów (Ctrl+Shift+Z) - - + + Recognizing Rozpoznaję - + Copied Skopiowano @@ -61,7 +63,7 @@ QObject - + OCR Tool Narzędzie OCR @@ -69,22 +71,22 @@ ResultTextView - + Copy Kopiuj - + Cut Wytnij - + Select All Zaznacz wszystko - + Paste Wklej @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Wskazówka: Im wyraźniejsze zdjęcie, tym dokładniejszy będzie tekst - \ No newline at end of file + diff --git a/translations/deepin-ocr_pt.ts b/translations/deepin-ocr_pt.ts index 139654e4..2be8692a 100644 --- a/translations/deepin-ocr_pt.ts +++ b/translations/deepin-ocr_pt.ts @@ -1,58 +1,61 @@ - + + + MainWidget - + No text recognized Texto não reconhecido - + Recognize language Reconhecer idioma - + Simplified Chinese Chinês Simplificado - + English Inglês - + Traditional Chinese Chinês Tradicional - + Copy text Copiar texto - + Save as TXT Guardar como TXT - + Undo (Ctrl+Z) Desfazer (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Refazer (Ctrl+Shift+Z) - + + Recognizing Analisando - + Copied Copiado @@ -60,7 +63,7 @@ QObject - + OCR Tool Ferramenta OCR @@ -68,22 +71,22 @@ ResultTextView - + Copy Copiar - + Cut Cortar - + Select All Selecionar tudo - + Paste Colar @@ -91,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Dica: Quanto mais nítida for a imagem, melhor será a precisão de reconhecimento de texto diff --git a/translations/deepin-ocr_pt_BR.ts b/translations/deepin-ocr_pt_BR.ts index 8109404a..b6443b2c 100644 --- a/translations/deepin-ocr_pt_BR.ts +++ b/translations/deepin-ocr_pt_BR.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Nenhum texto reconhecido - + Recognize language Reconhecer idioma - + Simplified Chinese Chinês simplificado - + English Inglês - + Traditional Chinese Chinês tradicional - + Copy text Copiar texto - + Save as TXT Salvar como .txt - + Undo (Ctrl+Z) Desfazer (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Refazer (Ctrl+Shift+Z) - - + + Recognizing Reconhecendo - + Copied Copiado @@ -61,7 +63,7 @@ QObject - + OCR Tool Ferramenta de OCR @@ -69,22 +71,22 @@ ResultTextView - + Copy Copiar - + Cut Recortar - + Select All Selecionar tudo - + Paste Colar @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Dica: Quanto mais nítida for a imagem, mais preciso será o texto - \ No newline at end of file + diff --git a/translations/deepin-ocr_ro.ts b/translations/deepin-ocr_ro.ts index 571022bb..dcf855c0 100644 --- a/translations/deepin-ocr_ro.ts +++ b/translations/deepin-ocr_ro.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized Niciun text recunoscut - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text Copiați textul - + Save as TXT Salvați ca TXT - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing Recunoaște - + Copied Copiat @@ -30,7 +63,7 @@ QObject - + OCR Tool Unelte OCR @@ -38,22 +71,22 @@ ResultTextView - + Copy Copiere - + Cut Taie - + Select All Selectați tot - + Paste Lipește @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Sfat: Imaginile mai clare oferă un text mai precis diff --git a/translations/deepin-ocr_ru.ts b/translations/deepin-ocr_ru.ts index 9ce7c1cc..b63dabd0 100644 --- a/translations/deepin-ocr_ru.ts +++ b/translations/deepin-ocr_ru.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Нет распознанного текста - + Recognize language Распознавать язык - + Simplified Chinese Упрощенный китайский - + English Английский - + Traditional Chinese Традиционный китайский - + Copy text Копировать текст - + Save as TXT Сохранить простой текст - + Undo (Ctrl+Z) Отменить (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Повторить (Ctrl+Shift+Z) - - + + Recognizing Распознавание - + Copied Скопировано @@ -61,7 +63,7 @@ QObject - + OCR Tool Распознавание текста @@ -69,22 +71,22 @@ ResultTextView - + Copy Копировать - + Cut Вырезать - + Select All Выделить все - + Paste Вставить @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Совет: чем четче изображение, тем лучше результаты распознавания - \ No newline at end of file + diff --git a/translations/deepin-ocr_si.ts b/translations/deepin-ocr_si.ts index 3006f1da..03b2ceb5 100644 --- a/translations/deepin-ocr_si.ts +++ b/translations/deepin-ocr_si.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized ई टेक्स्ट අස්විය - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text ටෙක්ස් කොපි කරන්න - + Save as TXT TXT වීදියෙන් ගබඩා කරන්න - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing සොයුම් කරමින් තිබේ - + Copied කොපි කරන්න @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR ප්‍රකාශනය @@ -38,22 +71,22 @@ ResultTextView - + Copy පිටපත් - + Cut පිටවන්න - + Select All සියලුම තේරුම් ගනන්න - + Paste අලවන්න @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is උපදෙස්: මිනිසුන් වීදිය ඉතා අඩු තරම් අංශුක නම්, මිනිසුන් තේරුම් ගන්නේ ඉතා අඩු තරම් අංශුක වේ diff --git a/translations/deepin-ocr_sk.ts b/translations/deepin-ocr_sk.ts index 9d2ce781..276b673e 100644 --- a/translations/deepin-ocr_sk.ts +++ b/translations/deepin-ocr_sk.ts @@ -4,57 +4,58 @@ MainWidget - + No text recognized Žiadny text nebol rozpoznaný - + Recognize language Zistiť jazyk - + Simplified Chinese Jednoduchý čínština - + English Angličtina - + Traditional Chinese Klasická čínština - + Copy text Kopírovať text - + Save as TXT Uložiť ako TXT - + Undo (Ctrl+Z) Zrušiť (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Znovu spraviť (Ctrl+Shift+Z) - + + Recognizing Rozpoznávanie - + Copied Skopírované @@ -62,7 +63,7 @@ QObject - + OCR Tool Nástroj OCR @@ -70,22 +71,22 @@ ResultTextView - + Copy Kopírovať - + Cut Vystrihnúť - + Select All Vybrať všetko - + Paste Vložiť @@ -93,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Tip: Čím jemnejšie je obraz, tým presnejší je text diff --git a/translations/deepin-ocr_sl.ts b/translations/deepin-ocr_sl.ts index 8934f8d9..a5702e3e 100644 --- a/translations/deepin-ocr_sl.ts +++ b/translations/deepin-ocr_sl.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Nista je oznakovano - + Recognize language Označi jezik - + Simplified Chinese Poostopljeno češko - + English Angleški - + Traditional Chinese Staročesko češko - + Copy text Kopiraj tekst - + Save as TXT Shrani kot TXT - + Undo (Ctrl+Z) Povrni nazad (Ctrl+Z - + Redo (Ctrl+Shift+Z) Ponovno izvajaj (Ctrl+Shift+Z - - + + Recognizing Označevanje - + Copied Kopirano @@ -61,7 +63,7 @@ QObject - + OCR Tool Nastavitve OCR @@ -69,22 +71,22 @@ ResultTextView - + Copy Kopiraj - + Cut Izreži - + Select All Izberi vse - + Paste Vključi @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Pomembno:越清晰的图像,文字识别越准确 - \ No newline at end of file + diff --git a/translations/deepin-ocr_sq.ts b/translations/deepin-ocr_sq.ts index 2f6a73d8..28f1be9d 100644 --- a/translations/deepin-ocr_sq.ts +++ b/translations/deepin-ocr_sq.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized S’u kuptua gjë si tekst - + Recognize language Dallo gjuhën - + Simplified Chinese Kineze e Thjeshtuar - + English Anlgisht - + Traditional Chinese Kineze Tradicionale - + Copy text Kopjoje tekstin - + Save as TXT Ruaje si TXT - + Undo (Ctrl+Z) Zhbëje (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Ribëje (Ctrl+Shift+Z) - - + + Recognizing Po dallohet - + Copied U kopjua @@ -61,7 +63,7 @@ QObject - + OCR Tool Mjet OCR @@ -69,22 +71,22 @@ ResultTextView - + Copy Kopjoje - + Cut Prije - + Select All Përzgjidhe Krejt - + Paste Ngjite @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Ndihmëz: Sa më e qartë figura, aq më i përpiktë është teksti - \ No newline at end of file + diff --git a/translations/deepin-ocr_sr.ts b/translations/deepin-ocr_sr.ts index bbf8a76c..fe43f5c0 100644 --- a/translations/deepin-ocr_sr.ts +++ b/translations/deepin-ocr_sr.ts @@ -1,58 +1,61 @@ - + + + MainWidget - + No text recognized Нема препознатог текста - + Recognize language Прегледај језик - + Simplified Chinese Једноставни кинески - + English Англијански - + Traditional Chinese Традиционални кинески - + Copy text Копирај текст - + Save as TXT Сачувај као ТХТ - + Undo (Ctrl+Z) Поништи (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Понови (Ctrl+Shift+Z) - + + Recognizing Препознавање - + Copied Копирано @@ -60,7 +63,7 @@ QObject - + OCR Tool ОЦР алат @@ -68,22 +71,22 @@ ResultTextView - + Copy Копирај - + Cut Исеци - + Select All Изабери све - + Paste Убаци @@ -91,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Савет: Што је слика јаснија, текст је тачнији diff --git a/translations/deepin-ocr_sv.ts b/translations/deepin-ocr_sv.ts index c03a592b..6085c0c5 100644 --- a/translations/deepin-ocr_sv.ts +++ b/translations/deepin-ocr_sv.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Ingen text kändes igen - + Recognize language Känn igen språket - + Simplified Chinese Förenklad kinesiska - + English Engelska - + Traditional Chinese Traditionell kinesiska - + Copy text Kopiera text - + Save as TXT Spara som TXT - + Undo (Ctrl+Z) Ångra (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Gör om (Ctrl+Shift+Z) - - + + Recognizing Känner igen - + Copied Kopierades @@ -61,7 +63,7 @@ QObject - + OCR Tool OCR-verktyg @@ -69,22 +71,22 @@ ResultTextView - + Copy Kopiera - + Cut Klipp ut - + Select All Markera allt - + Paste Klistra in @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Tips: Ju tydligare bilden är, desto mer exakt blir texten - \ No newline at end of file + diff --git a/translations/deepin-ocr_sw.ts b/translations/deepin-ocr_sw.ts index 7e8500e4..502874c6 100644 --- a/translations/deepin-ocr_sw.ts +++ b/translations/deepin-ocr_sw.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized Hakikati siku kujitambua - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text Kopia kifungu - + Save as TXT Tuma kama TXT - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing Kutambua - + Copied Kilichopiaji @@ -30,7 +63,7 @@ QObject - + OCR Tool Vipengele ya OCR @@ -38,22 +71,22 @@ ResultTextView - + Copy Kopia - + Cut Vuta - + Select All Jisikia wote - + Paste Lipisha @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Matokeo: Sembe kubwa kifungu, kifungu kubwa kujitambua diff --git a/translations/deepin-ocr_ta.ts b/translations/deepin-ocr_ta.ts index 8639bb80..55a4d70e 100644 --- a/translations/deepin-ocr_ta.ts +++ b/translations/deepin-ocr_ta.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized எந்த பார்க்கப்பட்ட தொடர்பு கொண்ட பொருளும் இல்லை - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text தொடர்பு கொண்ட பொருளை பிரித்தெடுக்கவும் - + Save as TXT TXT ஆக மாற்றவும் - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing உறுதிப்படுத்தல் - + Copied பிரித்தெடுக்கப்பட்டது @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR கரு @@ -38,22 +71,22 @@ ResultTextView - + Copy கொடு - + Cut க்கொடு - + Select All அனைத்தையும் தேர்ந்தெடுக்கவும் - + Paste செல்லவும் @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is முக்கியத்துவமுள்ள குறிப்பு: படத்தின் தெளிவு அதிகரித்தால், பொருள் அதிகமாக உறுதிப்படுத்தப்படும் diff --git a/translations/deepin-ocr_th.ts b/translations/deepin-ocr_th.ts index efdf7b29..6c1fc1d6 100644 --- a/translations/deepin-ocr_th.ts +++ b/translations/deepin-ocr_th.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized ไม่มีข้อความที่ถูกจดจำ - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text คัดลอกข้อความ - + Save as TXT บันทึกเป็นไฟล์ TXT - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing กำลังจดจำ - + Copied คัดลอกแล้ว @@ -30,7 +63,7 @@ QObject - + OCR Tool เครื่องมือ OCR @@ -38,22 +71,22 @@ ResultTextView - + Copy คัดลอก - + Cut ตัด - + Select All เลือกทั้งหมด - + Paste วาง @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is คำแนะนำ: ยิ่งภาพชัดเจน ข้อความที่จดจำก็จะยิ่งแม่นยำ diff --git a/translations/deepin-ocr_tr.ts b/translations/deepin-ocr_tr.ts index 7be37014..14316f5f 100644 --- a/translations/deepin-ocr_tr.ts +++ b/translations/deepin-ocr_tr.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Metin tanınmadı - + Recognize language Dili tanı - + Simplified Chinese Basitleştirilmiş Çince - + English İngilizce - + Traditional Chinese Geleneksel Çince - + Copy text Metni kopyala - + Save as TXT TXT olarak kaydet - + Undo (Ctrl+Z) Geri Al (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Yinele (Ctrş+Shift+Z) - - + + Recognizing Hatırla - + Copied Kopyalandı @@ -61,7 +63,7 @@ QObject - + OCR Tool OCR Aracı @@ -69,22 +71,22 @@ ResultTextView - + Copy Kopyala - + Cut Kes - + Select All Tümünü Seç - + Paste Yapıştır @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is İpuçları: Görüntü ne kadar net olursa, metin o kadar doğru olur. - \ No newline at end of file + diff --git a/translations/deepin-ocr_ug.ts b/translations/deepin-ocr_ug.ts index 292f0ba2..1d684640 100644 --- a/translations/deepin-ocr_ug.ts +++ b/translations/deepin-ocr_ug.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized تېكىستنى تونىيالمىدى - + Recognize language تىل پەرقلەندۈرۈش - + Simplified Chinese ئاددىيلاشتۇرۇلغان خەنزۇچە - + English ئىنگلىزچە - + Traditional Chinese ئاددىيلاشتۇرۇلمىغان خەنزۇچە - + Copy text تېكىستنى كۆچۈرۈش - + Save as TXT TXT ھالىتىدە ساقلاش - + Undo (Ctrl+Z) ئەمەلدىن قالدۇرۇش (Ctrl+Z) - + Redo (Ctrl+Shift+Z) قايتا (Ctrl+Shift+Z) - - + + Recognizing تونۇۋاتىدۇ - + Copied كۆچۈرۈلدى @@ -61,7 +63,7 @@ QObject - + OCR Tool سۈرەت-تېكىست تونۇتۇش قورالى @@ -69,22 +71,22 @@ ResultTextView - + Copy كۆچۈرۈش - + Cut كېسىش - + Select All ھەممىنى تاللاش - + Paste چاپلاش @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is سەمىمىي ئەسكەرتىش: سۈرەت قانچە ئېنىق بولسا تونۇش توغرىلىقى شۇنچە يۇقىرى بولىدۇ - \ No newline at end of file + diff --git a/translations/deepin-ocr_uk.ts b/translations/deepin-ocr_uk.ts index 31901214..2cbd99a7 100644 --- a/translations/deepin-ocr_uk.ts +++ b/translations/deepin-ocr_uk.ts @@ -1,59 +1,61 @@ - + + + MainWidget - + No text recognized Текст не розпізнано - + Recognize language Розпізнати мову - + Simplified Chinese Спрощена китайська - + English Англійська - + Traditional Chinese Традиційна китайська - + Copy text Копіювати тест - + Save as TXT Зберегти як TXT - + Undo (Ctrl+Z) Скасувати (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Повторити (Ctrl+Shift+Z) - - + + Recognizing Розпізнавання - + Copied Скопійовано @@ -61,7 +63,7 @@ QObject - + OCR Tool Інструмент розпізнавання @@ -69,22 +71,22 @@ ResultTextView - + Copy Копіювати - + Cut Вирізати - + Select All Позначити усе - + Paste Вставити @@ -92,9 +94,9 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Підказки: чим чіткішим є зображення, тим точнішим буде розпізнаний текст - \ No newline at end of file + diff --git a/translations/deepin-ocr_ur.ts b/translations/deepin-ocr_ur.ts index 91a0ba69..1ffa8ecd 100644 --- a/translations/deepin-ocr_ur.ts +++ b/translations/deepin-ocr_ur.ts @@ -1,28 +1,61 @@ - + + + MainWidget - + No text recognized کوئی ٹیکسٹ شناخت نہ ہو سکا - + + Recognize language + + + + + Simplified Chinese + + + + + English + + + + + Traditional Chinese + + + + Copy text ٹیکسٹ کا کپی کریں - + Save as TXT TXT کے طور پر سیو کریں - + + Undo (Ctrl+Z) + + + + + Redo (Ctrl+Shift+Z) + + + + + Recognizing شناخت کر رہے ہیں - + Copied کپی کر دیا گیا @@ -30,7 +63,7 @@ QObject - + OCR Tool OCR ٹول @@ -38,22 +71,22 @@ ResultTextView - + Copy کپی - + Cut کٹ - + Select All سیلکٹ ہر چیز - + Paste پیسٹ @@ -61,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is ٹیپس: تصویر کچھ واضح تر ہو گی، ٹیکسٹ کچھ زیادہ صحیح ہو گی diff --git a/translations/deepin-ocr_vi.ts b/translations/deepin-ocr_vi.ts index dcfd1531..7c2f2899 100644 --- a/translations/deepin-ocr_vi.ts +++ b/translations/deepin-ocr_vi.ts @@ -1,58 +1,61 @@ - + + + MainWidget - + No text recognized Không nhận dạng được văn bản - + Recognize language Nhận diện ngôn ngữ - + Simplified Chinese Tiếng Trung giản thể - + English Tiếng Anh - + Traditional Chinese Tiếng Trung truyền thống - + Copy text Sao chép văn bản - + Save as TXT Lưu dưới dạng TXT - + Undo (Ctrl+Z) Hoàn tác (Ctrl+Z) - + Redo (Ctrl+Shift+Z) Làm lại (Ctrl+Shift+Z) - + + Recognizing Đang nhận dạng - + Copied Đã sao chép @@ -60,7 +63,7 @@ QObject - + OCR Tool Công cụ OCR @@ -68,22 +71,22 @@ ResultTextView - + Copy Sao chép - + Cut Cắt - + Select All Chọn tất cả - + Paste Dán @@ -91,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is Lời khuyên:Ảnh rõ nét hơn sẽ có văn bản chính xác hơn diff --git a/translations/deepin-ocr_zh_CN.ts b/translations/deepin-ocr_zh_CN.ts index 6d442754..75977bb9 100644 --- a/translations/deepin-ocr_zh_CN.ts +++ b/translations/deepin-ocr_zh_CN.ts @@ -4,58 +4,58 @@ MainWidget - + No text recognized 未识别到文字 - + Recognize language 识别语言 - + Simplified Chinese 简体中文 - + English 英文 - + Traditional Chinese 繁体中文 - + Copy text 复制文字 - + Save as TXT 保存为TXT - + Undo (Ctrl+Z) 撤销 (Ctrl+Z) - + Redo (Ctrl+Shift+Z) 重做 (Ctrl+Shift+Z) - - + + Recognizing 正在识别 - + Copied 已复制 @@ -94,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is 温馨提示:图像越简洁清晰,识别越准确 diff --git a/translations/deepin-ocr_zh_HK.ts b/translations/deepin-ocr_zh_HK.ts index 65c6b7df..5c17c223 100644 --- a/translations/deepin-ocr_zh_HK.ts +++ b/translations/deepin-ocr_zh_HK.ts @@ -4,58 +4,58 @@ MainWidget - + No text recognized 未識別到文字 - + Recognize language 識別語言 - + Simplified Chinese 簡體中文 - + English 英文 - + Traditional Chinese 繁體中文 - + Copy text 複製文字 - + Save as TXT 保存為TXT - + Undo (Ctrl+Z) 撤銷 (Ctrl+Z) - + Redo (Ctrl+Shift+Z) 重做 (Ctrl+Shift+Z) - - + + Recognizing 正在識別 - + Copied 已複製 @@ -94,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is 溫馨提示:圖像越簡潔清晰,識別越準確 diff --git a/translations/deepin-ocr_zh_TW.ts b/translations/deepin-ocr_zh_TW.ts index 3490107c..8027d02a 100644 --- a/translations/deepin-ocr_zh_TW.ts +++ b/translations/deepin-ocr_zh_TW.ts @@ -4,58 +4,58 @@ MainWidget - + No text recognized 未識別到文字 - + Recognize language 識別語言 - + Simplified Chinese 簡體中文 - + English 英文 - + Traditional Chinese 繁體中文 - + Copy text 複製文字 - + Save as TXT 儲存為TXT - + Undo (Ctrl+Z) 復原 (Ctrl+Z) - + Redo (Ctrl+Shift+Z) 重做 (Ctrl+Shift+Z) - - + + Recognizing 正在識別 - + Copied 已複製 @@ -94,7 +94,7 @@ Widget - + Tips: The clearer the image is, the more accurate the text is 溫馨提示:圖像越簡潔清晰,識別越準確