Hello community,

here is the log from the commit of package rocs for openSUSE:Factory checked in 
at 2016-08-31 00:09:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rocs (Old)
 and      /work/SRC/openSUSE:Factory/.rocs.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rocs"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rocs/rocs.changes        2016-07-24 
19:49:46.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.rocs.new/rocs.changes   2016-08-31 
00:09:28.000000000 +0200
@@ -1,0 +2,16 @@
+Fri Aug 12 10:32:16 UTC 2016 - [email protected]
+
+- Update to KDE Applications 16.08.0
+   * KDE Applications 16.08.0
+   * https://www.kde.org/announcements/announce-applications-16.08.0.php
+
+
+-------------------------------------------------------------------
+Mon Aug  8 15:54:44 UTC 2016 - [email protected]
+
+- Update to KDE Applications 16.07.90
+   * KDE Applications 16.07.90 (16.08-RC)
+   * https://www.kde.org/announcements/announce-applications-16.07.90.php
+
+
+-------------------------------------------------------------------

Old:
----
  rocs-16.04.3.tar.xz

New:
----
  rocs-16.08.0.tar.xz

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

Other differences:
------------------
++++++ rocs.spec ++++++
--- /var/tmp/diff_new_pack.36FQql/_old  2016-08-31 00:09:29.000000000 +0200
+++ /var/tmp/diff_new_pack.36FQql/_new  2016-08-31 00:09:29.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           rocs
-Version:        16.04.3
+Version:        16.08.0
 Release:        0
 Summary:        Graph Theory IDE
 License:        GPL-3.0+
@@ -103,8 +103,8 @@
 %{_kf5_sharedir}/rocs/
 %{_kf5_bindir}/rocs
 %{_kf5_configkcfgdir}/
-%dir %{_kf5_sharedir}/appdata
-%{_kf5_sharedir}/appdata/org.kde.rocs.appdata.xml
+%dir %{_kf5_appstreamdir}
+%{_kf5_appstreamdir}/org.kde.rocs.appdata.xml
 %{_kf5_sharedir}/kxmlgui5/
 %{_kf5_plugindir}/
 %{_kf5_iconsdir}/hicolor/*/*/*

++++++ rocs-16.04.3.tar.xz -> rocs-16.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rocs-16.04.3/CMakeLists.txt 
new/rocs-16.08.0/CMakeLists.txt
--- old/rocs-16.04.3/CMakeLists.txt     2016-04-18 21:26:08.000000000 +0200
+++ new/rocs-16.08.0/CMakeLists.txt     2016-06-23 23:45:40.000000000 +0200
@@ -70,6 +70,7 @@
     ${Boost_INCLUDE_DIRS}
 )
 
+add_definitions(-fext-numeric-literals)
 add_definitions(-DQT_NO_CAST_TO_ASCII)
 add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
 remove_definitions(-DQT_NO_CAST_FROM_ASCII)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rocs-16.04.3/doc/chapterImportExport.docbook 
new/rocs-16.08.0/doc/chapterImportExport.docbook
--- old/rocs-16.04.3/doc/chapterImportExport.docbook    2016-04-18 
21:26:08.000000000 +0200
+++ new/rocs-16.08.0/doc/chapterImportExport.docbook    1970-01-01 
01:00:00.000000000 +0100
@@ -1,85 +0,0 @@
-<chapter id="import-export">
-<title>Import and Export</title>
-<sect1 id="import-export-projects">
-    <title>Exchange &rocs; Projects</title>
-    <para>
-        &rocs; projects can be imported and exported as archived 
<literal>.tar.gz</literal> files.
-        These archives can be used to exchange projects.
-        Import and Export can be done with <menuchoice><guimenu>Graph 
Document</guimenu> <guimenuitem>Import Graph</guimenuitem></menuchoice> and 
<menuchoice><guimenu>Graph Document</guimenu> <guimenuitem>Export Graph 
as</guimenuitem></menuchoice>, respectively.
-    </para>
-</sect1>
-
-<sect1 id="import-export-graphs">
-    <title>Import and Export of Graph Documents</title>
-    <para>&rocs; currently supports import and export of the following file 
formats:</para>
-    <itemizedlist>
-        <listitem><para>DOT files, also known as Graphviz 
files</para></listitem>
-        <listitem><para>GML files</para></listitem>
-        <listitem><para>Trivial Graph Format files</para></listitem>
-        <listitem><para>Keyhole Markup Language Format</para></listitem>
-    </itemizedlist>
-
-<sect2 id="format-specification-tgf">
-<title>Trivial Graph File Format</title>
-<para>
-    The <emphasis>Trivial Graph Format</emphasis> (TGF) is a simple text-based 
file format for describing graphs.
-    A TGF file consists of a list of node definitions, that map the node IDs 
to labels, followed by a list of the edges.
-    In this format it is only possible to have one label per node and one 
value per edge.
-    &rocs; interprets imported graphs as undirected graphs.
-    Exported graphs will contain two edges per connection if connections are 
bidirectional.
-</para>
-
-<sect3>
-<title>Format Specification</title>
-    <itemizedlist>
-        <listitem><para>The file starts with a list of nodes (one node per 
line), followed by a line with the only character "#", followed by a list of 
edges (one edge per line).</para></listitem>
-        <listitem><para>A node consists of an integer (identifier), followed 
by a space, followed by an arbitrary string.</para></listitem>
-        <listitem><para>An edge consists of two integers (identifiers) 
separated by a space, followed by a space, followed by an arbitrary string. It 
is assumed that the directed edge points from the first identifier to the 
second identifier.</para></listitem>
-    </itemizedlist>
-</sect3>
-<sect3>
-<title>Example</title>
-<programlisting>
-1 starting node
-2 transmitter
-3 sink
-#
-1 2 blue
-2 1 red
-2 3 green
-</programlisting>
-</sect3>
-</sect2>
-
-<sect2 id="format-specification-dot">
-<title>DOT Language / Graphviz Graph File Format</title>
-<para>
-    The DOT language is a plain text graph description language that allows 
both,a good human readable representation of graphs as well as an efficient 
processing by graph layout programs.
-    DOT is the default file format for the Graphviz graph visualization suite, 
but is also widely used by other graph tools.
-    The usual file endings for DOT are <emphasis>.gv</emphasis> and 
<emphasis>.dot</emphasis>.
-</para>
-
-<sect3>
-<title>Unsupported Features</title>
-<para>
-    &rocs; can parse every graph file that contains a graph specified 
according to the DOT language 
specification<footnote><para>http://www.graphviz.org/content/dot-language</para></footnote>.
-    The support of language features is complete, despite of the following 
exceptions:
-</para>
-    <itemizedlist>
-        <listitem><para>subgraph: Due to the lack of a subgraph concept in 
&rocs;, subgraphs are only imported as a set of date elements and connections. 
Especially, connections to or from subgraphs are not imported.</para></listitem>
-        <listitem><para>&HTML; and &XML; attributes: Attributes (like labels) 
that contain &HTML; or &XML; syntax are read unchanged. Especially, not 
adjustment of fonts and styles are read from those attributes.</para></listitem>
-    </itemizedlist>
-</sect3>
-<sect3>
-<title>Example</title>
-<programlisting>
-digraph myGraph {
-    a -> b -> c;
-    b -> d;
-}
-</programlisting>
-</sect3>
-</sect2>
-
-</sect1>
-</chapter>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rocs-16.04.3/doc/index.docbook 
new/rocs-16.08.0/doc/index.docbook
--- old/rocs-16.04.3/doc/index.docbook  2016-04-18 21:26:08.000000000 +0200
+++ new/rocs-16.08.0/doc/index.docbook  2016-06-23 23:45:40.000000000 +0200
@@ -2,15 +2,9 @@
 <!DOCTYPE book PUBLIC "-//KDE//DTD DocBook XML V4.5-Based Variant V1.1//EN" 
"dtd/kdedbx45.dtd" [
 
   <!ENTITY kappname "&rocs;">
-  <!ENTITY package "rocs">
   <!ENTITY % addindex "IGNORE">
   <!ENTITY % English "INCLUDE">
 
-  <!ENTITY apiConsole SYSTEM "apiConsole.docbook">
-  <!ENTITY apiDatastructure SYSTEM "apiDatastructure.docbook">
-  <!ENTITY apiGraphstructure SYSTEM "apiGraphstructure.docbook">
-
-  <!ENTITY chapterImportExport SYSTEM "chapterImportExport.docbook">
 ]>
 <book id="rocs" lang="&language;">
 
@@ -35,14 +29,14 @@
 <!-- TRANS:ROLES_OF_TRANSLATORS -->
 </authorgroup>
 
-<date>2015-03-13</date>
-<releaseinfo>2.0.0 &kde; 15.04</releaseinfo>
+<date>2016-04-10</date>
+<releaseinfo>Rocs 2.1.50 (Applications 16.04)</releaseinfo>
 
 <legalnotice>&FDLNotice;</legalnotice>
 
 <abstract>
 <para>
-&rocs; is a graph theory tool for &kde;.
+&rocs; is a graph theory tool by &kde;.
 </para>
 </abstract>
 
@@ -278,7 +272,7 @@
     format="PNG"/></imageobject></inlinemediaobject><guibutton>Create 
Edge</guibutton> tools, for creating new elements on the whiteboard.
     Note the extra-toolbar for selecting the respective node or edge type that 
becomes visible of one of these tools is selected.
     Also tools for selecting and moving as well as deleting elements are 
available here.
-    For details see <xref linkend="user-interface-toolbars" />.
+    For details see <xref linkend="user-interface-toolbar" />.
     </para></listitem>
 </varlistentry>
 <varlistentry>
@@ -288,7 +282,6 @@
         <itemizedlist>
         <listitem><para>Element Types: This widget gives you direct access to 
the available edge and node types.</para></listitem>
         <listitem><para>Journal: Each project has its own journal that can be 
used to, &eg; note tasks, results, or observations.</para></listitem>
-        <listitem><para>Handbook: To get direct access to the handbook and by 
this to the script documentation, you can open this widget.</para></listitem>
         <listitem><para>Scripting API: To get direct access to the script 
documentation, you can open this widget.</para></listitem>
         </itemizedlist>
     </para></listitem>
@@ -298,7 +291,7 @@
     <listitem><para>
         In this text editor you can write algorithms as explained in detail in 
<xref linkend="scripting" />.
         You can work on several script documents simultaneously by using 
several tabs.
-        The disk symbol at a tab appears if the script contains unsaved 
changes.
+        <!--FIXME link to katepart handbook? -->
     </para></listitem>
 </varlistentry>
 <varlistentry>
@@ -319,17 +312,9 @@
 </variablelist>
 </sect1>
 
-<sect1 id="user-interface-toolbars">
-<title>Toolbars</title>
-<para>There are different toolbars for the graph editor that allow you to 
access features by only one click. Per default, the following toolbars are 
shown:</para>
-<itemizedlist>
-    <listitem><para>Main Toolbar</para></listitem>
-<!--     <listitem><para>Alignment Toolbar</para></listitem> -->
-</itemizedlist>
-<!--  -->
-<sect2 id="user-interface-toolbars-main">
-<title>Main Toolbar</title>
-<para>The <emphasis>Main Toolbar</emphasis> consists of the following actions. 
Clicking at an action means that your mouse pointer applies this action at the 
graph editor whiteboard:</para>
+<sect1 id="user-interface-toolbar">
+<title>Graph Editor Toolbar</title>
+<para>This toolbar consists of the following actions. Clicking at an action 
means that your mouse pointer applies this action at the graph editor 
whiteboard:</para>
 <itemizedlist>
 <listitem><para>
 <inlinemediaobject><imageobject>
@@ -353,69 +338,23 @@
 </inlinemediaobject>
 <guilabel>Delete</guilabel>: Click at an element to delete it. If you delete a 
node, all adjacent edges are also deleted.</para></listitem>
 </itemizedlist>
-</sect2>
-
-<!--<sect2 id="user-interface-toolbars-alignment">
-<title>Alignment Toolbar</title>
-<para>You can add the optional <emphasis>Alignment Toolbar</emphasis>. 
Pressing an action at this toolbar has direct effect to the currently selected 
nodes:</para>
-<itemizedlist>
-<listitem><para>
-<inlinemediaobject><imageobject>
-<imagedata fileref="hi22-action-rocsaligntop.png" format="PNG"/></imageobject>
-</inlinemediaobject>
-<guilabel>Top</guilabel>: Align the data elements at the vertical position of 
the top-most data element. This only affects the vertical 
positions.</para></listitem>
-<listitem><para>
-<inlinemediaobject><imageobject>
-<imagedata fileref="hi22-action-rocsalignvmiddle.png" 
format="PNG"/></imageobject>
-</inlinemediaobject>
-<guilabel>Center</guilabel>: Align the data elements at the vertical position 
given by the center of all selected data elements vertical positions. This only 
affects the vertical positions.</para></listitem>
-<listitem><para>
-<inlinemediaobject><imageobject>
-<imagedata fileref="hi22-action-rocsalignbottom.png" 
format="PNG"/></imageobject>
-</inlinemediaobject>
-<guilabel>Base</guilabel>: Align the data elements at the vertical position of 
the bottom-most data element. This only affects the vertical 
positions.</para></listitem>
-<listitem><para>
-<inlinemediaobject><imageobject>
-<imagedata fileref="hi22-action-rocsalignleft.png" format="PNG"/></imageobject>
-</inlinemediaobject>
-<guilabel>Left</guilabel>: Align the data elements at the horizontal position 
of the left-most data element. This only affects the horizontal 
positions.</para></listitem>
-<listitem><para>
-<inlinemediaobject><imageobject>
-<imagedata fileref="hi22-action-rocsalignhmiddle.png" 
format="PNG"/></imageobject>
-</inlinemediaobject>
-<guilabel>Center</guilabel>: Align the data elements at the horizontal 
position of the top-most data element. This only affects the horizontal
-positions.</para></listitem>
-<listitem><para>
-<inlinemediaobject><imageobject>
-<imagedata fileref="hi22-action-rocsalignright.png" 
format="PNG"/></imageobject>
-</inlinemediaobject>
-<guilabel>Right</guilabel>: Align the data elements at the horizontal position 
of the right-most data element. This only affects the horizontal 
positions.</para></listitem>
-<listitem><para>
-<inlinemediaobject><imageobject>
-<imagedata fileref="hi22-action-rocsaligncircle.png" 
format="PNG"/></imageobject>
-</inlinemediaobject>
-<guilabel>Circle</guilabel>: Aligns the data elements at a circle of diameter 
equals to the maximal distance of the data elements. The data elements are 
positioned in the same sequence as given by view from the center of gravity of 
these data elements.</para></listitem>
-<listitem><para>
-<inlinemediaobject><imageobject>
-<imagedata fileref="hi22-action-rocsaligntree.png" format="PNG"/></imageobject>
-</inlinemediaobject>
-<guilabel>Minimize Crossing Edges</guilabel>: Rearrange the selected data 
elements to minimize the number of crossing connections (application of the 
Fruchterman-Reingold algorithm).</para></listitem>
-</itemizedlist>
-</sect2>-->
 </sect1>
-</chapter>
 
+<!--FIXME nop alignment action any more?-->
+</chapter>
 
 <chapter id="scripting">
-<title>Executing Algorithms in &rocs;</title>
+<title>Scripting</title>
+<sect1>
+    <title>Executing Algorithms in &rocs;</title>
 <para>
-&rocs; internally uses the QtScript Java Script engine
+&rocs; internally uses the QtScript Java Script engine. <!--FIXME linkt to api 
docs ?-->
 This means, all algorithms that you implement must use Java Script.
 In the following, we explain how to access and change elements of a graph 
document from the scripting engine.
 It is important to note that changes done by the scripting engine are directly 
reflected at the properties at the graph editor elements.
 </para>
 
-<sect1 id="scripting-controls">
+<sect2>
 <title>Control Script Execution</title>
 <para>
     There are different execution modes for your algorithms:
@@ -426,30 +365,15 @@
         <imagedata fileref="hi22-actions-controls-run.png" 
format="PNG"/></imageobject>
         </inlinemediaobject>
         <guilabel>Run</guilabel>: Execute the script until it 
finishes.</para></listitem>
-<!--TODO not available right now -->
-<!--    <listitem><para>
-        <inlinemediaobject><imageobject>
-        <imagedata fileref="rocs-control-engine-step.png" 
format="PNG"/></imageobject>
-        </inlinemediaobject>
-        <guilabel>One Step</guilabel>: Execute script until one step ends. A 
step ends when the script calls the function 
<literal>interrupt()</literal>:</para>
-    <programlisting>
-        interrupt();    // ends a step
-    </programlisting>
-    </listitem>
-    <listitem><para>
-        <inlinemediaobject><imageobject>
-        <imagedata fileref="rocs-control-engine-debug.png" 
format="PNG"/></imageobject>
-        </inlinemediaobject>
-        <guilabel>Debug</guilabel>: Execute script in debug mode. This opens 
the QtScript debug dialog.</para></listitem>-->
     <listitem><para>
         <inlinemediaobject><imageobject>
         <imagedata fileref="hi22-actions-control-stop.png" 
format="PNG"/></imageobject>
         </inlinemediaobject>
         <guilabel>Stop</guilabel>: Stop script execution (only available while 
a script is executed).</para></listitem>
 </itemizedlist>
-</sect1>
+</sect2>
 
-<sect1 id="scripting-output">
+<sect2>
 <title>Script Output</title>
 <para>
     During the execution of an algorithm, debug and program output is 
displayed in the <emphasis>Debug &amp; Script Output</emphasis>.
@@ -464,9 +388,9 @@
     Console.debug(string message);          // displays the message as debug 
output
     Console.error(string message);          // displays the message as error 
output
 </programlisting>
-</sect1>
+</sect2>
 
-<sect1 id="scripting-API">
+<sect2>
 <title>Scripting Engine API</title>
 <para>
 The different parts of &rocs; each provide a static element that can be 
accessed by the scripting engine.
@@ -477,12 +401,94 @@
 </itemizedlist>
 For the explicit API use and for a method reference, please see the inline 
help at the &rocs; side bar.
 </para>
+</sect2>
 </sect1>
 </chapter>
 
+<chapter id="import-export">
+<title>Import and Export</title>
+<sect1 id="import-export-projects">
+    <title>Exchange &rocs; Projects</title>
+    <para>
+        &rocs; projects can be imported and exported as archived 
<literal>.tar.gz</literal> files.
+        These archives can be used to exchange projects.
+        Import and Export can be done with <menuchoice><guimenu>Graph 
Document</guimenu> <guimenuitem>Import Graph</guimenuitem></menuchoice> and 
<menuchoice><guimenu>Graph Document</guimenu> <guimenuitem>Export Graph 
as</guimenuitem></menuchoice>, respectively.
+    </para>
+
+<sect2 id="import-export-graphs">
+    <title>Import and Export of Graph Documents</title>
+    <para>&rocs; currently supports import and export of the following file 
formats:</para>
+    <itemizedlist>
+        <listitem><para>DOT files, also known as Graphviz 
files</para></listitem>
+        <listitem><para>GML files</para></listitem>
+        <listitem><para>Trivial Graph Format files</para></listitem>
+        <listitem><para>Keyhole Markup Language Format</para></listitem>
+    </itemizedlist>
+
+<sect3 id="format-specification-tgf">
+<title>Trivial Graph File Format</title>
+<para>
+    The <emphasis>Trivial Graph Format</emphasis> (TGF) is a simple text-based 
file format for describing graphs.
+    A TGF file consists of a list of node definitions, that map the node IDs 
to labels, followed by a list of the edges.
+    In this format it is only possible to have one label per node and one 
value per edge.
+    &rocs; interprets imported graphs as undirected graphs.
+    Exported graphs will contain two edges per connection if connections are 
bidirectional.
+</para>
+
+<sect4>
+<title>Format Specification</title>
+    <itemizedlist>
+        <listitem><para>The file starts with a list of nodes (one node per 
line), followed by a line with the only character "#", followed by a list of 
edges (one edge per line).</para></listitem>
+        <listitem><para>A node consists of an integer (identifier), followed 
by a space, followed by an arbitrary string.</para></listitem>
+        <listitem><para>An edge consists of two integers (identifiers) 
separated by a space, followed by a space, followed by an arbitrary string. It 
is assumed that the directed edge points from the first identifier to the 
second identifier.</para></listitem>
+    </itemizedlist>
+</sect4>
+<sect4>
+<title>Example</title>
+<programlisting>
+1 starting node
+2 transmitter
+3 sink
+#
+1 2 blue
+2 1 red
+2 3 green
+</programlisting>
+</sect4>
+</sect3>
 
-&chapterImportExport;
-
+<sect3 id="format-specification-dot">
+<title>DOT Language / Graphviz Graph File Format</title>
+<para>
+    The DOT language is a plain text graph description language that allows 
both,a good human readable representation of graphs as well as an efficient 
processing by graph layout programs.
+    DOT is the default file format for the Graphviz graph visualization suite, 
but is also widely used by other graph tools.
+    The usual file extensions for DOT are <emphasis>.gv</emphasis> and 
<emphasis>.dot</emphasis>.
+</para>
+
+<sect4>
+<title>Unsupported Features</title>
+<para>
+    &rocs; can parse every graph file that contains a graph specified 
according to the DOT language 
specification<footnote><para>http://www.graphviz.org/content/dot-language</para></footnote>.
+    The support of language features is complete, despite of the following 
exceptions:
+</para>
+    <itemizedlist>
+        <listitem><para>subgraph: Due to the lack of a subgraph concept in 
&rocs;, subgraphs are only imported as a set of date elements and connections. 
Especially, connections to or from subgraphs are not imported.</para></listitem>
+        <listitem><para>&HTML; and &XML; attributes: Attributes (like labels) 
that contain &HTML; or &XML; syntax are read unchanged. Especially, not 
adjustment of fonts and styles are read from those attributes.</para></listitem>
+    </itemizedlist>
+</sect4>
+<sect4>
+<title>Example</title>
+<programlisting>
+digraph myGraph {
+    a -> b -> c;
+    b -> d;
+}
+</programlisting>
+</sect4>
+</sect3>
+</sect2>
+</sect1>
+</chapter>
 
 <chapter id="credits">
 <title>Credits and License</title>
@@ -511,24 +517,6 @@
 
 </chapter>
 
-<appendix id="installation">
-<title>Installation</title>
-
-<sect1 id="getting-rocs">
-<title>How to obtain &rocs;</title>
-
-&install.intro.documentation;
-
-</sect1>
-
-<sect1 id="compilation">
-<title>Compilation and installation</title>
-
-&install.compile.documentation;
-
-</sect1>
-</appendix>
-
 &documentation.index;
 </book>
 <!--
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-16.04.3/libgraphtheory/editorplugins/assignvalues/assignvaluesplugin.json
 
new/rocs-16.08.0/libgraphtheory/editorplugins/assignvalues/assignvaluesplugin.json
--- 
old/rocs-16.04.3/libgraphtheory/editorplugins/assignvalues/assignvaluesplugin.json
  2016-04-18 21:26:08.000000000 +0200
+++ 
new/rocs-16.08.0/libgraphtheory/editorplugins/assignvalues/assignvaluesplugin.json
  2016-06-23 23:45:40.000000000 +0200
@@ -6,7 +6,6 @@
         "Description[ca@valencia]": "Assigna valors a les arestes i nodes del 
graf.", 
         "Description[ca]": "Assigna valors a les arestes i nodes del graf.", 
         "Description[de]": "Werte zu Graphenkanten und -knoten zuweisen.", 
-        "Description[en_GB]": "Assign values to graph edges and nodes.", 
         "Description[es]": "Asignar valores a aristas de grafos y a nodos.", 
         "Description[et]": "Väärtuste omistamine graafi seostele ja 
tippudele.", 
         "Description[fi]": "Sijoita arvot graafin väleihin ja solmuihin.", 
@@ -24,7 +23,6 @@
         "Description[tr]": "Değerleri grafik kenarlarına ve düğümlerine ata.", 
         "Description[uk]": "Додавання значень до ребер та вузлів графу.", 
         "Description[x-test]": "xxAssign values to graph edges and nodes.xx", 
-        "Description[zh_TW]": "指定值給圖形邊緣與節點。", 
         "Id": "rocs_assignvaluesplugin", 
         "License": "GPL", 
         "Name": "Assign Values Plugin", 
@@ -33,7 +31,6 @@
         "Name[ca]": "Connector per assignar valors", 
         "Name[cs]": "Modul pro přiřazování hodnot", 
         "Name[de]": "Wertzuweisungs-Modul", 
-        "Name[en_GB]": "Assign Values Plugin", 
         "Name[es]": "Complemento para asignar valores", 
         "Name[et]": "Väärtuste omistamise plugin", 
         "Name[fi]": "Sijoita arvot -liitännäinen", 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-16.04.3/libgraphtheory/editorplugins/generategraph/generategraphplugin.json
 
new/rocs-16.08.0/libgraphtheory/editorplugins/generategraph/generategraphplugin.json
--- 
old/rocs-16.04.3/libgraphtheory/editorplugins/generategraph/generategraphplugin.json
        2016-04-18 21:26:08.000000000 +0200
+++ 
new/rocs-16.08.0/libgraphtheory/editorplugins/generategraph/generategraphplugin.json
        2016-06-23 23:45:40.000000000 +0200
@@ -7,7 +7,6 @@
         "Description[ca@valencia]": "Això genera un nou graf segons un 
patró.", 
         "Description[ca]": "Això genera un nou graf segons un patró.", 
         "Description[de]": "Erstellt anhand eines Musters einen neuen 
Graphen.", 
-        "Description[en_GB]": "This generates a new graph by a pattern.", 
         "Description[es]": "Esto genera un nuevo grafo usando un patrón.", 
         "Description[et]": "Uue graafi genereerimine mustri järgi.", 
         "Description[fi]": "Tämä generoi uuden graafin mallin perusteella.", 
@@ -25,7 +24,6 @@
         "Description[tr]": "Bu, bir desene göre bir grafik oluşturur.", 
         "Description[uk]": "Створює новий граф за шаблоном.", 
         "Description[x-test]": "xxThis generates a new graph by a pattern.xx", 
-        "Description[zh_TW]": "依樣式產生新的圖形。", 
         "Id": "rocs_generategraphplugin", 
         "License": "GPL", 
         "Name": "Generate Graph", 
@@ -38,7 +36,6 @@
         "Name[da]": "Generér graf", 
         "Name[de]": "Graphen erstellen", 
         "Name[el]": "Δημιουργία γράφου", 
-        "Name[en_GB]": "Generate Graph", 
         "Name[es]": "Generar grafo", 
         "Name[et]": "Graafi genereerimine", 
         "Name[fi]": "Generoi graafi", 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-16.04.3/libgraphtheory/editorplugins/transformedges/transformedgesplugin.json
 
new/rocs-16.08.0/libgraphtheory/editorplugins/transformedges/transformedgesplugin.json
--- 
old/rocs-16.04.3/libgraphtheory/editorplugins/transformedges/transformedgesplugin.json
      2016-04-18 21:26:08.000000000 +0200
+++ 
new/rocs-16.08.0/libgraphtheory/editorplugins/transformedges/transformedgesplugin.json
      2016-06-23 23:45:40.000000000 +0200
@@ -7,7 +7,6 @@
         "Description[ca@valencia]": "Transforma les arestes del graf seguint 
una regla de transformació.", 
         "Description[ca]": "Transforma les arestes del graf seguint una regla 
de transformació.", 
         "Description[de]": "Graphenkanten mittels Transformationsregel 
umformen.", 
-        "Description[en_GB]": "Transform graph edges by a transformation 
rule.", 
         "Description[es]": "Transforma las aristas del grafo usando una regla 
de transformación.", 
         "Description[et]": "Graafi seoste teisendamine vastava reegli järgi.", 
         "Description[fi]": "Muuntaa graafin välit säännön mukaan.", 
@@ -25,7 +24,6 @@
         "Description[tr]": "Grafik kenarlarını bir dönüştürme kuralı ile 
dönüştür.", 
         "Description[uk]": "Перетворити ребра графу за правилом 
перетворення.", 
         "Description[x-test]": "xxTransform graph edges by a transformation 
rule.xx", 
-        "Description[zh_TW]": "依轉換規則來轉換圖形邊緣。", 
         "Id": "rocs_transformedges", 
         "License": "GPL", 
         "Name": "Transform Edges", 
@@ -36,7 +34,6 @@
         "Name[da]": "Transformér kanter", 
         "Name[de]": "Kanten umformen", 
         "Name[el]": "Μετασχηματισμός ακμών", 
-        "Name[en_GB]": "Transform Edges", 
         "Name[es]": "Transformar aristas", 
         "Name[et]": "Seoste teisendamine", 
         "Name[fi]": "Muunna välit", 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-16.04.3/libgraphtheory/fileformats/dot/dotfileformat.json 
new/rocs-16.08.0/libgraphtheory/fileformats/dot/dotfileformat.json
--- old/rocs-16.04.3/libgraphtheory/fileformats/dot/dotfileformat.json  
2016-04-18 21:26:08.000000000 +0200
+++ new/rocs-16.08.0/libgraphtheory/fileformats/dot/dotfileformat.json  
2016-06-23 23:45:40.000000000 +0200
@@ -8,7 +8,6 @@
         "Description[ca]": "Llegeix i escriu documents gràfics del Graphviz 
(DOT).", 
         "Description[cs]": "Čte a ukládá soubory grafů Graphviz (DOT)", 
         "Description[de]": "Graphviz-Graphendokumente (DOT) lesen und 
schreiben", 
-        "Description[en_GB]": "Read and write Graphviz graph documents (DOT)", 
         "Description[es]": "Leer y escribir documentos de grafos Graphviz 
(DOT)", 
         "Description[et]": "Graphvizi graafidokumentide (DOT) lugemine ja 
kirjutamine.", 
         "Description[fi]": "Lukee ja kirjoittaa Graphviz-graafitiedostoja 
(DOT)", 
@@ -26,7 +25,6 @@
         "Description[tr]": "Graphviz grafik belgelerini oku ve yaz (DOT)", 
         "Description[uk]": "Читання і запис файлів документів графів Graphviz 
(DOT)", 
         "Description[x-test]": "xxRead and write Graphviz graph documents 
(DOT)xx", 
-        "Description[zh_TW]": "讀寫 Graphviz 圖形檔 (DOT)。", 
         "Id": "rocs_dotfileformat", 
         "License": "GPL", 
         "Name": "DOT Graph File Format", 
@@ -35,7 +33,6 @@
         "Name[ca]": "Format de fitxer de grafs DOT", 
         "Name[cs]": "Formát souborů grafů DOT", 
         "Name[de]": "DOT-Graphendateiformat", 
-        "Name[en_GB]": "DOT Graph File Format", 
         "Name[es]": "Formato de archivo de grafos DOT", 
         "Name[et]": "DOT graafifailivorming", 
         "Name[fi]": "DOT-graafitiedostomuoto", 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-16.04.3/libgraphtheory/fileformats/gml/gmlfileformat.json 
new/rocs-16.08.0/libgraphtheory/fileformats/gml/gmlfileformat.json
--- old/rocs-16.04.3/libgraphtheory/fileformats/gml/gmlfileformat.json  
2016-04-18 21:26:08.000000000 +0200
+++ new/rocs-16.08.0/libgraphtheory/fileformats/gml/gmlfileformat.json  
2016-06-23 23:45:40.000000000 +0200
@@ -8,7 +8,6 @@
         "Description[ca]": "Llegeix i escriu fitxers escrits en Llenguatge de 
Marcatge de Gràfics (GML)", 
         "Description[cs]": "Číst a ukládat dokumenty Graph Markup Language 
(GML)", 
         "Description[de]": "Dokumente im Format „Graph Markup Language“ (GML) 
lesen und schreiben", 
-        "Description[en_GB]": "Read and write Graph Markup Language documents 
(GML)", 
         "Description[es]": "Leer y escribir documentos del lenguaje de marcas 
de grafos (GML)", 
         "Description[et]": "GML (Graph Markup Language) dokumentide lugemine 
ja kirjutamine.", 
         "Description[fi]": "Lukee ja kirjoittaa Graph Markup Language (GML) 
-tiedostoja", 
@@ -26,7 +25,6 @@
         "Description[tr]": "Graph İşaret Dili belgelerini oku ve yaz (GML)", 
         "Description[uk]": "Читання і запис файлів у форматі Graph Markup 
Language (GML).", 
         "Description[x-test]": "xxRead and write Graph Markup Language 
documents (GML)xx", 
-        "Description[zh_TW]": "讀寫 Graph Markup Language 文件 (GML) 。", 
         "Id": "rocs_gmlfileformat", 
         "License": "GPL", 
         "Name": "GML File Format", 
@@ -35,7 +33,6 @@
         "Name[ca]": "Format de fitxer GML", 
         "Name[cs]": "Formát souboru GML", 
         "Name[de]": "GML-Dateiformat", 
-        "Name[en_GB]": "GML File Format", 
         "Name[es]": "Formato de archivo GML", 
         "Name[et]": "GML-failivorming", 
         "Name[fi]": "GML-tiedostomuoto", 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-16.04.3/libgraphtheory/fileformats/rocs1/rocs1fileformat.json 
new/rocs-16.08.0/libgraphtheory/fileformats/rocs1/rocs1fileformat.json
--- old/rocs-16.04.3/libgraphtheory/fileformats/rocs1/rocs1fileformat.json      
2016-04-18 21:26:08.000000000 +0200
+++ new/rocs-16.08.0/libgraphtheory/fileformats/rocs1/rocs1fileformat.json      
2016-06-23 23:45:40.000000000 +0200
@@ -8,7 +8,6 @@
         "Description[ca]": "Format de fitxers de grafs del Rocs (antic)", 
         "Description[cs]": "Formát souborů grafů Rocs (starý)", 
         "Description[de]": "Rocs-Graphendatei-Format (veraltet)", 
-        "Description[en_GB]": "Rocs Graph File Format (old)", 
         "Description[es]": "Formato de archivo de grafos de Rocs (antiguo)", 
         "Description[et]": "Rocsi graafifaili vorming (vana)", 
         "Description[fi]": "Rocsin graafitiedostomuoto (vanha)", 
@@ -26,7 +25,6 @@
         "Description[tr]": "Rocs Grafik Dosya Biçimi (eski)", 
         "Description[uk]": "формат файлів графів Rocs (застарілий)", 
         "Description[x-test]": "xxRocs Graph File Format (old)xx", 
-        "Description[zh_TW]": "Rocs 圖形檔格式(舊式)", 
         "Id": "rocs_rocs1fileformat", 
         "License": "GPL", 
         "Name": "Rocs File Format (old)", 
@@ -35,7 +33,6 @@
         "Name[ca]": "Format de fitxer del Rocs (antic)", 
         "Name[cs]": "Formát souborů Rocs (starý)", 
         "Name[de]": "Rocs-Dateiformat (veraltet)", 
-        "Name[en_GB]": "Rocs File Format (old)", 
         "Name[es]": "Formato de archivo de Rocs (antiguo)", 
         "Name[et]": "Rocsi failivorming (vana)", 
         "Name[fi]": "Rocsin tiedostomuoto (vanha)", 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-16.04.3/libgraphtheory/fileformats/rocs2/rocs2fileformat.json 
new/rocs-16.08.0/libgraphtheory/fileformats/rocs2/rocs2fileformat.json
--- old/rocs-16.04.3/libgraphtheory/fileformats/rocs2/rocs2fileformat.json      
2016-04-18 21:26:08.000000000 +0200
+++ new/rocs-16.08.0/libgraphtheory/fileformats/rocs2/rocs2fileformat.json      
2016-06-23 23:45:40.000000000 +0200
@@ -8,7 +8,6 @@
         "Description[ca]": "Format de fitxers de graf del Rocs", 
         "Description[cs]": "Formát souborů grafů Rocs", 
         "Description[de]": "Rocs-Graphendatei-Format", 
-        "Description[en_GB]": "Rocs Graph File Format", 
         "Description[es]": "Formato de archivo de grafos de Rocs", 
         "Description[et]": "Rocsi graafifaili vorming", 
         "Description[fi]": "Rocsin graafitiedostomuoto", 
@@ -26,7 +25,6 @@
         "Description[tr]": "Rocs Grafik Dosya Biçimi", 
         "Description[uk]": "формат файлів графів Rocs", 
         "Description[x-test]": "xxRocs Graph File Formatxx", 
-        "Description[zh_TW]": "Rocs 圖形檔格式", 
         "Id": "rocs_rocs2fileformat", 
         "License": "GPL", 
         "Name": "Rocs File Format", 
@@ -35,7 +33,6 @@
         "Name[ca]": "Format de fitxer del Rocs", 
         "Name[cs]": "Formát souborů Rocs", 
         "Name[de]": "Rocs-Dateiformat", 
-        "Name[en_GB]": "Rocs File Format", 
         "Name[es]": "Formato de archivo de Rocs", 
         "Name[et]": "Rocsi failivorming", 
         "Name[fi]": "Rocsin tiedostomuoto", 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-16.04.3/libgraphtheory/fileformats/tgf/tgffileformat.json 
new/rocs-16.08.0/libgraphtheory/fileformats/tgf/tgffileformat.json
--- old/rocs-16.04.3/libgraphtheory/fileformats/tgf/tgffileformat.json  
2016-04-18 21:26:08.000000000 +0200
+++ new/rocs-16.08.0/libgraphtheory/fileformats/tgf/tgffileformat.json  
2016-06-23 23:45:40.000000000 +0200
@@ -7,7 +7,6 @@
         "Description[ca@valencia]": "Llig i escriu fitxers escrits en Format 
Gràfic Trivial (TGF)", 
         "Description[ca]": "Llegeix i escriu fitxers escrits en Format Gràfic 
Trivial (TGF)", 
         "Description[de]": "Dokumente im Format „Trivial Graph“ (TGF) lesen 
und schreiben", 
-        "Description[en_GB]": "Read and write graph documents in Trivial Graph 
Format (TGF)", 
         "Description[es]": "Leer y escribir documentos de grafos en el formato 
de grafos Trivial (TGF)", 
         "Description[et]": "TGF (Trivial Graph Format) vormingus 
graafidokumentide lugemine ja kirjutamine", 
         "Description[fi]": "Lukee ja kirjoittaa Trivial Graph Format (TGF) 
-muotoisia graafitiedostoja", 
@@ -25,7 +24,6 @@
         "Description[tr]": "Grafik belgelerini Açık Grafik Biçiminde oku ve 
yaz (TGF)", 
         "Description[uk]": "Читання і запис документів графів у форматі 
звичайного графу (TGF)", 
         "Description[x-test]": "xxRead and write graph documents in Trivial 
Graph Format (TGF)xx", 
-        "Description[zh_TW]": "讀寫 Trivial Graph Format (TGF) 格式的圖形檔。", 
         "Id": "rocs_tgffileformat", 
         "License": "GPL", 
         "Name": "TGF Graph File Format", 
@@ -34,7 +32,6 @@
         "Name[ca]": "Format de fitxer de grafs TGF", 
         "Name[cs]": "Formát souborů grafů TGF", 
         "Name[de]": "TGF-Graphendateiformat", 
-        "Name[en_GB]": "TGF Graph File Format", 
         "Name[es]": "Formato de archivo de grafos TGF", 
         "Name[et]": "TGF graafifailivorming", 
         "Name[fi]": "TGF-graafitiedostomuoto", 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-16.04.3/libgraphtheory/fileformats/tikz/tikzfileformat.json 
new/rocs-16.08.0/libgraphtheory/fileformats/tikz/tikzfileformat.json
--- old/rocs-16.04.3/libgraphtheory/fileformats/tikz/tikzfileformat.json        
2016-04-18 21:26:08.000000000 +0200
+++ new/rocs-16.08.0/libgraphtheory/fileformats/tikz/tikzfileformat.json        
2016-06-23 23:45:40.000000000 +0200
@@ -7,7 +7,6 @@
         "Description[ca@valencia]": "Escriu documents gràfics en format 
PGF/TikZ per utilitzar-los en documents LaTeX", 
         "Description[ca]": "Escriu documents gràfics en format PGF/TikZ per 
utilitzar-los en documents LaTeX", 
         "Description[de]": "Exportiert Graphendokumente im Format PGF/TikZ zur 
Verwendung in LaTeX-Dokumenten", 
-        "Description[en_GB]": "Writes graph documents in PGF/TikZ format for 
use in LaTeX documents", 
         "Description[es]": "Escribe documentos de grafos en el formato 
PGF/TikZ para usar en documentos LaTeX", 
         "Description[et]": "Graafidokumentide kirjutamine PGF/TikZ vormingus 
kasutamiseks LaTeXi dokumentides", 
         "Description[fi]": "Kirjoittaa PGF/TikZ-muotoisia graafitiedostoja 
LaTeX-tiedostoissa käyttämiseen", 
@@ -25,7 +24,6 @@
         "Description[tr]": "LaTeX belgelerinde kullanmak üzere grafik 
belgelerini PGF/TikZ biçiminde yazar", 
         "Description[uk]": "Запис документів графів у форматі PGF/TikZ з метою 
наступного використання у документах LaTeX", 
         "Description[x-test]": "xxWrites graph documents in PGF/TikZ format 
for use in LaTeX documentsxx", 
-        "Description[zh_TW]": "寫入 PGF/TikZ 格式的圖形文件,以便在 LaTeX 文件中使用", 
         "Id": "rocs_tikzfileformat", 
         "License": "GPL", 
         "Name": "PGF/TikZ Graph File Export Plugin", 
@@ -34,7 +32,6 @@
         "Name[ca]": "Connector d'exportació del fitxer de grafs a PGF/TikZ", 
         "Name[cs]": "Export souborů grafů PGF/TikZ", 
         "Name[de]": "PGF/TikZ-Graphendateiexportmodul", 
-        "Name[en_GB]": "PGF/TikZ Graph File Export Plugin", 
         "Name[es]": "Complemento de exportación de archivo de grafos 
PGF/TikZ", 
         "Name[et]": "PGF/TikZ graafifaili ekspordiplugin", 
         "Name[fi]": "PGF/TikZ-graafitiedoston vientiliitännäinen", 


Reply via email to