Kaydet (Commit) 40421ffc authored tarafından Urs Fässler's avatar Urs Fässler Kaydeden (comit) Caolán McNamara

Translation of messages in test program

Change-Id: I8588f5bad12561b891956cde44daeb4c81f815c3
üst 5495184e
...@@ -116,7 +116,7 @@ sal_Bool processCntTypesAndWriteResultIntoFile( char* fname, vector< string >& v ...@@ -116,7 +116,7 @@ sal_Bool processCntTypesAndWriteResultIntoFile( char* fname, vector< string >& v
{ {
try try
{ {
fprintf( fstream, "Gelesen: %s\n", iter->c_str( ) ); fprintf( fstream, "Read: %s\n", iter->c_str( ) );
Reference< XMimeContentType > xMCntTyp = cnttypeFactory->createMimeContentType( OUString::createFromAscii( iter->c_str( ) ) ); Reference< XMimeContentType > xMCntTyp = cnttypeFactory->createMimeContentType( OUString::createFromAscii( iter->c_str( ) ) );
...@@ -134,15 +134,15 @@ sal_Bool processCntTypesAndWriteResultIntoFile( char* fname, vector< string >& v ...@@ -134,15 +134,15 @@ sal_Bool processCntTypesAndWriteResultIntoFile( char* fname, vector< string >& v
} }
catch( IllegalArgumentException& ex ) catch( IllegalArgumentException& ex )
{ {
fwprintf( fstream, OUString("Fehlerhafter Content-Type gelesen!!!\n\n") ); fwprintf( fstream, OUString("Read incorrect content type!\n\n") );
} }
catch( NoSuchElementException& ) catch( NoSuchElementException& )
{ {
fwprintf( fstream, OUString("Parameterwert nicht vorhanden\n") ); fwprintf( fstream, OUString("Value of parameter not available\n") );
} }
catch( ... ) catch( ... )
{ {
fwprintf( fstream, OUString("Unbekannter Fehler!!!\n\n") ); fwprintf( fstream, OUString("Unknown error!\n\n") );
} }
fwprintf( fstream, OUString("\n#############################################\n\n") ); fwprintf( fstream, OUString("\n#############################################\n\n") );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment