Hello community,

here is the log from the commit of package okteta for openSUSE:Factory checked 
in at 2019-01-03 18:07:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/okteta (Old)
 and      /work/SRC/openSUSE:Factory/.okteta.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "okteta"

Thu Jan  3 18:07:06 2019 rev:66 rq:662264 version:0.25.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/okteta/okteta.changes    2018-10-08 
17:51:04.182052156 +0200
+++ /work/SRC/openSUSE:Factory/.okteta.new.28833/okteta.changes 2019-01-03 
18:07:08.324113133 +0100
@@ -1,0 +2,8 @@
+Mon Dec 31 09:00:23 UTC 2018 - [email protected]
+
+- Update to 0.25.5
+  * Add option to disable build of KParts plugin, Kasten libs, or
+    program
+  * Translations improved (fi, id, ru, zh_CN)
+
+-------------------------------------------------------------------

Old:
----
  okteta-0.25.4.tar.xz

New:
----
  okteta-0.25.5.tar.xz

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

Other differences:
------------------
++++++ okteta.spec ++++++
--- /var/tmp/diff_new_pack.ZoA812/_old  2019-01-03 18:07:08.836112678 +0100
+++ /var/tmp/diff_new_pack.ZoA812/_new  2019-01-03 18:07:08.840112675 +0100
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:           okteta
-Version:        0.25.4
+Version:        0.25.5
 Release:        0
 Summary:        Hex Editor
 License:        GPL-2.0-only AND GFDL-1.2-only

++++++ okteta-0.25.4.tar.xz -> okteta-0.25.5.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.4/CMakeLists.txt 
new/okteta-0.25.5/CMakeLists.txt
--- old/okteta-0.25.4/CMakeLists.txt    2018-10-07 15:11:51.495143930 +0200
+++ new/okteta-0.25.5/CMakeLists.txt    2018-12-31 04:26:10.815893983 +0100
@@ -20,6 +20,7 @@
 # CMake macros
 include(FeatureSummary)
 include(GenerateExportHeader)
+include(CMakeDependentOption)
 if(BUILD_TESTING)
   include(ECMAddTests)
 endif()
@@ -40,46 +41,69 @@
 endif()
 
 option(BUILD_DESIGNERPLUGIN "Build the Designer plugin." ON)
+add_feature_info(DESIGNERPLUGIN ${BUILD_DESIGNERPLUGIN} "Qt Designer plugin")
+option(BUILD_OKTETAKASTENLIBS "Build the Okteta Kasten libraries." ON)
+add_feature_info(OKTETAKASTENLIBS ${BUILD_OKTETAKASTENLIBS} "Okteta Kasten 
libraries")
+
+cmake_dependent_option(BUILD_KPARTSPLUGIN "Build the KParts plugin." ON 
"BUILD_OKTETAKASTENLIBS" OFF)
+add_feature_info(KPARTSPLUGIN ${BUILD_KPARTSPLUGIN} "KParts plugin")
+cmake_dependent_option(BUILD_DESKTOPPROGRAM "Build the program." ON 
"BUILD_OKTETAKASTENLIBS" OFF)
+add_feature_info(DESKTOPPROGRAM ${BUILD_DESKTOPPROGRAM} "Program")
 
+set(REQUIRED_QT_VERSION "5.9.0")
+set(ADDITIONAL_REQUIRED_QT_COMPONENTS)
 if(BUILD_TESTING)
-    set(ADDITIONAL_REQUIRED_QT_COMPONENTS Test)
+    list(APPEND ADDITIONAL_REQUIRED_QT_COMPONENTS Test)
 endif()
 if( BUILD_DESIGNERPLUGIN )
     list(APPEND ADDITIONAL_REQUIRED_QT_COMPONENTS UiPlugin)
 endif()
-set(REQUIRED_QT_VERSION "5.9.0")
+if( BUILD_OKTETAKASTENLIBS )
+    list(APPEND ADDITIONAL_REQUIRED_QT_COMPONENTS
+        Network
+        PrintSupport
+        Qml
+        Script
+        ScriptTools
+        Xml
+    )
+endif()
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED
     COMPONENTS
     Core
-    Network
-    PrintSupport
-    Qml
-    Script
-    ScriptTools
     Widgets
-    Xml
     ${ADDITIONAL_REQUIRED_QT_COMPONENTS}
 )
 
 set(REQUIRED_KF5_VERSION "5.38.0")
+set(ADDITIONAL_REQUIRED_KF_COMPONENTS)
+if( BUILD_OKTETAKASTENLIBS )
+    list(APPEND ADDITIONAL_REQUIRED_KF_COMPONENTS
+        Bookmarks
+        Completion
+        IconThemes
+        KCMUtils
+        KIO
+        NewStuff
+        Parts
+        Service
+        WidgetsAddons
+        XmlGui
+    )
+endif()
+if( BUILD_DESKTOPPROGRAM )
+    list(APPEND ADDITIONAL_REQUIRED_KF_COMPONENTS
+        Crash
+        DBusAddons
+        DocTools
+    )
+endif()
 find_package(KF5 ${REQUIRED_KF5_VERSION} REQUIRED
     COMPONENTS
-    Bookmarks
     Codecs
-    Completion
     ConfigWidgets
-    Crash
-    DBusAddons
-    DocTools
-    IconThemes
     I18n
-    KCMUtils
-    KIO
-    NewStuff
-    Parts
-    Service
-    WidgetsAddons
-    XmlGui
+    ${ADDITIONAL_REQUIRED_KF_COMPONENTS}
 )
 
 find_package(Qca-qt5 2.1.0)
@@ -102,7 +126,9 @@
 
 # helper libs
 add_subdirectory( libs )
-add_subdirectory( doc )
+if( BUILD_DESKTOPPROGRAM )
+    add_subdirectory( doc )
+endif()
 
 set( OKTETALIBS_MAJOR_VERSION 0 )
 set( OKTETALIBS_MINOR_VERSION 9 )
@@ -124,13 +150,19 @@
 endif()
 
 # Okteta Kasten components
-add_subdirectory( kasten )
+if( BUILD_OKTETAKASTENLIBS )
+    add_subdirectory( kasten )
+endif()
 # special mimetypes
-add_subdirectory( mimetypes )
+if( BUILD_OKTETAKASTENLIBS )
+    add_subdirectory( mimetypes )
+endif()
 
 # programs and parts for desktop
 add_subdirectory( parts )
-add_subdirectory( program )
+if( BUILD_DESKTOPPROGRAM )
+    add_subdirectory( program )
+endif()
 
 feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.4/libs/CMakeLists.txt 
new/okteta-0.25.5/libs/CMakeLists.txt
--- old/okteta-0.25.4/libs/CMakeLists.txt       2018-10-07 15:09:45.747121928 
+0200
+++ new/okteta-0.25.5/libs/CMakeLists.txt       2018-12-31 04:25:18.715895665 
+0100
@@ -1 +1,3 @@
-add_subdirectory( kasten )
+if( BUILD_OKTETAKASTENLIBS )
+    add_subdirectory( kasten )
+endif()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.4/mimetypes/okteta.xml 
new/okteta-0.25.5/mimetypes/okteta.xml
--- old/okteta-0.25.4/mimetypes/okteta.xml      2018-10-07 15:09:45.763121932 
+0200
+++ new/okteta-0.25.5/mimetypes/okteta.xml      2018-12-31 04:25:18.743895664 
+0100
@@ -126,6 +126,7 @@
     <comment xml:lang="pl">Dane zakodowane Base64</comment>
     <comment xml:lang="pt">Dados codificados em Base64</comment>
     <comment xml:lang="pt_BR">Dados codificados Base64</comment>
+    <comment xml:lang="ru">Данные в формате Base64</comment>
     <comment xml:lang="sk">Dáta zakódované Base64</comment>
     <comment xml:lang="sl">Podatki kodirani z Base64</comment>
     <comment xml:lang="sr">база64 кодирани подаци</comment>
@@ -162,6 +163,7 @@
     <comment xml:lang="pl">Dane zakodowane Base32</comment>
     <comment xml:lang="pt">Dados codificados em Base32</comment>
     <comment xml:lang="pt_BR">Dados codificados Base32</comment>
+    <comment xml:lang="ru">Данные в формате Base32</comment>
     <comment xml:lang="sk">Dáta zakódované Base32</comment>
     <comment xml:lang="sl">Podatki kodirani z Base32</comment>
     <comment xml:lang="sr">база32 кодирани подаци</comment>
@@ -236,6 +238,7 @@
     <comment xml:lang="pl">Dane zakodowane Ascii85</comment>
     <comment xml:lang="pt">Dados codificados em Ascii85</comment>
     <comment xml:lang="pt_BR">Dados codificados Ascii85</comment>
+    <comment xml:lang="ru">Данные в формате Ascii85</comment>
     <comment xml:lang="sk">Dáta zakódované Ascii85</comment>
     <comment xml:lang="sl">Podatki kodirani z Ascii85</comment>
     <comment xml:lang="sr">аски‑85 кодирани подаци</comment>
@@ -274,6 +277,7 @@
     <comment xml:lang="pl">Plik Uuencoded</comment>
     <comment xml:lang="pt">Ficheiro codificado com UUencode</comment>
     <comment xml:lang="pt_BR">Arquivo Uuencoded</comment>
+    <comment xml:lang="ru">Данные в формате UUE</comment>
     <comment xml:lang="sk">Uuencoded súbor</comment>
     <comment xml:lang="sl">Datoteka Uuencoded</comment>
     <comment xml:lang="sr">уу‑кодни фајл</comment>
@@ -315,6 +319,7 @@
     <comment xml:lang="pl">Plik Xxencoded</comment>
     <comment xml:lang="pt">Ficheiro codificado com Xxencode</comment>
     <comment xml:lang="pt_BR">Arquivo Xxencoded</comment>
+    <comment xml:lang="ru">Данные в формате XXE</comment>
     <comment xml:lang="sk">Xxencoded súbor</comment>
     <comment xml:lang="sl">Datoteka Xxencoded</comment>
     <comment xml:lang="sr">иксикс-кодни фајл</comment>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.4/parts/CMakeLists.txt 
new/okteta-0.25.5/parts/CMakeLists.txt
--- old/okteta-0.25.4/parts/CMakeLists.txt      2018-10-07 15:09:45.763121932 
+0200
+++ new/okteta-0.25.5/parts/CMakeLists.txt      2018-12-31 04:25:18.743895664 
+0100
@@ -1 +1,3 @@
-add_subdirectory( kpart )
+if( BUILD_KPARTSPLUGIN )
+    add_subdirectory( kpart )
+endif()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.4/po/fi/liboktetakasten.po 
new/okteta-0.25.5/po/fi/liboktetakasten.po
--- old/okteta-0.25.4/po/fi/liboktetakasten.po  2018-10-07 15:10:27.543129672 
+0200
+++ new/okteta-0.25.5/po/fi/liboktetakasten.po  2018-12-31 04:25:37.843895047 
+0100
@@ -1,6 +1,7 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 # Lasse Liehu <[email protected]>, 2011, 2012, 2013, 2014, 2015.
+# Tommi Nieminen <[email protected]>, 2018.
 #
 # KDE Finnish translation sprint participants:
 # Author: Artnay
@@ -10,8 +11,8 @@
 "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: 2015-07-12 12:22+0200\n"
-"Last-Translator: Lasse Liehu <[email protected]>\n"
+"PO-Revision-Date: 2018-12-04 12:24+0200\n"
+"Last-Translator: Tommi Nieminen <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
 "Language: fi\n"
 "MIME-Version: 1.0\n"
@@ -1960,16 +1961,14 @@
 msgstr "ASCII-merkkijono"
 
 #: controllers/view/structures/datatypes/strings/ebcdicstringdata.cpp:151
-#, fuzzy, kde-format
-#| msgid "ASCII char"
+#, kde-format
 msgid "EBCDIC char"
-msgstr "ASCII-merkki"
+msgstr "EBCDIC-merkki"
 
 #: controllers/view/structures/datatypes/strings/ebcdicstringdata.cpp:161
-#, fuzzy, kde-format
-#| msgid "ASCII string"
+#, kde-format
 msgid "EBCDIC string"
-msgstr "ASCII-merkkijono"
+msgstr "EBCDIC-merkkijono"
 
 #: controllers/view/structures/datatypes/strings/latin1stringdata.cpp:145
 #, kde-format
@@ -2598,25 +2597,19 @@
 msgstr "Näkymäprofiili"
 
 #: 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 "Luo uusi…"
 
 #: 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 "Tallenna muutokset"
 
 #: 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 "Nollaa muutokset"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.4/po/id/libkasten.po 
new/okteta-0.25.5/po/id/libkasten.po
--- old/okteta-0.25.4/po/id/libkasten.po        2018-10-07 15:10:36.527131278 
+0200
+++ new/okteta-0.25.5/po/id/libkasten.po        2018-12-31 04:25:41.943894915 
+0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-09-01 11:28+0200\n"
-"PO-Revision-Date: 2018-06-13 13:01+0700\n"
+"PO-Revision-Date: 2018-11-11 06:44+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -330,7 +330,7 @@
 #, kde-format
 msgctxt "@item There are no windows."
 msgid "None."
-msgstr "Tidak ada."
+msgstr "Nihil."
 
 #: controllers/view/version/versioncontroller.cpp:46
 #, kde-format
@@ -359,7 +359,7 @@
 #: controllers/view/zoom/zoomcontroller.cpp:50
 #, kde-format
 msgid "Zoom"
-msgstr "Perbesaran"
+msgstr "Zum "
 
 #: controllers/view/zoom/zoomcontroller.cpp:59
 #, kde-format
@@ -386,7 +386,7 @@
 #, kde-format
 msgctxt "@info:tooltip"
 msgid "Zoom: %1%"
-msgstr "Perbesar: %1%"
+msgstr "Zum: %1%"
 
 #: core/system/documentsyncmanager.cpp:123
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.4/po/ru/okteta.po 
new/okteta-0.25.5/po/ru/okteta.po
--- old/okteta-0.25.4/po/ru/okteta.po   2018-10-07 15:11:01.155135585 +0200
+++ new/okteta-0.25.5/po/ru/okteta.po   2018-12-31 04:25:51.683894601 +0100
@@ -7,7 +7,7 @@
 # Nickolai Shaforostoff <[email protected]>, 2004.
 # Andrey Cherepanov <[email protected]>, 2009.
 # Nick Shaforostoff <[email protected]>, 2009.
-# Alexander Potashev <[email protected]>, 2009, 2011, 2015.
+# Alexander Potashev <[email protected]>, 2009, 2011, 2015, 2018.
 # Artem Sereda <[email protected]>, 2010.
 # Yuri Efremov <[email protected]>, 2013.
 # Alexander Lakhin <[email protected]>, 2014.
@@ -16,7 +16,7 @@
 "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: 2015-05-06 08:33+0300\n"
+"PO-Revision-Date: 2018-10-08 02:45+0300\n"
 "Last-Translator: Alexander Potashev <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
 "Language: ru\n"
@@ -52,10 +52,9 @@
 msgstr "Шестнадцатеричный редактор"
 
 #: about.cpp:34
-#, fuzzy, kde-format
-#| msgid "Copyright 2006-2015 Friedrich W. H. Kossebau"
+#, kde-format
 msgid "Copyright 2006-2018 Friedrich W. H. Kossebau"
-msgstr "© Friedrich W. H. Kossebau, 2006-2015"
+msgstr "© Friedrich W. H. Kossebau, 2006-2018"
 
 #: about.cpp:35
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.4/po/uk/libkasten.po 
new/okteta-0.25.5/po/uk/libkasten.po
--- old/okteta-0.25.4/po/uk/libkasten.po        2018-10-07 15:11:16.627138217 
+0200
+++ new/okteta-0.25.5/po/uk/libkasten.po        2018-12-31 04:25:57.159894424 
+0100
@@ -1,5 +1,5 @@
 # Translation of libkasten.po to Ukrainian
-# Copyright (C) 2009-2010 This_file_is_part_of_KDE
+# Copyright (C) 2009-2018 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.4/po/uk/liboktetakasten.po 
new/okteta-0.25.5/po/uk/liboktetakasten.po
--- old/okteta-0.25.4/po/uk/liboktetakasten.po  2018-10-07 15:11:16.635138218 
+0200
+++ new/okteta-0.25.5/po/uk/liboktetakasten.po  2018-12-31 04:25:57.159894424 
+0100
@@ -1,5 +1,5 @@
 # Translation of liboktetakasten.po to Ukrainian
-# Copyright (C) 2009-2016 This_file_is_part_of_KDE
+# Copyright (C) 2009-2018 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.4/po/zh_CN/libkasten.po 
new/okteta-0.25.5/po/zh_CN/libkasten.po
--- old/okteta-0.25.4/po/zh_CN/libkasten.po     2018-10-07 15:11:20.911138935 
+0200
+++ new/okteta-0.25.5/po/zh_CN/libkasten.po     2018-12-31 04:25:59.391894352 
+0100
@@ -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-09-28 19:54\n"
-"Last-Translator: guoyunhe <[email protected]>\n"
+"PO-Revision-Date: 2018-12-27 07:43\n"
+"Last-Translator: guoyunhe <[email protected]>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
@@ -99,13 +99,13 @@
 #, kde-format
 msgctxt "@action:inmenu"
 msgid "Close All"
-msgstr ""
+msgstr "关闭全部文档"
 
 #: controllers/documentsystem/close/closecontroller.cpp:62
 #, kde-format
 msgctxt "@action:inmenu"
 msgid "Close All Other"
-msgstr ""
+msgstr "关闭其它"
 
 #: controllers/documentsystem/creator/creatorcontroller.cpp:60
 #, kde-format
@@ -117,13 +117,13 @@
 #, kde-format
 msgctxt "@item:inmenu create a new empty document"
 msgid "Empty"
-msgstr ""
+msgstr "空"
 
 #: controllers/documentsystem/creator/creatorcontroller.cpp:80
 #, kde-format
 msgctxt "@item:inmenu create a new document from data in the clipboard"
 msgid "From Clipboard"
-msgstr ""
+msgstr "从剪贴板"
 
 #. i18nc("@title:column Id of the version",         "Id") :
 #: controllers/documentsystem/documentsbrowser/documentlistmodel.cpp:128
@@ -291,25 +291,25 @@
 #, kde-format
 msgctxt "@action:inmenu"
 msgid "Reloa&d"
-msgstr ""
+msgstr "重新装载(&D)"
 
 #: controllers/shellwindow/viewareasplit/viewareasplitcontroller.cpp:56
 #, kde-format
 msgctxt "@action:inmenu"
 msgid "Split Vertically"
-msgstr ""
+msgstr "垂直分割"
 
 #: controllers/shellwindow/viewareasplit/viewareasplitcontroller.cpp:64
 #, kde-format
 msgctxt "@action:inmenu"
 msgid "Split Horizontal"
-msgstr ""
+msgstr "水平分割"
 
 #: controllers/shellwindow/viewareasplit/viewareasplitcontroller.cpp:72
 #, kde-format
 msgctxt "@action:inmenu"
 msgid "Close View Area"
-msgstr ""
+msgstr "关闭查看区域"
 
 #: controllers/shellwindow/viewlistmenu/viewlistmenucontroller.cpp:93
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.4/po/zh_CN/liboktetacore.po 
new/okteta-0.25.5/po/zh_CN/liboktetacore.po
--- old/okteta-0.25.4/po/zh_CN/liboktetacore.po 2018-10-07 15:11:20.911138935 
+0200
+++ new/okteta-0.25.5/po/zh_CN/liboktetacore.po 2018-12-31 04:25:59.395894352 
+0100
@@ -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-09-28 19:54\n"
-"Last-Translator: guoyunhe <[email protected]>\n"
+"PO-Revision-Date: 2018-12-27 07:43\n"
+"Last-Translator: guoyunhe <[email protected]>\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.4/po/zh_CN/liboktetagui.po 
new/okteta-0.25.5/po/zh_CN/liboktetagui.po
--- old/okteta-0.25.4/po/zh_CN/liboktetagui.po  2018-10-07 15:11:20.911138935 
+0200
+++ new/okteta-0.25.5/po/zh_CN/liboktetagui.po  2018-12-31 04:25:59.391894352 
+0100
@@ -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-09-28 19:54\n"
-"Last-Translator: guoyunhe <[email protected]>\n"
+"PO-Revision-Date: 2018-12-27 07:43\n"
+"Last-Translator: guoyunhe <[email protected]>\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.4/po/zh_CN/liboktetakasten.po 
new/okteta-0.25.5/po/zh_CN/liboktetakasten.po
--- old/okteta-0.25.4/po/zh_CN/liboktetakasten.po       2018-10-07 
15:11:20.915138936 +0200
+++ new/okteta-0.25.5/po/zh_CN/liboktetakasten.po       2018-12-31 
04:25:59.391894352 +0100
@@ -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-09-28 19:54\n"
-"Last-Translator: guoyunhe <[email protected]>\n"
+"PO-Revision-Date: 2018-12-27 07:43\n"
+"Last-Translator: guoyunhe <[email protected]>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
@@ -2548,19 +2548,19 @@
 #, kde-format
 msgctxt "@action:inmenu create a new view profile"
 msgid "Create new..."
-msgstr ""
+msgstr "新建..."
 
 #: controllers/view/viewprofiles/viewprofilecontroller.cpp:66
 #, kde-format
 msgctxt "@action:inmenu save changed to the view profile to the base profile"
 msgid "Save changes"
-msgstr ""
+msgstr "保存修改"
 
 #: controllers/view/viewprofiles/viewprofilecontroller.cpp:73
 #, kde-format
 msgctxt "@action:inmenu reset settings back to those of the saved base profile"
 msgid "Reset changes"
-msgstr ""
+msgstr "重置更改"
 
 #: controllers/view/viewprofiles/viewprofilecontroller.cpp:193
 #: controllers/view/viewprofiles/viewprofilesmanagedialog.cpp:191
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/okteta-0.25.4/po/zh_CN/okteta.po 
new/okteta-0.25.5/po/zh_CN/okteta.po
--- old/okteta-0.25.4/po/zh_CN/okteta.po        2018-10-07 15:11:20.911138935 
+0200
+++ new/okteta-0.25.5/po/zh_CN/okteta.po        2018-12-31 04:25:59.395894352 
+0100
@@ -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-09-28 19:54\n"
-"Last-Translator: guoyunhe <[email protected]>\n"
+"PO-Revision-Date: 2018-12-27 07:43\n"
+"Last-Translator: guoyunhe <[email protected]>\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.4/po/zh_CN/oktetapart.po 
new/okteta-0.25.5/po/zh_CN/oktetapart.po
--- old/okteta-0.25.4/po/zh_CN/oktetapart.po    2018-10-07 15:11:20.911138935 
+0200
+++ new/okteta-0.25.5/po/zh_CN/oktetapart.po    2018-12-31 04:25:59.395894352 
+0100
@@ -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-09-28 19:54\n"
-"Last-Translator: guoyunhe <[email protected]>\n"
+"PO-Revision-Date: 2018-12-27 07:43\n"
+"Last-Translator: guoyunhe <[email protected]>\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.4/program/about.cpp 
new/okteta-0.25.5/program/about.cpp
--- old/okteta-0.25.4/program/about.cpp 2018-10-07 15:09:45.763121932 +0200
+++ new/okteta-0.25.5/program/about.cpp 2018-12-31 04:25:18.743895664 +0100
@@ -28,7 +28,7 @@
 OktetaAboutData::OktetaAboutData()
     : KAboutData(QStringLiteral("okteta"),
                  i18n("Okteta"), // name
-                 QStringLiteral("0.25.4"),
+                 QStringLiteral("0.25.5"),
                  i18n("Hex editor"), // description
                  KAboutLicense::GPL_V2,
                  i18n("Copyright 2006-2018 Friedrich W. H. Kossebau"), // 
copyright


Reply via email to