Hello community,

here is the log from the commit of package okteta for openSUSE:Factory checked 
in at 2018-10-08 17:49:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/okteta (Old)
 and      /work/SRC/openSUSE:Factory/.okteta.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "okteta"

Mon Oct  8 17:49:49 2018 rev:65 rq:640647 version:0.25.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/okteta/okteta.changes    2018-09-04 
22:57:45.425325940 +0200
+++ /work/SRC/openSUSE:Factory/.okteta.new/okteta.changes       2018-10-08 
17:51:04.182052156 +0200
@@ -1,0 +2,8 @@
+Mon Oct  8 12:25:57 UTC 2018 - wba...@tmo.at
+
+- Update to 0.25.4
+  * Fix blurry cursor pixmaps in HiDPI
+  * Fix broken shadow cursor in HIDPI
+  * Translations improved (ru, sk)
+
+-------------------------------------------------------------------

Old:
----
  okteta-0.25.3.tar.xz

New:
----
  okteta-0.25.4.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ okteta.spec ++++++
--- /var/tmp/diff_new_pack.JOuOf8/_old  2018-10-08 17:51:04.562051672 +0200
+++ /var/tmp/diff_new_pack.JOuOf8/_new  2018-10-08 17:51:04.566051666 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:           okteta
-Version:        0.25.3
+Version:        0.25.4
 Release:        0
 Summary:        Hex Editor
 License:        GPL-2.0-only AND GFDL-1.2-only

++++++ okteta-0.25.3.tar.xz -> okteta-0.25.4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/okteta-0.25.3/gui/abstractbytearraycolumnrenderer.cpp 
new/okteta-0.25.4/gui/abstractbytearraycolumnrenderer.cpp
--- old/okteta-0.25.3/gui/abstractbytearraycolumnrenderer.cpp   2018-09-03 
12:08:15.135547777 +0200
+++ new/okteta-0.25.4/gui/abstractbytearraycolumnrenderer.cpp   2018-10-07 
15:09:45.711121922 +0200
@@ -696,14 +696,15 @@
     const KColorScheme::ForegroundRole foregroundRole =
         mByteTypeColored ? foregroundRoleForChar(byteChar) : 
KColorScheme::NormalText;
     const QBrush brush = colorScheme.foreground(foregroundRole);
-    const QColor& charColor = brush.color();
-    painter->setPen(charColor);
+    QPen pen(brush.color());
+    pen.setJoinStyle(Qt::MiterJoin);
+    painter->setPen(pen);
     if (frameStyle == Frame) {
-        painter->drawRect(0, 0, mByteWidth - 1, lineHeight() - 1);
+        painter->drawRect(QRectF(0.5, 0.5, mByteWidth - 1, lineHeight() - 1));
     } else if (frameStyle == Left) {
-        painter->drawLine(0, 0, 0, lineHeight() - 1);
+        painter->drawLine(QPointF(0.5, 0.5), QPointF(0.5, lineHeight() - 0.5));
     } else {
-        painter->drawLine(mByteWidth - 1, 0, mByteWidth - 1, lineHeight() - 1);
+        painter->drawLine(QPointF(mByteWidth - 0.5, 0.5), QPointF(mByteWidth - 
0.5, lineHeight() - 0.5));
     }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/gui/bytearraycolumnview_p.cpp 
new/okteta-0.25.4/gui/bytearraycolumnview_p.cpp
--- old/okteta-0.25.3/gui/bytearraycolumnview_p.cpp     2018-09-03 
12:08:15.139547771 +0200
+++ new/okteta-0.25.4/gui/bytearraycolumnview_p.cpp     2018-10-07 
15:09:45.715121922 +0200
@@ -633,8 +633,10 @@
 {
     Q_Q(ByteArrayColumnView);
 
+    const PixelX byteWidth = mActiveColumn->byteWidth();
+
     // create mCursorPixmaps
-    mCursorPixmaps->setSize(mActiveColumn->byteWidth(), q->lineHeight());
+    mCursorPixmaps->setSize(byteWidth, q->lineHeight(), q->devicePixelRatio());
 
     const Address index = mTableCursor->validIndex();
 
@@ -653,13 +655,13 @@
     PixelX cursorX;
     PixelX cursorW;
     if (isCursorBehind()) {
-        cursorX = qMax(0, mCursorPixmaps->onPixmap().width() - 
InsertCursorWidth);
+        cursorX = qMax(0, byteWidth - InsertCursorWidth);
         cursorW = InsertCursorWidth;
     } else {
         cursorX = 0;
         cursorW = mOverWrite ? -1 : InsertCursorWidth;
     }
-    mCursorPixmaps->setShape(cursorX, cursorW);
+    mCursorPixmaps->setShape(cursorX, cursorW, q->devicePixelRatio());
 }
 
 void ByteArrayColumnViewPrivate::drawActiveCursor(QPainter* painter)
@@ -691,7 +693,7 @@
     } else {
         painter->drawPixmap(mCursorPixmaps->cursorX(), 0,
                             mBlinkCursorVisible ? mCursorPixmaps->onPixmap() : 
mCursorPixmaps->offPixmap(),
-                            mCursorPixmaps->cursorX(), 0, 
mCursorPixmaps->cursorW(), -1);
+                            mCursorPixmaps->shapeX(), 0, 
mCursorPixmaps->shapeW(), -1);
     }
 
     painter->translate(-x, -y);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/gui/bytearrayrowcolumnrenderer.cpp 
new/okteta-0.25.4/gui/bytearrayrowcolumnrenderer.cpp
--- old/okteta-0.25.3/gui/bytearrayrowcolumnrenderer.cpp        2018-09-03 
12:08:15.139547771 +0200
+++ new/okteta-0.25.4/gui/bytearrayrowcolumnrenderer.cpp        2018-10-07 
15:09:45.715121922 +0200
@@ -845,14 +845,15 @@
     const KColorScheme::ForegroundRole foregroundRole =
         mByteTypeColored ? foregroundRoleForChar(byteChar) : 
KColorScheme::NormalText;
     const QBrush brush = colorScheme.foreground(foregroundRole);
-    const QColor& charColor = brush.color();
-    painter->setPen(charColor);
+    QPen pen(brush.color());
+    pen.setJoinStyle(Qt::MiterJoin);
+    painter->setPen(pen);
     if (frameStyle == Frame) {
-        painter->drawRect(0, 0, mByteWidth - 1, mDigitHeight - 1);
+        painter->drawRect(QRectF(0.5, 0.5, mByteWidth - 1, mDigitHeight - 1));
     } else if (frameStyle == Left) {
-        painter->drawLine(0, 0, 0, mDigitHeight - 1);
+        painter->drawLine(QPointF(0.5, 0.5), QPointF(0.5, mDigitHeight - 0.5));
     } else {
-        painter->drawLine(mByteWidth - 1, 0, mByteWidth - 1, mDigitHeight - 1);
+        painter->drawLine(QPointF(mByteWidth - 0.5, 0), QPointF(mByteWidth - 
0.5, mDigitHeight - 0.5));
     }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/gui/bytearrayrowview_p.cpp 
new/okteta-0.25.4/gui/bytearrayrowview_p.cpp
--- old/okteta-0.25.3/gui/bytearrayrowview_p.cpp        2018-09-03 
12:08:15.139547771 +0200
+++ new/okteta-0.25.4/gui/bytearrayrowview_p.cpp        2018-10-07 
15:09:45.715121922 +0200
@@ -603,8 +603,10 @@
 {
     Q_Q(ByteArrayRowView);
 
+    const PixelX byteWidth = mByteArrayColumn->byteWidth();
+
     // create mCursorPixmaps
-    mCursorPixmaps->setSize(mByteArrayColumn->byteWidth(), 
mByteArrayColumn->digitHeight());
+    mCursorPixmaps->setSize(byteWidth, mByteArrayColumn->digitHeight(), 
q->devicePixelRatio());
 
     const Address index = mTableCursor->validIndex();
 
@@ -623,13 +625,13 @@
     PixelX cursorX;
     PixelX cursorW;
     if (isCursorBehind()) {
-        cursorX = qMax(0, mCursorPixmaps->onPixmap().width() - 
InsertCursorWidth);
+        cursorX = qMax(0, byteWidth - InsertCursorWidth);
         cursorW = InsertCursorWidth;
     } else {
         cursorX = 0;
         cursorW = mOverWrite ? -1 : InsertCursorWidth;
     }
-    mCursorPixmaps->setShape(cursorX, cursorW);
+    mCursorPixmaps->setShape(cursorX, cursorW, q->devicePixelRatio());
 }
 
 void ByteArrayRowViewPrivate::drawActiveCursor(QPainter* painter)
@@ -659,7 +661,7 @@
     } else {
         painter->drawPixmap(mCursorPixmaps->cursorX(), 0,
                             mBlinkCursorVisible ? mCursorPixmaps->onPixmap() : 
mCursorPixmaps->offPixmap(),
-                            mCursorPixmaps->cursorX(), 0, 
mCursorPixmaps->cursorW(), -1);
+                            mCursorPixmaps->shapeX(), 0, 
mCursorPixmaps->shapeW(), -1);
     }
 
     painter->translate(-x, -y);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/gui/kcursor.cpp 
new/okteta-0.25.4/gui/kcursor.cpp
--- old/okteta-0.25.3/gui/kcursor.cpp   2018-09-03 12:08:15.143547767 +0200
+++ new/okteta-0.25.4/gui/kcursor.cpp   2018-10-07 15:09:45.715121922 +0200
@@ -28,18 +28,23 @@
 
 KCursor::~KCursor() = default;
 
-void KCursor::setSize(PixelX Width, PixelY Height)
+void KCursor::setSize(PixelX Width, PixelY Height, qreal devicePixelRatio)
 {
-    if (Width != OnPixmap.width() || Height != OnPixmap.height()) {
-        OnPixmap = QPixmap(Width, Height);
-        OffPixmap = QPixmap(Width, Height);
+    const int scaledWidth = Width * devicePixelRatio;
+    const int scaledHeight = Height * devicePixelRatio;
+    if (scaledWidth != OnPixmap.width() || scaledHeight != OnPixmap.height()) {
+        OnPixmap = QPixmap(scaledWidth, scaledHeight);
+        OffPixmap = QPixmap(scaledWidth, scaledHeight);
     }
+    OnPixmap.setDevicePixelRatio(devicePixelRatio);
+    OffPixmap.setDevicePixelRatio(devicePixelRatio);
 }
 
-void KCursor::setShape(PixelX X, PixelX W)
+void KCursor::setShape(PixelX X, PixelX W, qreal devicePixelRatio)
 {
     CursorX = X;
-    CursorW = W;
+    ShapeX = X * devicePixelRatio;
+    ShapeW = W * devicePixelRatio;
 }
 
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/gui/kcursor.h 
new/okteta-0.25.4/gui/kcursor.h
--- old/okteta-0.25.3/gui/kcursor.h     2018-09-03 12:08:15.143547767 +0200
+++ new/okteta-0.25.4/gui/kcursor.h     2018-10-07 15:09:45.715121922 +0200
@@ -41,29 +41,32 @@
 
 public:
     /** sets size of the full cursor */
-    void setSize(PixelX Width, PixelY Height);
+    void setSize(PixelX Width, PixelY Height, qreal devicePixelRatio);
     /** sets the shape of the cursor to be drawn */
-    void setShape(PixelX X, PixelX W);
+    void setShape(PixelX X, PixelX W, qreal devicePixelRatio);
 
 public: // access
     QPixmap& onPixmap();
     QPixmap& offPixmap();
     PixelX cursorX() const;
-    PixelX cursorW() const;
+    PixelX shapeX() const;
+    PixelX shapeW() const;
 
 protected:
     QPixmap OnPixmap;
     QPixmap OffPixmap;
 
     PixelX CursorX = 0;
-    PixelX CursorW = -1;
+    PixelX ShapeX = -1;
+    PixelX ShapeW = -1;
 };
 
 inline QPixmap& KCursor::onPixmap()  { return OnPixmap; }
 inline QPixmap& KCursor::offPixmap() { return OffPixmap; }
 
 inline PixelX KCursor::cursorX() const { return CursorX; }
-inline PixelX KCursor::cursorW() const { return CursorW; }
+inline PixelX KCursor::shapeX() const { return ShapeX; }
+inline PixelX KCursor::shapeW() const { return ShapeW; }
 
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/es/docs/okteta/index.docbook 
new/okteta-0.25.4/po/es/docs/okteta/index.docbook
--- old/okteta-0.25.3/po/es/docs/okteta/index.docbook   2018-09-03 
12:10:00.783404991 +0200
+++ new/okteta-0.25.4/po/es/docs/okteta/index.docbook   2018-10-07 
15:11:29.023140282 +0200
@@ -1,29 +1,5 @@
 <?xml version="1.0" ?>
 <!DOCTYPE book PUBLIC "-//KDE//DTD DocBook XML V4.5-Based Variant V1.1//EN" 
"dtd/kdedbx45.dtd" [
-  <!ENTITY Friedrich.Kossebau
-"<personname
-><firstname
->Friedrich</firstname
-><othername
->W. H.</othername
-><surname
->Kossebau</surname
-></personname
->">
-  <!ENTITY Friedrich.Kossebau.email "<email
->kosse...@kde.org</email
->">
-  <!ENTITY Alex.Richardson
-"<personname
-><firstname
->Alex</firstname
-><surname
->Richardson</surname
-></personname
->">
-  <!ENTITY Alex.Richardson.email "<email
->arichardson....@gmail.com</email
->">
   <!ENTITY % Spanish "INCLUDE">
   <!ENTITY % addindex "IGNORE">
 ]>
@@ -84,9 +60,9 @@
 >&FDLNotice;</legalnotice>
 
 <date
->2016-07-29</date>
+>2018-03-23</date>
 <releaseinfo
->0.20 (Aplicaciones 16.08)</releaseinfo>
+>&okteta; 0.24.60</releaseinfo>
 
 <abstract>
   <para
@@ -97,8 +73,6 @@
 <keyword
 >KDE</keyword>
 <keyword
->kdesdk</keyword>
-<keyword
 >Okteta</keyword>
 <keyword
 >ver</keyword>
@@ -944,7 +918,6 @@
         <para
 >Nuestro archivo de metadatos sería semejante al siguiente: <screen>
           [Desktop Entry]
-          Encoding=UTF-8
           Icon=arrow-up<co id="icon" />
           Type=Service
           ServiceTypes=KPluginInfo
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/nb/libkasten.po 
new/okteta-0.25.4/po/nb/libkasten.po
--- old/okteta-0.25.3/po/nb/libkasten.po        2018-09-03 12:09:19.863460419 
+0200
+++ new/okteta-0.25.4/po/nb/libkasten.po        2018-10-07 15:10:50.187133686 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: okteta\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-28 06:19+0200\n"
+"POT-Creation-Date: 2018-09-01 11:28+0200\n"
 "PO-Revision-Date: 2010-03-28 13:37+0200\n"
 "Last-Translator: Bjørn Steensrud <bjor...@skogkatt.homelinux.org>\n"
 "Language-Team: Norwegian Bokmål <i18n...@lister.ping.uio.no>\n"
@@ -147,7 +147,7 @@
 msgid "Filesystem"
 msgstr "Filsystem"
 
-#: controllers/documentsystem/filesystembrowser/filesystembrowserview.cpp:94
+#: controllers/documentsystem/filesystembrowser/filesystembrowserview.cpp:93
 #, kde-format
 msgctxt "@action:intoolbar"
 msgid "Folder of Current Document"
@@ -159,7 +159,7 @@
 msgid "Copy As"
 msgstr "Kopier som"
 
-#: controllers/io/copyas/copyascontroller.cpp:108
+#: controllers/io/copyas/copyascontroller.cpp:107
 #, kde-format
 msgctxt "@item There are no encoders."
 msgid "Not available."
@@ -208,7 +208,7 @@
 msgid "Export"
 msgstr "Eksporter"
 
-#: controllers/io/export/exportcontroller.cpp:102
+#: controllers/io/export/exportcontroller.cpp:101
 #, kde-format
 msgctxt "@item There are no exporters."
 msgid "Not available."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/nb/okteta.po 
new/okteta-0.25.4/po/nb/okteta.po
--- old/okteta-0.25.3/po/nb/okteta.po   2018-09-03 12:09:19.867460413 +0200
+++ new/okteta-0.25.4/po/nb/okteta.po   2018-10-07 15:10:50.187133686 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: okteta\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-06-19 06:47+0200\n"
+"POT-Creation-Date: 2018-09-01 11:28+0200\n"
 "PO-Revision-Date: 2014-02-26 09:09+0100\n"
 "Last-Translator: Bjørn Steensrud <bjor...@skogkatt.homelinux.org>\n"
 "Language-Team: Norwegian Bokmål <i18n...@lister.ping.uio.no>\n"
@@ -90,7 +90,7 @@
 msgid "Main Toolbar"
 msgstr "Hovedverktøylinje"
 
-#: program.cpp:96
+#: program.cpp:104
 #, kde-format
 msgid "File(s) to load."
 msgstr ""
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/nn/libkasten.po 
new/okteta-0.25.4/po/nn/libkasten.po
--- old/okteta-0.25.3/po/nn/libkasten.po        2018-09-03 12:09:23.151455972 
+0200
+++ new/okteta-0.25.4/po/nn/libkasten.po        2018-10-07 15:10:54.251134393 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: KDE 4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-28 06:19+0200\n"
+"POT-Creation-Date: 2018-09-01 11:28+0200\n"
 "PO-Revision-Date: 2018-08-25 16:52+0200\n"
 "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
@@ -147,7 +147,7 @@
 msgid "Filesystem"
 msgstr "Filsystem"
 
-#: controllers/documentsystem/filesystembrowser/filesystembrowserview.cpp:94
+#: controllers/documentsystem/filesystembrowser/filesystembrowserview.cpp:93
 #, kde-format
 msgctxt "@action:intoolbar"
 msgid "Folder of Current Document"
@@ -159,7 +159,7 @@
 msgid "Copy As"
 msgstr "Kopier som"
 
-#: controllers/io/copyas/copyascontroller.cpp:108
+#: controllers/io/copyas/copyascontroller.cpp:107
 #, kde-format
 msgctxt "@item There are no encoders."
 msgid "Not available."
@@ -207,7 +207,7 @@
 msgid "Export"
 msgstr "Eksporter"
 
-#: controllers/io/export/exportcontroller.cpp:102
+#: controllers/io/export/exportcontroller.cpp:101
 #, kde-format
 msgctxt "@item There are no exporters."
 msgid "Not available."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/nn/okteta.po 
new/okteta-0.25.4/po/nn/okteta.po
--- old/okteta-0.25.3/po/nn/okteta.po   2018-09-03 12:09:23.155455966 +0200
+++ new/okteta-0.25.4/po/nn/okteta.po   2018-10-07 15:10:54.255134394 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: KDE 4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-06-19 06:47+0200\n"
+"POT-Creation-Date: 2018-09-01 11:28+0200\n"
 "PO-Revision-Date: 2018-01-24 20:14+0100\n"
 "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
@@ -90,7 +90,7 @@
 msgid "Main Toolbar"
 msgstr "Hovudverktøylinje"
 
-#: program.cpp:96
+#: program.cpp:104
 #, kde-format
 msgid "File(s) to load."
 msgstr "Fil(er) som skal opnast."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/ru/libkasten.po 
new/okteta-0.25.4/po/ru/libkasten.po
--- old/okteta-0.25.3/po/ru/libkasten.po        2018-09-03 12:09:30.607445881 
+0200
+++ new/okteta-0.25.4/po/ru/libkasten.po        2018-10-07 15:11:01.155135585 
+0200
@@ -9,19 +9,20 @@
 # Nick Shaforostoff <shaforost...@kde.ru>, 2009.
 # Alexander Potashev <aspotas...@gmail.com>, 2009, 2010.
 # Artem Sereda <overmin...@gmail.com>, 2010.
+# Александр Яворский <yavorsk...@t-rosta.com>, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: khexedit\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-09-01 11:28+0200\n"
-"PO-Revision-Date: 2010-07-29 09:21+0400\n"
-"Last-Translator: Alexander Potashev <aspotas...@gmail.com>\n"
+"PO-Revision-Date: 2018-08-14 09:46+0300\n"
+"Last-Translator: Александр Яворский <yavorsk...@t-rosta.com>\n"
 "Language-Team: Russian <kde-russ...@lists.kde.ru>\n"
 "Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.1\n"
+"X-Generator: Lokalize 2.0\n"
 "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n"
 "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
@@ -102,17 +103,13 @@
 msgstr "Версии"
 
 #: controllers/documentsystem/close/closecontroller.cpp:55
-#, fuzzy, kde-format
-#| msgctxt "@title:menu"
-#| msgid "Close All"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Close All"
 msgstr "Закрыть все"
 
 #: controllers/documentsystem/close/closecontroller.cpp:62
-#, fuzzy, kde-format
-#| msgctxt "@title:menu"
-#| msgid "Close All Other"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Close All Other"
 msgstr "Закрыть все остальные"
@@ -124,17 +121,13 @@
 msgstr "Создать"
 
 #: controllers/documentsystem/creator/creatorcontroller.cpp:69
-#, fuzzy, kde-format
-#| msgctxt "@title:menu create a new empty document"
-#| msgid "Empty"
+#, kde-format
 msgctxt "@item:inmenu create a new empty document"
 msgid "Empty"
 msgstr "Пустой"
 
 #: controllers/documentsystem/creator/creatorcontroller.cpp:80
-#, fuzzy, kde-format
-#| msgctxt "@title:menu create a new document from data in the clipboard"
-#| msgid "From Clipboard"
+#, kde-format
 msgctxt "@item:inmenu create a new document from data in the clipboard"
 msgid "From Clipboard"
 msgstr "Из буфера обмена"
@@ -181,7 +174,7 @@
 #, kde-format
 msgctxt "@item There are no encoders."
 msgid "Not available."
-msgstr "Не доступно."
+msgstr "Недоступно."
 
 #: controllers/io/copyas/copyasdialog.cpp:48
 #, kde-format
@@ -216,7 +209,7 @@
 "selected data will be copied to the clipboard with the settings you entered "
 "above."
 msgstr ""
-"При нажатии на кнопку <interface>Скопировать в буфер обмена</interface> "
+"При нажатии кнопки <interface>Скопировать в буфер обмена</interface> "
 "выделенные данные будут скопированы в буфер обмена."
 
 #: controllers/io/export/exportcontroller.cpp:54
@@ -229,7 +222,7 @@
 #, kde-format
 msgctxt "@item There are no exporters."
 msgid "Not available."
-msgstr "Не доступно."
+msgstr "Недоступно."
 
 #: controllers/io/export/exportdialog.cpp:48
 #: core/system/modelcodecmanager.cpp:121
@@ -257,8 +250,8 @@
 "If you press the <interface>Export to file</interface> button, the selected "
 "data will be copied to a file with the settings you entered above."
 msgstr ""
-"При нажатии на кнопку <interface>Экспорт в файл</interface> выделенные "
-"данные будут скопированы в отдельный файл."
+"При нажатии кнопки <interface>Экспорт в файл</interface> выделенные данные "
+"будут скопированы в отдельный файл."
 
 #: controllers/io/insert/insertcontroller.cpp:60
 #, kde-format
@@ -303,33 +296,25 @@
 "с позиции курсора."
 
 #: controllers/io/synchronize/synchronizecontroller.cpp:48
-#, fuzzy, kde-format
-#| msgctxt "@title:menu"
-#| msgid "Reloa&d"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Reloa&d"
 msgstr "О&бновить"
 
 #: controllers/shellwindow/viewareasplit/viewareasplitcontroller.cpp:56
-#, fuzzy, kde-format
-#| msgctxt "@title:menu"
-#| msgid "Split Vertically"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Split Vertically"
 msgstr "Разделить по вертикали"
 
 #: controllers/shellwindow/viewareasplit/viewareasplitcontroller.cpp:64
-#, fuzzy, kde-format
-#| msgctxt "@title:menu"
-#| msgid "Split Horizontal"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Split Horizontal"
 msgstr "Разделить по горизонтали"
 
 #: controllers/shellwindow/viewareasplit/viewareasplitcontroller.cpp:72
-#, fuzzy, kde-format
-#| msgctxt "@title:menu"
-#| msgid "Close View Area"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Close View Area"
 msgstr "Закрыть область просмотра"
@@ -436,7 +421,7 @@
 #, kde-format
 msgctxt "@info:tooltip"
 msgid "Create a new document with the generated data."
-msgstr "Создать новый документ со сгенерированными данными"
+msgstr "Создать новый документ со сгенерированными данными."
 
 #: gui/system/createdialog.cpp:58
 #, kde-kuit-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/ru/liboktetakasten.po 
new/okteta-0.25.4/po/ru/liboktetakasten.po
--- old/okteta-0.25.3/po/ru/liboktetakasten.po  2018-09-03 12:09:30.611445875 
+0200
+++ new/okteta-0.25.4/po/ru/liboktetakasten.po  2018-10-07 15:11:01.155135585 
+0200
@@ -11,13 +11,14 @@
 # Artem Sereda <overmin...@gmail.com>, 2010.
 # Julia Dronova <juliette....@gmail.com>, 2012.
 # Alexander Lakhin <exclus...@gmail.com>, 2013.
+# Alexander Yavorsky <kekc...@gmail.com>, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: khexedit\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-07-17 06:26+0200\n"
-"PO-Revision-Date: 2015-05-06 09:15+0300\n"
-"Last-Translator: Alexander Potashev <aspotas...@gmail.com>\n"
+"PO-Revision-Date: 2018-10-03 21:27+0300\n"
+"Last-Translator: Alexander Yavorsky <kekc...@gmail.com>\n"
 "Language-Team: Russian <kde-russ...@lists.kde.ru>\n"
 "Language: ru\n"
 "MIME-Version: 1.0\n"
@@ -312,15 +313,12 @@
 msgstr "Число повторений выбранного в таблице байта при вставке."
 
 #: controllers/view/bytetable/bytetableview.cpp:102
-#, fuzzy, kde-format
-#| msgctxt "@info:tooltip"
-#| msgid ""
-#| "Inserts the byte currently selected in the table with the given number."
+#, kde-format
 msgctxt "@info:tooltip"
 msgid ""
 "Insert the currently selected byte in the table repeated the given number of "
 "times."
-msgstr "Выставить выбранный в таблице байт с указанным числом повторений."
+msgstr "Вставить выбранный в таблице байт с указанным числом повторений."
 
 #: controllers/view/charsetconversion/charsetconversiontool.cpp:60
 #, kde-format
@@ -2042,16 +2040,14 @@
 msgstr "Строка ASCII"
 
 #: controllers/view/structures/datatypes/strings/ebcdicstringdata.cpp:151
-#, fuzzy, kde-format
-#| msgid "ASCII char"
+#, kde-format
 msgid "EBCDIC char"
-msgstr "Символ ASCII"
+msgstr "Символ EBCDIC"
 
 #: controllers/view/structures/datatypes/strings/ebcdicstringdata.cpp:161
-#, fuzzy, kde-format
-#| msgid "ASCII string"
+#, kde-format
 msgid "EBCDIC string"
-msgstr "Строка ASCII"
+msgstr "Строка EBCDIC"
 
 #: controllers/view/structures/datatypes/strings/latin1stringdata.cpp:145
 #, kde-format
@@ -2683,25 +2679,19 @@
 msgstr "Профиль просмотра"
 
 #: controllers/view/viewprofiles/viewprofilecontroller.cpp:59
-#, fuzzy, kde-format
-#| msgctxt "@title:menu create a new view profile"
-#| msgid "Create new..."
+#, kde-format
 msgctxt "@action:inmenu create a new view profile"
 msgid "Create new..."
 msgstr "Создать новый..."
 
 #: controllers/view/viewprofiles/viewprofilecontroller.cpp:66
-#, fuzzy, kde-format
-#| msgctxt "@title:menu save changed to the view profile to the base profile"
-#| msgid "Save changes"
+#, kde-format
 msgctxt "@action:inmenu save changed to the view profile to the base profile"
 msgid "Save changes"
 msgstr "Сохранить изменения"
 
 #: controllers/view/viewprofiles/viewprofilecontroller.cpp:73
-#, fuzzy, kde-format
-#| msgctxt "@title:menu reset settings back to those of the saved base profile"
-#| msgid "Reset changes"
+#, kde-format
 msgctxt "@action:inmenu reset settings back to those of the saved base profile"
 msgid "Reset changes"
 msgstr "Отменить изменения"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/sk/libkasten.po 
new/okteta-0.25.4/po/sk/libkasten.po
--- old/okteta-0.25.3/po/sk/libkasten.po        2018-09-03 12:09:34.131441110 
+0200
+++ new/okteta-0.25.4/po/sk/libkasten.po        2018-10-07 15:11:05.071136256 
+0200
@@ -2,19 +2,20 @@
 # Richard Fric <richard.f...@kdemail.net>, 2008, 2009, 2010.
 #  <min...@mail.t-com.sk>, 2010.
 # Milan Basa <min...@mail.t-com.sk>, 2010.
+# Mthw <jari...@hotmail.com>, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: libkasten\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-09-01 11:28+0200\n"
-"PO-Revision-Date: 2012-02-14 13:07+0100\n"
-"Last-Translator: Roman Paholík <wizzar...@gmail.com>\n"
-"Language-Team: Slovak <kde...@linux.sk>\n"
+"PO-Revision-Date: 2018-09-08 15:38+0100\n"
+"Last-Translator: Mthw <jari...@hotmail.com>\n"
+"Language-Team: Slovak <kde-i18n-...@kde.org>\n"
 "Language: sk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.0\n"
+"X-Generator: Lokalize 2.0\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 #: controllers/document/modified/modifiedbarcontroller.cpp:99
@@ -90,17 +91,13 @@
 msgstr "Verzie"
 
 #: controllers/documentsystem/close/closecontroller.cpp:55
-#, fuzzy, kde-format
-#| msgctxt "@title:menu"
-#| msgid "Close All"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Close All"
 msgstr "Zavrieť všetko"
 
 #: controllers/documentsystem/close/closecontroller.cpp:62
-#, fuzzy, kde-format
-#| msgctxt "@title:menu"
-#| msgid "Close All Other"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Close All Other"
 msgstr "Zavrieť všetko ostatné"
@@ -112,17 +109,13 @@
 msgstr "Nový"
 
 #: controllers/documentsystem/creator/creatorcontroller.cpp:69
-#, fuzzy, kde-format
-#| msgctxt "@title:menu create a new empty document"
-#| msgid "Empty"
+#, kde-format
 msgctxt "@item:inmenu create a new empty document"
 msgid "Empty"
 msgstr "Prázdny"
 
 #: controllers/documentsystem/creator/creatorcontroller.cpp:80
-#, fuzzy, kde-format
-#| msgctxt "@title:menu create a new document from data in the clipboard"
-#| msgid "From Clipboard"
+#, kde-format
 msgctxt "@item:inmenu create a new document from data in the clipboard"
 msgid "From Clipboard"
 msgstr "Zo schránky"
@@ -291,33 +284,25 @@
 "pozíciu kurzora."
 
 #: controllers/io/synchronize/synchronizecontroller.cpp:48
-#, fuzzy, kde-format
-#| msgctxt "@title:menu"
-#| msgid "Reloa&d"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Reloa&d"
-msgstr "Znovu načítať(&d)"
+msgstr "Znovu načítať"
 
 #: controllers/shellwindow/viewareasplit/viewareasplitcontroller.cpp:56
-#, fuzzy, kde-format
-#| msgctxt "@title:menu"
-#| msgid "Split Vertically"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Split Vertically"
 msgstr "Rozdeliť vertikálne"
 
 #: controllers/shellwindow/viewareasplit/viewareasplitcontroller.cpp:64
-#, fuzzy, kde-format
-#| msgctxt "@title:menu"
-#| msgid "Split Horizontal"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Split Horizontal"
 msgstr "Rozdeliť horizontálne"
 
 #: controllers/shellwindow/viewareasplit/viewareasplitcontroller.cpp:72
-#, fuzzy, kde-format
-#| msgctxt "@title:menu"
-#| msgid "Close View Area"
+#, kde-format
 msgctxt "@action:inmenu"
 msgid "Close View Area"
 msgstr "Zavrieť zobrazovanú oblasť"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/sk/liboktetakasten.po 
new/okteta-0.25.4/po/sk/liboktetakasten.po
--- old/okteta-0.25.3/po/sk/liboktetakasten.po  2018-09-03 12:09:34.135441104 
+0200
+++ new/okteta-0.25.4/po/sk/liboktetakasten.po  2018-10-07 15:11:05.075136257 
+0200
@@ -2,14 +2,15 @@
 # Richard Fric <richard.f...@kdemail.net>, 2008, 2009.
 # Milan Basa <min...@mail.t-com.sk>, 2010.
 # Roman Paholík <wizzar...@gmail.com>, 2012, 2013, 2014, 2015, 2016.
+# Mthw <jari...@hotmail.com>, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: liboktetakasten\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-07-17 06:26+0200\n"
-"PO-Revision-Date: 2016-11-04 21:31+0100\n"
-"Last-Translator: Roman Paholik <wizzar...@gmail.com>\n"
-"Language-Team: Slovak <kde...@linux.sk>\n"
+"PO-Revision-Date: 2018-09-08 15:37+0100\n"
+"Last-Translator: Mthw <jari...@hotmail.com>\n"
+"Language-Team: Slovak <kde-i18n-...@kde.org>\n"
 "Language: sk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -2623,25 +2624,19 @@
 msgstr "Profil pohľadu"
 
 #: controllers/view/viewprofiles/viewprofilecontroller.cpp:59
-#, fuzzy, kde-format
-#| msgctxt "@title:menu create a new view profile"
-#| msgid "Create new..."
+#, kde-format
 msgctxt "@action:inmenu create a new view profile"
 msgid "Create new..."
 msgstr "Vytvoriť nové..."
 
 #: controllers/view/viewprofiles/viewprofilecontroller.cpp:66
-#, fuzzy, kde-format
-#| msgctxt "@title:menu save changed to the view profile to the base profile"
-#| msgid "Save changes"
+#, kde-format
 msgctxt "@action:inmenu save changed to the view profile to the base profile"
 msgid "Save changes"
 msgstr "Uložiť zmeny"
 
 #: controllers/view/viewprofiles/viewprofilecontroller.cpp:73
-#, fuzzy, kde-format
-#| msgctxt "@title:menu reset settings back to those of the saved base profile"
-#| msgid "Reset changes"
+#, kde-format
 msgctxt "@action:inmenu reset settings back to those of the saved base profile"
 msgid "Reset changes"
 msgstr "Vynulovať zmeny"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/sr/libkasten.po 
new/okteta-0.25.4/po/sr/libkasten.po
--- old/okteta-0.25.3/po/sr/libkasten.po        2018-09-03 12:09:35.611439107 
+0200
+++ new/okteta-0.25.4/po/sr/libkasten.po        2018-10-07 15:11:06.563136511 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libkasten\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-28 06:19+0200\n"
+"POT-Creation-Date: 2018-09-01 11:28+0200\n"
 "PO-Revision-Date: 2010-07-01 20:54+0200\n"
 "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n...@kde.org>\n"
@@ -162,7 +162,7 @@
 msgid "Filesystem"
 msgstr "Фајл систем"
 
-#: controllers/documentsystem/filesystembrowser/filesystembrowserview.cpp:94
+#: controllers/documentsystem/filesystembrowser/filesystembrowserview.cpp:93
 #, kde-format
 msgctxt "@action:intoolbar"
 msgid "Folder of Current Document"
@@ -174,7 +174,7 @@
 msgid "Copy As"
 msgstr "Копирање као"
 
-#: controllers/io/copyas/copyascontroller.cpp:108
+#: controllers/io/copyas/copyascontroller.cpp:107
 #, kde-format
 msgctxt "@item There are no encoders."
 msgid "Not available."
@@ -222,7 +222,7 @@
 msgid "Export"
 msgstr "Извоз"
 
-#: controllers/io/export/exportcontroller.cpp:102
+#: controllers/io/export/exportcontroller.cpp:101
 #, kde-format
 msgctxt "@item There are no exporters."
 msgid "Not available."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/sr/okteta.po 
new/okteta-0.25.4/po/sr/okteta.po
--- old/okteta-0.25.3/po/sr/okteta.po   2018-09-03 12:09:35.611439107 +0200
+++ new/okteta-0.25.4/po/sr/okteta.po   2018-10-07 15:11:06.563136511 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: okteta\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-06-19 06:47+0200\n"
+"POT-Creation-Date: 2018-09-01 11:28+0200\n"
 "PO-Revision-Date: 2018-01-06 09:21+0100\n"
 "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n...@kde.org>\n"
@@ -92,7 +92,7 @@
 msgid "Main Toolbar"
 msgstr "Главна трака"
 
-#: program.cpp:96
+#: program.cpp:104
 #, kde-format
 msgid "File(s) to load."
 msgstr "Фајлови за учитавање."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/sr@ijekavian/libkasten.po 
new/okteta-0.25.4/po/sr@ijekavian/libkasten.po
--- old/okteta-0.25.3/po/sr@ijekavian/libkasten.po      2018-09-03 
12:09:35.927438679 +0200
+++ new/okteta-0.25.4/po/sr@ijekavian/libkasten.po      2018-10-07 
15:11:07.407136655 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libkasten\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-28 06:19+0200\n"
+"POT-Creation-Date: 2018-09-01 11:28+0200\n"
 "PO-Revision-Date: 2010-07-01 20:54+0200\n"
 "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n...@kde.org>\n"
@@ -162,7 +162,7 @@
 msgid "Filesystem"
 msgstr "Фајл систем"
 
-#: controllers/documentsystem/filesystembrowser/filesystembrowserview.cpp:94
+#: controllers/documentsystem/filesystembrowser/filesystembrowserview.cpp:93
 #, kde-format
 msgctxt "@action:intoolbar"
 msgid "Folder of Current Document"
@@ -174,7 +174,7 @@
 msgid "Copy As"
 msgstr "Копирање као"
 
-#: controllers/io/copyas/copyascontroller.cpp:108
+#: controllers/io/copyas/copyascontroller.cpp:107
 #, kde-format
 msgctxt "@item There are no encoders."
 msgid "Not available."
@@ -222,7 +222,7 @@
 msgid "Export"
 msgstr "Извоз"
 
-#: controllers/io/export/exportcontroller.cpp:102
+#: controllers/io/export/exportcontroller.cpp:101
 #, kde-format
 msgctxt "@item There are no exporters."
 msgid "Not available."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/sr@ijekavian/okteta.po 
new/okteta-0.25.4/po/sr@ijekavian/okteta.po
--- old/okteta-0.25.3/po/sr@ijekavian/okteta.po 2018-09-03 12:09:35.927438679 
+0200
+++ new/okteta-0.25.4/po/sr@ijekavian/okteta.po 2018-10-07 15:11:07.407136655 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: okteta\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-06-19 06:47+0200\n"
+"POT-Creation-Date: 2018-09-01 11:28+0200\n"
 "PO-Revision-Date: 2018-01-06 09:21+0100\n"
 "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n...@kde.org>\n"
@@ -92,7 +92,7 @@
 msgid "Main Toolbar"
 msgstr "Главна трака"
 
-#: program.cpp:96
+#: program.cpp:104
 #, kde-format
 msgid "File(s) to load."
 msgstr "Фајлови за учитавање."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/sr@ijekavianlatin/libkasten.po 
new/okteta-0.25.4/po/sr@ijekavianlatin/libkasten.po
--- old/okteta-0.25.3/po/sr@ijekavianlatin/libkasten.po 2018-09-03 
12:09:38.187435618 +0200
+++ new/okteta-0.25.4/po/sr@ijekavianlatin/libkasten.po 2018-10-07 
15:11:09.715137048 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libkasten\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-28 06:19+0200\n"
+"POT-Creation-Date: 2018-09-01 11:28+0200\n"
 "PO-Revision-Date: 2010-07-01 20:54+0200\n"
 "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n...@kde.org>\n"
@@ -162,7 +162,7 @@
 msgid "Filesystem"
 msgstr "Fajl sistem"
 
-#: controllers/documentsystem/filesystembrowser/filesystembrowserview.cpp:94
+#: controllers/documentsystem/filesystembrowser/filesystembrowserview.cpp:93
 #, kde-format
 msgctxt "@action:intoolbar"
 msgid "Folder of Current Document"
@@ -174,7 +174,7 @@
 msgid "Copy As"
 msgstr "Kopiranje kao"
 
-#: controllers/io/copyas/copyascontroller.cpp:108
+#: controllers/io/copyas/copyascontroller.cpp:107
 #, kde-format
 msgctxt "@item There are no encoders."
 msgid "Not available."
@@ -222,7 +222,7 @@
 msgid "Export"
 msgstr "Izvoz"
 
-#: controllers/io/export/exportcontroller.cpp:102
+#: controllers/io/export/exportcontroller.cpp:101
 #, kde-format
 msgctxt "@item There are no exporters."
 msgid "Not available."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/sr@ijekavianlatin/okteta.po 
new/okteta-0.25.4/po/sr@ijekavianlatin/okteta.po
--- old/okteta-0.25.3/po/sr@ijekavianlatin/okteta.po    2018-09-03 
12:09:38.187435618 +0200
+++ new/okteta-0.25.4/po/sr@ijekavianlatin/okteta.po    2018-10-07 
15:11:09.715137048 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: okteta\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-06-19 06:47+0200\n"
+"POT-Creation-Date: 2018-09-01 11:28+0200\n"
 "PO-Revision-Date: 2018-01-06 09:21+0100\n"
 "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n...@kde.org>\n"
@@ -92,7 +92,7 @@
 msgid "Main Toolbar"
 msgstr "Glavna traka"
 
-#: program.cpp:96
+#: program.cpp:104
 #, kde-format
 msgid "File(s) to load."
 msgstr "Fajlovi za učitavanje."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/sr@latin/libkasten.po 
new/okteta-0.25.4/po/sr@latin/libkasten.po
--- old/okteta-0.25.3/po/sr@latin/libkasten.po  2018-09-03 12:09:38.871434691 
+0200
+++ new/okteta-0.25.4/po/sr@latin/libkasten.po  2018-10-07 15:11:09.875137075 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: libkasten\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-05-28 06:19+0200\n"
+"POT-Creation-Date: 2018-09-01 11:28+0200\n"
 "PO-Revision-Date: 2010-07-01 20:54+0200\n"
 "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n...@kde.org>\n"
@@ -162,7 +162,7 @@
 msgid "Filesystem"
 msgstr "Fajl sistem"
 
-#: controllers/documentsystem/filesystembrowser/filesystembrowserview.cpp:94
+#: controllers/documentsystem/filesystembrowser/filesystembrowserview.cpp:93
 #, kde-format
 msgctxt "@action:intoolbar"
 msgid "Folder of Current Document"
@@ -174,7 +174,7 @@
 msgid "Copy As"
 msgstr "Kopiranje kao"
 
-#: controllers/io/copyas/copyascontroller.cpp:108
+#: controllers/io/copyas/copyascontroller.cpp:107
 #, kde-format
 msgctxt "@item There are no encoders."
 msgid "Not available."
@@ -222,7 +222,7 @@
 msgid "Export"
 msgstr "Izvoz"
 
-#: controllers/io/export/exportcontroller.cpp:102
+#: controllers/io/export/exportcontroller.cpp:101
 #, kde-format
 msgctxt "@item There are no exporters."
 msgid "Not available."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/sr@latin/okteta.po 
new/okteta-0.25.4/po/sr@latin/okteta.po
--- old/okteta-0.25.3/po/sr@latin/okteta.po     2018-09-03 12:09:38.871434691 
+0200
+++ new/okteta-0.25.4/po/sr@latin/okteta.po     2018-10-07 15:11:09.875137075 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: okteta\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-06-19 06:47+0200\n"
+"POT-Creation-Date: 2018-09-01 11:28+0200\n"
 "PO-Revision-Date: 2018-01-06 09:21+0100\n"
 "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n...@kde.org>\n"
@@ -92,7 +92,7 @@
 msgid "Main Toolbar"
 msgstr "Glavna traka"
 
-#: program.cpp:96
+#: program.cpp:104
 #, kde-format
 msgid "File(s) to load."
 msgstr "Fajlovi za učitavanje."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/zh_CN/libkasten.po 
new/okteta-0.25.4/po/zh_CN/libkasten.po
--- old/okteta-0.25.3/po/zh_CN/libkasten.po     2018-09-03 12:09:51.371417755 
+0200
+++ new/okteta-0.25.4/po/zh_CN/libkasten.po     2018-10-07 15:11:20.911138935 
+0200
@@ -10,8 +10,8 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-09-01 11:28+0200\n"
-"PO-Revision-Date: 2018-08-30 13:19\n"
-"Last-Translator: guoyunhebrave <yunhe....@protonmail.com>\n"
+"PO-Revision-Date: 2018-09-28 19:54\n"
+"Last-Translator: guoyunhe <yunhe....@protonmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/zh_CN/liboktetacore.po 
new/okteta-0.25.4/po/zh_CN/liboktetacore.po
--- old/okteta-0.25.3/po/zh_CN/liboktetacore.po 2018-09-03 12:09:51.371417755 
+0200
+++ new/okteta-0.25.4/po/zh_CN/liboktetacore.po 2018-10-07 15:11:20.911138935 
+0200
@@ -8,8 +8,8 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-05-28 06:19+0200\n"
-"PO-Revision-Date: 2018-08-30 13:19\n"
-"Last-Translator: guoyunhebrave <yunhe....@protonmail.com>\n"
+"PO-Revision-Date: 2018-09-28 19:54\n"
+"Last-Translator: guoyunhe <yunhe....@protonmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/zh_CN/liboktetagui.po 
new/okteta-0.25.4/po/zh_CN/liboktetagui.po
--- old/okteta-0.25.3/po/zh_CN/liboktetagui.po  2018-09-03 12:09:51.375417750 
+0200
+++ new/okteta-0.25.4/po/zh_CN/liboktetagui.po  2018-10-07 15:11:20.911138935 
+0200
@@ -7,8 +7,8 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-05-28 06:19+0200\n"
-"PO-Revision-Date: 2018-08-30 13:19\n"
-"Last-Translator: guoyunhebrave <yunhe....@protonmail.com>\n"
+"PO-Revision-Date: 2018-09-28 19:54\n"
+"Last-Translator: guoyunhe <yunhe....@protonmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/zh_CN/liboktetakasten.po 
new/okteta-0.25.4/po/zh_CN/liboktetakasten.po
--- old/okteta-0.25.3/po/zh_CN/liboktetakasten.po       2018-09-03 
12:09:51.375417750 +0200
+++ new/okteta-0.25.4/po/zh_CN/liboktetakasten.po       2018-10-07 
15:11:20.915138936 +0200
@@ -10,8 +10,8 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-07-17 06:26+0200\n"
-"PO-Revision-Date: 2018-08-30 13:19\n"
-"Last-Translator: guoyunhebrave <yunhe....@protonmail.com>\n"
+"PO-Revision-Date: 2018-09-28 19:54\n"
+"Last-Translator: guoyunhe <yunhe....@protonmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/zh_CN/okteta.po 
new/okteta-0.25.4/po/zh_CN/okteta.po
--- old/okteta-0.25.3/po/zh_CN/okteta.po        2018-09-03 12:09:51.371417755 
+0200
+++ new/okteta-0.25.4/po/zh_CN/okteta.po        2018-10-07 15:11:20.911138935 
+0200
@@ -11,8 +11,8 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-09-01 11:28+0200\n"
-"PO-Revision-Date: 2018-08-30 13:19\n"
-"Last-Translator: guoyunhebrave <yunhe....@protonmail.com>\n"
+"PO-Revision-Date: 2018-09-28 19:54\n"
+"Last-Translator: guoyunhe <yunhe....@protonmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/po/zh_CN/oktetapart.po 
new/okteta-0.25.4/po/zh_CN/oktetapart.po
--- old/okteta-0.25.3/po/zh_CN/oktetapart.po    2018-09-03 12:09:51.375417750 
+0200
+++ new/okteta-0.25.4/po/zh_CN/oktetapart.po    2018-10-07 15:11:20.911138935 
+0200
@@ -4,8 +4,8 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-05-28 06:19+0200\n"
-"PO-Revision-Date: 2018-08-30 13:19\n"
-"Last-Translator: guoyunhebrave <yunhe....@protonmail.com>\n"
+"PO-Revision-Date: 2018-09-28 19:54\n"
+"Last-Translator: guoyunhe <yunhe....@protonmail.com>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.3/program/about.cpp 
new/okteta-0.25.4/program/about.cpp
--- old/okteta-0.25.3/program/about.cpp 2018-09-03 12:08:15.211547675 +0200
+++ new/okteta-0.25.4/program/about.cpp 2018-10-07 15:09:45.763121932 +0200
@@ -28,7 +28,7 @@
 OktetaAboutData::OktetaAboutData()
     : KAboutData(QStringLiteral("okteta"),
                  i18n("Okteta"), // name
-                 QStringLiteral("0.25.3"),
+                 QStringLiteral("0.25.4"),
                  i18n("Hex editor"), // description
                  KAboutLicense::GPL_V2,
                  i18n("Copyright 2006-2018 Friedrich W. H. Kossebau"), // 
copyright


Reply via email to