diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-02-08 18:30:29 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-02-08 18:30:48 +0100 |
commit | 4f604f6b23b825593b401b0f212601dc5f38f85f (patch) | |
tree | d306d728ec8c68d5ff3aaeb95366e5ba6903b79c /stoc/test | |
parent | 14e83984034e053c587ff328ce6fdb3eda26a454 (diff) |
Typos + simple german translations
Change-Id: Icc0e9f028b393abb062a880519211be4fcd1d4b3
Diffstat (limited to 'stoc/test')
-rw-r--r-- | stoc/test/testregistry.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/stoc/test/testregistry.cxx b/stoc/test/testregistry.cxx index 9abeb38533e9..bf8b0fe4ef3f 100644 --- a/stoc/test/testregistry.cxx +++ b/stoc/test/testregistry.cxx @@ -212,13 +212,13 @@ void test_SimpleRegistry( xSubKey->setLongValue(123456789); xSubKey = xKey->createKey(OUString( "SecondSubKey" )); - xSubKey->setAsciiValue(OUString( "ich bin ein acsii value" )); + xSubKey->setAsciiValue(OUString( "I'm an ascii value" )); xSubKey = xKey->createKey(OUString( "ThirdSubKey" )); - xSubKey->setStringValue(OUString( "ich bin ein unicode value" )); + xSubKey->setStringValue(OUString( "I'm an Unicode value" )); xSubKey = xKey->createKey(OUString( "FourthSubKey" )); - Sequence<sal_Int8> aSeq((sal_Int8*)"ich bin ein binary value", 25); + Sequence<sal_Int8> aSeq((sal_Int8*)"I'm a binary value", 25); xSubKey->setBinaryValue(aSeq); Sequence<OUString> seqNames = xKey->getKeyNames(); @@ -237,18 +237,18 @@ void test_SimpleRegistry( } else if (name == "/FirstKey/SecondSubKey" ) { - OSL_ENSURE( xSubKey->getAsciiValue() == "ich bin ein acsii value", + OSL_ENSURE( xSubKey->getAsciiValue() == "I'm an ascii value", "test_SimpleRegistry error 11" ); } else if (name == "/FirstKey/ThirdSubKey" ) { - OSL_ENSURE( xSubKey->getStringValue() == "ich bin ein unicode value", + OSL_ENSURE( xSubKey->getStringValue() == "I'm an Unicode value", "test_SimpleRegistry error 12" ); } else if (name == "/FirstKey/FourthSubKey" ) { Sequence<sal_Int8> seqByte = xSubKey->getBinaryValue(); - OSL_ENSURE(!strcmp(((const char*)seqByte.getArray()), "ich bin ein binary value"), + OSL_ENSURE(!strcmp(((const char*)seqByte.getArray()), "I'm a binary value"), "test_SimpleRegistry error 13" ); } |