if( aDocument.IsNull() )
return;
- LightApp_DataObject* anImageRootObj = createObject( aRootObj, partitionName( KIND_IMAGE ) );
+ LightApp_DataObject* anImageRootObj = createObject( aRootObj, tr( partitionName( KIND_IMAGE ).toAscii() ) );
HYDROData_Iterator anIterator( aDocument, KIND_IMAGE );
for( ; anIterator.More(); anIterator.Next() )
createObject( anImageRootObj, anImageObj );
}
- LightApp_DataObject* aBathymetryRootObj = createObject( aRootObj, partitionName( KIND_BATHYMETRY ) );
+ LightApp_DataObject* aBathymetryRootObj = createObject( aRootObj, tr( partitionName( KIND_BATHYMETRY ).toAscii() ) );
anIterator = HYDROData_Iterator( aDocument, KIND_BATHYMETRY );
for( ; anIterator.More(); anIterator.Next() )
createObject( aBathymetryRootObj, aBathymetryObj );
}
- LightApp_DataObject* aPolylineRootObj = createObject( aRootObj, partitionName( KIND_POLYLINE ) );
+ LightApp_DataObject* aPolylineRootObj = createObject( aRootObj, tr( partitionName( KIND_POLYLINE ).toAscii() ) );
anIterator = HYDROData_Iterator( aDocument, KIND_POLYLINE );
for( ; anIterator.More(); anIterator.Next() )
createObject( aPolylineRootObj, aPolylineObj );
}
- LightApp_DataObject* aZonesRootObj = createObject( aRootObj, partitionName( KIND_IMMERSIBLE_ZONE ) );
+ LightApp_DataObject* aZonesRootObj = createObject( aRootObj, tr( partitionName( KIND_IMMERSIBLE_ZONE ).toAscii() ) );
anIterator = HYDROData_Iterator( aDocument, KIND_IMMERSIBLE_ZONE );
for( ; anIterator.More(); anIterator.Next() )
createObject( aZonesRootObj, aZoneObj );
}
- LightApp_DataObject* aCalculRootObj = createObject( aRootObj, partitionName( KIND_CALCULATION ) );
+ LightApp_DataObject* aCalculRootObj = createObject( aRootObj, tr( partitionName( KIND_CALCULATION ).toAscii() ) );
anIterator = HYDROData_Iterator( aDocument, KIND_CALCULATION );
for( ; anIterator.More(); anIterator.Next() )
createObject( aCalculRootObj, aCalculObj );
}
- LightApp_DataObject* aVisualStateRootObj = createObject( aRootObj, partitionName( KIND_VISUAL_STATE ) );
+ LightApp_DataObject* aVisualStateRootObj = createObject( aRootObj, tr( partitionName( KIND_VISUAL_STATE ).toAscii() ) );
anIterator = HYDROData_Iterator( aDocument, KIND_VISUAL_STATE );
for( ; anIterator.More(); anIterator.Next() )
<context>
<name>@default</name>
+ <message>
+ <source>IMAGES</source>
+ <translation>IMAGES</translation>
+ </message>
+ <message>
+ <source>POLYLINES</source>
+ <translation>POLYLINES</translation>
+ </message>
+ <message>
+ <source>VISUAL_STATES</source>
+ <translation>VISUAL STATES</translation>
+ </message>
+ <message>
+ <source>BATHYMETRIES</source>
+ <translation>BATHYMETRIES</translation>
+ </message>
+ <message>
+ <source>CALCULATION_CASES</source>
+ <translation>CALCULATION CASES</translation>
+ </message>
+ <message>
+ <source>IMMERSIBLE_ZONES</source>
+ <translation>IMMERSIBLE ZONES</translation>
+ </message>
<message>
<source>BATHYMETRY_FILTER</source>
<translation>Bathymetry files (*.xyz);;All files (*.* *)</translation>