From 7f768d6b69286fc6504de2412e36ba323de9de75 Mon Sep 17 00:00:00 2001 From: zhanghongyuan Date: Tue, 28 Apr 2026 14:13:25 +0800 Subject: [PATCH] feat(shortcuts): add arrow key scrolling support for document viewer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add Up/Down arrow key shortcuts for smooth line-by-line scrolling. 添加上下方向键快捷键,支持逐行平滑滚动。 Log: 添加方向键滚动功能 PMS: TASK-40655 Influence: 用户可以使用上下方向键进行文档滚动,提升阅读体验。 --- .gitignore | 1 + reader/app/Global.h | 4 +- reader/browser/SheetBrowser.cpp | 24 ++- reader/uiframe/CentralDocPage.cpp | 15 +- reader/widgets/ShortCutShow.cpp | 4 +- translations/deepin-reader.ts | 2 +- translations/deepin-reader_ady.ts | 11 ++ translations/deepin-reader_af.ts | 13 +- translations/deepin-reader_am_ET.ts | 11 ++ translations/deepin-reader_ar.ts | 13 +- translations/deepin-reader_ast.ts | 11 ++ translations/deepin-reader_az.ts | 13 +- translations/deepin-reader_bg.ts | 11 ++ translations/deepin-reader_bn.ts | 13 +- translations/deepin-reader_bo.ts | 11 ++ translations/deepin-reader_bqi.ts | 11 ++ translations/deepin-reader_br.ts | 11 ++ translations/deepin-reader_ca.ts | 11 ++ translations/deepin-reader_cs.ts | 13 +- translations/deepin-reader_da.ts | 13 +- translations/deepin-reader_de.ts | 13 +- translations/deepin-reader_el.ts | 13 +- translations/deepin-reader_en_AU.ts | 11 ++ translations/deepin-reader_eo.ts | 11 ++ translations/deepin-reader_es.ts | 11 ++ translations/deepin-reader_et.ts | 13 +- translations/deepin-reader_eu.ts | 11 ++ translations/deepin-reader_fa.ts | 11 ++ translations/deepin-reader_fi.ts | 11 ++ translations/deepin-reader_fil.ts | 11 ++ translations/deepin-reader_fr.ts | 11 ++ translations/deepin-reader_gl_ES.ts | 13 +- translations/deepin-reader_he.ts | 13 +- translations/deepin-reader_hi_IN.ts | 13 +- translations/deepin-reader_hr.ts | 11 ++ translations/deepin-reader_hu.ts | 13 +- translations/deepin-reader_hy.ts | 13 +- translations/deepin-reader_id.ts | 11 ++ translations/deepin-reader_it.ts | 13 +- translations/deepin-reader_ja.ts | 11 ++ translations/deepin-reader_ka.ts | 15 +- translations/deepin-reader_km_KH.ts | 11 ++ translations/deepin-reader_kn_IN.ts | 71 ++++---- translations/deepin-reader_ko.ts | 13 +- translations/deepin-reader_ku.ts | 11 ++ translations/deepin-reader_ku_IQ.ts | 13 +- translations/deepin-reader_ky.ts | 11 ++ translations/deepin-reader_lo.ts | 11 ++ translations/deepin-reader_lt.ts | 13 +- translations/deepin-reader_ml.ts | 11 ++ translations/deepin-reader_mn.ts | 11 ++ translations/deepin-reader_mr.ts | 11 ++ translations/deepin-reader_ms.ts | 13 +- translations/deepin-reader_my.ts | 11 ++ translations/deepin-reader_nb.ts | 13 +- translations/deepin-reader_ne.ts | 13 +- translations/deepin-reader_nl.ts | 11 ++ translations/deepin-reader_pa.ts | 259 +++++++++++++++------------- translations/deepin-reader_pam.ts | 11 ++ translations/deepin-reader_pl.ts | 11 ++ translations/deepin-reader_pt.ts | 13 +- translations/deepin-reader_pt_BR.ts | 11 ++ translations/deepin-reader_ro.ts | 35 ++-- translations/deepin-reader_ru.ts | 13 +- translations/deepin-reader_sc.ts | 13 +- translations/deepin-reader_si.ts | 13 +- translations/deepin-reader_sk.ts | 11 ++ translations/deepin-reader_sl.ts | 13 +- translations/deepin-reader_sq.ts | 11 ++ translations/deepin-reader_sr.ts | 21 ++- translations/deepin-reader_sv.ts | 11 ++ translations/deepin-reader_sw.ts | 11 ++ translations/deepin-reader_ta.ts | 11 ++ translations/deepin-reader_th.ts | 13 +- translations/deepin-reader_tr.ts | 13 +- translations/deepin-reader_tzm.ts | 11 ++ translations/deepin-reader_ug.ts | 13 +- translations/deepin-reader_uk.ts | 13 +- translations/deepin-reader_ur.ts | 11 ++ translations/deepin-reader_vi.ts | 59 ++++--- translations/deepin-reader_zh_CN.ts | 10 ++ translations/deepin-reader_zh_HK.ts | 11 ++ translations/deepin-reader_zh_TW.ts | 11 ++ 83 files changed, 1117 insertions(+), 233 deletions(-) diff --git a/.gitignore b/.gitignore index 128e0017c..e4eebc12b 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ ui_*.h #linglong building dir linglong build +obj-x86_64-linux-gnu/ # vscode .vscode diff --git a/reader/app/Global.h b/reader/app/Global.h index feac29cda..7641c2b2a 100644 --- a/reader/app/Global.h +++ b/reader/app/Global.h @@ -1,5 +1,5 @@ // Copyright (C) 2019 ~ 2020 Uniontech Software Technology Co.,Ltd. -// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. +// SPDX-FileCopyrightText: 2023 - 2026 UnionTech Software Technology Co., Ltd. // // SPDX-License-Identifier: GPL-3.0-or-later @@ -145,5 +145,7 @@ const QString key_ctrl_shift_s = "Ctrl+Shift+S"; // 另存为 const QString key_ctrl_shift_slash = "Ctrl+Shift+/"; const QString key_ctrl_home = "Ctrl+Home"; //第一页 const QString key_ctrl_end = "Ctrl+End"; //最后一页 + +const int key_scroll_step_pixels = 20; // 上下键滚动步长(像素) } #endif // GLOBAL_H diff --git a/reader/browser/SheetBrowser.cpp b/reader/browser/SheetBrowser.cpp index 378e0c9d8..8bff212a4 100644 --- a/reader/browser/SheetBrowser.cpp +++ b/reader/browser/SheetBrowser.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2019 ~ 2026 Uniontech Software Technology Co.,Ltd. -// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. +// SPDX-FileCopyrightText: 2023 - 2026 UnionTech Software Technology Co., Ltd. // // SPDX-License-Identifier: GPL-3.0-or-later @@ -48,6 +48,7 @@ DWIDGET_USE_NAMESPACE #define REPEAT_MOVE_DELAY 500 const qreal deltaManhattanLength = 12.0; + SheetBrowser::SheetBrowser(DocSheet *parent) : DGraphicsView(parent), m_sheet(parent) { qCDebug(appLog) << "SheetBrowser constructor started"; @@ -766,6 +767,17 @@ void SheetBrowser::keyPressEvent(QKeyEvent *event) m_sheet->jumpToPrevPage(); return; } + + if (event->key() == Qt::Key_Down) { + event->accept(); + verticalScrollBar()->setValue(verticalScrollBar()->value() + Dr::key_scroll_step_pixels); + return; + } + if (event->key() == Qt::Key_Up) { + event->accept(); + verticalScrollBar()->setValue(verticalScrollBar()->value() - Dr::key_scroll_step_pixels); + return; + } } DGraphicsView::keyPressEvent(event); } @@ -1657,6 +1669,9 @@ int SheetBrowser::currentPage() int SheetBrowser::currentScrollValueForPage() { // qCDebug(appLog) << "SheetBrowser::currentScrollValueForPage() - Current scroll value for page"; + if (m_items.isEmpty()) + return 1; + int value = verticalScrollBar()->value(); int index = 0; @@ -1680,7 +1695,12 @@ int SheetBrowser::currentScrollValueForPage() } } - return index + 1; + // 确保页码在有效范围内 [1, m_items.count()] + int page = index + 1; + if (page < 1) page = 1; + if (page > m_items.count()) page = m_items.count(); + + return page; } void SheetBrowser::setCurrentPage(int page) diff --git a/reader/uiframe/CentralDocPage.cpp b/reader/uiframe/CentralDocPage.cpp index 21f763f52..e83327ac5 100644 --- a/reader/uiframe/CentralDocPage.cpp +++ b/reader/uiframe/CentralDocPage.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2019 ~ 2020 Uniontech Software Technology Co.,Ltd. -// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. +// SPDX-FileCopyrightText: 2023 - 2026 UnionTech Software Technology Co., Ltd. // // SPDX-License-Identifier: GPL-3.0-or-later @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include @@ -737,6 +738,18 @@ void CentralDocPage::handleShortcut(const QString &s) } else if (s == Dr::key_alt_a) { qCInfo(appLog) << "s == Dr::key_alt_a"; sheet->addSelectedTextHightlightAnnotation(); + } else if (s == Dr::key_down) { + // 上下键按固定像素滚动(每次约一行) + if (sheet->getSheetBrowser()) { + sheet->getSheetBrowser()->verticalScrollBar()->setValue( + sheet->getSheetBrowser()->verticalScrollBar()->value() + Dr::key_scroll_step_pixels); + } + } else if (s == Dr::key_up) { + // 上下键按固定像素滚动(每次约一行) + if (sheet->getSheetBrowser()) { + sheet->getSheetBrowser()->verticalScrollBar()->setValue( + sheet->getSheetBrowser()->verticalScrollBar()->value() - Dr::key_scroll_step_pixels); + } } // 屏蔽右侧区域的切页快捷键,使用默认的滚动效果 /*else if (s == Dr::key_left) { diff --git a/reader/widgets/ShortCutShow.cpp b/reader/widgets/ShortCutShow.cpp index bdfb8f1da..b533df992 100644 --- a/reader/widgets/ShortCutShow.cpp +++ b/reader/widgets/ShortCutShow.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2019 ~ 2020 Uniontech Software Technology Co.,Ltd. -// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. +// SPDX-FileCopyrightText: 2023 - 2026 UnionTech Software Technology Co., Ltd. // // SPDX-License-Identifier: GPL-3.0-or-later @@ -125,6 +125,8 @@ void ShortCutShow::initPDF() {Dr::key_ctrl_smaller , tr("Zoom out") }, {Dr::key_pgUp , tr("Page up") }, {Dr::key_pgDown , tr("Page down") }, + {Dr::key_up , tr("Scroll up one line") }, + {Dr::key_down , tr("Scroll down one line") }, {Dr::key_ctrl_home , tr("Move to the beginning") }, {Dr::key_ctrl_end , tr("Move to the end") }, {Dr::key_esc , tr("Exit") }}}, diff --git a/translations/deepin-reader.ts b/translations/deepin-reader.ts index c5061d158..ef53d67e4 100755 --- a/translations/deepin-reader.ts +++ b/translations/deepin-reader.ts @@ -11,7 +11,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. diff --git a/translations/deepin-reader_ady.ts b/translations/deepin-reader_ady.ts index 31b9458e7..0e30b8bb2 100644 --- a/translations/deepin-reader_ady.ts +++ b/translations/deepin-reader_ady.ts @@ -618,6 +618,17 @@ Move to the end نۇرغۇن چەق + + + Scroll up one line + Зэкъо гупэм елъэӀу + + + + Scroll down one line + Зэкъо лъэныкъом елъэӀу + + Select text diff --git a/translations/deepin-reader_af.ts b/translations/deepin-reader_af.ts index d54a22bd8..ae38b50cb 100644 --- a/translations/deepin-reader_af.ts +++ b/translations/deepin-reader_af.ts @@ -618,6 +618,17 @@ Move to the end Verplaats na die einde + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text @@ -827,7 +838,7 @@ Generate thumbnail. - + Generate thumbnail. diff --git a/translations/deepin-reader_am_ET.ts b/translations/deepin-reader_am_ET.ts index 90f609e9f..3287a5c9d 100644 --- a/translations/deepin-reader_am_ET.ts +++ b/translations/deepin-reader_am_ET.ts @@ -618,6 +618,17 @@ Move to the end გადატანა ბოლოში + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_ar.ts b/translations/deepin-reader_ar.ts index f8c35681f..24324af76 100755 --- a/translations/deepin-reader_ar.ts +++ b/translations/deepin-reader_ar.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right تدوير لليمين + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_ast.ts b/translations/deepin-reader_ast.ts index 2c2e98b9e..e29e7745a 100644 --- a/translations/deepin-reader_ast.ts +++ b/translations/deepin-reader_ast.ts @@ -635,6 +635,17 @@ Rotate right الدوران إلى اليمين + + + Scroll up one line + Mover una llinia p'arriba + + + + Scroll down one line + Mover una llinia p'abaxo + + Move to the beginning diff --git a/translations/deepin-reader_az.ts b/translations/deepin-reader_az.ts index 2bc0c6422..c15df601b 100644 --- a/translations/deepin-reader_az.ts +++ b/translations/deepin-reader_az.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Sağa döndərin + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_bg.ts b/translations/deepin-reader_bg.ts index 223f33fa3..c0d4110b4 100644 --- a/translations/deepin-reader_bg.ts +++ b/translations/deepin-reader_bg.ts @@ -618,6 +618,17 @@ Move to the end Преместете към края + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_bn.ts b/translations/deepin-reader_bn.ts index 403c5a0d3..bfe126dfb 100644 --- a/translations/deepin-reader_bn.ts +++ b/translations/deepin-reader_bn.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -636,6 +636,17 @@ Rotate right ডানে ঘুরান + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_bo.ts b/translations/deepin-reader_bo.ts index 646a426b7..480375035 100644 --- a/translations/deepin-reader_bo.ts +++ b/translations/deepin-reader_bo.ts @@ -635,6 +635,17 @@ Rotate right གཡས་སུ་སྐོར་བ། + + + Scroll up one line + གྲལ་ཐིག་གཅིག་གྱེར་འདྲེན་བྱེད། + + + + Scroll down one line + གྲལ་ཐིག་གཅིག་མར་འདྲེན་བྱེད། + + Move to the beginning diff --git a/translations/deepin-reader_bqi.ts b/translations/deepin-reader_bqi.ts index 150f03db4..e1468efd0 100644 --- a/translations/deepin-reader_bqi.ts +++ b/translations/deepin-reader_bqi.ts @@ -618,6 +618,17 @@ Move to the end النقل إلى النهاية + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_br.ts b/translations/deepin-reader_br.ts index 155410d9a..73976435b 100644 --- a/translations/deepin-reader_br.ts +++ b/translations/deepin-reader_br.ts @@ -618,6 +618,17 @@ Move to the end الانتقال إلى نهاية + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_ca.ts b/translations/deepin-reader_ca.ts index 30c3abf93..5bbcadd4e 100755 --- a/translations/deepin-reader_ca.ts +++ b/translations/deepin-reader_ca.ts @@ -635,6 +635,17 @@ Rotate right Gira cap a la dreta + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_cs.ts b/translations/deepin-reader_cs.ts index dbb03f986..62e01107e 100755 --- a/translations/deepin-reader_cs.ts +++ b/translations/deepin-reader_cs.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Otočit doprava + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_da.ts b/translations/deepin-reader_da.ts index ce8d4f5c4..c4d09356f 100755 --- a/translations/deepin-reader_da.ts +++ b/translations/deepin-reader_da.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Drej til højre + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_de.ts b/translations/deepin-reader_de.ts index 9e3bcdb8f..5f318b941 100755 --- a/translations/deepin-reader_de.ts +++ b/translations/deepin-reader_de.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Nach rechts drehen + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_el.ts b/translations/deepin-reader_el.ts index 28ec5d418..94aa81efb 100644 --- a/translations/deepin-reader_el.ts +++ b/translations/deepin-reader_el.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Στροφή δεξιά + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_en_AU.ts b/translations/deepin-reader_en_AU.ts index 282590908..17a89712e 100644 --- a/translations/deepin-reader_en_AU.ts +++ b/translations/deepin-reader_en_AU.ts @@ -575,6 +575,17 @@ Page down + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Open diff --git a/translations/deepin-reader_eo.ts b/translations/deepin-reader_eo.ts index 4ac863f9d..6b9577422 100644 --- a/translations/deepin-reader_eo.ts +++ b/translations/deepin-reader_eo.ts @@ -618,6 +618,17 @@ Move to the end Movi al fino + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_es.ts b/translations/deepin-reader_es.ts index 6e5b06c3a..2ea926cef 100755 --- a/translations/deepin-reader_es.ts +++ b/translations/deepin-reader_es.ts @@ -635,6 +635,17 @@ Rotate right Girar a la derecha + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_et.ts b/translations/deepin-reader_et.ts index 4415108da..f5855389f 100644 --- a/translations/deepin-reader_et.ts +++ b/translations/deepin-reader_et.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Suuremas suunas tooaleta + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_eu.ts b/translations/deepin-reader_eu.ts index e849b5610..0cfa3aa3a 100644 --- a/translations/deepin-reader_eu.ts +++ b/translations/deepin-reader_eu.ts @@ -618,6 +618,17 @@ Move to the end Aitzaritik mugitu + + + Scroll up one line + Korritu lerro bat gora + + + + Scroll down one line + Korritu lerro bat behera + + Select text diff --git a/translations/deepin-reader_fa.ts b/translations/deepin-reader_fa.ts index 248f9cf4f..2c3636092 100644 --- a/translations/deepin-reader_fa.ts +++ b/translations/deepin-reader_fa.ts @@ -618,6 +618,17 @@ Move to the end به انتهای حرکت کن + + + Scroll up one line + یک خط به بالا بروید + + + + Scroll down one line + یک خط به پایین بروید + + Select text diff --git a/translations/deepin-reader_fi.ts b/translations/deepin-reader_fi.ts index f0642bc56..2f874962a 100755 --- a/translations/deepin-reader_fi.ts +++ b/translations/deepin-reader_fi.ts @@ -635,6 +635,17 @@ Rotate right Käännä oikealle + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_fil.ts b/translations/deepin-reader_fil.ts index 5821714bf..0ddf96aa7 100644 --- a/translations/deepin-reader_fil.ts +++ b/translations/deepin-reader_fil.ts @@ -618,6 +618,17 @@ Move to the end I-move sa wakas + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_fr.ts b/translations/deepin-reader_fr.ts index 361db8cd0..5dc0dff1f 100755 --- a/translations/deepin-reader_fr.ts +++ b/translations/deepin-reader_fr.ts @@ -635,6 +635,17 @@ Rotate right Rotation à droite + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_gl_ES.ts b/translations/deepin-reader_gl_ES.ts index 35d741922..91ce7d066 100755 --- a/translations/deepin-reader_gl_ES.ts +++ b/translations/deepin-reader_gl_ES.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Xirar á dereita + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_he.ts b/translations/deepin-reader_he.ts index b48a7d986..fdab7fd0c 100644 --- a/translations/deepin-reader_he.ts +++ b/translations/deepin-reader_he.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right שפוך ימינה + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_hi_IN.ts b/translations/deepin-reader_hi_IN.ts index 5a9033eef..ad4d95508 100644 --- a/translations/deepin-reader_hi_IN.ts +++ b/translations/deepin-reader_hi_IN.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right दाएं घुमाएँ + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_hr.ts b/translations/deepin-reader_hr.ts index ec3e84ea1..f9bd38ce9 100644 --- a/translations/deepin-reader_hr.ts +++ b/translations/deepin-reader_hr.ts @@ -635,6 +635,17 @@ Rotate right Rotiraj udesno + + + Scroll up one line + Pomakni jedan redak gore + + + + Scroll down one line + Pomakni jedan redak dolje + + Move to the beginning diff --git a/translations/deepin-reader_hu.ts b/translations/deepin-reader_hu.ts index d4d2c5ca3..a749b5e01 100755 --- a/translations/deepin-reader_hu.ts +++ b/translations/deepin-reader_hu.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Elforgatás jobbra + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_hy.ts b/translations/deepin-reader_hy.ts index f818c999f..8c443ea72 100644 --- a/translations/deepin-reader_hy.ts +++ b/translations/deepin-reader_hy.ts @@ -618,6 +618,17 @@ Move to the end Շարժել վերջին + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text @@ -827,7 +838,7 @@ Generate thumbnail. - + Generate thumbnail. diff --git a/translations/deepin-reader_id.ts b/translations/deepin-reader_id.ts index 6339b20cb..55832368f 100644 --- a/translations/deepin-reader_id.ts +++ b/translations/deepin-reader_id.ts @@ -635,6 +635,17 @@ Rotate right Putar ke kanan + + + Scroll up one line + Gulir satu baris ke atas + + + + Scroll down one line + Gulir satu baris ke bawah + + Move to the beginning diff --git a/translations/deepin-reader_it.ts b/translations/deepin-reader_it.ts index 6ec204e4d..704ad4500 100755 --- a/translations/deepin-reader_it.ts +++ b/translations/deepin-reader_it.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Ruota a destra + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_ja.ts b/translations/deepin-reader_ja.ts index 27e75578e..018616dc7 100644 --- a/translations/deepin-reader_ja.ts +++ b/translations/deepin-reader_ja.ts @@ -635,6 +635,17 @@ Rotate right 右に回転 + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_ka.ts b/translations/deepin-reader_ka.ts index 6a49d73df..7958f01bb 100644 --- a/translations/deepin-reader_ka.ts +++ b/translations/deepin-reader_ka.ts @@ -158,7 +158,7 @@ Search - + Search @@ -618,6 +618,17 @@ Move to the end გადატანა ბოლოში + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text @@ -827,7 +838,7 @@ Generate thumbnail. - + Generate thumbnail. diff --git a/translations/deepin-reader_km_KH.ts b/translations/deepin-reader_km_KH.ts index 63dd632b8..565990fcd 100644 --- a/translations/deepin-reader_km_KH.ts +++ b/translations/deepin-reader_km_KH.ts @@ -618,6 +618,17 @@ Move to the end ផ្ទះទៅចុះបញ្ចប់ + + + Scroll up one line + រំកិលឡើងមួយជួរ + + + + Scroll down one line + រំកិលចុះមួយជួរ + + Select text diff --git a/translations/deepin-reader_kn_IN.ts b/translations/deepin-reader_kn_IN.ts index ba11d3629..137ddd11d 100644 --- a/translations/deepin-reader_kn_IN.ts +++ b/translations/deepin-reader_kn_IN.ts @@ -163,57 +163,57 @@ Exit fullscreen - + Exit fullscreen Fullscreen - + Fullscreen Slide show - + Slide show First page - + First page Previous page - + Previous page Next page - + Next page Last page - + Last page Rotate left - + Rotate left Rotate right - + Rotate right Print - + Print Document info - + Document info @@ -221,7 +221,7 @@ Documents - + Documents @@ -229,48 +229,48 @@ The format is not supported - + The format is not supported Open failed - + Open failed Please check if the file is damaged - + Please check if the file is damaged Conversion failed, please check if the file is damaged - + Conversion failed, please check if the file is damaged Save failed - + Save failed Saved successfully - + Saved successfully Save as - + Save as Invalid file name - + Invalid file name OK button - + OK @@ -278,17 +278,17 @@ Drag documents here - + Drag documents here Format supported: %1 - + Format supported: %1 Select File - + Select File @@ -296,17 +296,17 @@ The bookmark has been removed - + The bookmark has been removed Please select the text - + Please select the text The annotation has been removed - + The annotation has been removed @@ -314,18 +314,18 @@ Encrypted file, please enter the password - + Encrypted file, please enter the password Password - + Password OK button - + OK @@ -618,6 +618,17 @@ Move to the end ಅಂತ್ಯದ ಬದಲಿಗೆ ಸ್ಥಳಾಂತರಿಸಿ + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_ko.ts b/translations/deepin-reader_ko.ts index 2097b9537..b6d8c7e3b 100755 --- a/translations/deepin-reader_ko.ts +++ b/translations/deepin-reader_ko.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right 오른쪽으로 회전 + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_ku.ts b/translations/deepin-reader_ku.ts index b153c6705..0ab06ba4c 100644 --- a/translations/deepin-reader_ku.ts +++ b/translations/deepin-reader_ku.ts @@ -618,6 +618,17 @@ Move to the end بەتەنە چەپ + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_ku_IQ.ts b/translations/deepin-reader_ku_IQ.ts index 8e973b413..18d125af8 100644 --- a/translations/deepin-reader_ku_IQ.ts +++ b/translations/deepin-reader_ku_IQ.ts @@ -618,6 +618,17 @@ Move to the end بە ھەڵەکان هەو + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text @@ -686,7 +697,7 @@ Add annotation - + Add annotation diff --git a/translations/deepin-reader_ky.ts b/translations/deepin-reader_ky.ts index 2929a8d14..f5d1544e4 100644 --- a/translations/deepin-reader_ky.ts +++ b/translations/deepin-reader_ky.ts @@ -618,6 +618,17 @@ Move to the end Аягына күчөрүү + + + Scroll up one line + Бир сап жогору скроллдоо + + + + Scroll down one line + Бир сап төмөн скроллдоо + + Select text diff --git a/translations/deepin-reader_lo.ts b/translations/deepin-reader_lo.ts index f0c89890a..8385182c9 100644 --- a/translations/deepin-reader_lo.ts +++ b/translations/deepin-reader_lo.ts @@ -618,6 +618,17 @@ Move to the end ຍ້າຍໄປທີ່ສິ້ນສຸດ + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_lt.ts b/translations/deepin-reader_lt.ts index 851398f7d..c55e0a195 100644 --- a/translations/deepin-reader_lt.ts +++ b/translations/deepin-reader_lt.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -636,6 +636,17 @@ Rotate right Rotuoti dešinėms kryptimis + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_ml.ts b/translations/deepin-reader_ml.ts index 4051cab6d..a40c2d97a 100644 --- a/translations/deepin-reader_ml.ts +++ b/translations/deepin-reader_ml.ts @@ -618,6 +618,17 @@ Move to the end അവസാനത്തിലേക്ക് മാറ്റുക + + + Scroll up one line + ഒരു വരി മുകളിലേക്ക് സ്ക്രോൾ ചെയ്യുക + + + + Scroll down one line + ഒരു വരി താഴേക്ക് സ്ക്രോൾ ചെയ്യുക + + Select text diff --git a/translations/deepin-reader_mn.ts b/translations/deepin-reader_mn.ts index 66f89fe26..6b3919474 100644 --- a/translations/deepin-reader_mn.ts +++ b/translations/deepin-reader_mn.ts @@ -618,6 +618,17 @@ Move to the end Хувааны дээд хэсэгт хөдөлгөх + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_mr.ts b/translations/deepin-reader_mr.ts index b8ead029c..018e866ba 100644 --- a/translations/deepin-reader_mr.ts +++ b/translations/deepin-reader_mr.ts @@ -618,6 +618,17 @@ Move to the end અંતે મૂકો + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_ms.ts b/translations/deepin-reader_ms.ts index 090dca77f..f61fcb6d7 100755 --- a/translations/deepin-reader_ms.ts +++ b/translations/deepin-reader_ms.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Putar kanan + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_my.ts b/translations/deepin-reader_my.ts index 25b560ca8..2cfb6d5d0 100644 --- a/translations/deepin-reader_my.ts +++ b/translations/deepin-reader_my.ts @@ -618,6 +618,17 @@ Move to the end ย้ายไปยังจุดสิ้นสุด + + + Scroll up one line + တစ်ကြောင်းအပေါ်သို့ ဆွဲချလိုက်ပါ + + + + Scroll down one line + တစ်ကြောင်းအောက်သို့ ဆွဲချလိုက်ပါ + + Select text diff --git a/translations/deepin-reader_nb.ts b/translations/deepin-reader_nb.ts index 75baf6299..cdf7ec50e 100644 --- a/translations/deepin-reader_nb.ts +++ b/translations/deepin-reader_nb.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Snurr til høyre + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_ne.ts b/translations/deepin-reader_ne.ts index 8685f013a..874deedab 100644 --- a/translations/deepin-reader_ne.ts +++ b/translations/deepin-reader_ne.ts @@ -158,7 +158,7 @@ Search - + Search @@ -618,6 +618,17 @@ Move to the end अंत में लेने + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_nl.ts b/translations/deepin-reader_nl.ts index b07e6f96c..8249aa062 100755 --- a/translations/deepin-reader_nl.ts +++ b/translations/deepin-reader_nl.ts @@ -635,6 +635,17 @@ Rotate right Naar rechts draaien + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_pa.ts b/translations/deepin-reader_pa.ts index a4d6a817c..53e3abe32 100644 --- a/translations/deepin-reader_pa.ts +++ b/translations/deepin-reader_pa.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -22,42 +22,42 @@ Subject - + Subject Author - + Author Keywords - + Keywords Producer - + Producer Creator - + Creator Time created - + Time created Time modified - + Time modified Format - + Format @@ -67,37 +67,37 @@ Optimized - + Optimized Security - + Security Page size - + Page size File size - + File size Basic info - + Basic info Unknown - + Unknown Yes - + Yes @@ -110,12 +110,12 @@ Add bookmark - + Add bookmark Are you sure you want to delete all bookmarks? - + Are you sure you want to delete all bookmarks? @@ -130,14 +130,14 @@ Remove annotation - + Remove annotation Add annotation - + Add annotation @@ -145,7 +145,7 @@ Remove bookmark - + Remove bookmark @@ -153,89 +153,89 @@ Add bookmark - + Add bookmark Highlight - + Highlight Remove highlight - + Remove highlight Search - + Search Exit fullscreen - + Exit fullscreen Fullscreen - + Fullscreen Slide show - + Slide show First page - + First page Previous page - + Previous page Next page - + Next page Last page - + Last page Rotate left - + Rotate left Rotate right - + Rotate right Print - + Print Document info - + Document info @@ -243,7 +243,7 @@ Documents - + Documents @@ -251,43 +251,43 @@ The format is not supported - + The format is not supported Open failed - + Open failed Please check if the file is damaged - + Please check if the file is damaged Conversion failed, please check if the file is damaged - + Conversion failed, please check if the file is damaged Save failed - + Save failed Saved successfully - + Saved successfully Save as - + Save as Invalid file name - + Invalid file name @@ -302,12 +302,12 @@ Drag documents here - + Drag documents here Format supported: %1 - + Format supported: %1 @@ -321,19 +321,19 @@ The bookmark has been removed - + The bookmark has been removed Please select the text - + Please select the text The annotation has been removed - + The annotation has been removed @@ -341,7 +341,7 @@ Encrypted file, please enter the password - + Encrypted file, please enter the password @@ -378,12 +378,12 @@ Select Text - + Select Text Hand Tool - + Hand Tool @@ -391,12 +391,12 @@ Add annotation - + Add annotation Are you sure you want to delete all annotations? - + Are you sure you want to delete all annotations? @@ -404,7 +404,7 @@ Invalid page number - + Invalid page number @@ -412,7 +412,7 @@ Converting - + Converting @@ -420,7 +420,7 @@ Document not saved - + Document not saved @@ -428,7 +428,7 @@ Save the changes to "%1"? - + Save the changes to "%1"? @@ -440,7 +440,7 @@ Discard button - + Discard @@ -464,27 +464,27 @@ Two-Page View - + Two-Page View 1:1 size - + 1:1 size Fit Page - + Fit Page Fit Height - + Fit Height Fit Width - + Fit Width @@ -492,12 +492,12 @@ No search results - + No search results %1 items found - + %1 items found @@ -505,24 +505,24 @@ This document is trying to connect to: - + This document is trying to connect to: If you trust the website, click Allow, otherwise click Block. - + If you trust the website, click Allow, otherwise click Block. Block button - + Block Allow button - + Allow @@ -530,22 +530,22 @@ Thumbnails - + Thumbnails Catalog - + Catalog Bookmarks - + Bookmarks Annotations - + Annotations @@ -568,37 +568,48 @@ Page up - + Page up Page down - + Page down + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Open - + Open Zoom in - + Zoom in Zoom out - + Zoom out Save as - + Save as Print - + Print @@ -608,57 +619,57 @@ Thumbnails - + Thumbnails 1:1 size - + 1:1 size Fit height - + Fit height Fit width - + Fit width Rotate left - + Rotate left Rotate right - + Rotate right Move to the beginning - + Move to the beginning Move to the end - + Move to the end Select text - + Select text Hand tool - + Hand tool Add bookmark - + Add bookmark @@ -668,17 +679,17 @@ Magnifier - + Magnifier Slide show - + Slide show Fullscreen - + Fullscreen @@ -688,42 +699,42 @@ Cut - + Cut Paste - + Paste Undo - + Undo Select all - + Select all Display shortcuts - + Display shortcuts Add annotation - + Add annotation Highlight - + Highlight Search - + Search @@ -736,18 +747,18 @@ Remove annotation - + Remove annotation Remove all - + Remove all Remove bookmark - + Remove bookmark @@ -755,7 +766,7 @@ Page %1 - + Page %1 @@ -763,12 +774,12 @@ It is the first page - + It is the first page It is the last page - + It is the last page @@ -776,12 +787,12 @@ New window - + New window New tab - + New tab @@ -792,32 +803,32 @@ Save as - + Save as Display in file manager - + Display in file manager Magnifer - + Magnifer Tools - + Tools Search - + Search Print - + Print @@ -825,7 +836,7 @@ Thumbnails - + Thumbnails @@ -833,7 +844,7 @@ Input limit reached - + Input limit reached @@ -841,23 +852,23 @@ Document File Path. - + Document File Path. FilePath - + FilePath ThumbnailPath Path. - + ThumbnailPath Path. Generate thumbnail. - + Generate thumbnail. \ No newline at end of file diff --git a/translations/deepin-reader_pam.ts b/translations/deepin-reader_pam.ts index 86a186d5b..9bffa3c81 100644 --- a/translations/deepin-reader_pam.ts +++ b/translations/deepin-reader_pam.ts @@ -618,6 +618,17 @@ Move to the end Mangunguna + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_pl.ts b/translations/deepin-reader_pl.ts index d5c2f1104..3c06da252 100755 --- a/translations/deepin-reader_pl.ts +++ b/translations/deepin-reader_pl.ts @@ -635,6 +635,17 @@ Rotate right Obróć w prawo + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_pt.ts b/translations/deepin-reader_pt.ts index a37ef509d..09e847a55 100755 --- a/translations/deepin-reader_pt.ts +++ b/translations/deepin-reader_pt.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Rodar para a direita + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_pt_BR.ts b/translations/deepin-reader_pt_BR.ts index 1016882f5..561186f0b 100755 --- a/translations/deepin-reader_pt_BR.ts +++ b/translations/deepin-reader_pt_BR.ts @@ -635,6 +635,17 @@ Rotate right Girar à direita + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_ro.ts b/translations/deepin-reader_ro.ts index cc6ef2b96..843275356 100644 --- a/translations/deepin-reader_ro.ts +++ b/translations/deepin-reader_ro.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -266,7 +266,7 @@ Conversion failed, please check if the file is damaged - + Conversion failed, please check if the file is damaged @@ -412,7 +412,7 @@ Converting - + Converting @@ -428,7 +428,7 @@ Save the changes to "%1"? - + Save the changes to "%1"? @@ -505,24 +505,24 @@ This document is trying to connect to: - + This document is trying to connect to: If you trust the website, click Allow, otherwise click Block. - + If you trust the website, click Allow, otherwise click Block. Block button - + Block Allow button - + Allow @@ -635,15 +635,26 @@ Rotate right Rotire dreapta + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning - + Move to the beginning Move to the end - + Move to the end @@ -763,12 +774,12 @@ It is the first page - + It is the first page It is the last page - + It is the last page diff --git a/translations/deepin-reader_ru.ts b/translations/deepin-reader_ru.ts index ba56cba5e..da20dd86c 100755 --- a/translations/deepin-reader_ru.ts +++ b/translations/deepin-reader_ru.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Повернуть вправо + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_sc.ts b/translations/deepin-reader_sc.ts index be6b8812f..9e6a8797c 100644 --- a/translations/deepin-reader_sc.ts +++ b/translations/deepin-reader_sc.ts @@ -618,6 +618,17 @@ Move to the end الانتقال إلى النهاية + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text @@ -827,7 +838,7 @@ Generate thumbnail. - + Generate thumbnail. diff --git a/translations/deepin-reader_si.ts b/translations/deepin-reader_si.ts index 77aef4db5..1e7dffe36 100644 --- a/translations/deepin-reader_si.ts +++ b/translations/deepin-reader_si.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right මැදින් ප්‍රතිලෝකනය කරන්න + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_sk.ts b/translations/deepin-reader_sk.ts index 5a17665fb..ca745a075 100644 --- a/translations/deepin-reader_sk.ts +++ b/translations/deepin-reader_sk.ts @@ -618,6 +618,17 @@ Move to the end Presunúť na koniec + + + Scroll up one line + Posunúť o jeden riadok hore + + + + Scroll down one line + Posunúť o jeden riadok dole + + Select text diff --git a/translations/deepin-reader_sl.ts b/translations/deepin-reader_sl.ts index 0f6df3a9c..3ace350d4 100644 --- a/translations/deepin-reader_sl.ts +++ b/translations/deepin-reader_sl.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Obrni desno + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_sq.ts b/translations/deepin-reader_sq.ts index 045442616..90df9be9a 100755 --- a/translations/deepin-reader_sq.ts +++ b/translations/deepin-reader_sq.ts @@ -635,6 +635,17 @@ Rotate right Rrotulloje djathtas + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_sr.ts b/translations/deepin-reader_sr.ts index e26c65400..a94d4b2ca 100755 --- a/translations/deepin-reader_sr.ts +++ b/translations/deepin-reader_sr.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,15 +635,26 @@ Rotate right Ротирај удесно + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning - + Move to the beginning Move to the end - + Move to the end @@ -763,12 +774,12 @@ It is the first page - + It is the first page It is the last page - + It is the last page diff --git a/translations/deepin-reader_sv.ts b/translations/deepin-reader_sv.ts index aeec07554..75fc329ad 100644 --- a/translations/deepin-reader_sv.ts +++ b/translations/deepin-reader_sv.ts @@ -618,6 +618,17 @@ Move to the end Flytta till slutet + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_sw.ts b/translations/deepin-reader_sw.ts index e503b7d1c..7855a0fba 100644 --- a/translations/deepin-reader_sw.ts +++ b/translations/deepin-reader_sw.ts @@ -618,6 +618,17 @@ Move to the end Tafuta kwenye kipindi cha mwisho + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_ta.ts b/translations/deepin-reader_ta.ts index 6378dbdbc..2d90c6bc4 100644 --- a/translations/deepin-reader_ta.ts +++ b/translations/deepin-reader_ta.ts @@ -618,6 +618,17 @@ Move to the end முடிவத்திற்கு கீழே + + + Scroll up one line + ஒரு வரி மேலே நிலைப்படுத்து + + + + Scroll down one line + ஒரு வரி கீழே நிலைப்படுத்து + + Select text diff --git a/translations/deepin-reader_th.ts b/translations/deepin-reader_th.ts index fba05803c..8e97025be 100644 --- a/translations/deepin-reader_th.ts +++ b/translations/deepin-reader_th.ts @@ -618,6 +618,17 @@ Move to the end ย้ายไปที่สิ้น + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text @@ -827,7 +838,7 @@ Generate thumbnail. - + Generate thumbnail. diff --git a/translations/deepin-reader_tr.ts b/translations/deepin-reader_tr.ts index 2b668e2dc..6a9160719 100755 --- a/translations/deepin-reader_tr.ts +++ b/translations/deepin-reader_tr.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Sağa döndür + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_tzm.ts b/translations/deepin-reader_tzm.ts index a838a0983..0068f5325 100644 --- a/translations/deepin-reader_tzm.ts +++ b/translations/deepin-reader_tzm.ts @@ -618,6 +618,17 @@ Move to the end الانتقال إلى النهاية + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Select text diff --git a/translations/deepin-reader_ug.ts b/translations/deepin-reader_ug.ts index 1088fbb9f..df18deb68 100755 --- a/translations/deepin-reader_ug.ts +++ b/translations/deepin-reader_ug.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right ئوڭغا ئايلاندۇرۇش + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_uk.ts b/translations/deepin-reader_uk.ts index a30c978d1..b1b1e0642 100755 --- a/translations/deepin-reader_uk.ts +++ b/translations/deepin-reader_uk.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -635,6 +635,17 @@ Rotate right Обернути праворуч + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_ur.ts b/translations/deepin-reader_ur.ts index 6be1afdb3..ca607138c 100644 --- a/translations/deepin-reader_ur.ts +++ b/translations/deepin-reader_ur.ts @@ -618,6 +618,17 @@ Move to the end ختم کریں + + + Scroll up one line + ایک لائن اوپر اسکرول کریں + + + + Scroll down one line + ایک لائن نیچے اسکرول کریں + + Select text diff --git a/translations/deepin-reader_vi.ts b/translations/deepin-reader_vi.ts index e4cb85e46..b63156c02 100644 --- a/translations/deepin-reader_vi.ts +++ b/translations/deepin-reader_vi.ts @@ -9,7 +9,7 @@ Document Viewer is a tool for reading document files, supporting %1. - + Document Viewer is a tool for reading document files, supporting %1. @@ -295,7 +295,7 @@ OK button - + OK @@ -303,17 +303,17 @@ Drag documents here - + Drag documents here Format supported: %1 - + Format supported: %1 Select File - + Select File @@ -322,19 +322,19 @@ The bookmark has been removed - + The bookmark has been removed Please select the text - + Please select the text The annotation has been removed - + The annotation has been removed @@ -342,23 +342,23 @@ Encrypted file, please enter the password - + Encrypted file, please enter the password Password - + Password OK button - + OK Wrong password - + Wrong password @@ -366,12 +366,12 @@ Previous - + Previous Next - + Next @@ -379,12 +379,12 @@ Select Text - + Select Text Hand Tool - + Hand Tool @@ -397,7 +397,7 @@ Are you sure you want to delete all annotations? - + Are you sure you want to delete all annotations? @@ -405,7 +405,7 @@ Invalid page number - + Invalid page number @@ -413,7 +413,7 @@ Converting - + Converting @@ -421,7 +421,7 @@ Document not saved - + Document not saved @@ -429,19 +429,19 @@ Save the changes to "%1"? - + Save the changes to "%1"? Cancel button - + Cancel Discard button - + Discard @@ -452,7 +452,7 @@ Cancel - + Cancel @@ -636,6 +636,17 @@ Rotate right xoay phải + + + Scroll up one line + Scroll up one line + + + + Scroll down one line + Scroll down one line + + Move to the beginning diff --git a/translations/deepin-reader_zh_CN.ts b/translations/deepin-reader_zh_CN.ts index fb35c8e66..fa42ac316 100755 --- a/translations/deepin-reader_zh_CN.ts +++ b/translations/deepin-reader_zh_CN.ts @@ -575,6 +575,16 @@ Page down 下一页 + + + Scroll up one line + 上一行 + + + + Scroll down one line + 下一行 + Open diff --git a/translations/deepin-reader_zh_HK.ts b/translations/deepin-reader_zh_HK.ts index 32f8a2360..6c5b04a68 100755 --- a/translations/deepin-reader_zh_HK.ts +++ b/translations/deepin-reader_zh_HK.ts @@ -635,6 +635,17 @@ Rotate right 右旋轉 + + + Scroll up one line + 上一行 + + + + Scroll down one line + 下一行 + + Move to the beginning diff --git a/translations/deepin-reader_zh_TW.ts b/translations/deepin-reader_zh_TW.ts index 6531335d0..809556155 100755 --- a/translations/deepin-reader_zh_TW.ts +++ b/translations/deepin-reader_zh_TW.ts @@ -635,6 +635,17 @@ Rotate right 右旋轉 + + + Scroll up one line + 上一行 + + + + Scroll down one line + 下一行 + + Move to the beginning