提交 66977079 编写于 作者: M Mathieu Bastian

Implement new GEXF 1.3 specifications, described in #1152

上级 2b38907d
......@@ -69,6 +69,7 @@ importerGEXF_error_datakey = Data key (attribute ''for'') is missing for element
importerGEXF_error_datakey1 = Data key (attribute ''id'') is missing for element id={0}
importerGEXF_error_dataoptionsvalue = Data value ''{0}'' is not an option for element id={1}. The value cannot be set as ''{2}'' attribute.
importerGEXF_error_datavalue = Data value ''{0}'' type error for element {1}. The value cannot be set as ''{2}'' attribute.
importerGEXF_error_idtype_error = The id type ''{0}'' is not recognized, use 'integer', 'long' or 'string'
importerGEXF_error_defaultedgetype = Default edge type ''{0}'' is not recognized. Set to default ''mixed''.
importerGEXF_error_edgedouble = Edge type ''double'' is currently not supported. Set to default ''mixed''.
importerGEXF_error_edgetype = Type ''{0}'' of the edge ''{1}'' is not recognized. Set to default value.
......@@ -80,17 +81,33 @@ importerGEXF_error_nodeid = Node id is missing. The node is ignored.
importerGEXF_error_nodeposition = Node ''{0}'' has a wrong position on ''{1}'' (not a float).
importerGEXF_error_nodesize = Node ''{0}'' has a wrong size (not a float).
importerGEXF_error_notnode = Element ''{0}'' is not a node. The element is ignored.
importerGEXF_error_pid_notfound = The parent pid ''{0}'' could not be found for node ''{1}''.
importerGEXF_error_parsingdatetype = Date type ''{0}'' is not recognized. Set to default ''date''.
importerGEXF_error_parsingmode = Parsing mode ''{0}'' is not recognized. Set to default ''static''.
importerGEXF_error_node_timeinterval_parseerror = The time interval for node ''{0}'' could not be parsed. Use xsd:date, xsd:dateTime or Double formatting.
importerGEXF_error_edge_timeinterval_parseerror = The time interval for edge ''{0}'' could not be parsed. Use csd:date, xsd:dateTime or Double formatting.
importerGEXF_error_edge_timeinterval_parseerror = The time interval for edge ''{0}'' could not be parsed. Use xsd:date, xsd:dateTime or Double formatting.
importerGEXF_error_node_timeintervals_parseerror = The time intervals for node ''{0}'' could not be parsed. Use xsd:date, xsd:dateTime or Double formatting.
importerGEXF_error_edge_timeintervals_parseerror = The time intervals for edge ''{0}'' could not be parsed. Use csd:date, xsd:dateTime or Double formatting.
importerGEXF_error_nodeattribute_timeinterval_parseerror = The time interval for node ''{0}'' attribute could not be parsed. Use xsd:date, xsd:dateTime or Double formatting.
importerGEXF_error_edgeattribute_timeinterval_parseerror = The time interval for edge ''{0}'' attribute could not be parsed. Use xsd:date, xsd:dateTime or Double formatting.
importerGEXF_error_nodecolorvalue = Node of id ''{1}'' has a wrong color channel ''{2}''=''{0}''. It should be 0 < ''{2}'' < 255.
importerGEXF_error_edgecolorvalue = Edge of id ''{1}'' has a wrong color channel ''{2}''=''{0}''. It should be 0 < ''{2}'' < 255.
importerGEXF_error_nodeopacityvalue = Node of id ''{1}'' has a wrong opacity a=''{0}''. It should be 0.0 < a < 1.0.
importerGEXF_error_edgeopacityvalue = Edge of id ''{1}'' has a wrong opacity a=''{0}''. It should be 0.0 < a < 1.0.
importerGEXF_error_node_timestamp_parseerror = The timestamp for node ''{0}'' could not be parsed. Use xsd:date, xsd:dateTime or Double formatting.
importerGEXF_error_edge_timestamp_parseerror = The timestamp for edge ''{0}'' could not be parsed. Use xsd:date, xsd:dateTime or Double formatting.
importerGEXF_error_node_timestamps_parseerror = The timestamps for node ''{0}'' could not be parsed.
importerGEXF_error_edge_timestamps_parseerror = The timestamps for edge ''{0}'' could not be parsed.
importerGEXF_error_nodeattribute_timestamp_parseerror = The timestamp for node ''{0}'' attribute could not be parsed. Use xsd:date, xsd:dateTime or Double formatting.
importerGEXF_error_edgeattribute_timestamp_parseerror = The timestamp for edge ''{0}'' attribute could not be parsed. Use xsd:date, xsd:dateTime or Double formatting.
importerGEXF_error_nodeattribute_timeset_parseerror = The timestamps or intervals for node ''{0}'' attribute could not be parsed.
importerGEXF_error_edgeattribute_timeset_parseerror = The timestamps or intervals for edge ''{0}'' attribute could not be parsed.
importerGEXF_error_nodecolorvalue = Node of id ''{1}'' has a wrong color channel ''{2}''=''{0}''. It should be 0 <= ''{2}'' <= 255.
importerGEXF_error_edgecolorvalue = Edge of id ''{1}'' has a wrong color channel ''{2}''=''{0}''. It should be 0 <= ''{2}'' <= 255.
importerGEXF_error_nodeopacityvalue = Node of id ''{1}'' has a wrong opacity a=''{0}''. It should be 0.0 <= a <= 1.0.
importerGEXF_error_edgeopacityvalue = Edge of id ''{1}'' has a wrong opacity a=''{0}''. It should be 0.0 <= a <= 1.0.
importerGEXF_error_node_open_interval = Node of id ''{0}'' uses open intervals, which have been deprecated.
importerGEXF_error_edge_open_interval = Edge of id ''{0}'' uses open intervals, which have been deprecated.
importerGEXF_error_slice_bound_missing = Missing timestamp or interval attribute on <graph>
importerGEXF_error_pid = The node of id ''{0}'' defines a parent using a pid. Hierarchical graph support has been deprecated and will be ignored.
importerGEXF_error_timezone_parseerror = The time zone ''{0}'' couldn't be recognized
importerGEXF_error_timerepresentation_intervalerror = The time representation is set as 'timestamp' so intervals can't be used. Set the time representation to 'interval' in <graph>.
importerGEXF_error_timerepresentation_timestamperror = The time representation is set as 'interval' so timestamps can't be used. Set the time representation to 'timestamp' in <graph>.
importerGEXF_log_edgeeproperty = Edge property found: {0}
importerGEXF_log_nodeproperty = Node property found: {0}
importerGEXF_log_edgeattribute = Edge attribute found ''{0}'' ({1})
......@@ -99,7 +116,7 @@ importerGEXF_log_default = Default attribute value found: ''{0}'' ({1})
importerGEXF_log_options = Attribute Options found: ''{0}'' ({1})
importerGEXF_log_version10 = GEXF version 1.0 (deprecated)
importerGEXF_log_version11 = GEXF version 1.1 (deprecated)
importerGEXF_log_version12 = GEXF version 1.2
importerGEXF_log_version12 = GEXF version 1.2 (deprecated)
importerGEXF_log_version13 = GEXF version 1.3
importerGEXF_log_version_undef = Undefined GEXF version. Parser 1.3 is used.
importerGEXF_log_dynamic_weight = Dynamic weight column found
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册