summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vcl/generic/fontmanager/fontconfig.cxx18
-rw-r--r--vcl/generic/fontmanager/fontsubst.cxx6
-rw-r--r--vcl/generic/glyphs/glyphcache.cxx7
-rw-r--r--vcl/inc/outfont.hxx19
-rw-r--r--vcl/inc/vcl/fontmanager.hxx3
-rwxr-xr-xvcl/source/gdi/outdev3.cxx60
6 files changed, 90 insertions, 23 deletions
diff --git a/vcl/generic/fontmanager/fontconfig.cxx b/vcl/generic/fontmanager/fontconfig.cxx
index be91349eadc4..a4f5f7fd5bfa 100644
--- a/vcl/generic/fontmanager/fontconfig.cxx
+++ b/vcl/generic/fontmanager/fontconfig.cxx
@@ -68,6 +68,9 @@ using namespace psp;
#ifndef FC_EMBOLDEN
#define FC_EMBOLDEN "embolden"
#endif
+#ifndef FC_MATRIX
+ #define FC_MATRIX "matrix"
+#endif
#ifndef FC_FONTFORMAT
#define FC_FONTFORMAT "fontformat"
#endif
@@ -747,7 +750,7 @@ static void addtopattern(FcPattern *pPattern,
rtl::OUString PrintFontManager::Substitute(const rtl::OUString& rFontName,
rtl::OUString& rMissingCodes, const rtl::OString &rLangAttrib,
FontItalic &rItalic, FontWeight &rWeight,
- FontWidth &rWidth, FontPitch &rPitch) const
+ FontWidth &rWidth, FontPitch &rPitch, bool &rEmbolden, ItalicMatrix &rMatrix) const
{
rtl::OUString aName;
FontCfgWrapper& rWrapper = FontCfgWrapper::get();
@@ -834,6 +837,17 @@ rtl::OUString PrintFontManager::Substitute(const rtl::OUString& rFontName,
rPitch = convertSpacing(val);
if (FcResultMatch == FcPatternGetInteger(pSet->fonts[0], FC_WIDTH, 0, &val))
rWidth = convertWidth(val);
+ FcBool bEmbolden;
+ if (FcResultMatch == FcPatternGetBool(pSet->fonts[0], FC_EMBOLDEN, 0, &bEmbolden))
+ rEmbolden = bEmbolden;
+ FcMatrix *pMatrix = 0;
+ if (FcResultMatch == FcPatternGetMatrix(pSet->fonts[0], FC_MATRIX, 0, &pMatrix))
+ {
+ rMatrix.xx = pMatrix->xx;
+ rMatrix.xy = pMatrix->xy;
+ rMatrix.yx = pMatrix->yx;
+ rMatrix.yy = pMatrix->yy;
+ }
}
// update rMissingCodes by removing resolved unicodes
@@ -844,7 +858,7 @@ rtl::OUString PrintFontManager::Substitute(const rtl::OUString& rFontName,
FcCharSet* unicodes;
if (!FcPatternGetCharSet(pSet->fonts[0], FC_CHARSET, 0, &unicodes))
{
- for( sal_Int32 nStrIndex = 0; nStrIndex < rMissingCodes.getLength(); )
+ for( sal_Int32 nStrIndex = 0; nStrIndex < rMissingCodes.getLength(); )
{
// also handle unicode surrogates
const sal_uInt32 nCode = rMissingCodes.iterateCodePoints( &nStrIndex );
diff --git a/vcl/generic/fontmanager/fontsubst.cxx b/vcl/generic/fontmanager/fontsubst.cxx
index 3bf2d0786719..2d187b18cbf7 100644
--- a/vcl/generic/fontmanager/fontsubst.cxx
+++ b/vcl/generic/fontmanager/fontsubst.cxx
@@ -127,10 +127,14 @@ static ImplFontSelectData GetFcSubstitute(const ImplFontSelectData &rFontSelData
FontWeight eWeight = rFontSelData.GetWeight();
FontWidth eWidth = rFontSelData.GetWidthType();
FontPitch ePitch = rFontSelData.GetPitch();
+ bool bEmbolden = rFontSelData.mbEmbolden;
+ ItalicMatrix aMatrix = rFontSelData.maItalicMatrix;
const psp::PrintFontManager& rMgr = psp::PrintFontManager::get();
- aRet.maSearchName = rMgr.Substitute( rFontSelData.maTargetName, rMissingCodes, aLangAttrib, eItalic, eWeight, eWidth, ePitch);
+ aRet.maSearchName = rMgr.Substitute( rFontSelData.maTargetName, rMissingCodes, aLangAttrib, eItalic, eWeight, eWidth, ePitch, bEmbolden, aMatrix );
+ aRet.maItalicMatrix = aMatrix;
+ aRet.mbEmbolden = bEmbolden;
aRet.meItalic = eItalic;
aRet.meWeight = eWeight;
aRet.meWidthType = eWidth;
diff --git a/vcl/generic/glyphs/glyphcache.cxx b/vcl/generic/glyphs/glyphcache.cxx
index 5322b6502310..fa712bb8dc9e 100644
--- a/vcl/generic/glyphs/glyphcache.cxx
+++ b/vcl/generic/glyphs/glyphcache.cxx
@@ -163,6 +163,13 @@ bool GlyphCache::IFSD_Equal::operator()( const ImplFontSelectData& rA, const Imp
!= STRING_NOTFOUND) && rA.maTargetName != rB.maTargetName)
return false;
#endif
+
+ if (rA.mbEmbolden != rB.mbEmbolden)
+ return false;
+
+ if (rA.maItalicMatrix != rB.maItalicMatrix)
+ return false;
+
return true;
}
diff --git a/vcl/inc/outfont.hxx b/vcl/inc/outfont.hxx
index faf2b00793f2..857d94416925 100644
--- a/vcl/inc/outfont.hxx
+++ b/vcl/inc/outfont.hxx
@@ -156,6 +156,22 @@ friend class ImplDevFontListData;
// - ImplFontSelectData -
// ----------------------
+struct ItalicMatrix
+{
+ double xx, xy, yx, yy;
+ ItalicMatrix() : xx(1), xy(0), yx(0), yy(1) {}
+};
+
+inline bool operator ==(const ItalicMatrix& a, const ItalicMatrix& b)
+{
+ return a.xx == b.xx && a.xy == b.xy && a.yx == b.yx && a.yy == b.yy;
+}
+
+inline bool operator !=(const ItalicMatrix& a, const ItalicMatrix& b)
+{
+ return a.xx != b.xx || a.xy != b.xy || a.yx != b.yx || a.yy != b.yy;
+}
+
class ImplFontSelectData : public ImplFontAttributes
{
public:
@@ -175,6 +191,9 @@ public: // TODO: change to private
bool mbVertical; // vertical mode of requested font
bool mbNonAntialiased; // true if antialiasing is disabled
+ bool mbEmbolden; // Force emboldening
+ ItalicMatrix maItalicMatrix; // Force matrix for slant
+
const ImplFontData* mpFontData; // a matching ImplFontData object
ImplFontEntry* mpFontEntry; // pointer to the resulting FontCache entry
};
diff --git a/vcl/inc/vcl/fontmanager.hxx b/vcl/inc/vcl/fontmanager.hxx
index 0af5e148762e..4a110ad83c80 100644
--- a/vcl/inc/vcl/fontmanager.hxx
+++ b/vcl/inc/vcl/fontmanager.hxx
@@ -37,6 +37,7 @@
#include "vcl/dllapi.h"
#include "vcl/helper.hxx"
#include "vcl/vclenum.hxx"
+#include "outfont.hxx"
#include "com/sun/star/lang/Locale.hpp"
#include <vector>
@@ -649,7 +650,7 @@ public:
rtl::OUString Substitute( const rtl::OUString& rFontName, rtl::OUString& rMissingCodes,
const rtl::OString& rLangAttrib, FontItalic& rItalic, FontWeight& rWeight,
- FontWidth& rWidth, FontPitch& rPitch) const;
+ FontWidth& rWidth, FontPitch& rPitch, bool &rEmboldening, ItalicMatrix &rMatrix) const;
bool hasFontconfig() const { return m_bFontconfigSuccess; }
int FreeTypeCharIndex( void *pFace, sal_uInt32 aChar );
diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx
index b0f59cd91b04..3cc438cd503b 100755
--- a/vcl/source/gdi/outdev3.cxx
+++ b/vcl/source/gdi/outdev3.cxx
@@ -865,9 +865,11 @@ bool ImplFontData::IsBetterMatch( const ImplFontSelectData& rFSD, FontMatchStatu
if( rFSD.meWeight != WEIGHT_DONTKNOW )
{
- // if not bold prefer light fonts to bold fonts
- int nReqWeight = (int)rFSD.meWeight;
- if ( rFSD.meWeight > WEIGHT_MEDIUM )
+ // if not bold or requiring emboldening prefer light fonts to bold fonts
+ FontWeight ePatternWeight = rFSD.mbEmbolden ? WEIGHT_NORMAL : rFSD.meWeight;
+
+ int nReqWeight = (int)ePatternWeight;
+ if ( ePatternWeight > WEIGHT_MEDIUM )
nReqWeight += 100;
int nGivenWeight = (int)meWeight;
@@ -897,14 +899,17 @@ bool ImplFontData::IsBetterMatch( const ImplFontSelectData& rFSD, FontMatchStatu
nMatch += 150;
}
- if ( rFSD.meItalic == ITALIC_NONE )
+ // if requiring custom matrix to fake italic, prefer upright font
+ FontItalic ePatternItalic = rFSD.maItalicMatrix != ItalicMatrix() ? ITALIC_NONE : rFSD.meItalic;
+
+ if ( ePatternItalic == ITALIC_NONE )
{
if( meItalic == ITALIC_NONE )
nMatch += 900;
}
else
{
- if( rFSD.meItalic == meItalic )
+ if( ePatternItalic == meItalic )
nMatch += 900;
else if( meItalic != ITALIC_NONE )
nMatch += 600;
@@ -1457,22 +1462,31 @@ ImplDevFontListData* ImplDevFontList::GetGlyphFallbackFont( ImplFontSelectData&
else
rFontSelData.maSearchName = String();
- // cache the result even if there was no match
- for(;;)
- {
- if( !rFontSelData.mpFontEntry->GetFallbackForUnicode( cChar, rFontSelData.GetWeight(), &rFontSelData.maSearchName ) )
- rFontSelData.mpFontEntry->AddFallbackForUnicode( cChar, rFontSelData.GetWeight(), rFontSelData.maSearchName );
- if( nStrIndex >= aOldMissingCodes.getLength() )
- break;
- cChar = aOldMissingCodes.iterateCodePoints( &nStrIndex );
- }
- if( rFontSelData.maSearchName.Len() != 0 )
+ //See fdo#32665 for an example. FreeSerif that has glyphs in normal
+ //font, but not in the italic or bold version
+ bool bSubSetOfFontRequiresPropertyFaking = rFontSelData.mbEmbolden || rFontSelData.maItalicMatrix != ItalicMatrix();
+
+ // cache the result even if there was no match, unless its from part of a font for which the properties need
+ // to be faked. We need to rework this cache to take into account that fontconfig can return different fonts
+ // for different input sizes, weights, etc. Basically the cache is way to naive
+ if (!bSubSetOfFontRequiresPropertyFaking)
{
- // remove cache entries that were still not resolved
- for( nStrIndex = 0; nStrIndex < rMissingCodes.getLength(); )
+ for(;;)
{
- cChar = rMissingCodes.iterateCodePoints( &nStrIndex );
- rFontSelData.mpFontEntry->IgnoreFallbackForUnicode( cChar, rFontSelData.GetWeight(), rFontSelData.maSearchName );
+ if( !rFontSelData.mpFontEntry->GetFallbackForUnicode( cChar, rFontSelData.GetWeight(), &rFontSelData.maSearchName ) )
+ rFontSelData.mpFontEntry->AddFallbackForUnicode( cChar, rFontSelData.GetWeight(), rFontSelData.maSearchName );
+ if( nStrIndex >= aOldMissingCodes.getLength() )
+ break;
+ cChar = aOldMissingCodes.iterateCodePoints( &nStrIndex );
+ }
+ if( rFontSelData.maSearchName.Len() != 0 )
+ {
+ // remove cache entries that were still not resolved
+ for( nStrIndex = 0; nStrIndex < rMissingCodes.getLength(); )
+ {
+ cChar = rMissingCodes.iterateCodePoints( &nStrIndex );
+ rFontSelData.mpFontEntry->IgnoreFallbackForUnicode( cChar, rFontSelData.GetWeight(), rFontSelData.maSearchName );
+ }
}
}
}
@@ -2180,6 +2194,7 @@ ImplFontSelectData::ImplFontSelectData( const Font& rFont,
meLanguage( rFont.GetLanguage() ),
mbVertical( rFont.IsVertical() ),
mbNonAntialiased( false ),
+ mbEmbolden( false ),
mpFontData( NULL ),
mpFontEntry( NULL )
{
@@ -2215,6 +2230,7 @@ ImplFontSelectData::ImplFontSelectData( const ImplFontData& rFontData,
meLanguage( 0 ),
mbVertical( bVertical ),
mbNonAntialiased( false ),
+ mbEmbolden( false ),
mpFontData( &rFontData ),
mpFontEntry( NULL )
{
@@ -2297,6 +2313,12 @@ bool ImplFontCache::IFSD_Equal::operator()(const ImplFontSelectData& rA, const I
return false;
#endif
+ if (rA.mbEmbolden != rB.mbEmbolden)
+ return false;
+
+ if (rA.maItalicMatrix != rB.maItalicMatrix)
+ return false;
+
return true;
}
=f9607e1846ae6a05aad52980c2c02bc553d6c57b'>source/de/sfx2/source/appl.po791
-rw-r--r--source/de/sfx2/source/bastyp.po40
-rw-r--r--source/de/sfx2/source/control.po33
-rw-r--r--source/de/sfx2/source/dialog.po655
-rw-r--r--source/de/sfx2/source/doc.po687
-rw-r--r--source/de/sfx2/source/sidebar.po65
-rw-r--r--source/de/sfx2/source/view.po291
-rw-r--r--source/de/sfx2/uiconfig/ui.po2321
-rw-r--r--source/de/starmath/messages.po3059
-rw-r--r--source/de/starmath/source.po3125
-rw-r--r--source/de/starmath/uiconfig/smath/ui.po1160
-rw-r--r--source/de/svl/messages.po (renamed from source/de/svl/source/misc.po)416
-rw-r--r--source/de/svtools/messages.po4882
-rw-r--r--source/de/svtools/source/contnr.po229
-rw-r--r--source/de/svtools/source/control.po489
-rw-r--r--source/de/svtools/source/dialogs.po976
-rw-r--r--source/de/svtools/source/java.po89
-rw-r--r--source/de/svtools/source/misc.po4251
-rw-r--r--source/de/svtools/uiconfig/ui.po935
-rw-r--r--source/de/svx/messages.po16980
-rw-r--r--source/de/svx/source/accessibility.po297
-rw-r--r--source/de/svx/source/core.po33
-rw-r--r--source/de/svx/source/dialog.po7243
-rw-r--r--source/de/svx/source/engine3d.po89
-rw-r--r--source/de/svx/source/form.po1160
-rw-r--r--source/de/svx/source/gallery2.po361
-rw-r--r--source/de/svx/source/items.po1000
-rw-r--r--source/de/svx/source/src.po919
-rw-r--r--source/de/svx/source/stbctrls.po226
-rw-r--r--source/de/svx/source/svdraw.po4065
-rw-r--r--source/de/svx/source/table.po24
-rw-r--r--source/de/svx/source/tbxctrls.po625
-rw-r--r--source/de/svx/source/toolbars.po160
-rw-r--r--source/de/svx/uiconfig/ui.po7990
-rw-r--r--source/de/sw/messages.po20835
-rw-r--r--source/de/sw/source/core/layout.po25
-rw-r--r--source/de/sw/source/core/undo.po1321
-rw-r--r--source/de/sw/source/core/unocore.po89
-rw-r--r--source/de/sw/source/ui/app.po1079
-rw-r--r--source/de/sw/source/ui/chrdlg.po33
-rw-r--r--source/de/sw/source/ui/config.po388
-rw-r--r--source/de/sw/source/ui/dbui.po548
-rw-r--r--source/de/sw/source/ui/dialog.po33
-rw-r--r--source/de/sw/source/ui/dochdl.po89
-rw-r--r--source/de/sw/source/ui/docvw.po225
-rw-r--r--source/de/sw/source/ui/envelp.po113
-rw-r--r--source/de/sw/source/ui/fldui.po1025
-rw-r--r--source/de/sw/source/ui/frmdlg.po105
-rw-r--r--source/de/sw/source/ui/globdoc.po32
-rw-r--r--source/de/sw/source/ui/index.po334
-rw-r--r--source/de/sw/source/ui/misc.po105
-rw-r--r--source/de/sw/source/ui/shells.po279
-rw-r--r--source/de/sw/source/ui/sidebar.po65
-rw-r--r--source/de/sw/source/ui/utlui.po2187
-rw-r--r--source/de/sw/source/ui/web.po49
-rw-r--r--source/de/sw/source/uibase/dbui.po65
-rw-r--r--source/de/sw/source/uibase/dialog.po41
-rw-r--r--source/de/sw/source/uibase/docvw.po257
-rw-r--r--source/de/sw/source/uibase/lingu.po65
-rw-r--r--source/de/sw/source/uibase/ribbar.po505
-rw-r--r--source/de/sw/source/uibase/uiview.po153
-rw-r--r--source/de/sw/source/uibase/utlui.po1732
-rw-r--r--source/de/sw/uiconfig/swriter/ui.po19307
-rw-r--r--source/de/uui/messages.po (renamed from source/de/uui/source.po)1169
-rw-r--r--source/de/uui/uiconfig/ui.po420
-rw-r--r--source/de/vcl/messages.po1651
-rw-r--r--source/de/vcl/source/edit.po57
-rw-r--r--source/de/vcl/source/src.po1339
-rw-r--r--source/de/vcl/uiconfig/ui.po998
-rw-r--r--source/de/wizards/messages.po5054
-rw-r--r--source/de/wizards/source/euro.po681
-rw-r--r--source/de/wizards/source/formwizard.po4764
-rw-r--r--source/de/wizards/source/importwizard.po489
-rw-r--r--source/de/wizards/source/template.po553
-rw-r--r--source/de/xmlsecurity/messages.po (renamed from source/de/xmlsecurity/uiconfig/ui.po)599
-rw-r--r--source/de/xmlsecurity/source/component.po25
-rw-r--r--source/de/xmlsecurity/source/dialogs.po155
189 files changed, 136088 insertions, 193676 deletions
diff --git a/source/de/accessibility/source/helper.po b/source/de/accessibility/messages.po
index 40296a4e5ad..056e6cda725 100644
--- a/source/de/accessibility/source/helper.po
+++ b/source/de/accessibility/messages.po
@@ -1,4 +1,4 @@
-#. extracted from accessibility/source/helper
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
@@ -16,90 +16,70 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1492191130.000000\n"
+#. be4e7
#: accessiblestrings.src
-msgctxt ""
-"accessiblestrings.src\n"
-"RID_STR_ACC_NAME_BROWSEBUTTON\n"
-"string.text"
+msgctxt "RID_STR_ACC_NAME_BROWSEBUTTON"
msgid "Browse"
msgstr "Durchsuchen"
+#. 42j6Y
#: accessiblestrings.src
-msgctxt ""
-"accessiblestrings.src\n"
-"STR_SVT_ACC_ACTION_EXPAND\n"
-"string.text"
+msgctxt "STR_SVT_ACC_ACTION_EXPAND"
msgid "Expand"
msgstr "Ausklappen"
+#. 8MWFj
#: accessiblestrings.src
-msgctxt ""
-"accessiblestrings.src\n"
-"STR_SVT_ACC_ACTION_COLLAPSE\n"
-"string.text"
+msgctxt "STR_SVT_ACC_ACTION_COLLAPSE"
msgid "Collapse"
msgstr "Einklappen"
+#. wtoAg
#: accessiblestrings.src
-msgctxt ""
-"accessiblestrings.src\n"
-"STR_SVT_ACC_LISTENTRY_SELCTED_STATE\n"
-"string.text"
+msgctxt "STR_SVT_ACC_LISTENTRY_SELCTED_STATE"
msgid "(Selected)"
msgstr "(Ausgewählt)"
+#. zZTzc
#: accessiblestrings.src
-msgctxt ""
-"accessiblestrings.src\n"
-"RID_STR_ACC_ACTION_CHECK\n"
-"string.text"
+msgctxt "RID_STR_ACC_ACTION_CHECK"
msgid "Check"
msgstr "Aktivieren"
+#. Kva49
#: accessiblestrings.src
-msgctxt ""
-"accessiblestrings.src\n"
-"RID_STR_ACC_ACTION_UNCHECK\n"
-"string.text"
+msgctxt "RID_STR_ACC_ACTION_UNCHECK"
msgid "Uncheck"
msgstr "Deaktivieren"
+#. nk4DD
#: accessiblestrings.src
-msgctxt ""
-"accessiblestrings.src\n"
-"RID_STR_ACC_SCROLLBAR_NAME_VERTICAL\n"
-"string.text"
+msgctxt "RID_STR_ACC_SCROLLBAR_NAME_VERTICAL"
msgid "Vertical scroll bar"
msgstr "Vertikale Bildlaufleiste"
+#. FRA3z
#: accessiblestrings.src
-msgctxt ""
-"accessiblestrings.src\n"
-"RID_STR_ACC_SCROLLBAR_NAME_HORIZONTAL\n"
-"string.text"
+msgctxt "RID_STR_ACC_SCROLLBAR_NAME_HORIZONTAL"
msgid "Horizontal scroll bar"
msgstr "Horizontale Bildlaufleiste"
+#. DNmVr
#: accessiblestrings.src
-msgctxt ""
-"accessiblestrings.src\n"
-"RID_STR_ACC_PANEL_DESCRIPTION\n"
-"string.text"
+msgctxt "RID_STR_ACC_PANEL_DESCRIPTION"
msgid "Please press enter to go into child control for more operations"
-msgstr "Drücken Sie die Eingabetaste, um die untergeordneten Operationen einzublenden"
+msgstr ""
+"Drücken Sie die Eingabetaste, um die untergeordneten Operationen "
+"einzublenden"
+#. Fcjiv
#: accessiblestrings.src
-msgctxt ""
-"accessiblestrings.src\n"
-"RID_STR_ACC_COLUMN_NUM\n"
-"string.text"
+msgctxt "RID_STR_ACC_COLUMN_NUM"
msgid "Column %COLUMNNUMBER"
msgstr "Spalte %COLUMNNUMBER"
+#. mAX2T
#: accessiblestrings.src
-msgctxt ""
-"accessiblestrings.src\n"
-"RID_STR_ACC_ROW_NUM\n"
-"string.text"
+msgctxt "RID_STR_ACC_ROW_NUM"
msgid "Row %ROWNUMBER"
msgstr "Zeile %ROWNUMBER"
diff --git a/source/de/avmedia/source/framework.po b/source/de/avmedia/messages.po
index 3049d3e167f..7556cb33be6 100644
--- a/source/de/avmedia/source/framework.po
+++ b/source/de/avmedia/messages.po
@@ -1,4 +1,4 @@
-#. extracted from avmedia/source/framework
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
@@ -16,122 +16,122 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1492155326.000000\n"
+#. FaxGP
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_STR_OPEN\n"
-"string.text"
+msgctxt "AVMEDIA_STR_OPEN"
msgid "Open"
msgstr "Öffnen"
+#. dgNoA
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_STR_INSERT\n"
-"string.text"
+msgctxt "AVMEDIA_STR_INSERT"
msgid "Apply"
msgstr "Zuweisen"
+#. yViEF
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_STR_PLAY\n"
-"string.text"
+msgctxt "AVMEDIA_STR_PLAY"
msgid "Play"
msgstr "Abspielen"
+#. h9N6V
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_STR_PAUSE\n"
-"string.text"
+msgctxt "AVMEDIA_STR_PAUSE"
msgid "Pause"
msgstr "Pause"
+#. wAyMD
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_STR_STOP\n"
-"string.text"
+msgctxt "AVMEDIA_STR_STOP"
msgid "Stop"
msgstr "Stopp"
+#. 7e23T
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_STR_LOOP\n"
-"string.text"
+msgctxt "AVMEDIA_STR_LOOP"
msgid "Repeat"
msgstr "Wiederholen"
+#. pg6tr
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_STR_MUTE\n"
-"string.text"
+msgctxt "AVMEDIA_STR_MUTE"
msgid "Mute"
msgstr "Stumm"
+#. 7fDy7
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_STR_ZOOM\n"
-"string.text"
+msgctxt "AVMEDIA_STR_ZOOM"
msgid "View"
msgstr "Ansicht"
+#. m6G23
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_STR_ZOOM_50\n"
-"string.text"
+msgctxt "AVMEDIA_STR_ZOOM_50"
msgid "50%"
msgstr "50%"
+#. k2SKV
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_STR_ZOOM_100\n"
-"string.text"
+msgctxt "AVMEDIA_STR_ZOOM_100"
msgid "100%"
msgstr "100%"
+#. yTBHR
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_STR_ZOOM_200\n"
-"string.text"
+msgctxt "AVMEDIA_STR_ZOOM_200"
msgid "200%"
msgstr "200%"
+#. dBMvq
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_STR_ZOOM_FIT\n"
-"string.text"
+msgctxt "AVMEDIA_STR_ZOOM_FIT"
msgid "Scaled"
msgstr "Skaliert"
+#. 9aa7b
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_STR_MEDIAPLAYER\n"
-"string.text"
+msgctxt "AVMEDIA_STR_MEDIAPLAYER"
msgid "Media Player"
msgstr "Medienwiedergabe"
+#. BM7GB
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_MEDIA_PATH\n"
-"string.text"
+msgctxt "AVMEDIA_MEDIA_PATH"
msgid "Media Path"
msgstr "Medienpfad"
+#. JggdA
#: mediacontrol.src
-msgctxt ""
-"mediacontrol.src\n"
-"AVMEDIA_MEDIA_PATH_DEFAULT\n"
-"string.text"
+msgctxt "AVMEDIA_MEDIA_PATH_DEFAULT"
msgid "No Media Selected"
msgstr "Kein Medium ausgewählt"
+
+#. BFybF
+#: mediawindow.src
+msgctxt "AVMEDIA_STR_INSERTMEDIA_DLG"
+msgid "Insert Audio or Video"
+msgstr "Audio oder Video einfügen"
+
+#. AvVZ8
+#: mediawindow.src
+msgctxt "AVMEDIA_STR_OPENMEDIA_DLG"
+msgid "Open Audio or Video"
+msgstr "Audio oder Video öffnen"
+
+#. FaT3C
+#: mediawindow.src
+msgctxt "AVMEDIA_STR_ALL_MEDIAFILES"
+msgid "All audio and video files"
+msgstr "Alle Audio- und Video-Dateien"
+
+#. oJnCV
+#: mediawindow.src
+msgctxt "AVMEDIA_STR_ALL_FILES"
+msgid "All files"
+msgstr "Alle Dateien"
+
+#. QYcS3
+#: mediawindow.src
+msgctxt "AVMEDIA_STR_ERR_URL"
+msgid "The format of the selected file is not supported."
+msgstr "Das Format der ausgewählten Datei wird nicht unterstützt."
diff --git a/source/de/avmedia/source/viewer.po b/source/de/avmedia/source/viewer.po
deleted file mode 100644
index f8653b06a6b..00000000000
--- a/source/de/avmedia/source/viewer.po
+++ /dev/null
@@ -1,57 +0,0 @@
-#. extracted from avmedia/source/viewer
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-11-12 06:40+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
-"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1447310403.000000\n"
-
-#: mediawindow.src
-msgctxt ""
-"mediawindow.src\n"
-"AVMEDIA_STR_INSERTMEDIA_DLG\n"
-"string.text"
-msgid "Insert Audio or Video"
-msgstr "Audio oder Video einfügen"
-
-#: mediawindow.src
-msgctxt ""
-"mediawindow.src\n"
-"AVMEDIA_STR_OPENMEDIA_DLG\n"
-"string.text"
-msgid "Open Audio or Video"
-msgstr "Audio oder Video öffnen"
-
-#: mediawindow.src
-msgctxt ""
-"mediawindow.src\n"
-"AVMEDIA_STR_ALL_MEDIAFILES\n"
-"string.text"
-msgid "All audio and video files"
-msgstr "Alle Audio- und Video-Dateien"
-
-#: mediawindow.src
-msgctxt ""
-"mediawindow.src\n"
-"AVMEDIA_STR_ALL_FILES\n"
-"string.text"
-msgid "All files"
-msgstr "Alle Dateien"
-
-#: mediawindow.src
-msgctxt ""
-"mediawindow.src\n"
-"AVMEDIA_STR_ERR_URL\n"
-"string.text"
-msgid "The format of the selected file is not supported."
-msgstr "Das Format der ausgewählten Datei wird nicht unterstützt."
diff --git a/source/de/basctl/messages.po b/source/de/basctl/messages.po
new file mode 100644
index 00000000000..2ff8dabc9e8
--- /dev/null
+++ b/source/de/basctl/messages.po
@@ -0,0 +1,1016 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2015-07-25 06:20+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.7\n"
+"X-POOTLE-MTIME: 1437805214.000000\n"
+
+#. NtqMk
+#: dlgresid.src
+msgctxt "RID_STR_BRWTITLE_PROPERTIES"
+msgid "Properties: "
+msgstr "Eigenschaften: "
+
+#. FnkAZ
+#: dlgresid.src
+msgctxt "RID_STR_BRWTITLE_NO_PROPERTIES"
+msgid "No Control marked"
+msgstr "Kein Steuerelement markiert"
+
+#. aeAPC
+#: dlgresid.src
+msgctxt "RID_STR_BRWTITLE_MULTISELECT"
+msgid "Multiselection"
+msgstr "Mehrfachauswahl"
+
+#. GNZHF
+#: dlgresid.src
+msgctxt "RID_STR_DEF_LANG"
+msgid "[Default Language]"
+msgstr "[Standardsprache]"
+
+#. uf3Kt
+#: dlgresid.src
+msgctxt "RID_STR_CREATE_LANG"
+msgid "<Press 'Add' to create language resources>"
+msgstr "<Schaltfläche 'Hinzufügen' anklicken, um Sprachressourcen anzulegen>"
+
+#. 4BeDu
+#: basicprint.src
+msgctxt "RID_STR_PRINTDLG_RANGE"
+msgid "Print range"
+msgstr "Druckbereich"
+
+#. AugDf
+#: basicprint.src
+msgctxt "RID_STR_PRINTDLG_ALLPAGES"
+msgid "All ~Pages"
+msgstr "Alle ~Seiten"
+
+#. fa5GY
+#: basicprint.src
+msgctxt "RID_STR_PRINTDLG_PAGES"
+msgid "Pa~ges"
+msgstr "S~eiten"
+
+#. fniWp
+#: basidesh.src
+msgctxt "RID_STR_FILTER_ALLFILES"
+msgid "<All>"
+msgstr "<Alle>"
+
+#. S2GR5
+#: basidesh.src
+msgctxt "RID_STR_NOMODULE"
+msgid "< No Module >"
+msgstr "<Kein Modul>"
+
+#. XoGeT
+#: basidesh.src
+msgctxt "RID_STR_WRONGPASSWORD"
+msgid "Incorrect Password"
+msgstr "Fehlerhaftes Kennwort"
+
+#. LGqtN
+#: basidesh.src
+msgctxt "RID_STR_NOLIBINSTORAGE"
+msgid "The file does not contain any BASIC libraries"
+msgstr "Die Datei enthält keine BASIC Bibliotheken"
+
+#. 3UEnC
+#: basidesh.src
+msgctxt "RID_STR_BADSBXNAME"
+msgid "Invalid Name"
+msgstr "Ungültiger Name"
+
+#. tYTFm
+#: basidesh.src
+msgctxt "RID_STR_LIBNAMETOLONG"
+msgid "A library name can have up to 30 characters."
+msgstr "Der Name einer Bibliothek darf maximal 30 Zeichen lang sein."
+
+#. hGBUF
+#: basidesh.src
+msgctxt "RID_STR_ERRORCHOOSEMACRO"
+msgid "Macros from other documents are not accessible."
+msgstr "Auf Makros anderer Dokumente kann nicht zugegriffen werden."
+
+#. nqQPr
+#: basidesh.src
+msgctxt "RID_STR_LIBISREADONLY"
+msgid "This library is read-only."
+msgstr "Diese Bibliothek ist schreibgeschützt."
+
+#. 8DoDR
+#: basidesh.src
+msgctxt "RID_STR_REPLACELIB"
+msgid "'XX' cannot be replaced."
+msgstr "'XX' kann nicht ersetzt werden."
+
+#. ZrC8a
+#: basidesh.src
+msgctxt "RID_STR_IMPORTNOTPOSSIBLE"
+msgid "'XX' cannot be added."
+msgstr "'XX' kann nicht hinzugefügt werden."
+
+#. HEGQB
+#: basidesh.src
+msgctxt "RID_STR_NOIMPORT"
+msgid "'XX' was not added."
+msgstr "'XX' wurde nicht hinzugefügt."
+
+#. BEk6F
+#: basidesh.src
+msgctxt "RID_STR_ENTERPASSWORD"
+msgid "Enter password for 'XX'"
+msgstr "Kennwort eingeben für 'XX'"
+
+#. kQpnq
+#: basidesh.src
+msgctxt "RID_STR_SBXNAMEALLREADYUSED"
+msgid "Name already exists"
+msgstr "Name bereits vergeben"
+
+#. JWDCy
+#: basidesh.src
+msgctxt "RID_STR_SIGNED"
+msgid "(Signed)"
+msgstr "(Signiert)"
+
+#. 6ubXB
+#: basidesh.src
+msgctxt "RID_STR_SBXNAMEALLREADYUSED2"
+msgid "Object with same name already exists"
+msgstr "Ein Objekt mit demselben Namen existiert bereits"
+
+#. Gnb5H
+#: basidesh.src
+msgctxt "RID_STR_CANNOTRUNMACRO"
+msgid ""
+"For security reasons, you cannot run this macro.\n"
+"\n"
+"For more information, check the security settings."
+msgstr ""
+"Aus Sicherheitsgründen ist dieses Makro nicht ausführbar.\n"
+"\n"
+"Für weitere Informationen überprüfen Sie die Sicherheitseinstellungen."
+
+#. FGWLw
+#: basidesh.src
+msgctxt "RID_STR_SEARCHNOTFOUND"
+msgid "Search key not found"
+msgstr "Suchbegriff nicht gefunden"
+
+#. ZJgvX
+#: basidesh.src
+msgctxt "RID_STR_SEARCHFROMSTART"
+msgid "Search to last module complete. Continue at first module?"
+msgstr ""
+"Es wurde bis zum letzten Modul gesucht. Möchten Sie die Suche beim ersten "
+"Modul fortsetzen?"
+
+#. 4yDcC
+#: basidesh.src
+msgctxt "RID_STR_SEARCHREPLACES"
+msgid "Search key replaced XX times"
+msgstr "Suchbegriff XX-mal ersetzt"
+
+#. 85z2z
+#: basidesh.src
+msgctxt "RID_STR_COULDNTREAD"
+msgid "The file could not be read"
+msgstr "Die Datei konnte nicht gelesen werden"
+
+#. VSAAi
+#: basidesh.src
+msgctxt "RID_STR_COULDNTWRITE"
+msgid "The file could not be saved"
+msgstr "Die Datei konnte nicht gespeichert werden"
+
+#. qgd4b
+#: basidesh.src
+msgctxt "RID_STR_CANNOTCHANGENAMESTDLIB"
+msgid "The name of the default library cannot be changed."
+msgstr "Der Name der Standardbibliothek kann nicht geändert werden."
+
+#. EobDV
+#: basidesh.src
+msgctxt "RID_STR_GENERATESOURCE"
+msgid "Generating source"
+msgstr "Erzeuge Quelltext"
+
+#. Re6Gc
+#: basidesh.src
+msgctxt "RID_STR_FILENAME"
+msgid "File name:"
+msgstr "Dateiname:"
+
+#. zYyVi
+#: basidesh.src
+msgctxt "RID_STR_APPENDLIBS"
+msgid "Import Libraries"
+msgstr "Bibliotheken importieren"
+
+#. tasV7
+#: basidesh.src
+msgctxt "RID_STR_QUERYDELMACRO"
+msgid "Do you want to delete the macro XX?"
+msgstr "Möchten Sie das Makro XX löschen?"
+
+#. Nw7mk
+#: basidesh.src
+msgctxt "RID_STR_QUERYDELDIALOG"
+msgid "Do you want to delete the XX dialog?"
+msgstr "Möchten Sie den Dialog XX löschen?"
+
+#. 3Vw9F
+#: basidesh.src
+msgctxt "RID_STR_QUERYDELLIB"
+msgid "Do you want to delete the XX library?"
+msgstr "Möchten Sie die Bibliothek XX löschen?"
+
+#. x2D9Y
+#: basidesh.src
+msgctxt "RID_STR_QUERYDELLIBREF"
+msgid "Do you want to delete the reference to the XX library?"
+msgstr "Möchten Sie den Verweis auf die Bibliothek XX löschen?"
+
+#. oUGKc
+#: basidesh.src
+msgctxt "RID_STR_QUERYDELMODULE"
+msgid "Do you want to delete the XX module?"
+msgstr "Möchten Sie das Modul XX löschen?"
+
+#. Ctsr7
+#: basidesh.src
+msgctxt "RID_STR_BASIC"
+msgid "BASIC"
+msgstr "BASIC"
+
+#. WMcJq
+#: basidesh.src
+msgctxt "RID_STR_LINE"
+msgid "Ln"
+msgstr "Zl"
+
+#. pKEQb
+#: basidesh.src
+msgctxt "RID_STR_COLUMN"
+msgid "Col"
+msgstr "Sp"
+
+#. xECMA
+#: basidesh.src
+msgctxt "RID_BASICIDE_OBJECTBAR"
+msgid "Macro Bar"
+msgstr "Symbolleiste Makro"
+
+#. 86aZY
+#: basidesh.src
+msgctxt "RID_STR_CANNOTCLOSE"
+msgid "The window cannot be closed while BASIC is running."
+msgstr ""
+"Das Fenster kann nicht geschlossen werden, solange das BASIC Programm "
+"ausgeführt wird."
+
+#. CUG7C
+#: basidesh.src
+msgctxt "RID_STR_REPLACESTDLIB"
+msgid "The default library cannot be replaced."
+msgstr "Die Standardbibliothek kann nicht ersetzt werden."
+
+#. eWwfN
+#: basidesh.src
+msgctxt "RID_STR_REFNOTPOSSIBLE"
+msgid "Reference to 'XX' not possible."
+msgstr "Verweis auf 'XX' nicht möglich."
+
+#. A7sSq
+#: basidesh.src
+msgctxt "RID_STR_WATCHNAME"
+msgid "Watch"
+msgstr "Beobachter"
+
+#. VoaBX
+#: basidesh.src
+msgctxt "RID_STR_WATCHVARIABLE"
+msgid "Variable"
+msgstr "Variable"
+
+#. qADE3
+#: basidesh.src
+msgctxt "RID_STR_WATCHVALUE"
+msgid "Value"
+msgstr "Wert"
+
+#. rzQCr
+#: basidesh.src
+msgctxt "RID_STR_WATCHTYPE"
+msgid "Type"
+msgstr "Typ"
+
+#. 84TYn
+#: basidesh.src
+msgctxt "RID_STR_STACKNAME"
+msgid "Call Stack"
+msgstr "Kommandostapel"
+
+#. DBfyu
+#: basidesh.src
+msgctxt "RID_STR_STDDIALOGNAME"
+msgid "Dialog"
+msgstr "Dialog"
+
+#. hUHfi
+#: basidesh.src
+msgctxt "RID_STR_NEWLIB"
+msgid "New Library"
+msgstr "Neue Bibliothek"
+
+#. kisd2
+#: basidesh.src
+msgctxt "RID_STR_NEWMOD"
+msgid "New Module"
+msgstr "Neues Modul"
+
+#. YeULe
+#: basidesh.src
+msgctxt "RID_STR_NEWDLG"
+msgid "New Dialog"
+msgstr "Neuer Dialog"
+
+#. jYa97
+#: basidesh.src
+msgctxt "RID_STR_ALL"
+msgid "All"
+msgstr "Alle"
+
+#. yF2LY
+#: basidesh.src
+msgctxt "RID_STR_PAGE"
+msgid "Page"
+msgstr "Seite"
+
+#. DHuFN
+#: basidesh.src
+msgctxt "RID_STR_WILLSTOPPRG"
+msgid ""
+"You will have to restart the program after this edit.\n"
+"Continue?"
+msgstr ""
+"Sie müssen nach dieser Änderung das Programm neu starten.\n"
+"Fortfahren?"
+
+#. 4qWED
+#: basidesh.src
+msgctxt "RID_STR_SEARCHALLMODULES"
+msgid "Do you want to replace the text in all active modules?"
+msgstr "Soll der Text in allen aktiven Modulen ersetzt werden?"
+
+#. FFBmA
+#: basidesh.src
+msgctxt "RID_STR_REMOVEWATCH"
+msgid "Watch:"
+msgstr "Beobachter:"
+
+#. ndtng
+#: basidesh.src
+msgctxt "RID_STR_STACK"
+msgid "Calls: "
+msgstr "Aufrufe: "
+
+#. wwfg3
+#: basidesh.src
+msgctxt "RID_STR_USERMACROS"
+msgid "My Macros"
+msgstr "Meine Makros"
+
+#. XenwN
+#: basidesh.src
+msgctxt "RID_STR_USERDIALOGS"
+msgid "My Dialogs"
+msgstr "Meine Dialoge"
+
+#. Mwj7u
+#: basidesh.src
+msgctxt "RID_STR_USERMACROSDIALOGS"
+msgid "My Macros & Dialogs"
+msgstr "Meine Makros & Dialoge"
+
+#. EAJgs
+#: basidesh.src
+msgctxt "RID_STR_SHAREMACROS"
+msgid "%PRODUCTNAME Macros"
+msgstr "%PRODUCTNAME Makros"
+
+#. tPefb
+#: basidesh.src
+msgctxt "RID_STR_SHAREDIALOGS"
+msgid "%PRODUCTNAME Dialogs"
+msgstr "%PRODUCTNAME Dialoge"
+
+#. BNWgY
+#: basidesh.src
+msgctxt "RID_STR_SHAREMACROSDIALOGS"
+msgid "%PRODUCTNAME Macros & Dialogs"
+msgstr "%PRODUCTNAME Makros & Dialoge"
+
+#. BAMA5
+#: basidesh.src
+msgctxt "RID_STR_REMOVEWATCHTIP"
+msgid "Remove Watch"
+msgstr "Beobachter entfernen"
+
+#. oUqF6
+#: basidesh.src
+msgctxt "RID_STR_QUERYREPLACEMACRO"
+msgid "Do you want to overwrite the XX macro?"
+msgstr "Möchten Sie das Makro XX überschreiben?"
+
+#. Tho9k
+#: basidesh.src
+msgctxt "RID_STR_TRANSLATION_NOTLOCALIZED"
+msgid "<Not localized>"
+msgstr "<Nicht lokalisiert>"
+
+#. xQyRD
+#: basidesh.src
+msgctxt "RID_STR_TRANSLATION_DEFAULT"
+msgid "[Default Language]"
+msgstr "[Standardsprache]"
+
+#. PqDTe
+#: basidesh.src
+msgctxt "RID_STR_DOCUMENT_OBJECTS"
+msgid "Document Objects"
+msgstr "Dokumentobjekte"
+
+#. N3DE8
+#: basidesh.src
+msgctxt "RID_STR_USERFORMS"
+msgid "Forms"
+msgstr "Formulare"
+
+#. 4dGqP
+#: basidesh.src
+msgctxt "RID_STR_NORMAL_MODULES"
+msgid "Modules"
+msgstr "Module"
+
+#. u87jq
+#: basidesh.src
+msgctxt "RID_STR_CLASS_MODULES"
+msgid "Class Modules"
+msgstr "Klassenmodule"
+
+#. 8gC8E
+#: basidesh.src
+msgctxt "RID_STR_DLGIMP_CLASH_RENAME"
+msgid "Rename"
+msgstr "Umbenennen"
+
+#. FCqSS
+#: basidesh.src
+msgctxt "RID_STR_DLGIMP_CLASH_REPLACE"
+msgid "Replace"
+msgstr "Ersetzen"
+
+#. 5EucM
+#: basidesh.src
+msgctxt "RID_STR_DLGIMP_CLASH_TITLE"
+msgid "Dialog Import - Name already used"
+msgstr "Dialog Importieren - Der Name wird bereits verwendet"
+
+#. yG2bx
+#: basidesh.src
+msgctxt "RID_STR_DLGIMP_CLASH_TEXT"
+msgid ""
+"The library already contains a dialog with the name:\n"
+"\n"
+"$(ARG1)\n"
+"\n"
+"Rename dialog to keep current dialog or replace existing dialog.\n"
+" "
+msgstr ""
+"Die Bibliothek enthält bereits einen Dialog mit gleichem Namen:\n"
+"\n"
+"$(ARG1)\n"
+"\n"
+"Benennen Sie den Dialog um, um den vorhandenen beizubehalten,\n"
+"oder ersetzen Sie den gegenwärtigen Dialog.\n"
+" "
+
+#. FRQSJ
+#: basidesh.src
+msgctxt "RID_STR_DLGIMP_MISMATCH_ADD"
+msgid "Add"
+msgstr "Hinzufügen"
+
+#. inETw
+#: basidesh.src
+msgctxt "RID_STR_DLGIMP_MISMATCH_OMIT"
+msgid "Omit"
+msgstr "Auslassen"
+
+#. 227xE
+#: basidesh.src
+msgctxt "RID_STR_DLGIMP_MISMATCH_TITLE"
+msgid "Dialog Import - Language Mismatch"
+msgstr "Dialog Importieren - Sprachkonflikt"
+
+#. zcJw8
+#: basidesh.src
+msgctxt "RID_STR_DLGIMP_MISMATCH_TEXT"
+msgid ""
+"The dialog to be imported supports other languages than the target library.\n"
+"\n"
+"Add these languages to the library to keep additional language resources provided by the dialog or omit them to stay with the current library languages.\n"
+"\n"
+"Note: For languages not supported by the dialog the resources of the dialog's default language will be used.\n"
+" "
+msgstr ""
+"Der zu importierende Dialog unterstützt andere Sprachen als die Zielbibliothek.\n"
+"\n"
+"Fügen Sie diese Sprachen zur Bibliothek hinzu, um zusätzliche Sprachressourcen des Dialogs bereitzuhalten, oder lassen Sie diese weg, um die aktuellen Sprachen der Bibliothek beizubehalten.\n"
+"\n"
+"Hinweis: Für Sprachen, die vom Dialog nicht unterstützt werden, wird die Standardsprache des Dialogs verwendet.\n"
+" "
+
+#. ehKWC
+#: macrodlg.src
+msgctxt "RID_STR_BTNDEL"
+msgid "~Delete"
+msgstr "~Löschen"
+
+#. R8yEW
+#: macrodlg.src
+msgctxt "RID_STR_BTNNEW"
+msgid "~New"
+msgstr "~Neu"
+
+#. dALHq
+#: macrodlg.src
+msgctxt "RID_STR_CHOOSE"
+msgid "Choose"
+msgstr "Auswählen"
+
+#. edPrX
+#: macrodlg.src
+msgctxt "RID_STR_RUN"
+msgid "Run"
+msgstr "Ausführen"
+
+#. DJbpA
+#: macrodlg.src
+msgctxt "RID_STR_RECORD"
+msgid "~Save"
+msgstr "~Speichern"
+
+#. jnJoF
+#: moduldlg.src
+msgctxt "RID_STR_EXPORTPACKAGE"
+msgid "Export library as extension"
+msgstr "Bibliothek als Extension exportieren"
+
+#. SnKF3
+#: moduldlg.src
+msgctxt "RID_STR_EXPORTBASIC"
+msgid "Export as BASIC library"
+msgstr "Als BASIC Bibliothek exportieren"
+
+#. G6SqW
+#: moduldlg.src
+msgctxt "RID_STR_PACKAGE_BUNDLE"
+msgid "Extension"
+msgstr "Extension"
+
+#. 7Gzqz
+#: objdlg.src
+msgctxt "RID_BASICIDE_OBJCAT"
+msgid "Object Catalog"
+msgstr "Objektkatalog"
+
+#. 2AA4t
+#: objdlg.src
+msgctxt "RID_STR_TLB_MACROS"
+msgid "Objects Tree"
+msgstr "Objektbaum"
+
+#. koeqc
+#: basicmacrodialog.ui
+msgctxt "basicmacrodialog|BasicMacroDialog"
+msgid "%PRODUCTNAME Basic Macros"
+msgstr "%PRODUCTNAME Basic Makros"
+
+#. tFg7s
+#: basicmacrodialog.ui
+msgctxt "basicmacrodialog|run"
+msgid "Run"
+msgstr "Ausführen"
+
+#. izDZr
+#: basicmacrodialog.ui
+msgctxt "basicmacrodialog|assign"
+msgid "Assign..."
+msgstr "Zuweisen..."
+
+#. dxu7W
+#: basicmacrodialog.ui
+msgctxt "basicmacrodialog|edit"
+msgid "Edit"
+msgstr "Bearbeiten"
+
+#. Gh52t
+#: basicmacrodialog.ui
+msgctxt "basicmacrodialog|organize"
+msgid "Organizer..."
+msgstr "Verwalten..."
+
+#. wAJj2
+#: basicmacrodialog.ui
+msgctxt "basicmacrodialog|newlibrary"
+msgid "New Library"
+msgstr "Neue Bibliothek"
+
+#. 2xdsE
+#: basicmacrodialog.ui
+msgctxt "basicmacrodialog|newmodule"
+msgid "New Module"
+msgstr "Neues Modul"
+
+#. 5TRqv
+#: basicmacrodialog.ui
+msgctxt "basicmacrodialog|existingmacrosft"
+msgid "Existing Macros In:"
+msgstr "Vorhandene Makros in:"
+
+#. Mfysc
+#: basicmacrodialog.ui
+msgctxt "basicmacrodialog|macrofromft"
+msgid "Macro From"
+msgstr "Makro aus"
+
+#. Qth4v
+#: basicmacrodialog.ui
+msgctxt "basicmacrodialog|macrotoft"
+msgid "Save Macro In"
+msgstr "Makro speichern in"
+
+#. BpDb6
+#: basicmacrodialog.ui
+msgctxt "basicmacrodialog|libraryft1"
+msgid "Macro Name"
+msgstr "Name des Makros"
+
+#. MDBgX
+#: breakpointmenus.ui
+msgctxt "breakpointmenus|manage"
+msgid "Manage Breakpoints..."
+msgstr "Haltepunkte verwalten..."
+
+#. faXzj
+#: breakpointmenus.ui
+msgctxt "breakpointmenus|active"
+msgid "_Active"
+msgstr "_Aktiv"
+
+#. FhiYE
+#: breakpointmenus.ui
+msgctxt "breakpointmenus|properties"
+msgid "_Properties..."
+msgstr "_Eigenschaften..."
+
+#. G55tN
+#: defaultlanguage.ui
+msgctxt "defaultlanguage|DefaultLanguageDialog"
+msgid "Set Default User Interface Language"
+msgstr "Standardsprache für die Benutzeroberfläche festlegen"
+
+#. xYz56
+#: defaultlanguage.ui
+msgctxt "defaultlanguage|defaultlabel"
+msgid "Default language:"
+msgstr "Standardsprache:"
+
+#. C9ruF
+#: defaultlanguage.ui
+msgctxt "defaultlanguage|checkedlabel"
+msgid "Available languages:"
+msgstr "Verfügbare Sprachen:"
+
+#. fBZNF
+#: defaultlanguage.ui
+msgctxt "defaultlanguage|defined"
+msgid ""
+"Select a language to define the default user interface language. All "
+"currently present strings will be assigned to the resources created for the "
+"selected language."
+msgstr ""
+"Wählen Sie eine Sprache, um die Standardsprache der Benutzeroberfläche "
+"festzulegen. Alle angezeigten Texte der Benutzeroberfläche werden dann in "
+"der ausgewählten Sprache angezeigt."
+
+#. pk7Wj
+#: defaultlanguage.ui
+msgctxt "defaultlanguage|added"
+msgid ""
+"Select languages to be added. Resources for these languages will be created "
+"in the library. Strings of the current default user interface language will "
+"be copied to these new resources by default."
+msgstr ""
+"Wählen Sie die Sprachen, die hinzugefügt werden sollen. Es werden dann "
+"Ressourcen für diese Sprachen in der Bibliothek angelegt. Die Texte der "
+"aktuellen Standardsprache werden dabei in die neu angelegten "
+"Sprachressourcen kopiert."
+
+#. QWxzi
+#: defaultlanguage.ui
+msgctxt "defaultlanguage|alttitle"
+msgid "Add User Interface Languages"
+msgstr "Sprachen für die Benutzeroberfläche hinzufügen"
+
+#. GCNcE
+#: deletelangdialog.ui
+msgctxt "deletelangdialog|DeleteLangDialog"
+msgid "Delete Language Resources"
+msgstr "Sprachressourcen löschen"
+
+#. Upj8a
+#: deletelangdialog.ui
+msgctxt "deletelangdialog|DeleteLangDialog"
+msgid "Do you want to delete the resources of the selected language(s)?"
+msgstr "Möchten Sie die ausgewählte(n) Sprachressource(n) löschen?"
+
+#. CThUw
+#: deletelangdialog.ui
+msgctxt "deletelangdialog|DeleteLangDialog"
+msgid ""
+"You are about to delete the resources for the selected language(s). All user"
+" interface strings for this language(s) will be deleted."
+msgstr ""
+"Sie sind dabei, die ausgewählte(n) Sprachressource(n) zu löschen. Alle Texte"
+" dieser Benutzeroberflächensprache(n) werden gelöscht werden."
+
+#. gErRZ
+#: dialogpage.ui
+msgctxt "dialogpage|label1"
+msgid "Dialog:"
+msgstr "Dialog:"
+
+#. n9VLU
+#: dialogpage.ui
+msgctxt "dialogpage|newmodule"
+msgid "_New..."
+msgstr "_Neu..."
+
+#. kBzSW
+#: dialogpage.ui
+msgctxt "dialogpage|newdialog"
+msgid "_New..."
+msgstr "_Neu..."
+
+#. k64f4
+#: dialogpage.ui
+msgctxt "dialogpage|password"
+msgid "_Password..."
+msgstr "_Kennwort..."
+
+#. sHS7f
+#: dialogpage.ui
+msgctxt "dialogpage|import"
+msgid "_Import..."
+msgstr "_Importieren..."
+
+#. ubE5G
+#: dialogpage.ui
+msgctxt "dialogpage|export"
+msgid "_Export..."
+msgstr "_Exportieren..."
+
+#. worE9
+#: exportdialog.ui
+msgctxt "exportdialog|ExportDialog"
+msgid "Export Basic library"
+msgstr "Basic-Bibliothek exportieren"
+
+#. hvm9y
+#: exportdialog.ui
+msgctxt "exportdialog|extension"
+msgid "Export as _extension"
+msgstr "Als _Extension exportieren"
+
+#. pK9mG
+#: exportdialog.ui
+msgctxt "exportdialog|basic"
+msgid "Export as BASIC library"
+msgstr "Als BASIC-Bibliothek exportieren"
+
+#. foHKi
+#: gotolinedialog.ui
+msgctxt "gotolinedialog|GotoLineDialog"
+msgid "Go to Line"
+msgstr "Zu Zeilennummer wechseln"
+
+#. GbpSc
+#: gotolinedialog.ui
+msgctxt "gotolinedialog|area"
+msgid "_Line number:"
+msgstr "_Zeilennummer:"
+
+#. C6VgC
+#: importlibdialog.ui
+msgctxt "importlibdialog|ImportLibDialog"
+msgid "Import Libraries"
+msgstr "Bibliotheken importieren"
+
+#. C8ny7
+#: importlibdialog.ui
+msgctxt "importlibdialog|ref"
+msgid "Insert as reference (read-only)"
+msgstr "Als Verweis einfügen (schreibgeschützt)"
+
+#. B9N7w
+#: importlibdialog.ui
+msgctxt "importlibdialog|replace"
+msgid "Replace existing libraries"
+msgstr "Bestehende Bibliotheken ersetzen"
+
+#. GGb7Q
+#: importlibdialog.ui
+msgctxt "importlibdialog|label1"
+msgid "Options"
+msgstr "Optionen"
+
+#. XdZ7e
+#: libpage.ui
+msgctxt "libpage|label1"
+msgid "L_ocation:"
+msgstr "_Ort:"
+
+#. C4mjh
+#: libpage.ui
+msgctxt "libpage|lingudictsft"
+msgid "_Library:"
+msgstr "_Bibliothek:"
+
+#. AjENj
+#: libpage.ui
+msgctxt "libpage|password"
+msgid "_Password..."
+msgstr "_Kennwort..."
+
+#. bzX6x
+#: libpage.ui
+msgctxt "libpage|new"
+msgid "_New..."
+msgstr "_Neu..."
+
+#. EBVPe
+#: libpage.ui
+msgctxt "libpage|import"
+msgid "_Import..."
+msgstr "_Importieren..."
+
+#. GhHRH
+#: libpage.ui
+msgctxt "libpage|export"
+msgid "_Export..."
+msgstr "_Exportieren..."
+
+#. zrJTt
+#: managebreakpoints.ui
+msgctxt "managebreakpoints|ManageBreakpointsDialog"
+msgid "Manage Breakpoints"
+msgstr "Haltepunkte verwalten"
+
+#. PcuyN
+#: managebreakpoints.ui
+msgctxt "managebreakpoints|active"
+msgid "Active"
+msgstr "Aktiv"
+
+#. VDCwR
+#: managebreakpoints.ui
+msgctxt "managebreakpoints|label2"
+msgid "Pass count:"
+msgstr "Durchlauf:"
+
+#. 5dExG
+#: managebreakpoints.ui
+msgctxt "managebreakpoints|label1"
+msgid "Breakpoints"
+msgstr "Haltepunkte"
+
+#. M2Sx2
+#: managelanguages.ui
+msgctxt "managelanguages|ManageLanguagesDialog"
+msgid "Manage User Interface Languages [$1]"
+msgstr "Sprachen [$1] der Benutzeroberfläche verwalten"
+
+#. h23XK
+#: managelanguages.ui
+msgctxt "managelanguages|label1"
+msgid "Present languages:"
+msgstr "Verfügbare Sprachen:"
+
+#. eDZBN
+#: managelanguages.ui
+msgctxt "managelanguages|label2"
+msgid ""
+"The default language is used if no localization for a user interface locale "
+"is present. Furthermore all strings from the default language are copied to "
+"resources of newly added languages."
+msgstr ""
+"Die Standardsprache wird verwendet, wenn keine Lokalisierung für eine "
+"lokalisierte Benutzeroberfläche verfügbar ist. Darüber hinaus werden alle "
+"Zeichenketten der Standardsprache in die Ressource für neu hinzugefügte "
+"Sprachen kopiert."
+
+#. WE7kt
+#: managelanguages.ui
+msgctxt "managelanguages|add"
+msgid "Add..."
+msgstr "Hinzufügen..."
+
+#. MqU2f
+#: managelanguages.ui
+msgctxt "managelanguages|default"
+msgid "Default"
+msgstr "Standard"
+
+#. aMjkJ
+#: modulepage.ui
+msgctxt "modulepage|label1"
+msgid "M_odule:"
+msgstr "_Modul:"
+
+#. KjBGM
+#: modulepage.ui
+msgctxt "modulepage|newmodule"
+msgid "_New..."
+msgstr "_Neu..."
+
+#. RakoP
+#: modulepage.ui
+msgctxt "modulepage|newdialog"
+msgid "_New..."
+msgstr "_Neu..."
+
+#. 5FC8g
+#: modulepage.ui
+msgctxt "modulepage|password"
+msgid "_Password..."
+msgstr "_Kennwort..."
+
+#. EgCDE
+#: modulepage.ui
+msgctxt "modulepage|import"
+msgid "_Import..."
+msgstr "_Importieren..."
+
+#. GAYBh
+#: modulepage.ui
+msgctxt "modulepage|export"
+msgid "_Export..."
+msgstr "_Exportieren..."
+
+#. Skwd5
+#: newlibdialog.ui
+msgctxt "newlibdialog|area"
+msgid "_Name:"
+msgstr "_Name:"
+
+#. xbgLr
+#: organizedialog.ui
+msgctxt "organizedialog|OrganizeDialog"
+msgid "%PRODUCTNAME Basic Macro Organizer"
+msgstr "%PRODUCTNAME Basic-Makros verwalten"
+
+#. 7cVSj
+#: organizedialog.ui
+msgctxt "organizedialog|modules"
+msgid "Modules"
+msgstr "Module"
+
+#. fXFQr
+#: organizedialog.ui
+msgctxt "organizedialog|dialogs"
+msgid "Dialogs"
+msgstr "Dialoge"
+
+#. f7Wxa
+#: organizedialog.ui
+msgctxt "organizedialog|libraries"
+msgid "Libraries"
+msgstr "Bibliotheken"
diff --git a/source/de/basctl/source/basicide.po b/source/de/basctl/source/basicide.po
deleted file mode 100644
index 6dce92e11e7..00000000000
--- a/source/de/basctl/source/basicide.po
+++ /dev/null
@@ -1,748 +0,0 @@
-#. extracted from basctl/source/basicide
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-05-03 03:47+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493783267.000000\n"
-
-#: basicprint.src
-msgctxt ""
-"basicprint.src\n"
-"RID_STR_PRINTDLG_RANGE\n"
-"string.text"
-msgid "Print range"
-msgstr "Druckbereich"
-
-#: basicprint.src
-msgctxt ""
-"basicprint.src\n"
-"RID_STR_PRINTDLG_ALLPAGES\n"
-"string.text"
-msgid "All ~Pages"
-msgstr "Alle ~Seiten"
-
-#: basicprint.src
-msgctxt ""
-"basicprint.src\n"
-"RID_STR_PRINTDLG_PAGES\n"
-"string.text"
-msgid "Pa~ges"
-msgstr "S~eiten"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_FILTER_ALLFILES\n"
-"string.text"
-msgid "<All>"
-msgstr "<Alle>"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_NOMODULE\n"
-"string.text"
-msgid "< No Module >"
-msgstr "<Kein Modul>"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_WRONGPASSWORD\n"
-"string.text"
-msgid "Incorrect Password"
-msgstr "Fehlerhaftes Kennwort"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_NOLIBINSTORAGE\n"
-"string.text"
-msgid "The file does not contain any BASIC libraries"
-msgstr "Die Datei enthält keine BASIC Bibliotheken"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_BADSBXNAME\n"
-"string.text"
-msgid "Invalid Name"
-msgstr "Ungültiger Name"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_LIBNAMETOLONG\n"
-"string.text"
-msgid "A library name can have up to 30 characters."
-msgstr "Der Name einer Bibliothek darf maximal 30 Zeichen lang sein."
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_ERRORCHOOSEMACRO\n"
-"string.text"
-msgid "Macros from other documents are not accessible."
-msgstr "Auf Makros anderer Dokumente kann nicht zugegriffen werden."
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_LIBISREADONLY\n"
-"string.text"
-msgid "This library is read-only."
-msgstr "Diese Bibliothek ist schreibgeschützt."
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_REPLACELIB\n"
-"string.text"
-msgid "'XX' cannot be replaced."
-msgstr "'XX' kann nicht ersetzt werden."
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_IMPORTNOTPOSSIBLE\n"
-"string.text"
-msgid "'XX' cannot be added."
-msgstr "'XX' kann nicht hinzugefügt werden."
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_NOIMPORT\n"
-"string.text"
-msgid "'XX' was not added."
-msgstr "'XX' wurde nicht hinzugefügt."
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_ENTERPASSWORD\n"
-"string.text"
-msgid "Enter password for 'XX'"
-msgstr "Kennwort eingeben für 'XX'"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_SBXNAMEALLREADYUSED\n"
-"string.text"
-msgid "Name already exists"
-msgstr "Name bereits vergeben"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_SIGNED\n"
-"string.text"
-msgid "(Signed)"
-msgstr "(Signiert)"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_SBXNAMEALLREADYUSED2\n"
-"string.text"
-msgid "Object with same name already exists"
-msgstr "Ein Objekt mit demselben Namen existiert bereits"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_CANNOTRUNMACRO\n"
-"string.text"
-msgid ""
-"For security reasons, you cannot run this macro.\n"
-"\n"
-"For more information, check the security settings."
-msgstr ""
-"Aus Sicherheitsgründen ist dieses Makro nicht ausführbar.\n"
-"\n"
-"Für weitere Informationen überprüfen Sie die Sicherheitseinstellungen."
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_SEARCHNOTFOUND\n"
-"string.text"
-msgid "Search key not found"
-msgstr "Suchbegriff nicht gefunden"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_SEARCHFROMSTART\n"
-"string.text"
-msgid "Search to last module complete. Continue at first module?"
-msgstr "Es wurde bis zum letzten Modul gesucht. Möchten Sie die Suche beim ersten Modul fortsetzen?"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_SEARCHREPLACES\n"
-"string.text"
-msgid "Search key replaced XX times"
-msgstr "Suchbegriff XX-mal ersetzt"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_COULDNTREAD\n"
-"string.text"
-msgid "The file could not be read"
-msgstr "Die Datei konnte nicht gelesen werden"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_COULDNTWRITE\n"
-"string.text"
-msgid "The file could not be saved"
-msgstr "Die Datei konnte nicht gespeichert werden"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_CANNOTCHANGENAMESTDLIB\n"
-"string.text"
-msgid "The name of the default library cannot be changed."
-msgstr "Der Name der Standardbibliothek kann nicht geändert werden."
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_GENERATESOURCE\n"
-"string.text"
-msgid "Generating source"
-msgstr "Erzeuge Quelltext"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_FILENAME\n"
-"string.text"
-msgid "File name:"
-msgstr "Dateiname:"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_APPENDLIBS\n"
-"string.text"
-msgid "Import Libraries"
-msgstr "Bibliotheken importieren"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_QUERYDELMACRO\n"
-"string.text"
-msgid "Do you want to delete the macro XX?"
-msgstr "Möchten Sie das Makro XX löschen?"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_QUERYDELDIALOG\n"
-"string.text"
-msgid "Do you want to delete the XX dialog?"
-msgstr "Möchten Sie den Dialog XX löschen?"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_QUERYDELLIB\n"
-"string.text"
-msgid "Do you want to delete the XX library?"
-msgstr "Möchten Sie die Bibliothek XX löschen?"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_QUERYDELLIBREF\n"
-"string.text"
-msgid "Do you want to delete the reference to the XX library?"
-msgstr "Möchten Sie den Verweis auf die Bibliothek XX löschen?"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_QUERYDELMODULE\n"
-"string.text"
-msgid "Do you want to delete the XX module?"
-msgstr "Möchten Sie das Modul XX löschen?"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_BASIC\n"
-"string.text"
-msgid "BASIC"
-msgstr "BASIC"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_LINE\n"
-"string.text"
-msgid "Ln"
-msgstr "Zl"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_COLUMN\n"
-"string.text"
-msgid "Col"
-msgstr "Sp"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_BASICIDE_OBJECTBAR\n"
-"string.text"
-msgid "Macro Bar"
-msgstr "Symbolleiste Makro"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_CANNOTCLOSE\n"
-"string.text"
-msgid "The window cannot be closed while BASIC is running."
-msgstr "Das Fenster kann nicht geschlossen werden, solange das BASIC Programm ausgeführt wird."
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_REPLACESTDLIB\n"
-"string.text"
-msgid "The default library cannot be replaced."
-msgstr "Die Standardbibliothek kann nicht ersetzt werden."
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_REFNOTPOSSIBLE\n"
-"string.text"
-msgid "Reference to 'XX' not possible."
-msgstr "Verweis auf 'XX' nicht möglich."
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_WATCHNAME\n"
-"string.text"
-msgid "Watch"
-msgstr "Beobachter"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_WATCHVARIABLE\n"
-"string.text"
-msgid "Variable"
-msgstr "Variable"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_WATCHVALUE\n"
-"string.text"
-msgid "Value"
-msgstr "Wert"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_WATCHTYPE\n"
-"string.text"
-msgid "Type"
-msgstr "Typ"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_STACKNAME\n"
-"string.text"
-msgid "Call Stack"
-msgstr "Kommandostapel"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_STDDIALOGNAME\n"
-"string.text"
-msgid "Dialog"
-msgstr "Dialog"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_NEWLIB\n"
-"string.text"
-msgid "New Library"
-msgstr "Neue Bibliothek"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_NEWMOD\n"
-"string.text"
-msgid "New Module"
-msgstr "Neues Modul"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_NEWDLG\n"
-"string.text"
-msgid "New Dialog"
-msgstr "Neuer Dialog"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_ALL\n"
-"string.text"
-msgid "All"
-msgstr "Alle"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_PAGE\n"
-"string.text"
-msgid "Page"
-msgstr "Seite"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_WILLSTOPPRG\n"
-"string.text"
-msgid ""
-"You will have to restart the program after this edit.\n"
-"Continue?"
-msgstr ""
-"Sie müssen nach dieser Änderung das Programm neu starten.\n"
-"Fortfahren?"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_SEARCHALLMODULES\n"
-"string.text"
-msgid "Do you want to replace the text in all active modules?"
-msgstr "Soll der Text in allen aktiven Modulen ersetzt werden?"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_REMOVEWATCH\n"
-"string.text"
-msgid "Watch:"
-msgstr "Beobachter:"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_STACK\n"
-"string.text"
-msgid "Calls: "
-msgstr "Aufrufe: "
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_USERMACROS\n"
-"string.text"
-msgid "My Macros"
-msgstr "Meine Makros"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_USERDIALOGS\n"
-"string.text"
-msgid "My Dialogs"
-msgstr "Meine Dialoge"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_USERMACROSDIALOGS\n"
-"string.text"
-msgid "My Macros & Dialogs"
-msgstr "Meine Makros & Dialoge"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_SHAREMACROS\n"
-"string.text"
-msgid "%PRODUCTNAME Macros"
-msgstr "%PRODUCTNAME Makros"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_SHAREDIALOGS\n"
-"string.text"
-msgid "%PRODUCTNAME Dialogs"
-msgstr "%PRODUCTNAME Dialoge"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_SHAREMACROSDIALOGS\n"
-"string.text"
-msgid "%PRODUCTNAME Macros & Dialogs"
-msgstr "%PRODUCTNAME Makros & Dialoge"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_REMOVEWATCHTIP\n"
-"string.text"
-msgid "Remove Watch"
-msgstr "Beobachter entfernen"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_QUERYREPLACEMACRO\n"
-"string.text"
-msgid "Do you want to overwrite the XX macro?"
-msgstr "Möchten Sie das Makro XX überschreiben?"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_TRANSLATION_NOTLOCALIZED\n"
-"string.text"
-msgid "<Not localized>"
-msgstr "<Nicht lokalisiert>"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_TRANSLATION_DEFAULT\n"
-"string.text"
-msgid "[Default Language]"
-msgstr "[Standardsprache]"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_DOCUMENT_OBJECTS\n"
-"string.text"
-msgid "Document Objects"
-msgstr "Dokumentobjekte"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_USERFORMS\n"
-"string.text"
-msgid "Forms"
-msgstr "Formulare"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_NORMAL_MODULES\n"
-"string.text"
-msgid "Modules"
-msgstr "Module"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_CLASS_MODULES\n"
-"string.text"
-msgid "Class Modules"
-msgstr "Klassenmodule"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_DLGIMP_CLASH_RENAME\n"
-"string.text"
-msgid "Rename"
-msgstr "Umbenennen"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_DLGIMP_CLASH_REPLACE\n"
-"string.text"
-msgid "Replace"
-msgstr "Ersetzen"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_DLGIMP_CLASH_TITLE\n"
-"string.text"
-msgid "Dialog Import - Name already used"
-msgstr "Dialog Importieren - Der Name wird bereits verwendet"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_DLGIMP_CLASH_TEXT\n"
-"string.text"
-msgid ""
-"The library already contains a dialog with the name:\n"
-"\n"
-"$(ARG1)\n"
-"\n"
-"Rename dialog to keep current dialog or replace existing dialog.\n"
-" "
-msgstr ""
-"Die Bibliothek enthält bereits einen Dialog mit gleichem Namen:\n"
-"\n"
-"$(ARG1)\n"
-"\n"
-"Benennen Sie den Dialog um, um den vorhandenen beizubehalten,\n"
-"oder ersetzen Sie den gegenwärtigen Dialog.\n"
-" "
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_DLGIMP_MISMATCH_ADD\n"
-"string.text"
-msgid "Add"
-msgstr "Hinzufügen"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_DLGIMP_MISMATCH_OMIT\n"
-"string.text"
-msgid "Omit"
-msgstr "Auslassen"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_DLGIMP_MISMATCH_TITLE\n"
-"string.text"
-msgid "Dialog Import - Language Mismatch"
-msgstr "Dialog Importieren - Sprachkonflikt"
-
-#: basidesh.src
-msgctxt ""
-"basidesh.src\n"
-"RID_STR_DLGIMP_MISMATCH_TEXT\n"
-"string.text"
-msgid ""
-"The dialog to be imported supports other languages than the target library.\n"
-"\n"
-"Add these languages to the library to keep additional language resources provided by the dialog or omit them to stay with the current library languages.\n"
-"\n"
-"Note: For languages not supported by the dialog the resources of the dialog's default language will be used.\n"
-" "
-msgstr ""
-"Der zu importierende Dialog unterstützt andere Sprachen als die Zielbibliothek.\n"
-"\n"
-"Fügen Sie diese Sprachen zur Bibliothek hinzu, um zusätzliche Sprachressourcen des Dialogs bereitzuhalten, oder lassen Sie diese weg, um die aktuellen Sprachen der Bibliothek beizubehalten.\n"
-"\n"
-"Hinweis: Für Sprachen, die vom Dialog nicht unterstützt werden, wird die Standardsprache des Dialogs verwendet.\n"
-" "
-
-#: macrodlg.src
-msgctxt ""
-"macrodlg.src\n"
-"RID_STR_BTNDEL\n"
-"string.text"
-msgid "~Delete"
-msgstr "~Löschen"
-
-#: macrodlg.src
-msgctxt ""
-"macrodlg.src\n"
-"RID_STR_BTNNEW\n"
-"string.text"
-msgid "~New"
-msgstr "~Neu"
-
-#: macrodlg.src
-msgctxt ""
-"macrodlg.src\n"
-"RID_STR_CHOOSE\n"
-"string.text"
-msgid "Choose"
-msgstr "Auswählen"
-
-#: macrodlg.src
-msgctxt ""
-"macrodlg.src\n"
-"RID_STR_RUN\n"
-"string.text"
-msgid "Run"
-msgstr "Ausführen"
-
-#: macrodlg.src
-msgctxt ""
-"macrodlg.src\n"
-"RID_STR_RECORD\n"
-"string.text"
-msgid "~Save"
-msgstr "~Speichern"
-
-#: moduldlg.src
-msgctxt ""
-"moduldlg.src\n"
-"RID_STR_EXPORTPACKAGE\n"
-"string.text"
-msgid "Export library as extension"
-msgstr "Bibliothek als Extension exportieren"
-
-#: moduldlg.src
-msgctxt ""
-"moduldlg.src\n"
-"RID_STR_EXPORTBASIC\n"
-"string.text"
-msgid "Export as BASIC library"
-msgstr "Als BASIC Bibliothek exportieren"
-
-#: moduldlg.src
-msgctxt ""
-"moduldlg.src\n"
-"RID_STR_PACKAGE_BUNDLE\n"
-"string.text"
-msgid "Extension"
-msgstr "Extension"
-
-#: objdlg.src
-msgctxt ""
-"objdlg.src\n"
-"RID_BASICIDE_OBJCAT\n"
-"string.text"
-msgid "Object Catalog"
-msgstr "Objektkatalog"
-
-#: objdlg.src
-msgctxt ""
-"objdlg.src\n"
-"RID_STR_TLB_MACROS\n"
-"string.text"
-msgid "Objects Tree"
-msgstr "Objektbaum"
diff --git a/source/de/basctl/source/dlged.po b/source/de/basctl/source/dlged.po
deleted file mode 100644
index b87b18978c7..00000000000
--- a/source/de/basctl/source/dlged.po
+++ /dev/null
@@ -1,57 +0,0 @@
-#. extracted from basctl/source/dlged
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-07-25 06:20+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
-"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1437805214.000000\n"
-
-#: dlgresid.src
-msgctxt ""
-"dlgresid.src\n"
-"RID_STR_BRWTITLE_PROPERTIES\n"
-"string.text"
-msgid "Properties: "
-msgstr "Eigenschaften: "
-
-#: dlgresid.src
-msgctxt ""
-"dlgresid.src\n"
-"RID_STR_BRWTITLE_NO_PROPERTIES\n"
-"string.text"
-msgid "No Control marked"
-msgstr "Kein Steuerelement markiert"
-
-#: dlgresid.src
-msgctxt ""
-"dlgresid.src\n"
-"RID_STR_BRWTITLE_MULTISELECT\n"
-"string.text"
-msgid "Multiselection"
-msgstr "Mehrfachauswahl"
-
-#: dlgresid.src
-msgctxt ""
-"dlgresid.src\n"
-"RID_STR_DEF_LANG\n"
-"string.text"
-msgid "[Default Language]"
-msgstr "[Standardsprache]"
-
-#: dlgresid.src
-msgctxt ""
-"dlgresid.src\n"
-"RID_STR_CREATE_LANG\n"
-"string.text"
-msgid "<Press 'Add' to create language resources>"
-msgstr "<Schaltfläche 'Hinzufügen' anklicken, um Sprachressourcen anzulegen>"
diff --git a/source/de/basctl/uiconfig/basicide/ui.po b/source/de/basctl/uiconfig/basicide/ui.po
deleted file mode 100644
index 1e64e7ea8be..00000000000
--- a/source/de/basctl/uiconfig/basicide/ui.po
+++ /dev/null
@@ -1,593 +0,0 @@
-#. extracted from basctl/uiconfig/basicide/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: LibO 40l10n\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-05-03 03:47+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: none\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493783272.000000\n"
-
-#: basicmacrodialog.ui
-msgctxt ""
-"basicmacrodialog.ui\n"
-"BasicMacroDialog\n"
-"title\n"
-"string.text"
-msgid "%PRODUCTNAME Basic Macros"
-msgstr "%PRODUCTNAME Basic Makros"
-
-#: basicmacrodialog.ui
-msgctxt ""
-"basicmacrodialog.ui\n"
-"run\n"
-"label\n"
-"string.text"
-msgid "Run"
-msgstr "Ausführen"
-
-#: basicmacrodialog.ui
-msgctxt ""
-"basicmacrodialog.ui\n"
-"assign\n"
-"label\n"
-"string.text"
-msgid "Assign..."
-msgstr "Zuweisen..."
-
-#: basicmacrodialog.ui
-msgctxt ""
-"basicmacrodialog.ui\n"
-"edit\n"
-"label\n"
-"string.text"
-msgid "Edit"
-msgstr "Bearbeiten"
-
-#: basicmacrodialog.ui
-msgctxt ""
-"basicmacrodialog.ui\n"
-"organize\n"
-"label\n"
-"string.text"
-msgid "Organizer..."
-msgstr "Verwalten..."
-
-#: basicmacrodialog.ui
-msgctxt ""
-"basicmacrodialog.ui\n"
-"newlibrary\n"
-"label\n"
-"string.text"
-msgid "New Library"
-msgstr "Neue Bibliothek"
-
-#: basicmacrodialog.ui
-msgctxt ""
-"basicmacrodialog.ui\n"
-"newmodule\n"
-"label\n"
-"string.text"
-msgid "New Module"
-msgstr "Neues Modul"
-
-#: basicmacrodialog.ui
-msgctxt ""
-"basicmacrodialog.ui\n"
-"existingmacrosft\n"
-"label\n"
-"string.text"
-msgid "Existing Macros In:"
-msgstr "Vorhandene Makros in:"
-
-#: basicmacrodialog.ui
-msgctxt ""
-"basicmacrodialog.ui\n"
-"macrofromft\n"
-"label\n"
-"string.text"
-msgid "Macro From"
-msgstr "Makro aus"
-
-#: basicmacrodialog.ui
-msgctxt ""
-"basicmacrodialog.ui\n"
-"macrotoft\n"
-"label\n"
-"string.text"
-msgid "Save Macro In"
-msgstr "Makro speichern in"
-
-#: basicmacrodialog.ui
-msgctxt ""
-"basicmacrodialog.ui\n"
-"libraryft1\n"
-"label\n"
-"string.text"
-msgid "Macro Name"
-msgstr "Name des Makros"
-
-#: breakpointmenus.ui
-msgctxt ""
-"breakpointmenus.ui\n"
-"manage\n"
-"label\n"
-"string.text"
-msgid "Manage Breakpoints..."
-msgstr "Haltepunkte verwalten..."
-
-#: breakpointmenus.ui
-msgctxt ""
-"breakpointmenus.ui\n"
-"active\n"
-"label\n"
-"string.text"
-msgid "_Active"
-msgstr "_Aktiv"
-
-#: breakpointmenus.ui
-msgctxt ""
-"breakpointmenus.ui\n"
-"properties\n"
-"label\n"
-"string.text"
-msgid "_Properties..."
-msgstr "_Eigenschaften..."
-
-#: defaultlanguage.ui
-msgctxt ""
-"defaultlanguage.ui\n"
-"DefaultLanguageDialog\n"
-"title\n"
-"string.text"
-msgid "Set Default User Interface Language"
-msgstr "Standardsprache für die Benutzeroberfläche festlegen"
-
-#: defaultlanguage.ui
-msgctxt ""
-"defaultlanguage.ui\n"
-"defaultlabel\n"
-"label\n"
-"string.text"
-msgid "Default language:"
-msgstr "Standardsprache:"
-
-#: defaultlanguage.ui
-msgctxt ""
-"defaultlanguage.ui\n"
-"checkedlabel\n"
-"label\n"
-"string.text"
-msgid "Available languages:"
-msgstr "Verfügbare Sprachen:"
-
-#: defaultlanguage.ui
-msgctxt ""
-"defaultlanguage.ui\n"
-"defined\n"
-"label\n"
-"string.text"
-msgid "Select a language to define the default user interface language. All currently present strings will be assigned to the resources created for the selected language."
-msgstr "Wählen Sie eine Sprache, um die Standardsprache der Benutzeroberfläche festzulegen. Alle angezeigten Texte der Benutzeroberfläche werden dann in der ausgewählten Sprache angezeigt."
-
-#: defaultlanguage.ui
-msgctxt ""
-"defaultlanguage.ui\n"
-"added\n"
-"label\n"
-"string.text"
-msgid "Select languages to be added. Resources for these languages will be created in the library. Strings of the current default user interface language will be copied to these new resources by default."
-msgstr "Wählen Sie die Sprachen, die hinzugefügt werden sollen. Es werden dann Ressourcen für diese Sprachen in der Bibliothek angelegt. Die Texte der aktuellen Standardsprache werden dabei in die neu angelegten Sprachressourcen kopiert."
-
-#: defaultlanguage.ui
-msgctxt ""
-"defaultlanguage.ui\n"
-"alttitle\n"
-"label\n"
-"string.text"
-msgid "Add User Interface Languages"
-msgstr "Sprachen für die Benutzeroberfläche hinzufügen"
-
-#: deletelangdialog.ui
-msgctxt ""
-"deletelangdialog.ui\n"
-"DeleteLangDialog\n"
-"title\n"
-"string.text"
-msgid "Delete Language Resources"
-msgstr "Sprachressourcen löschen"
-
-#: deletelangdialog.ui
-msgctxt ""
-"deletelangdialog.ui\n"
-"DeleteLangDialog\n"
-"text\n"
-"string.text"
-msgid "Do you want to delete the resources of the selected language(s)?"
-msgstr "Möchten Sie die ausgewählte(n) Sprachressource(n) löschen?"
-
-#: deletelangdialog.ui
-msgctxt ""
-"deletelangdialog.ui\n"
-"DeleteLangDialog\n"
-"secondary_text\n"
-"string.text"
-msgid "You are about to delete the resources for the selected language(s). All user interface strings for this language(s) will be deleted."
-msgstr "Sie sind dabei, die ausgewählte(n) Sprachressource(n) zu löschen. Alle Texte dieser Benutzeroberflächensprache(n) werden gelöscht werden."
-
-#: dialogpage.ui
-msgctxt ""
-"dialogpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Dialog:"
-msgstr "Dialog:"
-
-#: dialogpage.ui
-msgctxt ""
-"dialogpage.ui\n"
-"newmodule\n"
-"label\n"
-"string.text"
-msgid "_New..."
-msgstr "_Neu..."
-
-#: dialogpage.ui
-msgctxt ""
-"dialogpage.ui\n"
-"newdialog\n"
-"label\n"
-"string.text"
-msgid "_New..."
-msgstr "_Neu..."
-
-#: dialogpage.ui
-msgctxt ""
-"dialogpage.ui\n"
-"password\n"
-"label\n"
-"string.text"
-msgid "_Password..."
-msgstr "_Kennwort..."
-
-#: dialogpage.ui
-msgctxt ""
-"dialogpage.ui\n"
-"import\n"
-"label\n"
-"string.text"
-msgid "_Import..."
-msgstr "_Importieren..."
-
-#: dialogpage.ui
-msgctxt ""
-"dialogpage.ui\n"
-"export\n"
-"label\n"
-"string.text"
-msgid "_Export..."
-msgstr "_Exportieren..."
-
-#: exportdialog.ui
-msgctxt ""
-"exportdialog.ui\n"
-"ExportDialog\n"
-"title\n"
-"string.text"
-msgid "Export Basic library"
-msgstr "Basic-Bibliothek exportieren"
-
-#: exportdialog.ui
-msgctxt ""
-"exportdialog.ui\n"
-"extension\n"
-"label\n"
-"string.text"
-msgid "Export as _extension"
-msgstr "Als _Extension exportieren"
-
-#: exportdialog.ui
-msgctxt ""
-"exportdialog.ui\n"
-"basic\n"
-"label\n"
-"string.text"
-msgid "Export as BASIC library"
-msgstr "Als BASIC-Bibliothek exportieren"
-
-#: gotolinedialog.ui
-msgctxt ""
-"gotolinedialog.ui\n"
-"GotoLineDialog\n"
-"title\n"
-"string.text"
-msgid "Go to Line"
-msgstr "Zu Zeilennummer wechseln"
-
-#: gotolinedialog.ui
-msgctxt ""
-"gotolinedialog.ui\n"
-"area\n"
-"label\n"
-"string.text"
-msgid "_Line number:"
-msgstr "_Zeilennummer:"
-
-#: importlibdialog.ui
-msgctxt ""
-"importlibdialog.ui\n"
-"ImportLibDialog\n"
-"title\n"
-"string.text"
-msgid "Import Libraries"
-msgstr "Bibliotheken importieren"
-
-#: importlibdialog.ui
-msgctxt ""
-"importlibdialog.ui\n"
-"ref\n"
-"label\n"
-"string.text"
-msgid "Insert as reference (read-only)"
-msgstr "Als Verweis einfügen (schreibgeschützt)"
-
-#: importlibdialog.ui
-msgctxt ""
-"importlibdialog.ui\n"
-"replace\n"
-"label\n"
-"string.text"
-msgid "Replace existing libraries"
-msgstr "Bestehende Bibliotheken ersetzen"
-
-#: importlibdialog.ui
-msgctxt ""
-"importlibdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: libpage.ui
-msgctxt ""
-"libpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "L_ocation:"
-msgstr "_Ort:"
-
-#: libpage.ui
-msgctxt ""
-"libpage.ui\n"
-"lingudictsft\n"
-"label\n"
-"string.text"
-msgid "_Library:"
-msgstr "_Bibliothek:"
-
-#: libpage.ui
-msgctxt ""
-"libpage.ui\n"
-"password\n"
-"label\n"
-"string.text"
-msgid "_Password..."
-msgstr "_Kennwort..."
-
-#: libpage.ui
-msgctxt ""
-"libpage.ui\n"
-"new\n"
-"label\n"
-"string.text"
-msgid "_New..."
-msgstr "_Neu..."
-
-#: libpage.ui
-msgctxt ""
-"libpage.ui\n"
-"import\n"
-"label\n"
-"string.text"
-msgid "_Import..."
-msgstr "_Importieren..."
-
-#: libpage.ui
-msgctxt ""
-"libpage.ui\n"
-"export\n"
-"label\n"
-"string.text"
-msgid "_Export..."
-msgstr "_Exportieren..."
-
-#: managebreakpoints.ui
-msgctxt ""
-"managebreakpoints.ui\n"
-"ManageBreakpointsDialog\n"
-"title\n"
-"string.text"
-msgid "Manage Breakpoints"
-msgstr "Haltepunkte verwalten"
-
-#: managebreakpoints.ui
-msgctxt ""
-"managebreakpoints.ui\n"
-"active\n"
-"label\n"
-"string.text"
-msgid "Active"
-msgstr "Aktiv"
-
-#: managebreakpoints.ui
-msgctxt ""
-"managebreakpoints.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Pass count:"
-msgstr "Durchlauf:"
-
-#: managebreakpoints.ui
-msgctxt ""
-"managebreakpoints.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Breakpoints"
-msgstr "Haltepunkte"
-
-#: managelanguages.ui
-msgctxt ""
-"managelanguages.ui\n"
-"ManageLanguagesDialog\n"
-"title\n"
-"string.text"
-msgid "Manage User Interface Languages [$1]"
-msgstr "Sprachen [$1] der Benutzeroberfläche verwalten"
-
-#: managelanguages.ui
-msgctxt ""
-"managelanguages.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Present languages:"
-msgstr "Verfügbare Sprachen:"
-
-#: managelanguages.ui
-msgctxt ""
-"managelanguages.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "The default language is used if no localization for a user interface locale is present. Furthermore all strings from the default language are copied to resources of newly added languages."
-msgstr "Die Standardsprache wird verwendet, wenn keine Lokalisierung für eine lokalisierte Benutzeroberfläche verfügbar ist. Darüber hinaus werden alle Zeichenketten der Standardsprache in die Ressource für neu hinzugefügte Sprachen kopiert."
-
-#: managelanguages.ui
-msgctxt ""
-"managelanguages.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "Add..."
-msgstr "Hinzufügen..."
-
-#: managelanguages.ui
-msgctxt ""
-"managelanguages.ui\n"
-"default\n"
-"label\n"
-"string.text"
-msgid "Default"
-msgstr "Standard"
-
-#: modulepage.ui
-msgctxt ""
-"modulepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "M_odule:"
-msgstr "_Modul:"
-
-#: modulepage.ui
-msgctxt ""
-"modulepage.ui\n"
-"newmodule\n"
-"label\n"
-"string.text"
-msgid "_New..."
-msgstr "_Neu..."
-
-#: modulepage.ui
-msgctxt ""
-"modulepage.ui\n"
-"newdialog\n"
-"label\n"
-"string.text"
-msgid "_New..."
-msgstr "_Neu..."
-
-#: modulepage.ui
-msgctxt ""
-"modulepage.ui\n"
-"password\n"
-"label\n"
-"string.text"
-msgid "_Password..."
-msgstr "_Kennwort..."
-
-#: modulepage.ui
-msgctxt ""
-"modulepage.ui\n"
-"import\n"
-"label\n"
-"string.text"
-msgid "_Import..."
-msgstr "_Importieren..."
-
-#: modulepage.ui
-msgctxt ""
-"modulepage.ui\n"
-"export\n"
-"label\n"
-"string.text"
-msgid "_Export..."
-msgstr "_Exportieren..."
-
-#: newlibdialog.ui
-msgctxt ""
-"newlibdialog.ui\n"
-"area\n"
-"label\n"
-"string.text"
-msgid "_Name:"
-msgstr "_Name:"
-
-#: organizedialog.ui
-msgctxt ""
-"organizedialog.ui\n"
-"OrganizeDialog\n"
-"title\n"
-"string.text"
-msgid "%PRODUCTNAME Basic Macro Organizer"
-msgstr "%PRODUCTNAME Basic-Makros verwalten"
-
-#: organizedialog.ui
-msgctxt ""
-"organizedialog.ui\n"
-"modules\n"
-"label\n"
-"string.text"
-msgid "Modules"
-msgstr "Module"
-
-#: organizedialog.ui
-msgctxt ""
-"organizedialog.ui\n"
-"dialogs\n"
-"label\n"
-"string.text"
-msgid "Dialogs"
-msgstr "Dialoge"
-
-#: organizedialog.ui
-msgctxt ""
-"organizedialog.ui\n"
-"libraries\n"
-"label\n"
-"string.text"
-msgid "Libraries"
-msgstr "Bibliotheken"
diff --git a/source/de/basic/source/classes.po b/source/de/basic/messages.po
index 99b1a4709e9..b4faa925e03 100644
--- a/source/de/basic/source/classes.po
+++ b/source/de/basic/messages.po
@@ -1,4 +1,4 @@
-#. extracted from basic/source/classes
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
@@ -16,1201 +16,849 @@ msgstr ""
"X-Generator: Pootle 2.8\n"
"X-POOTLE-MTIME: 1498470451.000000\n"
+#. CacXi
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Syntax error.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Syntax error."
msgstr "Syntaxfehler."
+#. phEtF
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Return without Gosub.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Return without Gosub."
msgstr "Return ohne GoSub."
+#. xGnDD
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Incorrect entry; please retry.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Incorrect entry; please retry."
msgstr "Inkorrekte Eingabe; bitte wiederholen."
+#. SDAtt
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Invalid procedure call.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Invalid procedure call."
msgstr "Ungültiger Prozeduraufruf."
+#. ERmVC
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Overflow.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Overflow."
msgstr "Überlauf."
+#. 2Cqdp
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Not enough memory.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Not enough memory."
msgstr "Nicht genügend Arbeitsspeicher."
+#. vQn2L
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Array already dimensioned.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Array already dimensioned."
msgstr "Array bereits dimensioniert."
+#. iXC8S
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Index out of defined range.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Index out of defined range."
msgstr "Index außerhalb des definierten Bereichs."
+#. puyiQ
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Duplicate definition.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Duplicate definition."
msgstr "Doppelt vorhandene Definition."
+#. eqwCs
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Division by zero.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Division by zero."
msgstr "Division durch Null."
+#. owjv6
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Variable not defined.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Variable not defined."
msgstr "Variable nicht definiert."
+#. oEA47
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Data type mismatch.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Data type mismatch."
msgstr "Datentypen unverträglich."
+#. bFP4H
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Invalid parameter.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Invalid parameter."
msgstr "Ungültiger Parameter."
+#. qZCrY
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Process interrupted by user.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Process interrupted by user."
msgstr "Der Ablauf wurde vom Benutzer unterbrochen."
+#. nnqTQ
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Resume without error.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Resume without error."
msgstr "Wiederaufnahme ohne Fehler."
+#. QGuZq
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Not enough stack memory.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Not enough stack memory."
msgstr "Nicht genügend Stapelspeicher."
+#. X8Anp
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Sub-procedure or function procedure not defined.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Sub-procedure or function procedure not defined."
msgstr "Prozedur Sub oder Function nicht definiert."
+#. oF6VV
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Error loading DLL file.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Error loading DLL file."
msgstr "Fehler beim Laden einer DLL-Datei."
+#. 9MUQ8
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Wrong DLL call convention.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Wrong DLL call convention."
msgstr "Falsche DLL-Aufrufkonvention."
+#. AoHjH
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Internal error $(ARG1).\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Internal error $(ARG1)."
msgstr "Interner Fehler $(ARG1)."
+#. wgNZg
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Invalid file name or file number.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Invalid file name or file number."
msgstr "Dateiname oder -nummer ungültig."
+#. cdGJ5
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"File not found.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "File not found."
msgstr "Datei nicht gefunden."
+#. RQB3i
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Incorrect file mode.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Incorrect file mode."
msgstr "Dateimodus falsch."
+#. 2UUYj
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"File already open.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "File already open."
msgstr "Datei bereits geöffnet."
+#. BRx4X
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Device I/O error.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Device I/O error."
msgstr "Geräte-E/A-Fehler."
+#. 3wGUY
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"File already exists.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "File already exists."
msgstr "Datei existiert bereits."
+#. rAFCG
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Incorrect record length.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Incorrect record length."
msgstr "Falsche Datensatzlänge."
+#. EnLKw
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Disk or hard drive full.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Disk or hard drive full."
msgstr "Speichermedium voll."
+#. BFTP8
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Reading exceeds EOF.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Reading exceeds EOF."
msgstr "Lesen über das Ende der Datei hinaus."
+#. nuyE7
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Incorrect record number.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Incorrect record number."
msgstr "Datensatznummer falsch."
+#. sgdJF
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Too many files.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Too many files."
msgstr "Zu viele Dateien."
+#. 3iiGy
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Device not available.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Device not available."
msgstr "Gerät nicht verfügbar."
+#. k7uzP
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Access denied.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Access denied."
msgstr "Zugriff verweigert."
+#. WcKob
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Disk not ready.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Disk not ready."
msgstr "Speichermedium nicht bereit."
+#. JgiDa
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Not implemented.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Not implemented."
msgstr "Nicht implementiert."
+#. mAxmt
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Renaming on different drives impossible.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Renaming on different drives impossible."
msgstr "Umbenennen auf unterschiedlichen Laufwerken nicht möglich."
+#. 8gEYf
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Path/File access error.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Path/File access error."
msgstr "Pfad/Datei-Zugriffsfehler."
+#. JefUT
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Path not found.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Path not found."
msgstr "Pfad nicht gefunden."
+#. QXDRW
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Object variable not set.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Object variable not set."
msgstr "Objektvariable nicht belegt."
+#. Y9yi3
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Invalid string pattern.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Invalid string pattern."
msgstr "Zeichenkettenmuster unzulässig."
+#. K7DhF
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Use of zero not permitted.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Use of zero not permitted."
msgstr "Verwendung von Null unzulässig."
+#. cJT8h
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"DDE Error.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "DDE Error."
msgstr "DDE-Fehler."
+#. 6GqpS
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Awaiting response to DDE connection.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Awaiting response to DDE connection."
msgstr "Warten auf Antwort der DDE-Verbindung."
+#. eoE3n
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"No DDE channels available.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "No DDE channels available."
msgstr "Keine freien DDE-Kanäle."
+#. uX7nT
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"No application responded to DDE connect initiation.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "No application responded to DDE connect initiation."
msgstr "Auf DDE-Verbindungsanfrage antwortet keine Anwendung."
+#. TNaxB
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Too many applications responded to DDE connect initiation.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Too many applications responded to DDE connect initiation."
msgstr "Auf DDE-Verbindungsanfrage antworten zu viele Anwendungen."
+#. VroGT
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"DDE channel locked.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "DDE channel locked."
msgstr "DDE-Kanal gesperrt."
+#. Vg79x
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"External application cannot execute DDE operation.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "External application cannot execute DDE operation."
msgstr "Fremdanwendung kann DDE-Operation nicht ausführen."
+#. DnKBx
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Timeout while waiting for DDE response.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Timeout while waiting for DDE response."
msgstr "Zeitüberschreitung während des Wartens auf DDE-Antwort."
+#. 4q3yy
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"User pressed ESCAPE during DDE operation.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "User pressed ESCAPE during DDE operation."
msgstr "Benutzer drückte ESC während der DDE-Operation."
+#. 7WymF
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"External application busy.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "External application busy."
msgstr "Fremdanwendung ist nicht bereit."
+#. GGDRf
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"DDE operation without data.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "DDE operation without data."
msgstr "DDE-Operation ohne Daten."
+#. p7sHC
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Data are in wrong format.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Data are in wrong format."
msgstr "Daten sind im falschen Format."
+#. JDnmB
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"External application has been terminated.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "External application has been terminated."
msgstr "Fremdanwendung ist beendet worden."
+#. VT4R2
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"DDE connection interrupted or modified.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "DDE connection interrupted or modified."
msgstr "DDE-Verbindung ist unterbrochen oder geändert worden."
+#. DgSMR
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"DDE method invoked with no channel open.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "DDE method invoked with no channel open."
msgstr "DDE-Methode ohne offenen Kanal aufgerufen."
+#. RHck4
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Invalid DDE link format.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Invalid DDE link format."
msgstr "Ungültiges DDE-Verknüpfungsformat."
+#. DUsPA
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"DDE message has been lost.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "DDE message has been lost."
msgstr "DDE-Nachricht ist verloren gegangen."
+#. FhoZY
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Paste link already performed.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Paste link already performed."
msgstr "Verweis einfügen bereits ausgeführt."
+#. SQyEF
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Link mode cannot be set due to invalid link topic.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Link mode cannot be set due to invalid link topic."
msgstr "Linkmodus kann wegen ungültiger Link-Topics nicht gesetzt werden."
+#. J2Rf3
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"DDE requires the DDEML.DLL file.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "DDE requires the DDEML.DLL file."
msgstr "Für DDE wird DDEML.DLL-Datei benötigt."
+#. yfBfX
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Module cannot be loaded; invalid format.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Module cannot be loaded; invalid format."
msgstr "Das Modul kann nicht geladen werden; ungültiges Format."
+#. eCEEV
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Invalid object index.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Invalid object index."
msgstr "Ungültiger Objektindex."
+#. GLCzx
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Object is not available.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Object is not available."
msgstr "Objekt ist nicht verfügbar."
+#. nfXrp
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Incorrect property value.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Incorrect property value."
msgstr "Falscher Wert für Eigenschaft."
+#. 8qjhR
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"This property is read-only.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "This property is read-only."
msgstr "Diese Eigenschaft ist schreibgeschützt."
+#. ScKEy
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"This property is write only.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "This property is write only."
msgstr "Diese Eigenschaft ist lesegeschützt."
+#. kTCMC
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Invalid object reference.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Invalid object reference."
msgstr "Ungültiger Objektverweis."
+#. fz98J
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Property or method not found: $(ARG1).\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Property or method not found: $(ARG1)."
msgstr "Eigenschaft oder Methode nicht gefunden: $(ARG1)."
+#. rWwbT
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Object required.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Object required."
msgstr "Objekt erforderlich."
+#. b3XBE
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Invalid use of an object.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Invalid use of an object."
msgstr "Falsche Verwendung eines Objekts."
+#. pM7Vq
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"OLE Automation is not supported by this object.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "OLE Automation is not supported by this object."
msgstr "OLE-Automatisierung wird von diesem Objekt nicht unterstützt."
+#. HMAey
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"This property or method is not supported by the object.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "This property or method is not supported by the object."
msgstr "Objekt unterstützt diese Eigenschaft oder Methode nicht."
+#. DMts6
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"OLE Automation Error.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "OLE Automation Error."
msgstr "Fehler bei OLE-Automatisierung."
+#. 3VsB3
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"This action is not supported by given object.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "This action is not supported by given object."
msgstr "Diese Aktion wird vom angegebenen Objekt nicht unterstützt."
+#. vgvzF
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Named arguments are not supported by given object.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Named arguments are not supported by given object."
msgstr "Benannte Argumente werden vom angegebenen Objekt nicht unterstützt."
+#. 4aZxy
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"The current locale setting is not supported by the given object.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "The current locale setting is not supported by the given object."
-msgstr "Das aktuelle Gebietsschema wird vom angegebenen Objekt nicht unterstützt."
+msgstr ""
+"Das aktuelle Gebietsschema wird vom angegebenen Objekt nicht unterstützt."
+#. AoqGh
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Named argument not found.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Named argument not found."
msgstr "Benanntes Argument nicht gefunden."
+#. G2sC5
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Argument is not optional.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Argument is not optional."
msgstr "Argument ist nicht optional."
+#. v78nF
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Invalid number of arguments.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Invalid number of arguments."
msgstr "Falsche Anzahl an Argumenten."
+#. DVFF3
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Object is not a list.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Object is not a list."
msgstr "Objekt ist keine Auflistung."
+#. zDijP
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Invalid ordinal number.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Invalid ordinal number."
msgstr "Ordnungszahl ungültig."
+#. uY35B
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Specified DLL function not found.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Specified DLL function not found."
msgstr "Angegebene DLL-Funktion nicht gefunden."
+#. MPTAv
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Invalid clipboard format.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Invalid clipboard format."
msgstr "Ungültiges Zwischenablageformat."
+#. UC2FV
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Object does not have this property.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Object does not have this property."
msgstr "Objekt hat diese Eigenschaft nicht."
+#. 9JEU2
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Object does not have this method.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Object does not have this method."
msgstr "Objekt hat diese Methode nicht."
+#. azsCo
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Required argument lacking.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Required argument lacking."
msgstr "Erforderliches Argument fehlt."
+#. 9WA8D
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Error executing a method.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Error executing a method."
msgstr "Fehler in Ausführung einer Methode."
+#. N3vcw
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Unable to set property.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Unable to set property."
msgstr "Eigenschaft konnte nicht festgelegt werden."
+#. k82XW
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Unable to determine property.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Unable to determine property."
msgstr "Eigenschaft konnte nicht ermittelt werden."
+#. 5cGpa
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Unexpected symbol: $(ARG1).\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Unexpected symbol: $(ARG1)."
msgstr "Unerwartetes Symbol: $(ARG1)."
+#. SBpod
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Expected: $(ARG1).\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Expected: $(ARG1)."
msgstr "Erwartet: $(ARG1)."
+#. JBaEp
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Symbol expected.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Symbol expected."
msgstr "Symbol erwartet."
+#. CkAE9
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Variable expected.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Variable expected."
msgstr "Variable erwartet."
+#. DS5cS
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Label expected.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Label expected."
msgstr "Label erwartet."
+#. k2myJ
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Value cannot be applied.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Value cannot be applied."
msgstr "Wert kann nicht zugewiesen werden."
+#. oPCtL
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Variable $(ARG1) already defined.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Variable $(ARG1) already defined."
msgstr "Variable $(ARG1) bereits definiert."
+#. WmiB6
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Sub procedure or function procedure $(ARG1) already defined.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Sub procedure or function procedure $(ARG1) already defined."
msgstr "Prozedur Sub oder Function $(ARG1) bereits definiert."
+#. byksZ
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Label $(ARG1) already defined.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Label $(ARG1) already defined."
msgstr "Label $(ARG1) bereits definiert."
+#. GHdG4
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Variable $(ARG1) not found.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Variable $(ARG1) not found."
msgstr "Variable $(ARG1) nicht gefunden."
+#. DksBU
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Array or procedure $(ARG1) not found.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Array or procedure $(ARG1) not found."
msgstr "Array oder Prozedur $(ARG1) nicht gefunden."
+#. 7CD6B
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Procedure $(ARG1) not found.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Procedure $(ARG1) not found."
msgstr "Procedure $(ARG1) nicht gefunden."
+#. GREm3
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Label $(ARG1) undefined.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Label $(ARG1) undefined."
msgstr "Label $(ARG1) undefiniert."
+#. 2VFZq
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Unknown data type $(ARG1).\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Unknown data type $(ARG1)."
msgstr "Unbekannter Datentyp $(ARG1)."
+#. hvsH3
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Exit $(ARG1) expected.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Exit $(ARG1) expected."
msgstr "Exit $(ARG1) erwartet."
+#. 7kZX5
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Statement block still open: $(ARG1) missing.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Statement block still open: $(ARG1) missing."
msgstr "Noch offener Anweisungsblock: $(ARG1) fehlt."
+#. EysAe
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Parentheses do not match.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Parentheses do not match."
msgstr "Fehler in Klammerschachtelung."
+#. tGqRY
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Symbol $(ARG1) already defined differently.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Symbol $(ARG1) already defined differently."
msgstr "Symbol $(ARG1) bereits anders definiert."
+#. Nvysh
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Parameters do not correspond to procedure.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Parameters do not correspond to procedure."
msgstr "Parameter passen nicht zu Prozedur."
+#. aLCNz
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Invalid character in number.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Invalid character in number."
msgstr "Ungültiges Zeichen in Zahl."
+#. ZL3GF
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Array must be dimensioned.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Array must be dimensioned."
msgstr "Array muss dimensioniert werden."
+#. bvzvK
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Else/Endif without If.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Else/Endif without If."
msgstr "Else/Endif ohne If."
+#. BPHwC
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"$(ARG1) not allowed within a procedure.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "$(ARG1) not allowed within a procedure."
msgstr "$(ARG1) innerhalb einer Prozedur unzulässig."
+#. t4CFy
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"$(ARG1) not allowed outside a procedure.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "$(ARG1) not allowed outside a procedure."
msgstr "$(ARG1) außerhalb einer Prozedur unzulässig."
+#. BAmBZ
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Dimension specifications do not match.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Dimension specifications do not match."
msgstr "Dimensionsangaben passen nicht zueinander."
+#. kKjmy
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Unknown option: $(ARG1).\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Unknown option: $(ARG1)."
msgstr "Unbekannte Option: $(ARG1)."
+#. LCo58
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Constant $(ARG1) redefined.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Constant $(ARG1) redefined."
msgstr "Konstante $(ARG1) neu definiert."
+#. Dx6YA
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Program too large.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Program too large."
msgstr "Programm ist zu groß."
+#. aAKCD
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Strings or arrays not permitted.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Strings or arrays not permitted."
msgstr "Strings oder Arrays unzulässig."
+#. gqBGJ
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"An exception occurred $(ARG1).\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "An exception occurred $(ARG1)."
msgstr "Es ist eine Ausnahme aufgetreten $(ARG1)."
+#. YTygS
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"This array is fixed or temporarily locked.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "This array is fixed or temporarily locked."
msgstr "Dieses Array ist fixiert oder temporär gesperrt."
+#. AwvaS
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Out of string space.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Out of string space."
msgstr "Kein weiterer Speicher für Zeichenketten verfügbar."
+#. VosXA
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Expression Too Complex.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Expression Too Complex."
msgstr "Ausdruck zu komplex."
+#. fYWci
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Can't perform requested operation.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Can't perform requested operation."
msgstr "Die angeforderte Operation kann nicht ausgeführt werden."
+#. oGvjJ
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"Too many DLL application clients.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "Too many DLL application clients."
msgstr "Zu viele DLL-Application Clients."
+#. tC47t
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"For loop not initialized.\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "For loop not initialized."
msgstr "For-Schleife nicht initialisiert."
+#. DA4GN
#: sb.src
-msgctxt ""
-"sb.src\n"
-"RID_BASIC_START\n"
-"$(ARG1)\n"
-"itemlist.text"
+msgctxt "RID_BASIC_START"
msgid "$(ARG1)"
msgstr "$(ARG1)"
+#. AP2X4
#: sb.src
-msgctxt ""
-"sb.src\n"
-"IDS_SBERR_TERMINATED\n"
-"string.text"
+msgctxt "IDS_SBERR_TERMINATED"
msgid "The macro running has been interrupted"
msgstr "Das laufende Makro wurde unterbrochen"
+#. DBUFc
#: sb.src
-msgctxt ""
-"sb.src\n"
-"ERRCODE_BASMGR_LIBLOAD & ERRCODE_RES_MASK\n"
-"string.text"
+msgctxt "ERRCODE_BASMGR_LIBLOAD & ERRCODE_RES_MASK"
msgid "Error loading library '$(ARG1)'."
msgstr "Fehler beim Laden der Bibliothek '$(ARG1)'."
+#. Y34TJ
#: sb.src
-msgctxt ""
-"sb.src\n"
-"ERRCODE_BASMGR_LIBSAVE & ERRCODE_RES_MASK\n"
-"string.text"
+msgctxt "ERRCODE_BASMGR_LIBSAVE & ERRCODE_RES_MASK"
msgid "Error saving library: '$(ARG1)'."
msgstr "Fehler beim Speichern der Bibliothek: '$(ARG1)'."
+#. Ybum2
#: sb.src
-msgctxt ""
-"sb.src\n"
-"ERRCODE_BASMGR_MGROPEN & ERRCODE_RES_MASK\n"
-"string.text"
+msgctxt "ERRCODE_BASMGR_MGROPEN & ERRCODE_RES_MASK"
msgid "The BASIC from the file '$(ARG1)' could not be initialized."
msgstr "Das BASIC aus der Datei '$(ARG1)' konnte nicht initialisiert werden."
+#. VyDTu
#: sb.src
-msgctxt ""
-"sb.src\n"
-"ERRCODE_BASMGR_MGRSAVE & ERRCODE_RES_MASK\n"
-"string.text"
+msgctxt "ERRCODE_BASMGR_MGRSAVE & ERRCODE_RES_MASK"
msgid "Error saving BASIC: '$(ARG1)'."
msgstr "Fehler beim Speichern des BASIC's: '$(ARG1)'."
+#. qJ3hx
#: sb.src
-msgctxt ""
-"sb.src\n"
-"ERRCODE_BASMGR_REMOVELIB & ERRCODE_RES_MASK\n"
-"string.text"
+msgctxt "ERRCODE_BASMGR_REMOVELIB & ERRCODE_RES_MASK"
msgid "Error removing library."
msgstr "Fehler beim entfernen der Bibliothek."
+#. crDGr
#: sb.src
-msgctxt ""
-"sb.src\n"
-"ERRCODE_BASMGR_UNLOADLIB & ERRCODE_RES_MASK\n"
-"string.text"
+msgctxt "ERRCODE_BASMGR_UNLOADLIB & ERRCODE_RES_MASK"
msgid "The library could not be removed from memory."
msgstr "Die Bibliothek konnte nicht aus dem Speicher entfernt werden."
+
+#. Vtc9n
+#: format.src
+msgctxt "STR_BASICKEY_FORMAT_ON"
+msgid "On"
+msgstr "Ein"
+
+#. yUCEp
+#: format.src
+msgctxt "STR_BASICKEY_FORMAT_OFF"
+msgid "Off"
+msgstr "Aus"
+
+#. iGZeR
+#: format.src
+msgctxt "STR_BASICKEY_FORMAT_TRUE"
+msgid "True"
+msgstr "Wahr"
+
+#. Vcbum
+#: format.src
+msgctxt "STR_BASICKEY_FORMAT_FALSE"
+msgid "False"
+msgstr "Falsch"
+
+#. wGj5U
+#: format.src
+msgctxt "STR_BASICKEY_FORMAT_YES"
+msgid "Yes"
+msgstr "Ja"
+
+#. TYgJR
+#: format.src
+msgctxt "STR_BASICKEY_FORMAT_NO"
+msgid "No"
+msgstr "Nein"
+
+#. YXUyZ
+#: format.src
+msgctxt "STR_BASICKEY_FORMAT_CURRENCY"
+msgid "@0.00 $;@(0.00 $)"
+msgstr "@0,00 $;@(0,00 $)"
diff --git a/source/de/basic/source/sbx.po b/source/de/basic/source/sbx.po
deleted file mode 100644
index 6ff3ee9fb07..00000000000
--- a/source/de/basic/source/sbx.po
+++ /dev/null
@@ -1,72 +0,0 @@
-#. extracted from basic/source/sbx
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2012-07-02 18:43+0200\n"
-"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
-"X-Accelerator-Marker: ~\n"
-
-#: format.src
-msgctxt ""
-"format.src\n"
-"STR_BASICKEY_FORMAT_ON\n"
-"string.text"
-msgid "On"
-msgstr "Ein"
-
-#: format.src
-msgctxt ""
-"format.src\n"
-"STR_BASICKEY_FORMAT_OFF\n"
-"string.text"
-msgid "Off"
-msgstr "Aus"
-
-#: format.src
-msgctxt ""
-"format.src\n"
-"STR_BASICKEY_FORMAT_TRUE\n"
-"string.text"
-msgid "True"
-msgstr "Wahr"
-
-#: format.src
-msgctxt ""
-"format.src\n"
-"STR_BASICKEY_FORMAT_FALSE\n"
-"string.text"
-msgid "False"
-msgstr "Falsch"
-
-#: format.src
-msgctxt ""
-"format.src\n"
-"STR_BASICKEY_FORMAT_YES\n"
-"string.text"
-msgid "Yes"
-msgstr "Ja"
-
-#: format.src
-msgctxt ""
-"format.src\n"
-"STR_BASICKEY_FORMAT_NO\n"
-"string.text"
-msgid "No"
-msgstr "Nein"
-
-#: format.src
-msgctxt ""
-"format.src\n"
-"STR_BASICKEY_FORMAT_CURRENCY\n"
-"string.text"
-msgid "@0.00 $;@(0.00 $)"
-msgstr "@0,00 $;@(0,00 $)"
diff --git a/source/de/chart2/messages.po b/source/de/chart2/messages.po
new file mode 100644
index 00000000000..d0dae695f07
--- /dev/null
+++ b/source/de/chart2/messages.po
@@ -0,0 +1,3778 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"PO-Revision-Date: 2016-06-18 05:04+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1466226263.000000\n"
+
+#. v9sqX
+#: Strings.src
+msgctxt "STR_DLG_CHART_WIZARD"
+msgid "Chart Wizard"
+msgstr "Diagramm-Assistent"
+
+#. HCEG9
+#: Strings.src
+msgctxt "STR_DLG_SMOOTH_LINE_PROPERTIES"
+msgid "Smooth Lines"
+msgstr "Kurvenglättung"
+
+#. qxGHJ
+#: Strings.src
+msgctxt "STR_DLG_STEPPED_LINE_PROPERTIES"
+msgid "Stepped Lines"
+msgstr "Stufenlinien"
+
+#. E2JCT
+#: Strings.src
+msgctxt "STR_PAGE_CHARTTYPE"
+msgid "Chart Type"
+msgstr "Diagrammtyp"
+
+#. GFDEv
+#: Strings.src
+msgctxt "STR_PAGE_DATA_RANGE"
+msgid "Data Range"
+msgstr "Datenbereich"
+
+#. uxZuD
+#: Strings.src
+msgctxt "STR_PAGE_CHART_ELEMENTS"
+msgid "Chart Elements"
+msgstr "Diagrammelemente"
+
+#. sDxQz
+#: Strings.src
+msgctxt "STR_PAGE_LINE"
+msgid "Line"
+msgstr "Liniendiagramm"
+
+#. EoKxj
+#: Strings.src
+msgctxt "STR_PAGE_BORDER"
+msgid "Borders"
+msgstr "Linie"
+
+#. 2suvG
+#: Strings.src
+msgctxt "STR_PAGE_AREA"
+msgid "Area"
+msgstr "Fläche"
+
+#. 3sDYn
+#: Strings.src
+msgctxt "STR_PAGE_TRANSPARENCY"
+msgid "Transparency"
+msgstr "Transparenz"
+
+#. tESet
+#: Strings.src
+msgctxt "STR_PAGE_FONT"
+msgid "Font"
+msgstr "Schrift"
+
+#. ByYYG
+#: Strings.src
+msgctxt "STR_PAGE_FONT_EFFECTS"
+msgid "Font Effects"
+msgstr "Schrifteffekt"
+
+#. YydEQ
+#: Strings.src
+msgctxt "STR_PAGE_NUMBERS"
+msgid "Numbers"
+msgstr "Zahlen"
+
+#. nTFNm
+#: Strings.src
+msgctxt "STR_PAGE_POSITION"
+msgid "Position"
+msgstr "Anordnung"
+
+#. iTeHp
+#: Strings.src
+msgctxt "STR_PAGE_LAYOUT"
+msgid "Layout"
+msgstr "Layout"
+
+#. 4Gz8K
+#: Strings.src
+msgctxt "STR_PAGE_OPTIONS"
+msgid "Options"
+msgstr "Optionen"
+
+#. RCGEN
+#: Strings.src
+msgctxt "STR_PAGE_SCALE"
+msgid "Scale"
+msgstr "Skalierung"
+
+#. QR25P
+#: Strings.src
+msgctxt "STR_PAGE_POSITIONING"
+msgid "Positioning"
+msgstr "Positionierung"
+
+#. omcEo
+#: Strings.src
+msgctxt "STR_PAGE_TRENDLINE_TYPE"
+msgid "Type"
+msgstr "Typ"
+
+#. EvFoA
+#: Strings.src
+msgctxt "STR_PAGE_XERROR_BARS"
+msgid "X Error Bars"
+msgstr "X-Fehlerbalken"
+
+#. NKDFm
+#: Strings.src
+msgctxt "STR_PAGE_YERROR_BARS"
+msgid "Y Error Bars"
+msgstr "Y-Fehlerbalken"
+
+#. mjAwD
+#: Strings.src
+msgctxt "STR_PAGE_ALIGNMENT"
+msgid "Alignment"
+msgstr "Ausrichtung"
+
+#. hXbmP
+#: Strings.src
+msgctxt "STR_PAGE_PERSPECTIVE"
+msgid "Perspective"
+msgstr "Perspektive"
+
+#. 7RHre
+#: Strings.src
+msgctxt "STR_PAGE_APPEARANCE"
+msgid "Appearance"
+msgstr "Aussehen"
+
+#. mvWu8
+#: Strings.src
+msgctxt "STR_PAGE_ILLUMINATION"
+msgid "Illumination"
+msgstr "Beleuchtung"
+
+#. YBnCa
+#: Strings.src
+msgctxt "STR_PAGE_ASIAN"
+msgid "Asian Typography"
+msgstr "Asiatische Typografie"
+
+#. 6xo4a
+#: Strings.src
+msgctxt "STR_OBJECT_AVERAGE_LINE_WITH_PARAMETERS"
+msgid ""
+"Mean value line with value %AVERAGE_VALUE and standard deviation "
+"%STD_DEVIATION"
+msgstr ""
+"Mittelwertlinie mit Wert %AVERAGE_VALUE und Standardabweichung "
+"%STD_DEVIATION"
+
+#. eP9wF
+#: Strings.src
+msgctxt "STR_OBJECT_AXIS"
+msgid "Axis"
+msgstr "Achse"
+
+#. jNgVd
+#: Strings.src
+msgctxt "STR_OBJECT_AXIS_X"
+msgid "X Axis"
+msgstr "X-Achse"
+
+#. cA4xe
+#: Strings.src
+msgctxt "STR_OBJECT_AXIS_Y"
+msgid "Y Axis"
+msgstr "Y-Achse"
+
+#. ZXErW
+#: Strings.src
+msgctxt "STR_OBJECT_AXIS_Z"
+msgid "Z Axis"
+msgstr "Z-Achse"
+
+#. qkJUd
+#: Strings.src
+msgctxt "STR_OBJECT_SECONDARY_X_AXIS"
+msgid "Secondary X Axis"
+msgstr "Sekundäre X-Achse"
+
+#. YHCbM
+#: Strings.src
+msgctxt "STR_OBJECT_SECONDARY_Y_AXIS"
+msgid "Secondary Y Axis"
+msgstr "Sekundäre Y-Achse"
+
+#. natrx
+#: Strings.src
+msgctxt "STR_OBJECT_AXES"
+msgid "Axes"
+msgstr "Achsen"
+
+#. FE87Y
+#: Strings.src
+msgctxt "STR_OBJECT_GRIDS"
+msgid "Grids"
+msgstr "Gitter"
+
+#. zyanU
+#: Strings.src
+msgctxt "STR_OBJECT_GRID"
+msgid "Grid"
+msgstr "Gitter"
+
+#. pEwe5
+#: Strings.src
+msgctxt "STR_OBJECT_GRID_MAJOR_X"
+msgid "X Axis Major Grid"
+msgstr "X-Achsenhauptgitter"
+
+#. ETsPn
+#: Strings.src
+msgctxt "STR_OBJECT_GRID_MAJOR_Y"
+msgid "Y Axis Major Grid"
+msgstr "Y-Achsenhauptgitter"
+
+#. SonFW
+#: Strings.src
+msgctxt "STR_OBJECT_GRID_MAJOR_Z"
+msgid "Z Axis Major Grid"
+msgstr "Z-Achsenhauptgitter"
+
+#. sBgvb
+#: Strings.src
+msgctxt "STR_OBJECT_GRID_MINOR_X"
+msgid "X Axis Minor Grid"
+msgstr "X-Achsenhilfsgitter"
+
+#. 3YcEK
+#: Strings.src
+msgctxt "STR_OBJECT_GRID_MINOR_Y"
+msgid "Y Axis Minor Grid"
+msgstr "Y-Achsenhilfsgitter"
+
+#. hkZQA
+#: Strings.src
+msgctxt "STR_OBJECT_GRID_MINOR_Z"
+msgid "Z Axis Minor Grid"
+msgstr "Z-Achsenhilfsgitter"
+
+#. HRr84
+#: Strings.src
+msgctxt "STR_OBJECT_LEGEND"
+msgid "Legend"
+msgstr "Legende"
+
+#. BKrVD
+#: Strings.src
+msgctxt "STR_OBJECT_TITLE"
+msgid "Title"
+msgstr "Titel"
+
+#. daY6i
+#: Strings.src
+msgctxt "STR_OBJECT_TITLES"
+msgid "Titles"
+msgstr "Titel"
+
+#. HPrwf
+#: Strings.src
+msgctxt "STR_OBJECT_TITLE_MAIN"
+msgid "Main Title"
+msgstr "Haupttitel"
+
+#. 3HPz3
+#: Strings.src
+msgctxt "STR_OBJECT_TITLE_SUB"
+msgid "Subtitle"
+msgstr "Untertitel"
+
+#. eZE2v
+#: Strings.src
+msgctxt "STR_OBJECT_TITLE_X_AXIS"
+msgid "X Axis Title"
+msgstr "X-Achsentitel"
+
+#. uqBii
+#: Strings.src
+msgctxt "STR_OBJECT_TITLE_Y_AXIS"
+msgid "Y Axis Title"
+msgstr "Y-Achsentitel"
+
+#. 37EU5
+#: Strings.src
+msgctxt "STR_OBJECT_TITLE_Z_AXIS"
+msgid "Z Axis Title"
+msgstr "Z-Achsentitel"
+
+#. QmoDH
+#: Strings.src
+msgctxt "STR_OBJECT_TITLE_SECONDARY_X_AXIS"
+msgid "Secondary X Axis Title"
+msgstr "Titel für sekundäre X-Achse"
+
+#. F7NWG
+#: Strings.src
+msgctxt "STR_OBJECT_TITLE_SECONDARY_Y_AXIS"
+msgid "Secondary Y Axis Title"
+msgstr "Titel für sekundäre Y-Achse"
+
+#. AtLNM
+#: Strings.src
+msgctxt "STR_OBJECT_LABEL"
+msgid "Label"
+msgstr "Beschriftung"
+
+#. ag7pg
+#: Strings.src
+msgctxt "STR_OBJECT_DATALABELS"
+msgid "Data Labels"
+msgstr "Datenbeschriftung"
+
+#. ts3Cj
+#: Strings.src
+msgctxt "STR_OBJECT_DATAPOINT"
+msgid "Data Point"
+msgstr "Datenpunkt"
+
+#. EnsUx
+#: Strings.src
+msgctxt "STR_OBJECT_DATAPOINTS"
+msgid "Data Points"
+msgstr "Datenpunkte"
+
+#. CqWnU
+#: Strings.src
+msgctxt "STR_OBJECT_LEGEND_SYMBOL"
+msgid "Legend Key"
+msgstr "Legendensymbol"
+
+#. jNwC8
+#: Strings.src
+msgctxt "STR_OBJECT_DATASERIES"
+msgid "Data Series"
+msgstr "Datenreihe"
+
+#. Zf7DA
+#: Strings.src
+msgctxt "STR_OBJECT_DATASERIES_PLURAL"
+msgid "Data Series"
+msgstr "Datenreihe"
+
+#. 3G9WG
+#: Strings.src
+msgctxt "STR_OBJECT_CURVE"
+msgid "Trend Line"
+msgstr "Regressionskurve"
+
+#. 8miGx
+#: Strings.src
+msgctxt "STR_OBJECT_CURVES"
+msgid "Trend Lines"
+msgstr "Regressionskurven"
+
+#. ESVL6
+#: Strings.src
+msgctxt "STR_OBJECT_CURVE_WITH_PARAMETERS"
+msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
+msgstr "Regressionskurve %FORMULA mit Genauigkeit R² = %RSQUARED"
+
+#. DrVz3
+#: Strings.src
+msgctxt "STR_OBJECT_MOVING_AVERAGE_WITH_PARAMETERS"
+msgid "Moving average trend line with period = %PERIOD"
+msgstr "Gleitenden Durchschnitt verschieben mit Periode = %PERIOD"
+
+#. mcMQC
+#: Strings.src
+msgctxt "STR_OBJECT_AVERAGE_LINE"
+msgid "Mean Value Line"
+msgstr "Mittelwertlinie"
+
+#. RLMNC
+#: Strings.src
+msgctxt "STR_OBJECT_CURVE_EQUATION"
+msgid "Equation"
+msgstr "Gleichung"
+
+#. apx4j
+#: Strings.src
+msgctxt "STR_OBJECT_ERROR_BARS_X"
+msgid "X Error Bars"
+msgstr "X-Fehlerbalken"
+
+#. BUEbq
+#: Strings.src
+msgctxt "STR_OBJECT_ERROR_BARS_Y"
+msgid "Y Error Bars"
+msgstr "Y-Fehlerbalken"
+
+#. tQCpv
+#: Strings.src
+msgctxt "STR_OBJECT_ERROR_BARS_Z"
+msgid "Z Error Bars"
+msgstr "Z-Fehlerbalken"
+
+#. bz4Dw
+#: Strings.src
+msgctxt "STR_OBJECT_STOCK_LOSS"
+msgid "Stock Loss"
+msgstr "Negative Abweichung"
+
+#. AFE2t
+#: Strings.src
+msgctxt "STR_OBJECT_STOCK_GAIN"
+msgid "Stock Gain"
+msgstr "Positive Abweichung"
+
+#. Y5Qif
+#: Strings.src
+msgctxt "STR_OBJECT_PAGE"
+msgid "Chart Area"
+msgstr "Diagrammfläche"
+
+#. J9m2k
+#: Strings.src
+msgctxt "STR_OBJECT_DIAGRAM"
+msgid "Chart"
+msgstr "Diagramm"
+
+#. oRCev
+#: Strings.src
+msgctxt "STR_OBJECT_DIAGRAM_WALL"
+msgid "Chart Wall"
+msgstr "Diagrammwand"
+
+#. meV4E
+#: Strings.src
+msgctxt "STR_OBJECT_DIAGRAM_FLOOR"
+msgid "Chart Floor"
+msgstr "Diagrammboden"
+
+#. AHV4D
+#: Strings.src
+msgctxt "STR_OBJECT_SHAPE"
+msgid "Drawing Object"
+msgstr "Zeichenobjekt"
+
+#. dNCXG
+#: Strings.src
+msgctxt "STR_TIP_DATASERIES"
+msgid "Data Series '%SERIESNAME'"
+msgstr "Datenreihe '%SERIESNAME'"
+
+#. LDsiQ
+#: Strings.src
+msgctxt "STR_TIP_DATAPOINT_INDEX"
+msgid "Data Point %POINTNUMBER"
+msgstr "Datenpunkt %POINTNUMBER"
+
+#. 6C6HT
+#: Strings.src
+msgctxt "STR_TIP_DATAPOINT_VALUES"
+msgid "Values: %POINTVALUES"
+msgstr "Werte: %POINTVALUES"
+
+#. rCVeF
+#: Strings.src
+msgctxt "STR_TIP_DATAPOINT"
+msgid ""
+"Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
+msgstr ""
+"Datenpunkt %POINTNUMBER, Datenreihe %SERIESNUMBER, Werte: %POINTVALUES"
+
+#. eKDAq
+#: Strings.src
+msgctxt "STR_STATUS_DATAPOINT_MARKED"
+msgid ""
+"Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: "
+"%POINTVALUES"
+msgstr ""
+"Datenpunkt %POINTNUMBER in Datenreihe %SERIESNUMBER ausgewählt, Werte: "
+"%POINTVALUES"
+
+#. iKkhv
+#: Strings.src
+msgctxt "STR_STATUS_OBJECT_MARKED"
+msgid "%OBJECTNAME selected"
+msgstr "%OBJECTNAME ausgewählt"
+
+#. vyJED
+#: Strings.src
+msgctxt "STR_STATUS_PIE_SEGMENT_EXPLODED"
+msgid "Pie exploded by %PERCENTVALUE percent"
+msgstr "Kreissegment um %PERCENTVALUE Prozent ausgerückt"
+
+#. FbGFr
+#: Strings.src
+msgctxt "STR_OBJECT_FOR_SERIES"
+msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
+msgstr "%OBJECTNAME für Datenreihe '%SERIESNAME'"
+
+#. VVB54
+#: Strings.src
+msgctxt "STR_OBJECT_FOR_ALL_SERIES"
+msgid "%OBJECTNAME for all Data Series"
+msgstr "%OBJECTNAME für alle Datenreihen"
+
+#. Ahjrv
+#: Strings.src
+msgctxt "STR_ACTION_EDIT_CHARTTYPE"
+msgid "Edit chart type"
+msgstr "Diagrammtyp bearbeiten"
+
+#. zSLvA
+#: Strings.src
+msgctxt "STR_ACTION_EDIT_DATA_RANGES"
+msgid "Edit data ranges"
+msgstr "Datenbereiche bearbeiten"
+
+#. RmtWN
+#: Strings.src
+msgctxt "STR_ACTION_EDIT_3D_VIEW"
+msgid "Edit 3D view"
+msgstr "3D-Ansicht bearbeiten"
+
+#. REBbR
+#: Strings.src
+msgctxt "STR_ACTION_EDIT_CHART_DATA"
+msgid "Edit chart data"
+msgstr "Diagrammdaten bearbeiten"
+
+#. Y7hDD
+#: Strings.src
+msgctxt "STR_ACTION_TOGGLE_LEGEND"
+msgid "Legend on/off"
+msgstr "Legende ein/aus"
+
+#. fnfBr
+#: Strings.src
+msgctxt "STR_ACTION_TOGGLE_GRID_HORZ"
+msgid "Horizontal grid major/major&minor/off"
+msgstr "Horizontales Gitter (Hauptgitter/beide/keines)"
+
+#. jZDDr
+#: Strings.src
+msgctxt "STR_ACTION_TOGGLE_GRID_VERTICAL"
+msgid "Vertical grid major/major&minor/off"
+msgstr "Vertikales Gitter (Hauptgitter/beide/keines)"
+
+#. bZzzZ
+#: Strings.src
+msgctxt "STR_ACTION_SCALE_TEXT"
+msgid "Scale Text"
+msgstr "Texte skalieren"
+
+#. wJ7wY
+#: Strings.src
+msgctxt "STR_ACTION_REARRANGE_CHART"
+msgid "Automatic Layout"
+msgstr "Diagramm automatisch anordnen"
+
+#. j4xMg
+#: Strings.src
+msgctxt "STR_ACTION_NOTPOSSIBLE"
+msgid "This function cannot be completed with the selected objects."
+msgstr ""
+"Die Funktion kann mit den ausgewählten Objekten nicht ausgeführt werden."
+
+#. GaEzn
+#: Strings.src
+msgctxt "STR_ACTION_EDIT_TEXT"
+msgid "Edit text"
+msgstr "Text bearbeiten"
+
+#. EVDVA
+#: Strings.src
+msgctxt "STR_COLUMN_LABEL"
+msgid "Column %COLUMNNUMBER"
+msgstr "Spalte %COLUMNNUMBER"
+
+#. dmCD9
+#: Strings.src
+msgctxt "STR_ROW_LABEL"
+msgid "Row %ROWNUMBER"
+msgstr "Zeile %ROWNUMBER"
+
+#. fVS6E
+#: Strings.src
+msgctxt "STR_DATA_ROLE_LABEL"
+msgid "Name"
+msgstr "Name"
+
+#. ozAB8
+#: Strings.src
+msgctxt "STR_DATA_ROLE_X"
+msgid "X-Values"
+msgstr "X-Werte"
+
+#. FgGiW
+#: Strings.src
+msgctxt "STR_DATA_ROLE_Y"
+msgid "Y-Values"
+msgstr "Y-Werte"
+
+#. vzYAg
+#: Strings.src
+msgctxt "STR_DATA_ROLE_SIZE"
+msgid "Bubble Sizes"
+msgstr "Blasengröße"
+
+#. pMGL4
+#: Strings.src
+msgctxt "STR_DATA_ROLE_X_ERROR"
+msgid "X-Error-Bars"
+msgstr "X-Fehlerbalken"
+
+#. c9oCh
+#: Strings.src
+msgctxt "STR_DATA_ROLE_X_ERROR_POSITIVE"
+msgid "Positive X-Error-Bars"
+msgstr "Positive X-Fehlerbalken"
+
+#. uTsVM
+#: Strings.src
+msgctxt "STR_DATA_ROLE_X_ERROR_NEGATIVE"
+msgid "Negative X-Error-Bars"
+msgstr "Negative X-Fehlerbalken"
+
+#. RZaBP
+#: Strings.src
+msgctxt "STR_DATA_ROLE_Y_ERROR"
+msgid "Y-Error-Bars"
+msgstr "Y-Fehlerbalken"
+
+#. ZFFKK
+#: Strings.src
+msgctxt "STR_DATA_ROLE_Y_ERROR_POSITIVE"
+msgid "Positive Y-Error-Bars"
+msgstr "Positive Y-Fehlerbalken"
+
+#. pZ3af
+#: Strings.src
+msgctxt "STR_DATA_ROLE_Y_ERROR_NEGATIVE"
+msgid "Negative Y-Error-Bars"
+msgstr "Negative Y-Fehlerbalken"
+
+#. SD2nd
+#: Strings.src
+msgctxt "STR_DATA_ROLE_FIRST"
+msgid "Open Values"
+msgstr "Eröffnungswerte"
+
+#. fySNC
+#: Strings.src
+msgctxt "STR_DATA_ROLE_LAST"
+msgid "Close Values"
+msgstr "Schlusswerte"
+
+#. j5tve
+#: Strings.src
+msgctxt "STR_DATA_ROLE_MIN"
+msgid "Low Values"
+msgstr "Minimalwerte"
+
+#. kr9Ta
+#: Strings.src
+msgctxt "STR_DATA_ROLE_MAX"
+msgid "High Values"
+msgstr "Höchstwerte"
+
+#. bK6ee
+#: Strings.src
+msgctxt "STR_DATA_ROLE_CATEGORIES"
+msgid "Categories"
+msgstr "Kategorien"
+
+#. Ajx3m
+#: Strings.src
+msgctxt "STR_DATA_UNNAMED_SERIES"
+msgid "Unnamed Series"
+msgstr "Unbenannte Datenreihe"
+
+#. 8N2QE
+#: Strings.src
+msgctxt "STR_DATA_UNNAMED_SERIES_WITH_INDEX"
+msgid "Unnamed Series %NUMBER"
+msgstr "Unbenannte Datenreihe %NUMBER"
+
+#. E2YZH
+#: Strings.src
+msgctxt "STR_DATA_SELECT_RANGE_FOR_SERIES"
+msgid "Select Range for %VALUETYPE of %SERIESNAME"
+msgstr "Datenbereich für %VALUETYPE von %SERIESNAME auswählen"
+
+#. pBSSc
+#: Strings.src
+msgctxt "STR_DATA_SELECT_RANGE_FOR_CATEGORIES"
+msgid "Select Range for Categories"
+msgstr "Datenbereich für Kategorien auswählen"
+
+#. brKa4
+#: Strings.src
+msgctxt "STR_DATA_SELECT_RANGE_FOR_DATALABELS"
+msgid "Select Range for data labels"
+msgstr "Datenbereich für Datenbeschriftung auswählen"
+
+#. EDFdH
+#: Strings.src
+msgctxt "STR_DATA_EDITOR_INCORRECT_INPUT"
+msgid ""
+"Your last input is incorrect.\n"
+"Ignore this change and close the dialog?"
+msgstr ""
+"Ihre letzte Eingabe ist nicht korrekt.\n"
+"Diese Änderung verwerfen und den Dialog schließen?"
+
+#. Vx6bG
+#: Strings.src
+msgctxt "STR_TEXT_DIRECTION_LTR"
+msgid "Left-to-right"
+msgstr "Links-nach-rechts"
+
+#. WoDyW
+#: Strings.src
+msgctxt "STR_TEXT_DIRECTION_RTL"
+msgid "Right-to-left"
+msgstr "Rechts-nach-links"
+
+#. dtE2L
+#: Strings.src
+msgctxt "STR_TEXT_DIRECTION_SUPER"
+msgid "Use superordinate object settings"
+msgstr "Einstellungen des übergeordneten Objekts verwenden"
+
+#. GtGu4
+#: Strings.src
+msgctxt "STR_PROPERTY_ROLE_FILLCOLOR"
+msgid "Fill Color"
+msgstr "Füllfarbe"
+
+#. bzDDY
+#: Strings.src
+msgctxt "STR_PROPERTY_ROLE_BORDERCOLOR"
+msgid "Border Color"
+msgstr "Rahmenfarbe"
+
+#. C8FVd
+#: Strings_ChartTypes.src
+msgctxt "STR_TYPE_COLUMN"
+msgid "Column"
+msgstr "Säulendiagramm"
+
+#. SWPnA
+#: Strings_ChartTypes.src
+msgctxt "STR_TYPE_BAR"
+msgid "Bar"
+msgstr "Balkendiagramm"
+
+#. xUnpz
+#: Strings_ChartTypes.src
+msgctxt "STR_TYPE_AREA"
+msgid "Area"
+msgstr "Flächendiagramm"
+
+#. bqxBm
+#: Strings_ChartTypes.src
+msgctxt "STR_TYPE_PIE"
+msgid "Pie"
+msgstr "Kreisdiagramm"
+
+#. GGwEH
+#: Strings_ChartTypes.src
+msgctxt "STR_PIE_EXPLODED"
+msgid "Exploded Pie Chart"
+msgstr "Explodiertes Kreisdiagramm"
+
+#. gxFtf
+#: Strings_ChartTypes.src
+msgctxt "STR_DONUT_EXPLODED"
+msgid "Exploded Donut Chart"
+msgstr "Explodiertes Ringdiagramm"
+
+#. nsoQ2
+#: Strings_ChartTypes.src
+msgctxt "STR_DONUT"
+msgid "Donut"
+msgstr "Ringdiagramm"
+
+#. 7HjEG
+#: Strings_ChartTypes.src
+msgctxt "STR_TYPE_LINE"
+msgid "Line"
+msgstr "Liniendiagramm"
+
+#. Miu8E
+#: Strings_ChartTypes.src
+msgctxt "STR_TYPE_XY"
+msgid "XY (Scatter)"
+msgstr "XY (Streudiagramm)"
+
+#. LBFRX
+#: Strings_ChartTypes.src
+msgctxt "STR_POINTS_AND_LINES"
+msgid "Points and Lines"
+msgstr "Punkte und Linien"
+
+#. fjka7
+#: Strings_ChartTypes.src
+msgctxt "STR_POINTS_ONLY"
+msgid "Points Only"
+msgstr "Nur Punkte"
+
+#. Sz53v
+#: Strings_ChartTypes.src
+msgctxt "STR_LINES_ONLY"
+msgid "Lines Only"
+msgstr "Nur Linien"
+
+#. AAEA2
+#: Strings_ChartTypes.src
+msgctxt "STR_LINES_3D"
+msgid "3D Lines"
+msgstr "3D-Linien"
+
+#. ABjEg
+#: Strings_ChartTypes.src
+msgctxt "STR_TYPE_COMBI_COLUMN_LINE"
+msgid "Column and Line"
+msgstr "Säulen und Linien"
+
+#. nVKfC
+#: Strings_ChartTypes.src
+msgctxt "STR_LINE_COLUMN"
+msgid "Columns and Lines"
+msgstr "Säulen und Linien"
+
+#. QkQSa
+#: Strings_ChartTypes.src
+msgctxt "STR_LINE_STACKEDCOLUMN"
+msgid "Stacked Columns and Lines"
+msgstr "Gestapelte Säulen und Linien"
+
+#. HGKEx
+#: Strings_ChartTypes.src
+msgctxt "STR_TYPE_NET"
+msgid "Net"
+msgstr "Netzdiagramm"
+
+#. BKUc4
+#: Strings_ChartTypes.src
+msgctxt "STR_TYPE_STOCK"
+msgid "Stock"
+msgstr "Kursdiagramm"
+
+#. oG4gw
+#: Strings_ChartTypes.src
+msgctxt "STR_STOCK_1"
+msgid "Stock Chart 1"
+msgstr "Kursdiagramm 1"
+
+#. pSzDo
+#: Strings_ChartTypes.src
+msgctxt "STR_STOCK_2"
+msgid "Stock Chart 2"
+msgstr "Kursdiagramm 2"
+
+#. aEFDu
+#: Strings_ChartTypes.src
+msgctxt "STR_STOCK_3"
+msgid "Stock Chart 3"
+msgstr "Kursdiagramm 3"
+
+#. jZqox
+#: Strings_ChartTypes.src
+msgctxt "STR_STOCK_4"
+msgid "Stock Chart 4"
+msgstr "Kursdiagramm 4"
+
+#. DNBgg
+#: Strings_ChartTypes.src
+msgctxt "STR_NORMAL"
+msgid "Normal"
+msgstr "Normal"
+
+#. EfGVL
+#: Strings_ChartTypes.src
+msgctxt "STR_STACKED"
+msgid "Stacked"
+msgstr "Gestapelt"
+
+#. wqtzw
+#: Strings_ChartTypes.src
+msgctxt "STR_PERCENT"
+msgid "Percent Stacked"
+msgstr "Prozentual gestapelt"
+
+#. 52UGB
+#: Strings_ChartTypes.src
+msgctxt "STR_DEEP"
+msgid "Deep"
+msgstr "Hintereinander"
+
+#. dxfuQ
+#: Strings_ChartTypes.src
+msgctxt "STR_FILLED"
+msgid "Filled"
+msgstr "Ausgefüllt"
+
+#. rC5nu
+#: Strings_ChartTypes.src
+msgctxt "STR_TYPE_BUBBLE"
+msgid "Bubble"
+msgstr "Blasendiagramm"
+
+#. N9tXx
+#: Strings_ChartTypes.src
+msgctxt "STR_BUBBLE_1"
+msgid "Bubble Chart"
+msgstr "Blasendiagramm"
+
+#. p9orG
+#: Strings_ChartTypes.src
+msgctxt "STR_TYPE_GL3D_BAR"
+msgid "GL3D Bar"
+msgstr "GL3D-Balken"
+
+#. DgACZ
+#: Strings_ChartTypes.src
+msgctxt "STR_GL3D_BAR"
+msgid "GL3D Bar Chart"
+msgstr "GL3D-Balkendiagramm"
+
+#. AjPsf
+#: Strings_Scale.src
+msgctxt "STR_INVALID_NUMBER"
+msgid "Numbers are required. Check your input."
+msgstr "Es werden Zahlenwerte benötigt. Bitte überprüfen Sie die Eingabe."
+
+#. ofh4V
+#: Strings_Scale.src
+msgctxt "STR_STEP_GT_ZERO"
+msgid "The major interval requires a positive number. Check your input."
+msgstr ""
+"Das Hauptintervall benötigt einen positiven Zahlenwert. Bitte überprüfen Sie"
+" die Eingabe."
+
+#. EBJjR
+#: Strings_Scale.src
+msgctxt "STR_BAD_LOGARITHM"
+msgid "The logarithmic scale requires positive numbers. Check your input."
+msgstr ""
+"Für die logarithmische Darstellung werden positive Zahlenwerte benötigt. "
+"Bitte überprüfen Sie die Eingabe."
+
+#. K8BCB
+#: Strings_Scale.src
+msgctxt "STR_MIN_GREATER_MAX"
+msgid "The minimum must be lower than the maximum. Check your input."
+msgstr ""
+"Der Mindestwert muss unter dem Höchstwert liegen. Prüfen Sie die "
+"eingegebenen Werte."
+
+#. oBR4x
+#: Strings_Scale.src
+msgctxt "STR_INVALID_INTERVALS"
+msgid ""
+"The major interval needs to be greater than the minor interval. Check your "
+"input."
+msgstr ""
+"Das Hauptintervall benötigt einen größeren Zahlenwert als das "
+"Hilfsintervall. Bitte überprüfen Sie die Eingabe."
+
+#. ZvDEh
+#: Strings_Scale.src
+msgctxt "STR_INVALID_TIME_UNIT"
+msgid ""
+"The major and minor interval need to be greater or equal to the resolution. "
+"Check your input."
+msgstr ""
+"Das Haupt- und Hilfsintervall benötigen einen mindestens genauso großen "
+"Zahlenwert wie die Auflösung. Bitte überprüfen Sie die Eingabe."
+
+#. TuRxr
+#: Strings_Statistic.src
+msgctxt "STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
+msgid "From Data Table"
+msgstr "Aus Datentabelle"
+
+#. aPEDY
+#: Strings_Statistic.src
+msgctxt "STR_REGRESSION_LINEAR"
+msgid "Linear"
+msgstr "Linear"
+
+#. nD8ay
+#: Strings_Statistic.src
+msgctxt "STR_REGRESSION_LOG"
+msgid "Logarithmic"
+msgstr "Logarithmisch"
+
+#. CotSJ
+#: Strings_Statistic.src
+msgctxt "STR_REGRESSION_EXP"
+msgid "Exponential"
+msgstr "Exponentiell"
+
+#. HqBJV
+#: Strings_Statistic.src
+msgctxt "STR_REGRESSION_POWER"
+msgid "Power"
+msgstr "Potenziell"
+
+#. dBiUj
+#: Strings_Statistic.src
+msgctxt "STR_REGRESSION_POLYNOMIAL"
+msgid "Polynomial"
+msgstr "Polynomisch"
+
+#. FWi4g
+#: Strings_Statistic.src
+msgctxt "STR_REGRESSION_MOVING_AVERAGE"
+msgid "Moving average"
+msgstr "Gleitender Mittelwert"
+
+#. psj3B
+#: Strings_Statistic.src
+msgctxt "STR_REGRESSION_MEAN"
+msgid "Mean"
+msgstr "Mittelwert"
+
+#. VVVyQ
+#: 3dviewdialog.ui
+msgctxt "3dviewdialog|3DViewDialog"
+msgid "3D View"
+msgstr "3D-Ansicht"
+
+#. 3aACC
+#: chardialog.ui
+msgctxt "chardialog|CharDialog"
+msgid "Character"
+msgstr "Zeichen"
+
+#. v55EG
+#: chardialog.ui
+msgctxt "chardialog|font"
+msgid "Font"
+msgstr "Schrift"
+
+#. TnnrC
+#: chardialog.ui
+msgctxt "chardialog|fonteffects"
+msgid "Font Effects"
+msgstr "Schrifteffekte"
+
+#. nvprJ
+#: chardialog.ui
+msgctxt "chardialog|position"
+msgid "Position"
+msgstr "Position"
+
+#. vuzAY
+#: chartdatadialog.ui
+msgctxt "chartdatadialog|ChartDataDialog"
+msgid "Data Table"
+msgstr "Datentabelle"
+
+#. ywdAz
+#: chartdatadialog.ui
+msgctxt "chartdatadialog|InsertRow"
+msgid "Insert Row"
+msgstr "Zeile einfügen"
+
+#. DDsFz
+#: chartdatadialog.ui
+msgctxt "chartdatadialog|InsertColumn"
+msgid "Insert Series"
+msgstr "Datenreihe einfügen"
+
+#. KuFy7
+#: chartdatadialog.ui
+msgctxt "chartdatadialog|InsertTextColumn"
+msgid "Insert Text Column"
+msgstr "Textspalte einfügen"
+
+#. 4JgTE
+#: chartdatadialog.ui
+msgctxt "chartdatadialog|RemoveRow"
+msgid "Delete Row"
+msgstr "Zeile löschen"
+
+#. JCBmW
+#: chartdatadialog.ui
+msgctxt "chartdatadialog|RemoveColumn"
+msgid "Delete Series"
+msgstr "Datenreihe löschen"
+
+#. MUkk3
+#: chartdatadialog.ui
+msgctxt "chartdatadialog|MoveLeftColumn"
+msgid "Move Series Left"
+msgstr "Spalte nach links verschieben"
+
+#. DfxQy
+#: chartdatadialog.ui
+msgctxt "chartdatadialog|MoveRightColumn"
+msgid "Move Series Right"
+msgstr "Spalte nach rechts verschieben"
+
+#. EkxKw
+#: chartdatadialog.ui
+msgctxt "chartdatadialog|MoveUpRow"
+msgid "Move Row Up"
+msgstr "Zeile nach oben verschieben"
+
+#. TvbuK
+#: chartdatadialog.ui
+msgctxt "chartdatadialog|MoveDownRow"
+msgid "Move Row Down"
+msgstr "Zeile nach unten verschieben"
+
+#. KbkRw
+#: charttypedialog.ui
+msgctxt "charttypedialog|ChartTypeDialog"
+msgid "Chart Type"
+msgstr "Diagrammtyp"
+
+#. 9AVY7
+#: datarangedialog.ui
+msgctxt "datarangedialog|DataRangeDialog"
+msgid "Data Ranges"
+msgstr "Datenbereiche"
+
+#. H6ezZ
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|dlg_DataLabels"
+msgid "Data Labels for all Data Series"
+msgstr "Datenbeschriftung für alle Datenreihen"
+
+#. ouq6P
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|CB_VALUE_AS_NUMBER"
+msgid "Show value as _number"
+msgstr "_Wert als Zahl anzeigen"
+
+#. C2XXx
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|CB_VALUE_AS_PERCENTAGE"
+msgid "Show value as _percentage"
+msgstr "Wert als _Prozentwert anzeigen"
+
+#. MYzUe
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|CB_CATEGORY"
+msgid "Show _category"
+msgstr "_Kategorie anzeigen"
+
+#. 8mMDV
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|CB_SYMBOL"
+msgid "Show _legend key"
+msgstr "_Legendensymbol anzeigen"
+
+#. BA3kD
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|CB_WRAP_TEXT"
+msgid "Auto text _wrap"
+msgstr "Automatischer Zeilenumbru_ch"
+
+#. bFd8g
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|PB_NUMBERFORMAT"
+msgid "Number _format..."
+msgstr "Zahlen_format..."
+
+#. cFD6D
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|PB_PERCENT_NUMBERFORMAT"
+msgid "Percentage f_ormat..."
+msgstr "Prozentwert-Fo_rmat..."
+
+#. ETbFx
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|CT_LABEL_DIAL"
+msgid "ABCD"
+msgstr "ABCD"
+
+#. NvbuM
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|FT_TEXT_SEPARATOR"
+msgid "_Separator"
+msgstr "_Trenner"
+
+#. FDBQW
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|FT_LABEL_PLACEMENT"
+msgid "Place_ment"
+msgstr "Platz_ierung"
+
+#. 69qZL
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE"
+msgid "Number Format for Percentage Value"
+msgstr "Zahlenformat für Prozentwerte"
+
+#. mFeMA
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|label1"
+msgid "Text Attributes"
+msgstr "Textattribute"
+
+#. Jhjwb
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|FT_LABEL_DEGREES"
+msgid "_Degrees"
+msgstr "_Grad"
+
+#. vtVy2
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|FT_LABEL_TEXTDIR"
+msgid "Te_xt direction"
+msgstr "Te_xtrichtung"
+
+#. xpAEz
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|label2"
+msgid "Rotate Text"
+msgstr "Text drehen"
+
+#. RBvRC
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Best fit"
+msgstr "Passend"
+
+#. CFGTS
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Center"
+msgstr "Zentriert"
+
+#. kxNDG
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Above"
+msgstr "Oberhalb"
+
+#. dnhiD
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Top left"
+msgstr "Oben links"
+
+#. TGuEk
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Left"
+msgstr "Links"
+
+#. eUxTR
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Bottom left"
+msgstr "Unten links"
+
+#. CGQj7
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Below"
+msgstr "Unterhalb"
+
+#. UJ7uQ
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Bottom right"
+msgstr "Unten rechts"
+
+#. nEFuG
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Right"
+msgstr "Rechts"
+
+#. NQCGE
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Top right"
+msgstr "Oben rechts"
+
+#. UagUt
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Inside"
+msgstr "Innen"
+
+#. y25DL
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Outside"
+msgstr "Außen"
+
+#. 3HjyB
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststorePLACEMENT"
+msgid "Near origin"
+msgstr "Nahe Ursprung"
+
+#. m8qsr
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststoreSEPARATOR"
+msgid "Space"
+msgstr "Leerzeichen"
+
+#. d6M3S
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststoreSEPARATOR"
+msgid "Comma"
+msgstr "Kommata"
+
+#. HUBkD
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststoreSEPARATOR"
+msgid "Semicolon"
+msgstr "Semikolon"
+
+#. 3CaCX
+#: dlg_DataLabel.ui
+msgctxt "dlg_DataLabel|liststoreSEPARATOR"
+msgid "New line"
+msgstr "Zeilenumbruch"
+
+#. 3GUtp
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|dlg_InsertErrorBars"
+msgid "Legend"
+msgstr "Legende"
+
+#. 9Wf9T
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|RB_NONE"
+msgid "_None"
+msgstr "Ohn_e"
+
+#. sMZoy
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|RB_CONST"
+msgid "_Constant Value"
+msgstr "_Konstanter Wert"
+
+#. UzxQQ
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|RB_PERCENT"
+msgid "_Percentage"
+msgstr "_Prozentual"
+
+#. Z5yGF
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|RB_RANGE"
+msgid "Cell _Range"
+msgstr "Zell_bereich"
+
+#. vdvVR
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|label1"
+msgid "Error Category"
+msgstr "Fehlerkategorie"
+
+#. oZaa3
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|RB_BOTH"
+msgid "Positive _and Negative"
+msgstr "Positiv _und negativ"
+
+#. jJw8Y
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|RB_POSITIVE"
+msgid "Pos_itive"
+msgstr "Pos_itiv"
+
+#. 6YgbM
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|RB_NEGATIVE"
+msgid "Ne_gative"
+msgstr "Ne_gativ"
+
+#. fkKQH
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|label2"
+msgid "Error Indicator"
+msgstr "Fehlerindikator"
+
+#. WWuZ8
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|FT_POSITIVE"
+msgid "P_ositive (+)"
+msgstr "Po_sitiv (+)"
+
+#. 5FfdH
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|IB_RANGE_POSITIVE|tooltip_text"
+msgid "Select data range"
+msgstr "Positiven Datenbereich auswählen"
+
+#. K9wAk
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|FT_NEGATIVE"
+msgid "_Negative (-)"
+msgstr "_Negativ (-)"
+
+#. jsckc
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|IB_RANGE_NEGATIVE|tooltip_text"
+msgid "Select data range"
+msgstr "Negativen Datenbereich auswählen"
+
+#. GZS6d
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|CB_SYN_POS_NEG"
+msgid "Same value for both"
+msgstr "Bei_de Seiten gleich"
+
+#. ogVMg
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|label3"
+msgid "Parameters"
+msgstr "Parameter"
+
+#. MXxxE
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS"
+msgid "Select Range for Positive Error Bars"
+msgstr "Datenbereich für positive Fehlerbalken auswählen"
+
+#. ixAQm
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS"
+msgid "Select Range for Negative Error Bars"
+msgstr "Datenbereich für negative Fehlerbalken auswählen"
+
+#. 68LFy
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
+msgid "From Data Table"
+msgstr "Aus Datentabelle"
+
+#. fkUNn
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
+msgid "Standard Error"
+msgstr "Standardfehler"
+
+#. zpc6d
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
+msgid "Standard Deviation"
+msgstr "Standardabweichung"
+
+#. wA6LE
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
+msgid "Variance"
+msgstr "Varianz"
+
+#. UASm3
+#: dlg_InsertErrorBars.ui
+msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
+msgid "Error Margin"
+msgstr "Fehlerbereich"
+
+#. 3G3Jo
+#: dlg_InsertLegend.ui
+msgctxt "dlg_InsertLegend|dlg_InsertLegend"
+msgid "Legend"
+msgstr "Legende"
+
+#. TQUNp
+#: dlg_InsertLegend.ui
+msgctxt "dlg_InsertLegend|show"
+msgid "_Display legend"
+msgstr "L_egende anzeigen"
+
+#. BbrEG
+#: dlg_InsertLegend.ui
+msgctxt "dlg_InsertLegend|left"
+msgid "_Left"
+msgstr "_Links"
+
+#. EdZ7j
+#: dlg_InsertLegend.ui
+msgctxt "dlg_InsertLegend|right"
+msgid "_Right"
+msgstr "_Rechts"
+
+#. PoZ9R
+#: dlg_InsertLegend.ui
+msgctxt "dlg_InsertLegend|top"
+msgid "_Top"
+msgstr "_Oben"
+
+#. Uvcht
+#: dlg_InsertLegend.ui
+msgctxt "dlg_InsertLegend|bottom"
+msgid "_Bottom"
+msgstr "_Unten"
+
+#. bxdb5
+#: dlg_InsertLegend.ui
+msgctxt "dlg_InsertLegend|TXT_POSITION"
+msgid "Position"
+msgstr "Position"
+
+#. FAEct
+#: insertaxisdlg.ui
+msgctxt "insertaxisdlg|InsertAxisDialog"
+msgid "Axes"
+msgstr "Achsen"
+
+#. 4Drc8
+#: insertaxisdlg.ui
+msgctxt "insertaxisdlg|primaryX"
+msgid "_X axis"
+msgstr "_X-Achse"
+
+#. XeWVu
+#: insertaxisdlg.ui
+msgctxt "insertaxisdlg|primaryY"
+msgid "_Y axis"
+msgstr "_Y-Achse"
+
+#. FoAXW
+#: insertaxisdlg.ui
+msgctxt "insertaxisdlg|primaryZ"
+msgid "_Z axis"
+msgstr "_Z-Achse"
+
+#. YZ7GG
+#: insertaxisdlg.ui
+msgctxt "insertaxisdlg|label1"
+msgid "Axes"
+msgstr "Achsen"
+
+#. WEUFf
+#: insertaxisdlg.ui
+msgctxt "insertaxisdlg|secondaryX"
+msgid "X _axis"
+msgstr "X-_Achse"
+
+#. 598Gk
+#: insertaxisdlg.ui
+msgctxt "insertaxisdlg|secondaryY"
+msgid "Y ax_is"
+msgstr "Y-A_chse"
+
+#. CAFjD
+#: insertaxisdlg.ui
+msgctxt "insertaxisdlg|secondaryZ"
+msgid "Z axi_s"
+msgstr "Z-Ach_se"
+
+#. 2LQwV
+#: insertaxisdlg.ui
+msgctxt "insertaxisdlg|label2"
+msgid "Secondary Axes"
+msgstr "Sekundäre Achsen"
+
+#. 2eGKS
+#: insertgriddlg.ui
+msgctxt "insertgriddlg|InsertGridDialog"
+msgid "Grids"
+msgstr "Gitterlinien"
+
+#. adEgJ
+#: insertgriddlg.ui
+msgctxt "insertgriddlg|primaryX"
+msgid "_X axis"
+msgstr "_X-Achse"
+
+#. FEBZW
+#: insertgriddlg.ui
+msgctxt "insertgriddlg|primaryY"
+msgid "_Y axis"
+msgstr "_Y-Achse"
+
+#. XEXTu
+#: insertgriddlg.ui
+msgctxt "insertgriddlg|primaryZ"
+msgid "_Z axis"
+msgstr "_Z-Achse"
+
+#. 9QbAA
+#: insertgriddlg.ui
+msgctxt "insertgriddlg|label1"
+msgid "Major Grids"
+msgstr "Hauptgitter"
+
+#. wqXds
+#: insertgriddlg.ui
+msgctxt "insertgriddlg|secondaryX"
+msgid "X _axis"
+msgstr "X-_Achse"
+
+#. PkzaY
+#: insertgriddlg.ui
+msgctxt "insertgriddlg|secondaryY"
+msgid "Y ax_is"
+msgstr "Y-A_chse"
+
+#. CcCG8
+#: insertgriddlg.ui
+msgctxt "insertgriddlg|secondaryZ"
+msgid "Z axi_s"
+msgstr "Z-Ach_se"
+
+#. QBQD4
+#: insertgriddlg.ui
+msgctxt "insertgriddlg|label2"
+msgid "Minor Grids"
+msgstr "Hilfsgitter"
+
+#. rqADt
+#: inserttitledlg.ui
+msgctxt "inserttitledlg|InsertTitleDialog"
+msgid "Titles"
+msgstr "Titel"
+
+#. pAKf8
+#: inserttitledlg.ui
+msgctxt "inserttitledlg|labelMainTitle"
+msgid "_Title"
+msgstr "_Titel"
+
+#. ZBgRn
+#: inserttitledlg.ui
+msgctxt "inserttitledlg|labelSubTitle"
+msgid "_Subtitle"
+msgstr "_Untertitel"
+
+#. y8KiH
+#: inserttitledlg.ui
+msgctxt "inserttitledlg|labelPrimaryXaxis"
+msgid "_X axis"
+msgstr "_X-Achse"
+
+#. RhsUT
+#: inserttitledlg.ui
+msgctxt "inserttitledlg|labelPrimaryYaxis"
+msgid "_Y axis"
+msgstr "_Y-Achse"
+
+#. ypJFt
+#: inserttitledlg.ui
+msgctxt "inserttitledlg|labelPrimaryZaxis"
+msgid "_Z axis"
+msgstr "_Z-Achse"
+
+#. aHvzY
+#: inserttitledlg.ui
+msgctxt "inserttitledlg|Axe"
+msgid "Axes"
+msgstr "Achsen"
+
+#. 8XRFP
+#: inserttitledlg.ui
+msgctxt "inserttitledlg|labelSecondaryXAxis"
+msgid "X _axis"
+msgstr "X-_Achse"
+
+#. Tq7G9
+#: inserttitledlg.ui
+msgctxt "inserttitledlg|labelSecondaryYAxis"
+msgid "Y ax_is"
+msgstr "Y-A_chse"
+
+#. XvJwD
+#: inserttitledlg.ui
+msgctxt "inserttitledlg|label2"
+msgid "Secondary Axes"
+msgstr "Sekundäre Achsen"
+
+#. 23FsQ
+#: paradialog.ui
+msgctxt "paradialog|ParagraphDialog"
+msgid "Paragraph"
+msgstr "Absatz"
+
+#. 6xRiy
+#: paradialog.ui
+msgctxt "paradialog|labelTP_PARA_STD"
+msgid "Indents & Spacing"
+msgstr "Einzüge & Abstände"
+
+#. PRo68
+#: paradialog.ui
+msgctxt "paradialog|labelTP_PARA_ALIGN"
+msgid "Alignment"
+msgstr "Ausrichtung"
+
+#. EB5A9
+#: paradialog.ui
+msgctxt "paradialog|labelTP_PARA_ASIAN"
+msgid "Asian Typography"
+msgstr "Asiatische Typografie"
+
+#. BzbWJ
+#: paradialog.ui
+msgctxt "paradialog|labelTP_TABULATOR"
+msgid "Tabs"
+msgstr "Tabulator"
+
+#. jEDem
+#: sidebaraxis.ui
+msgctxt "sidebaraxis|checkbutton_show_label"
+msgid "Show labels"
+msgstr "_Beschriftung anzeigen"
+
+#. 52BFU
+#: sidebaraxis.ui
+msgctxt "sidebaraxis|checkbutton_reverse"
+msgid "Reverse direction"
+msgstr "Richtun_g umkehren"
+
+#. hABaw
+#: sidebaraxis.ui
+msgctxt "sidebaraxis|label1"
+msgid "_Label position:"
+msgstr "Beschriftungs_position:"
+
+#. JpV6N
+#: sidebaraxis.ui
+msgctxt "sidebaraxis|comboboxtext_label_position"
+msgid "Near Axis"
+msgstr "An der Achse"
+
+#. HEMNB
+#: sidebaraxis.ui
+msgctxt "sidebaraxis|comboboxtext_label_position"
+msgid "Near Axis (other side)"
+msgstr "An der Achse (andere Seite)"
+
+#. BE2dT
+#: sidebaraxis.ui
+msgctxt "sidebaraxis|comboboxtext_label_position"
+msgid "Outside start"
+msgstr "Außerhalb des Anfangs"
+
+#. rH94z
+#: sidebaraxis.ui
+msgctxt "sidebaraxis|comboboxtext_label_position"
+msgid "Outside end"
+msgstr "Außerhalb des Endes"
+
+#. 69LSe
+#: sidebaraxis.ui
+msgctxt "sidebaraxis|label2"
+msgid "_Text orientation:"
+msgstr "_Textausrichtung:"
+
+#. HttnZ
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_subtitle"
+msgid "Subtitle"
+msgstr "_Untertitel"
+
+#. Bqqg6
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_title"
+msgid "Title"
+msgstr "Titel"
+
+#. vkhjB
+#: sidebarelements.ui
+msgctxt "sidebarelements|l"
+msgid "Titles"
+msgstr "Titel"
+
+#. XxG3r
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_legend|tooltip_text"
+msgid "Show Legend"
+msgstr "Legende anzeigen"
+
+#. zszn2
+#: sidebarelements.ui
+msgctxt "sidebarelements|placement_label"
+msgid "_Placement:"
+msgstr "Platz_ierung:"
+
+#. N9Vw3
+#: sidebarelements.ui
+msgctxt "sidebarelements|comboboxtext_legend"
+msgid "Right"
+msgstr "Rechts"
+
+#. XWGfH
+#: sidebarelements.ui
+msgctxt "sidebarelements|comboboxtext_legend"
+msgid "Top"
+msgstr "Oben"
+
+#. AYbfc
+#: sidebarelements.ui
+msgctxt "sidebarelements|comboboxtext_legend"
+msgid "Bottom"
+msgstr "Unten"
+
+#. Hdrnv
+#: sidebarelements.ui
+msgctxt "sidebarelements|comboboxtext_legend"
+msgid "Left"
+msgstr "Links"
+
+#. bqXDD
+#: sidebarelements.ui
+msgctxt "sidebarelements|comboboxtext_legend"
+msgid "Manual"
+msgstr "Ma_nuell"
+
+#. UVbZR
+#: sidebarelements.ui
+msgctxt "sidebarelements|label_legen"
+msgid "Legend"
+msgstr "Legende"
+
+#. Am6Gz
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_x_axis"
+msgid "X axis"
+msgstr "_X-Achse"
+
+#. P5gxx
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_x_axis_title"
+msgid "X axis title"
+msgstr "Titel X-Achse"
+
+#. iMXPp
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_y_axis"
+msgid "Y axis"
+msgstr "_Y-Achse"
+
+#. vF4oS
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_y_axis_title"
+msgid "Y axis title"
+msgstr "Titel Y-Achse"
+
+#. A35cf
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_z_axis"
+msgid "Z axis"
+msgstr "_Z-Achse"
+
+#. RZFAU
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_z_axis_title"
+msgid "Z axis title"
+msgstr "Titel Z-Achse"
+
+#. GoJDH
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_2nd_x_axis"
+msgid "2nd X axis"
+msgstr "2. X-Achse"
+
+#. nsoDZ
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_2nd_x_axis_title"
+msgid "2nd X axis title"
+msgstr "Titel 2. X-Achse"
+
+#. bGsCM
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_2nd_y_axis"
+msgid "2nd Y axis"
+msgstr "2. Y-Achse"
+
+#. yDNuy
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_2nd_y_axis_title"
+msgid "2nd Y axis title"
+msgstr "Titel 2. Y-Achse"
+
+#. ScLEM
+#: sidebarelements.ui
+msgctxt "sidebarelements|label_axes"
+msgid "Axes"
+msgstr "Achsen"
+
+#. RL8AA
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_gridline_horizontal_major"
+msgid "Horizontal major"
+msgstr "Hauptgitter horizontal"
+
+#. FYBSZ
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_gridline_vertical_major"
+msgid "Vertical major"
+msgstr "Hauptgitter vertikal"
+
+#. VCTTS
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_gridline_horizontal_minor"
+msgid "Horizontal minor"
+msgstr "Hilfsgitter horizontal"
+
+#. QDFEZ
+#: sidebarelements.ui
+msgctxt "sidebarelements|checkbutton_gridline_vertical_minor"
+msgid "Vertical minor"
+msgstr "Hilfsgitter vertikal"
+
+#. yeE2v
+#: sidebarelements.ui
+msgctxt "sidebarelements|label_gri"
+msgid "Gridlines"
+msgstr "Gitterlinien"
+
+#. uacDo
+#: sidebarelements.ui
+msgctxt "sidebarelements|text_title"
+msgid "Title"
+msgstr "Titel"
+
+#. jXGDE
+#: sidebarelements.ui
+msgctxt "sidebarelements|text_subtitle"
+msgid "Subtitle"
+msgstr "Untertitel"
+
+#. SCPM4
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|label2"
+msgid "Category:"
+msgstr "Kategorie:"
+
+#. 8Pb84
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|comboboxtext_type"
+msgid "Constant"
+msgstr "Konstant"
+
+#. Lz8Lo
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|comboboxtext_type"
+msgid "Percentage"
+msgstr "_Prozentual"
+
+#. Ap367
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|comboboxtext_type"
+msgid "Cell Range or Data Table"
+msgstr "Zellbereich oder Datentabelle"
+
+#. Lqw6L
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|comboboxtext_type"
+msgid "Standard deviation"
+msgstr "Standardabweichung"
+
+#. qUL78
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|comboboxtext_type"
+msgid "Standard error"
+msgstr "Standardfehler"
+
+#. KUCgB
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|comboboxtext_type"
+msgid "Variance"
+msgstr "Varianz"
+
+#. QDwJu
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|comboboxtext_type"
+msgid "Error margin"
+msgstr "Fehlerbereich"
+
+#. US82z
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|label3"
+msgid "Positive (+):"
+msgstr "Po_sitiv (+):"
+
+#. NJdbG
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|label4"
+msgid "Negative (-):"
+msgstr "_Negativ (-):"
+
+#. GBewc
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|spinbutton_pos"
+msgid "0.00"
+msgstr "0,00"
+
+#. e3GvR
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|spinbutton_neg"
+msgid "0.00"
+msgstr "0,00"
+
+#. 34Vax
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|radiobutton_positive_negative|tooltip_text"
+msgid "Positive and Negative"
+msgstr "Positiv _und negativ"
+
+#. gETvJ
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|radiobutton_positive|tooltip_text"
+msgid "Positive"
+msgstr "Pos_itiv"
+
+#. 3Ur2d
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|radiobutton_negative|tooltip_text"
+msgid "Negative"
+msgstr "Ne_gativ"
+
+#. iCPU4
+#: sidebarerrorbar.ui
+msgctxt "sidebarerrorbar|label5"
+msgid "Indicator"
+msgstr "Indikator"
+
+#. qJBsd
+#: sidebarseries.ui
+msgctxt "sidebarseries|checkbutton_label"
+msgid "Show data labels"
+msgstr "Datenbeschriftung anzeigen"
+
+#. BsC9D
+#: sidebarseries.ui
+msgctxt "sidebarseries|label_box"
+msgid "P_lacement:"
+msgstr "Platz_ierung:"
+
+#. Dk3GN
+#: sidebarseries.ui
+msgctxt "sidebarseries|comboboxtext_label"
+msgid "Above"
+msgstr "Oberhalb"
+
+#. e4znD
+#: sidebarseries.ui
+msgctxt "sidebarseries|comboboxtext_label"
+msgid "Below"
+msgstr "Unterhalb"
+
+#. CWwzt
+#: sidebarseries.ui
+msgctxt "sidebarseries|comboboxtext_label"
+msgid "Center"
+msgstr "Zentriert"
+
+#. osWVq
+#: sidebarseries.ui
+msgctxt "sidebarseries|comboboxtext_label"
+msgid "Outside"
+msgstr "Außen"
+
+#. U3N4S
+#: sidebarseries.ui
+msgctxt "sidebarseries|comboboxtext_label"
+msgid "Inside"
+msgstr "Innen"
+
+#. pAmg7
+#: sidebarseries.ui
+msgctxt "sidebarseries|comboboxtext_label"
+msgid "Near origin"
+msgstr "Nahe Ursprung"
+
+#. erC9C
+#: sidebarseries.ui
+msgctxt "sidebarseries|checkbutton_trendline"
+msgid "Show trendline"
+msgstr "Trendlinie anzeigen"
+
+#. bXUND
+#: sidebarseries.ui
+msgctxt "sidebarseries|checkbutton_y_error"
+msgid "Y error bars"
+msgstr "Y-Fehlerbalken"
+
+#. zK6DE
+#: sidebarseries.ui
+msgctxt "sidebarseries|checkbutton_x_error"
+msgid "X error bars"
+msgstr "X-Fehlerbalken"
+
+#. FFPa2
+#: sidebarseries.ui
+msgctxt "sidebarseries|label1"
+msgid "Error Bars"
+msgstr "Fehlerbalken"
+
+#. vhdnt
+#: sidebarseries.ui
+msgctxt "sidebarseries|radiobutton_primary_axis"
+msgid "Primary Y axis"
+msgstr "Primäre Y-Achse"
+
+#. VPWVq
+#: sidebarseries.ui
+msgctxt "sidebarseries|radiobutton_secondary_axis"
+msgid "Secondary Y axis"
+msgstr "Sekundäre Y-Achse"
+
+#. qE5HF
+#: sidebarseries.ui
+msgctxt "sidebarseries|axis_label"
+msgid "Align Series to Axis"
+msgstr "Reihen an Achsen ausrichten"
+
+#. fvnkG
+#: sidebarseries.ui
+msgctxt "sidebarseries|label_series_tmpl"
+msgid "Data series '%1'"
+msgstr "Datenreihe '%1'"
+
+#. Ledzw
+#: smoothlinesdlg.ui
+msgctxt "smoothlinesdlg|SmoothLinesDialog"
+msgid "Smooth Lines"
+msgstr "Kurvenglättung"
+
+#. vmRbz
+#: smoothlinesdlg.ui
+msgctxt "smoothlinesdlg|TypeLabel"
+msgid "Line _Type:"
+msgstr "Linien_typ:"
+
+#. Nkqhi
+#: smoothlinesdlg.ui
+msgctxt "smoothlinesdlg|SplineTypeComboBox"
+msgid "Cubic spline"
+msgstr "Kubischer Spline"
+
+#. LTCVw
+#: smoothlinesdlg.ui
+msgctxt "smoothlinesdlg|SplineTypeComboBox"
+msgid "B-spline"
+msgstr "B-Spline"
+
+#. eecxc
+#: smoothlinesdlg.ui
+msgctxt "smoothlinesdlg|ResolutionLabel"
+msgid "_Resolution:"
+msgstr "_Auflösung:"
+
+#. AdG5v
+#: smoothlinesdlg.ui
+msgctxt "smoothlinesdlg|PolynomialsLabel"
+msgid "_Degree of polynomials:"
+msgstr "_Grad der Polynome:"
+
+#. z9C8V
+#: smoothlinesdlg.ui
+msgctxt "smoothlinesdlg|SplineTypeModel"
+msgid "Cubic Spline"
+msgstr "Kubischer Spline"
+
+#. GNE2x
+#: smoothlinesdlg.ui
+msgctxt "smoothlinesdlg|SplineTypeModel"
+msgid "B-Spline"
+msgstr "B-Spline"
+
+#. RyJg5
+#: steppedlinesdlg.ui
+msgctxt "steppedlinesdlg|step_start_rb"
+msgid "_Start with horizontal line"
+msgstr "Mit horizontaler _Linie beginnen"
+
+#. iJCAt
+#: steppedlinesdlg.ui
+msgctxt "steppedlinesdlg|step_center_x_rb"
+msgid "Step at the _horizontal mean"
+msgstr "_Stufe horizontal mittig"
+
+#. vtGik
+#: steppedlinesdlg.ui
+msgctxt "steppedlinesdlg|step_end_rb"
+msgid "_End with horizontal line"
+msgstr "Mit _vertikaler Linie beginnen"
+
+#. X3536
+#: steppedlinesdlg.ui
+msgctxt "steppedlinesdlg|step_center_y_rb"
+msgid "Step to the _vertical mean"
+msgstr "Stufe vertikal _mittig"
+
+#. oDDMr
+#: steppedlinesdlg.ui
+msgctxt "steppedlinesdlg|label2"
+msgid "Type of Stepping"
+msgstr "Art der Stufen"
+
+#. ViJ9k
+#: titlerotationtabpage.ui
+msgctxt "titlerotationtabpage|degreeL"
+msgid "_Degrees"
+msgstr "_Grad"
+
+#. tv9xJ
+#: titlerotationtabpage.ui
+msgctxt "titlerotationtabpage|stackedCB"
+msgid "Ve_rtically stacked"
+msgstr "_Senkrecht gestapelt"
+
+#. 3BaMa
+#: titlerotationtabpage.ui
+msgctxt "titlerotationtabpage|labelABCD"
+msgid "ABCD"
+msgstr "ABCD"
+
+#. dAHWb
+#: titlerotationtabpage.ui
+msgctxt "titlerotationtabpage|textdirL"
+msgid "Te_xt direction:"
+msgstr "Te_xtrichtung:"
+
+#. syx89
+#: titlerotationtabpage.ui
+msgctxt "titlerotationtabpage|labelTextOrient"
+msgid "Text Orientation"
+msgstr "Textausrichtung"
+
+#. CDDxo
+#: tp_3D_SceneAppearance.ui
+msgctxt "tp_3D_SceneAppearance|FT_SCHEME"
+msgid "Sche_me"
+msgstr "Sche_ma"
+
+#. EyGsf
+#: tp_3D_SceneAppearance.ui
+msgctxt "tp_3D_SceneAppearance|CB_SHADING"
+msgid "_Shading"
+msgstr "_Schattierung"
+
+#. SMFrD
+#: tp_3D_SceneAppearance.ui
+msgctxt "tp_3D_SceneAppearance|CB_OBJECTLINES"
+msgid "_Object borders"
+msgstr "_Objektumrandungen"
+
+#. CpWRj
+#: tp_3D_SceneAppearance.ui
+msgctxt "tp_3D_SceneAppearance|CB_ROUNDEDEDGE"
+msgid "_Rounded edges"
+msgstr "_Kantenrundungen"
+
+#. 4uCgf
+#: tp_3D_SceneAppearance.ui
+msgctxt "tp_3D_SceneAppearance|liststoreSCHEME"
+msgid "Simple"
+msgstr "Einfach"
+
+#. uVRvv
+#: tp_3D_SceneAppearance.ui
+msgctxt "tp_3D_SceneAppearance|liststoreSCHEME"
+msgid "Realistic"
+msgstr "Realistisch"
+
+#. tFKjs
+#: tp_3D_SceneAppearance.ui
+msgctxt "tp_3D_SceneAppearance|liststoreSCHEME"
+msgid "Custom"
+msgstr "Benutzerdefiniert"
+
+#. U5CTF
+#: tp_3D_SceneGeometry.ui
+msgctxt "tp_3D_SceneGeometry|CBX_RIGHT_ANGLED_AXES"
+msgid "_Right-angled axes"
+msgstr "_Rechtwinklige Achsen"
+
+#. y8Tyg
+#: tp_3D_SceneGeometry.ui
+msgctxt "tp_3D_SceneGeometry|FT_X_ROTATION"
+msgid "_X rotation"
+msgstr "_X Drehung"
+
+#. TJ2Xp
+#: tp_3D_SceneGeometry.ui
+msgctxt "tp_3D_SceneGeometry|FT_Y_ROTATION"
+msgid "_Y rotation"
+msgstr "_Y Drehung"
+
+#. UTAG5
+#: tp_3D_SceneGeometry.ui
+msgctxt "tp_3D_SceneGeometry|FT_Z_ROTATION"
+msgid "_Z rotation"
+msgstr "_Z Drehung"
+
+#. ZC8ZQ
+#: tp_3D_SceneGeometry.ui
+msgctxt "tp_3D_SceneGeometry|CBX_PERSPECTIVE"
+msgid "_Perspective"
+msgstr "_Perspektive"
+
+#. MJhGc
+#: tp_3D_SceneGeometry.ui
+msgctxt "tp_3D_SceneGeometry|MTR_FLD_PERSPECTIVE"
+msgid "Perspective"
+msgstr "Perspektive"
+
+#. RGQDC
+#: tp_3D_SceneIllumination.ui
+msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_1|tooltip_text"
+msgid "Light source 1"
+msgstr "Lichtquelle 1"
+
+#. bwfDH
+#: tp_3D_SceneIllumination.ui
+msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_2|tooltip_text"
+msgid "Light source 2"
+msgstr "Lichtquelle 2"
+
+#. uMVDV
+#: tp_3D_SceneIllumination.ui
+msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_3|tooltip_text"
+msgid "Light source 3"
+msgstr "Lichtquelle 3"
+
+#. 6CBDG
+#: tp_3D_SceneIllumination.ui
+msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_4|tooltip_text"
+msgid "Light source 4"
+msgstr "Lichtquelle 4"
+
+#. Hf5Du
+#: tp_3D_SceneIllumination.ui
+msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_5|tooltip_text"
+msgid "Light source 5"
+msgstr "Lichtquelle 5"
+
+#. T7qDZ
+#: tp_3D_SceneIllumination.ui
+msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_6|tooltip_text"
+msgid "Light source 6"
+msgstr "Lichtquelle 6"
+
+#. mSsDD
+#: tp_3D_SceneIllumination.ui
+msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_7|tooltip_text"
+msgid "Light source 7"
+msgstr "Lichtquelle 7"
+
+#. wY5CR
+#: tp_3D_SceneIllumination.ui
+msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_8|tooltip_text"
+msgid "Light source 8"
+msgstr "Lichtquelle 8"
+
+#. gfdAB
+#: tp_3D_SceneIllumination.ui
+msgctxt "tp_3D_SceneIllumination|BTN_LIGHTSOURCE_COLOR|tooltip_text"
+msgid "Select a color using the color dialog"
+msgstr "Farbe über den Dialog Farbe auswählen"
+
+#. XLXEQ
+#: tp_3D_SceneIllumination.ui
+msgctxt "tp_3D_SceneIllumination|FT_LIGHTSOURCE"
+msgid "_Light source"
+msgstr "_Lichtquelle"
+
+#. NpAu7
+#: tp_3D_SceneIllumination.ui
+msgctxt "tp_3D_SceneIllumination|BTN_AMBIENT_COLOR|tooltip_text"
+msgid "Select a color using the color dialog"
+msgstr "Farbe über Dialog Farbe auswählen"
+
+#. QCb7M
+#: tp_3D_SceneIllumination.ui
+msgctxt "tp_3D_SceneIllumination|FT_AMBIENTLIGHT"
+msgid "_Ambient light"
+msgstr "_Umgebungslicht"
+
+#. snUGf
+#: tp_3D_SceneIllumination.ui
+msgctxt "tp_3D_SceneIllumination|CTL_LIGHT_PREVIEW|tooltip_text"
+msgid "Light Preview"
+msgstr "Lichtvorschau"
+
+#. XRVrG
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|FT_CROSSES_OTHER_AXIS_AT"
+msgid "_Cross other axis at"
+msgstr "Andere Achse schneiden _bei"
+
+#. Z734o
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|LB_CROSSES_OTHER_AXIS_AT"
+msgid "Start"
+msgstr "Anfang"
+
+#. u6i7J
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|LB_CROSSES_OTHER_AXIS_AT"
+msgid "End"
+msgstr "Ende"
+
+#. vAUzq
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|LB_CROSSES_OTHER_AXIS_AT"
+msgid "Value"
+msgstr "Wert"
+
+#. 5CSqT
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|LB_CROSSES_OTHER_AXIS_AT"
+msgid "Category"
+msgstr "Kategorie"
+
+#. VYVhe
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|CB_AXIS_BETWEEN_CATEGORIES"
+msgid "Axis _between categories"
+msgstr "Achse zwischen _Kategorien"
+
+#. bW7T9
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|TXT_AXIS_LINE"
+msgid "Axis Line"
+msgstr "Koordinatenachsen"
+
+#. 5AGbD
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|FT_PLACE_LABELS"
+msgid "_Place labels"
+msgstr "_Position"
+
+#. GDk2L
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
+msgid "Near axis"
+msgstr "An der Achse"
+
+#. ZWQzB
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
+msgid "Near axis (other side)"
+msgstr "An der Achse (andere Seite)"
+
+#. j3GGm
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
+msgid "Outside start"
+msgstr "Außerhalb des Anfangs"
+
+#. mGDNr
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
+msgid "Outside end"
+msgstr "Außerhalb des Endes"
+
+#. DUNn4
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|FT_AXIS_LABEL_DISTANCE"
+msgid "_Distance"
+msgstr "_Abstand"
+
+#. Hkjze
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|TXT_FL_LABELS"
+msgid "Labels"
+msgstr "Beschriftung"
+
+#. YBk4g
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|FT_MAJOR"
+msgid "Major:"
+msgstr "Hauptintervall:"
+
+#. G8MEU
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|FT_MINOR"
+msgid "Minor:"
+msgstr "Hilfsinertvall:"
+
+#. UN6Pr
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|CB_TICKS_INNER"
+msgid "_Inner"
+msgstr "_Innen"
+
+#. EhLxm
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|CB_TICKS_OUTER"
+msgid "_Outer"
+msgstr "A_ußen"
+
+#. RJXic
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|CB_MINOR_INNER"
+msgid "I_nner"
+msgstr "I_nnen"
+
+#. nBCFJ
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|CB_MINOR_OUTER"
+msgid "O_uter"
+msgstr "Auß_en"
+
+#. XWuxR
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|FT_PLACE_TICKS"
+msgid "Place _marks"
+msgstr "_Position"
+
+#. mvGBB
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
+msgid "At labels"
+msgstr "An Beschriftung"
+
+#. dGAYz
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
+msgid "At axis"
+msgstr "An Achse"
+
+#. TJAJB
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
+msgid "At axis and labels"
+msgstr "An Achse und Beschriftung"
+
+#. jK9rf
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|TXT_FL_TICKS"
+msgid "Interval Marks"
+msgstr "Intervallmarkierungen"
+
+#. 4Jp7G
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|CB_MAJOR_GRID"
+msgid "Show major _grid"
+msgstr "_Hauptgitter anzeigen"
+
+#. 7c2Hs
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|CB_MINOR_GRID"
+msgid "_Show minor grid"
+msgstr "_Hilfsgitter anzeigen"
+
+#. Dp5Ar
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|PB_MAJOR_GRID"
+msgid "Mo_re..."
+msgstr "_Mehr..."
+
+#. k5VQQ
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|PB_MINOR_GRID"
+msgid "Mor_e..."
+msgstr "Meh_r..."
+
+#. 7eDLK
+#: tp_AxisPositions.ui
+msgctxt "tp_AxisPositions|label2"
+msgid "Grids"
+msgstr "Gitterlinien"
+
+#. CUoe3
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|FT_CAPTION_FOR_WIZARD"
+msgid "Choose a Chart Type"
+msgstr "Diagrammtyp wählen"
+
+#. FSf6b
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|3dlook"
+msgid "_3D Look"
+msgstr "_3D-Darstellung"
+
+#. FprGw
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|3dscheme"
+msgid "Simple"
+msgstr "Einfach"
+
+#. pKhfX
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|3dscheme"
+msgid "Realistic"
+msgstr "Realistisch"
+
+#. FxHfq
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|shapeft"
+msgid "Sh_ape"
+msgstr "_Form"
+
+#. G2u4D
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|stack"
+msgid "_Stack series"
+msgstr "_Datenreihen stapeln"
+
+#. KfD2L
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|ontop"
+msgid "On top"
+msgstr "Übereinander"
+
+#. C7JxK
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|percent"
+msgid "Percent"
+msgstr "Prozentual"
+
+#. ijuPy
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|deep"
+msgid "Deep"
+msgstr "Hintereinander"
+
+#. etF2p
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|linetypeft"
+msgid "_Line type"
+msgstr "Linien_typ"
+
+#. RbyB4
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|linetype"
+msgid "Straight"
+msgstr "Gerade"
+
+#. dG5tv
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|linetype"
+msgid "Smooth"
+msgstr "Kurve"
+
+#. uHHpu
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|linetype"
+msgid "Stepped"
+msgstr "Stufen"
+
+#. JqNUv
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|properties"
+msgid "Properties..."
+msgstr "_Eigenschaften..."
+
+#. KzGZQ
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|sort"
+msgid "_Sort by X values"
+msgstr "_Nach X-Werten sortieren"
+
+#. CmGat
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|nolinesft"
+msgid "_Number of lines"
+msgstr "Anzahl der _Linien"
+
+#. yT35N
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|rounded-edge"
+msgid "Rounded edge"
+msgstr "_Kantenrundung"
+
+#. NCRDD
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|liststore1"
+msgid "Bar"
+msgstr "Quader"
+
+#. YpLZF
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|liststore1"
+msgid "Cylinder"
+msgstr "Zylinder"
+
+#. VLXhh
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|liststore1"
+msgid "Cone"
+msgstr "Kegel"
+
+#. xsWC2
+#: tp_ChartType.ui
+msgctxt "tp_ChartType|liststore1"
+msgid "Pyramid"
+msgstr "Pyramide"
+
+#. qRkoY
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|CB_VALUE_AS_NUMBER"
+msgid "Show value as _number"
+msgstr "_Wert als Zahl anzeigen"
+
+#. wRisc
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|CB_VALUE_AS_PERCENTAGE"
+msgid "Show value as _percentage"
+msgstr "Wert als _Prozentwert anzeigen"
+
+#. gyqnC
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|CB_CATEGORY"
+msgid "Show _category"
+msgstr "_Kategorie anzeigen"
+
+#. kce65
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|CB_SYMBOL"
+msgid "Show _legend key"
+msgstr "_Legendensymbol anzeigen"
+
+#. K3uFN
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|CB_WRAP_TEXT"
+msgid "Auto text _wrap"
+msgstr "Automatischer Zeilenumbru_ch"
+
+#. tgNDD
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|PB_NUMBERFORMAT"
+msgid "Number _format..."
+msgstr "Zahlen_format..."
+
+#. PYC2b
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|PB_PERCENT_NUMBERFORMAT"
+msgid "Percentage f_ormat..."
+msgstr "Prozentwert-Fo_rmat..."
+
+#. gFELD
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|CT_LABEL_DIAL"
+msgid "ABCD"
+msgstr "ABCD"
+
+#. GqA8C
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|FT_TEXT_SEPARATOR"
+msgid "_Separator"
+msgstr "_Trenner"
+
+#. 2MNGz
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|FT_LABEL_PLACEMENT"
+msgid "Place_ment"
+msgstr "Platz_ierung"
+
+#. PNGYD
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE"
+msgid "Number Format for Percentage Value"
+msgstr "Zahlenformat für Prozentwerte"
+
+#. 3BZrx
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|label1"
+msgid "Text Attributes"
+msgstr "Textattribute"
+
+#. VArif
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|FT_LABEL_DEGREES"
+msgid "_Degrees"
+msgstr "_Grad"
+
+#. zdP7E
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|FT_LABEL_TEXTDIR"
+msgid "Te_xt direction"
+msgstr "Te_xtrichtung"
+
+#. PKnKk
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|label2"
+msgid "Rotate Text"
+msgstr "Beschriftung drehen"
+
+#. L2MYb
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststorePLACEMENT"
+msgid "Best fit"
+msgstr "Passend"
+
+#. ba7eW
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststorePLACEMENT"
+msgid "Center"
+msgstr "Zentriert"
+
+#. nW5vs
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststorePLACEMENT"
+msgid "Above"
+msgstr "Oberhalb"
+
+#. gW9Aa
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststorePLACEMENT"
+msgid "Top left"
+msgstr "Oben links"
+
+#. UQBcJ
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststorePLACEMENT"
+msgid "Left"
+msgstr "Links"
+
+#. CVw6x
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststorePLACEMENT"
+msgid "Bottom left"
+msgstr "Unten links"
+
+#. EF7Qb
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststorePLACEMENT"
+msgid "Below"
+msgstr "Unterhalb"
+
+#. bdAYf
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststorePLACEMENT"
+msgid "Bottom right"
+msgstr "Unten rechts"
+
+#. kHGEs
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststorePLACEMENT"
+msgid "Right"
+msgstr "Rechts"
+
+#. GFkmP
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststorePLACEMENT"
+msgid "Top right"
+msgstr "Oben rechts"
+
+#. KFZhx
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststorePLACEMENT"
+msgid "Inside"
+msgstr "Innen"
+
+#. BJm6w
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststorePLACEMENT"
+msgid "Outside"
+msgstr "Außen"
+
+#. XGkMi
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststorePLACEMENT"
+msgid "Near origin"
+msgstr "Nahe Ursprung"
+
+#. oPhGH
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststoreSEPARATOR"
+msgid "Space"
+msgstr "Leerzeichen"
+
+#. fR4fG
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststoreSEPARATOR"
+msgid "Comma"
+msgstr "Kommata"
+
+#. 5baF4
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststoreSEPARATOR"
+msgid "Semicolon"
+msgstr "Semikolon"
+
+#. 8MGkQ
+#: tp_DataLabel.ui
+msgctxt "tp_DataLabel|liststoreSEPARATOR"
+msgid "New line"
+msgstr "Zeilenumbruch"
+
+#. A2dFx
+#: tp_DataSource.ui
+msgctxt "tp_DataSource|imageIMB_RANGE_CAT|tooltip_text"
+msgid "Select data range"
+msgstr "Positiven Datenbereich auswählen"
+
+#. kEnRN
+#: tp_DataSource.ui
+msgctxt "tp_DataSource|imageIMB_RANGE_MAIN|tooltip_text"
+msgid "Select data range"
+msgstr "Positiven Datenbereich auswählen"
+
+#. YwALA
+#: tp_DataSource.ui
+msgctxt "tp_DataSource|FT_CAPTION_FOR_WIZARD"
+msgid "Customize Data Ranges for Individual Data Series"
+msgstr "Wählen Sie spezielle Datenbereiche für die Datenreihen"
+
+#. 2iNp6
+#: tp_DataSource.ui
+msgctxt "tp_DataSource|FT_SERIES"
+msgid "Data _series:"
+msgstr "Daten_reihen:"
+
+#. rqABh
+#: tp_DataSource.ui
+msgctxt "tp_DataSource|BTN_ADD"
+msgid "_Add"
+msgstr "H_inzufügen"
+
+#. dCyXA
+#: tp_DataSource.ui
+msgctxt "tp_DataSource|BTN_UP-atkobject"
+msgid "Up"
+msgstr "Nach oben"
+
+#. 3v9x2
+#: tp_DataSource.ui
+msgctxt "tp_DataSource|BTN_REMOVE"
+msgid "_Remove"
+msgstr "_Entfernen"
+
+#. MkZNf
+#: tp_DataSource.ui
+msgctxt "tp_DataSource|BTN_DOWN-atkobject"
+msgid "Down"
+msgstr "Nach unten"
+
+#. mC5Ge
+#: tp_DataSource.ui
+msgctxt "tp_DataSource|FT_ROLE"
+msgid "_Data ranges:"
+msgstr "_Datenbereiche:"
+
+#. qRMfs
+#: tp_DataSource.ui
+msgctxt "tp_DataSource|FT_RANGE"
+msgid "Ran_ge for %VALUETYPE"
+msgstr "_Bereich für %VALUETYPE"
+
+#. FX2CF
+#: tp_DataSource.ui
+msgctxt "tp_DataSource|FT_CATEGORIES"
+msgid "_Categories"
+msgstr "_Kategorien"
+
+#. EiwXn
+#: tp_DataSource.ui
+msgctxt "tp_DataSource|FT_DATALABELS"
+msgid "Data _labels"
+msgstr "Datenbe_schriftung"
+
+#. tGqhN
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|RB_NONE"
+msgid "_None"
+msgstr "Ohn_e"
+
+#. Cq44D
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|RB_CONST"
+msgid "_Constant Value"
+msgstr "_Konstanter Wert"
+
+#. Njqok
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|RB_PERCENT"
+msgid "_Percentage"
+msgstr "_Prozentual"
+
+#. AbhAQ
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|RB_RANGE"
+msgid "Cell _Range"
+msgstr "Zell_bereich"
+
+#. 9Y8Vo
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|label1"
+msgid "Error Category"
+msgstr "Fehlerkategorie"
+
+#. q8qXd
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|RB_BOTH"
+msgid "Positive _and Negative"
+msgstr "Positiv _und negativ"
+
+#. 6F78D
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|RB_POSITIVE"
+msgid "Pos_itive"
+msgstr "Pos_itiv"
+
+#. jdFbj
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|RB_NEGATIVE"
+msgid "Ne_gative"
+msgstr "Ne_gativ"
+
+#. D4Aou
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|label2"
+msgid "Error Indicator"
+msgstr "Fehlerindikator"
+
+#. haTNd
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|FT_POSITIVE"
+msgid "P_ositive (+)"
+msgstr "Po_sitiv (+)"
+
+#. rGBRC
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|IB_RANGE_POSITIVE|tooltip_text"
+msgid "Select data range"
+msgstr "Positiven Datenbereich auswählen"
+
+#. C5ZdQ
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|FT_NEGATIVE"
+msgid "_Negative (-)"
+msgstr "_Negativ (-)"
+
+#. EVG7h
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|IB_RANGE_NEGATIVE|tooltip_text"
+msgid "Select data range"
+msgstr "Positiven Datenbereich auswählen"
+
+#. wdsax
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|CB_SYN_POS_NEG"
+msgid "Same value for both"
+msgstr "Bei_de Seiten gleich"
+
+#. BEj3C
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|label3"
+msgid "Parameters"
+msgstr "Parameter"
+
+#. XxRKD
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS"
+msgid "Select Range for Positive Error Bars"
+msgstr "Datenbereich für positive Fehlerbalken auswählen"
+
+#. FXjsk
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS"
+msgid "Select Range for Negative Error Bars"
+msgstr "Datenbereich für negative Fehlerbalken auswählen"
+
+#. AAfgS
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
+msgid "From Data Table"
+msgstr "Aus Datentabelle"
+
+#. GnXao
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|liststoreFUNCTION"
+msgid "Standard Error"
+msgstr "Standardfehler"
+
+#. SQ3rE
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|liststoreFUNCTION"
+msgid "Standard Deviation"
+msgstr "Standardabweichung"
+
+#. GagXt
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|liststoreFUNCTION"
+msgid "Variance"
+msgstr "Varianz"
+
+#. Siyxd
+#: tp_ErrorBars.ui
+msgctxt "tp_ErrorBars|liststoreFUNCTION"
+msgid "Error Margin"
+msgstr "Fehlerbereich"
+
+#. C9QvS
+#: tp_LegendPosition.ui
+msgctxt "tp_LegendPosition|left"
+msgid "_Left"
+msgstr "_Links"
+
+#. WGGa8
+#: tp_LegendPosition.ui
+msgctxt "tp_LegendPosition|right"
+msgid "_Right"
+msgstr "_Rechts"
+
+#. aURZs
+#: tp_LegendPosition.ui
+msgctxt "tp_LegendPosition|top"
+msgid "_Top"
+msgstr "_Oben"
+
+#. 9WgFV
+#: tp_LegendPosition.ui
+msgctxt "tp_LegendPosition|bottom"
+msgid "_Bottom"
+msgstr "_Unten"
+
+#. z84pQ
+#: tp_LegendPosition.ui
+msgctxt "tp_LegendPosition|TXT_POSITION"
+msgid "Position"
+msgstr "Position"
+
+#. 6teoB
+#: tp_LegendPosition.ui
+msgctxt "tp_LegendPosition|FT_LEGEND_TEXTDIR"
+msgid "Te_xt direction"
+msgstr "Te_xtrichtung"
+
+#. sUDkC
+#: tp_LegendPosition.ui
+msgctxt "tp_LegendPosition|TXT_ORIENTATION"
+msgid "Text Orientation"
+msgstr "Textausrichtung"
+
+#. 8783D
+#: tp_PolarOptions.ui
+msgctxt "tp_PolarOptions|CB_CLOCKWISE"
+msgid "_Clockwise direction"
+msgstr "Im _Uhrzeigersinn"
+
+#. ATHCu
+#: tp_PolarOptions.ui
+msgctxt "tp_PolarOptions|label1"
+msgid "Orientation"
+msgstr "Ausrichtung"
+
+#. prqEa
+#: tp_PolarOptions.ui
+msgctxt "tp_PolarOptions|FT_ROTATION_DEGREES"
+msgid "_Degrees"
+msgstr "_Grad"
+
+#. iHLKn
+#: tp_PolarOptions.ui
+msgctxt "tp_PolarOptions|label2"
+msgid "Starting Angle"
+msgstr "Startwinkel"
+
+#. 5zEew
+#: tp_PolarOptions.ui
+msgctxt "tp_PolarOptions|CB_INCLUDE_HIDDEN_CELLS_POLAR"
+msgid "Include _values from hidden cells"
+msgstr "_Werte ausgeblendeter Zellen einbeziehen"
+
+#. F5FTp
+#: tp_PolarOptions.ui
+msgctxt "tp_PolarOptions|label3"
+msgid "Plot Options"
+msgstr "Darstellungsoptionen"
+
+#. tHATu
+#: tp_RangeChooser.ui
+msgctxt "tp_RangeChooser|imageIB_RANGE|tooltip_text"
+msgid "Select data range"
+msgstr "Datenbereich auswählen"
+
+#. 4zh42
+#: tp_RangeChooser.ui
+msgctxt "tp_RangeChooser|FT_CAPTION_FOR_WIZARD"
+msgid "Choose a Data Range"
+msgstr "Wählen Sie einen Datenbereich"
+
+#. g2XVd
+#: tp_RangeChooser.ui
+msgctxt "tp_RangeChooser|FT_RANGE"
+msgid "_Data range:"
+msgstr "_Datenbereich:"
+
+#. FyVoD
+#: tp_RangeChooser.ui
+msgctxt "tp_RangeChooser|IB_RANGE|tooltip_text"
+msgid "Select data range"
+msgstr "Datenbereich auswählen"
+
+#. RGGHE
+#: tp_RangeChooser.ui
+msgctxt "tp_RangeChooser|RB_DATAROWS"
+msgid "Data series in _rows"
+msgstr "Datenreihen in _Zeilen"
+
+#. wSDqF
+#: tp_RangeChooser.ui
+msgctxt "tp_RangeChooser|RB_DATACOLS"
+msgid "Data series in _columns"
+msgstr "Datenreihen in _Spalten"
+
+#. CExLY
+#: tp_RangeChooser.ui
+msgctxt "tp_RangeChooser|CB_FIRST_ROW_ASLABELS"
+msgid "_First row as label"
+msgstr "_Erste Zeile als Beschriftung"
+
+#. ER2D7
+#: tp_RangeChooser.ui
+msgctxt "tp_RangeChooser|CB_FIRST_COLUMN_ASLABELS"
+msgid "F_irst column as label"
+msgstr "E_rste Spalte als Beschriftung"
+
+#. k9TMD
+#: tp_RangeChooser.ui
+msgctxt "tp_RangeChooser|CB_TIME_BASED"
+msgid "Time based charting"
+msgstr "Zeitbasiertes Zeichnen"
+
+#. iuxE5
+#: tp_RangeChooser.ui
+msgctxt "tp_RangeChooser|label1"
+msgid "Start Table Index"
+msgstr "Anfang des Tabellenindex"
+
+#. dnmDQ
+#: tp_RangeChooser.ui
+msgctxt "tp_RangeChooser|label2"
+msgid "End Table Index"
+msgstr "Ende des Tabellenindex"
+
+#. FcYeD
+#: tp_RangeChooser.ui
+msgctxt "tp_RangeChooser|STR_PAGE_DATA_RANGE"
+msgid "Data Range"
+msgstr "Datenbereich"
+
+#. YfF4A
+#: tp_Scale.ui
+msgctxt "tp_Scale|CBX_REVERSE"
+msgid "_Reverse direction"
+msgstr "Richtun_g umkehren"
+
+#. qBbBL
+#: tp_Scale.ui
+msgctxt "tp_Scale|CBX_LOGARITHM"
+msgid "_Logarithmic scale"
+msgstr "_Logarithmische Skalierung"
+
+#. 2B5CL
+#: tp_Scale.ui
+msgctxt "tp_Scale|TXT_AXIS_TYPE"
+msgid "T_ype"
+msgstr "A_rt"
+
+#. D6Bre
+#: tp_Scale.ui
+msgctxt "tp_Scale|LB_AXIS_TYPE"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. TCiZu
+#: tp_Scale.ui
+msgctxt "tp_Scale|LB_AXIS_TYPE"
+msgid "Text"
+msgstr "Text"
+
+#. vAAUB
+#: tp_Scale.ui
+msgctxt "tp_Scale|LB_AXIS_TYPE"
+msgid "Date"
+msgstr "Datum"
+
+#. Vf7vB
+#: tp_Scale.ui
+msgctxt "tp_Scale|TXT_MIN"
+msgid "_Minimum"
+msgstr "_Minimum"
+
+#. XUKzj
+#: tp_Scale.ui
+msgctxt "tp_Scale|TXT_MAX"
+msgid "Ma_ximum"
+msgstr "Ma_ximum"
+
+#. 4jRuB
+#: tp_Scale.ui
+msgctxt "tp_Scale|CBX_AUTO_MIN"
+msgid "_Automatic"
+msgstr "A_utomatisch"
+
+#. Bx5Co
+#: tp_Scale.ui
+msgctxt "tp_Scale|CBX_AUTO_MAX"
+msgid "A_utomatic"
+msgstr "Au_tomatisch"
+
+#. TsHtd
+#: tp_Scale.ui
+msgctxt "tp_Scale|TXT_TIME_RESOLUTION"
+msgid "R_esolution"
+msgstr "_Auflösung"
+
+#. ezN7c
+#: tp_Scale.ui
+msgctxt "tp_Scale|CBX_AUTO_TIME_RESOLUTION"
+msgid "Automat_ic"
+msgstr "Automat_isch"
+
+#. DbJt9
+#: tp_Scale.ui
+msgctxt "tp_Scale|TXT_STEP_MAIN"
+msgid "Ma_jor interval"
+msgstr "Hau_ptintervall"
+
+#. UMEd3
+#: tp_Scale.ui
+msgctxt "tp_Scale|CBX_AUTO_STEP_MAIN"
+msgid "Au_tomatic"
+msgstr "Automati_sch"
+
+#. Pv5GU
+#: tp_Scale.ui
+msgctxt "tp_Scale|TXT_STEP_HELP"
+msgid "Minor inter_val"
+msgstr "Hilfsinter_vall"
+
+#. WMGqg
+#: tp_Scale.ui
+msgctxt "tp_Scale|TXT_STEP_HELP_COUNT"
+msgid "Minor inter_val count"
+msgstr "Hil_fsintervall Schritte"
+
+#. X8FAK
+#: tp_Scale.ui
+msgctxt "tp_Scale|CBX_AUTO_STEP_HELP"
+msgid "Aut_omatic"
+msgstr "Automatis_ch"
+
+#. GAKPN
+#: tp_Scale.ui
+msgctxt "tp_Scale|TXT_ORIGIN"
+msgid "Re_ference value"
+msgstr "Re_ferenzwert"
+
+#. Dj9GB
+#: tp_Scale.ui
+msgctxt "tp_Scale|CBX_AUTO_ORIGIN"
+msgid "Automat_ic"
+msgstr "Au_tomatisch"
+
+#. wqR5C
+#: tp_Scale.ui
+msgctxt "tp_Scale|FL_SCALE"
+msgid "Scale"
+msgstr "Skalierung"
+
+#. yyPFB
+#: tp_Scale.ui
+msgctxt "tp_Scale|liststoreDATE"
+msgid "Days"
+msgstr "Tage"
+
+#. 8xKtE
+#: tp_Scale.ui
+msgctxt "tp_Scale|liststoreDATE"
+msgid "Months"
+msgstr "Monate"
+
+#. WRUy8
+#: tp_Scale.ui
+msgctxt "tp_Scale|liststoreDATE"
+msgid "Years"
+msgstr "Jahre"
+
+#. YK66G
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|RBT_OPT_AXIS_1"
+msgid "Primary Y axis"
+msgstr "Primäre Y-Achse"
+
+#. aZ7G8
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|RBT_OPT_AXIS_2"
+msgid "Secondary Y axis"
+msgstr "Sekundäre Y-Achse"
+
+#. hV3cT
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|label1"
+msgid "Align Data Series to"
+msgstr "Datenreihe ausrichten an"
+
+#. GAF6S
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|FT_GAP"
+msgid "_Spacing"
+msgstr "Ab_stand"
+
+#. 27wWb
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|FT_OVERLAP"
+msgid "_Overlap"
+msgstr "Ü_berlappung"
+
+#. uV5Dn
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|CB_BARS_SIDE_BY_SIDE"
+msgid "Show _bars side by side"
+msgstr "_Balken nebeneinander darstellen"
+
+#. b7cbo
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|CB_CONNECTOR"
+msgid "Connection lines"
+msgstr "Verbindungslinien"
+
+#. VHcU3
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|label2"
+msgid "Settings"
+msgstr "Einstellungen"
+
+#. zaB5V
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|FT_MISSING_VALUES"
+msgid "Plot missing values"
+msgstr "Fehlende Werte darstellen"
+
+#. fqYSM
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|RB_DONT_PAINT"
+msgid "_Leave gap"
+msgstr "_Lücke lassen"
+
+#. ZvtoD
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|RB_ASSUME_ZERO"
+msgid "_Assume zero"
+msgstr "_Null annehmen"
+
+#. 8rLB4
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|RB_CONTINUE_LINE"
+msgid "_Continue line"
+msgstr "Linie _fortsetzen"
+
+#. Nw9LX
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|CB_INCLUDE_HIDDEN_CELLS"
+msgid "Include _values from hidden cells"
+msgstr "_Werte ausgeblendeter Zellen einbeziehen"
+
+#. LvZ8x
+#: tp_SeriesToAxis.ui
+msgctxt "tp_SeriesToAxis|label3"
+msgid "Plot Options"
+msgstr "Darstellungsoptionen"
+
+#. FsWAE
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|linear"
+msgid "_Linear"
+msgstr "_Linear"
+
+#. u3nKx
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|logarithmic"
+msgid "L_ogarithmic"
+msgstr "Lo_garithmisch"
+
+#. fPNok
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|exponential"
+msgid "_Exponential"
+msgstr "Ex_ponentiell"
+
+#. a6FDp
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|power"
+msgid "Po_wer"
+msgstr "_Potenziell"
+
+#. QCeGG
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|polynomial"
+msgid "_Polynomial"
+msgstr "Pol_ynomisch"
+
+#. BkiE2
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|movingAverage"
+msgid "_Moving Average"
+msgstr "Gleitender _Durchschnitt"
+
+#. mGkUE
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|label3"
+msgid "Degree"
+msgstr "G_rad"
+
+#. ZvFov
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|label4"
+msgid "Period"
+msgstr "Per_iode"
+
+#. ptaCA
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|label1"
+msgid "Regression Type"
+msgstr "Regressionstyp"
+
+#. mNh7m
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|label7"
+msgid "Extrapolate Forward"
+msgstr "_Vorwärts extrapolieren um"
+
+#. tUrKr
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|label8"
+msgid "Extrapolate Backward"
+msgstr "Z_urück extrapolieren um"
+
+#. BGkFJ
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|setIntercept"
+msgid "Force _Intercept"
+msgstr "Y-Achsen-_Schnitt erzwingen bei"
+
+#. CSHNm
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|showEquation"
+msgid "Show E_quation"
+msgstr "Gl_eichung anzeigen"
+
+#. cA58s
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|showCorrelationCoefficient"
+msgid "Show _Coefficient of Determination (R²)"
+msgstr "_Bestimmtheitsmaß (R²) anzeigen"
+
+#. 2S6og
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|label5"
+msgid "Trendline _Name"
+msgstr "_Name der Trendlinie"
+
+#. GEKL2
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|label6"
+msgid "_X Variable Name"
+msgstr "_X-Variablenname"
+
+#. GDQuF
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|label9"
+msgid "_Y Variable Name"
+msgstr "_Y-Variablenname"
+
+#. 9WeUe
+#: tp_Trendline.ui
+msgctxt "tp_Trendline|label2"
+msgid "Options"
+msgstr "Optionen"
+
+#. ntcUA
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|showlabelsCB"
+msgid "Sho_w labels"
+msgstr "_Beschriftung anzeigen"
+
+#. HFhGL
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|tile"
+msgid "_Tile"
+msgstr "_Nebeneinander"
+
+#. tHrCD
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|odd"
+msgid "St_agger odd"
+msgstr "Hoch-tief _versetzt"
+
+#. tByen
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|even"
+msgid "Stagger _even"
+msgstr "_Tief-hoch versetzt"
+
+#. 2JwY3
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|auto"
+msgid "A_utomatic"
+msgstr "A_utomatisch"
+
+#. bFH6L
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|orderL"
+msgid "Order"
+msgstr "Ordnung"
+
+#. GMtbb
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|overlapCB"
+msgid "O_verlap"
+msgstr "Ü_berlappung"
+
+#. AYpQ8
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|breakCB"
+msgid "_Break"
+msgstr "Au_fbrechen"
+
+#. 4EwR7
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|textflowL"
+msgid "Text Flow"
+msgstr "Textfluss"
+
+#. 5teDt
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|degreeL"
+msgid "_Degrees"
+msgstr "_Grad"
+
+#. jFKoF
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|stackedCB"
+msgid "Ve_rtically stacked"
+msgstr "_Senkrecht gestapelt"
+
+#. JBz5H
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|labelABCD"
+msgid "ABCD"
+msgstr "ABCD"
+
+#. PE6RQ
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|textdirL"
+msgid "Te_xt direction:"
+msgstr "Schreib_richtung:"
+
+#. 3WhzS
+#: tp_axisLabel.ui
+msgctxt "tp_axisLabel|labelTextOrient"
+msgid "Text Orientation"
+msgstr "Textausrichtung"
+
+#. tCfsY
+#: wizelementspage.ui
+msgctxt "wizelementspage|labelPrimaryXaxis"
+msgid "_X axis"
+msgstr "_X-Achse"
+
+#. LtEdA
+#: wizelementspage.ui
+msgctxt "wizelementspage|labelPrimaryYaxis"
+msgid "_Y axis"
+msgstr "_Y-Achse"
+
+#. tVeNC
+#: wizelementspage.ui
+msgctxt "wizelementspage|labelPrimaryZaxis"
+msgid "_Z axis"
+msgstr "_Z-Achse"
+
+#. Qpj9H
+#: wizelementspage.ui
+msgctxt "wizelementspage|labelMainTitle"
+msgid "_Title"
+msgstr "_Titel"
+
+#. nPAjY
+#: wizelementspage.ui
+msgctxt "wizelementspage|labelSubTitle"
+msgid "_Subtitle"
+msgstr "_Untertitel"
+
+#. GJ7pJ
+#: wizelementspage.ui
+msgctxt "wizelementspage|labelSecondaryXAxis"
+msgid "X _axis"
+msgstr "X-_Achse"
+
+#. bBRgE
+#: wizelementspage.ui
+msgctxt "wizelementspage|labelSecondaryYAxis"
+msgid "Y ax_is"
+msgstr "Y-A_chse"
+
+#. E6Y7y
+#: wizelementspage.ui
+msgctxt "wizelementspage|show"
+msgid "_Display legend"
+msgstr "L_egende anzeigen"
+
+#. ejdzz
+#: wizelementspage.ui
+msgctxt "wizelementspage|left"
+msgid "_Left"
+msgstr "_Links"
+
+#. EjE6h
+#: wizelementspage.ui
+msgctxt "wizelementspage|right"
+msgid "_Right"
+msgstr "_Rechts"
+
+#. LnxgC
+#: wizelementspage.ui
+msgctxt "wizelementspage|top"
+msgid "_Top"
+msgstr "_Oben"
+
+#. GD2qS
+#: wizelementspage.ui
+msgctxt "wizelementspage|bottom"
+msgid "_Bottom"
+msgstr "_Unten"
+
+#. REBEt
+#: wizelementspage.ui
+msgctxt "wizelementspage|Axe"
+msgid "Choose Titles, Legend, and Grid Settings"
+msgstr "Wählen Sie Titel-, Legenden- und Gittereinstellungen"
+
+#. wp2DC
+#: wizelementspage.ui
+msgctxt "wizelementspage|x"
+msgid "X axis"
+msgstr "_X-Achse"
+
+#. KPGMU
+#: wizelementspage.ui
+msgctxt "wizelementspage|y"
+msgid "Y ax_is"
+msgstr "Y-A_chse"
+
+#. G65v4
+#: wizelementspage.ui
+msgctxt "wizelementspage|z"
+msgid "Z axi_s"
+msgstr "Z-Ach_se"
+
+#. wNqwZ
+#: wizelementspage.ui
+msgctxt "wizelementspage|label2"
+msgid "Display Grids"
+msgstr "Gitter anzeigen"
diff --git a/source/de/chart2/source/controller/dialogs.po b/source/de/chart2/source/controller/dialogs.po
deleted file mode 100644
index 1cd9ff82f9c..00000000000
--- a/source/de/chart2/source/controller/dialogs.po
+++ /dev/null
@@ -1,1365 +0,0 @@
-#. extracted from chart2/source/controller/dialogs
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-06-18 05:04+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1466226263.000000\n"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DLG_CHART_WIZARD\n"
-"string.text"
-msgid "Chart Wizard"
-msgstr "Diagramm-Assistent"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DLG_SMOOTH_LINE_PROPERTIES\n"
-"string.text"
-msgid "Smooth Lines"
-msgstr "Kurvenglättung"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DLG_STEPPED_LINE_PROPERTIES\n"
-"string.text"
-msgid "Stepped Lines"
-msgstr "Stufenlinien"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_CHARTTYPE\n"
-"string.text"
-msgid "Chart Type"
-msgstr "Diagrammtyp"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_DATA_RANGE\n"
-"string.text"
-msgid "Data Range"
-msgstr "Datenbereich"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_CHART_ELEMENTS\n"
-"string.text"
-msgid "Chart Elements"
-msgstr "Diagrammelemente"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_LINE\n"
-"string.text"
-msgid "Line"
-msgstr "Liniendiagramm"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_BORDER\n"
-"string.text"
-msgid "Borders"
-msgstr "Linie"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_AREA\n"
-"string.text"
-msgid "Area"
-msgstr "Fläche"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_TRANSPARENCY\n"
-"string.text"
-msgid "Transparency"
-msgstr "Transparenz"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_FONT\n"
-"string.text"
-msgid "Font"
-msgstr "Schrift"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_FONT_EFFECTS\n"
-"string.text"
-msgid "Font Effects"
-msgstr "Schrifteffekt"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_NUMBERS\n"
-"string.text"
-msgid "Numbers"
-msgstr "Zahlen"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_POSITION\n"
-"string.text"
-msgid "Position"
-msgstr "Anordnung"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_LAYOUT\n"
-"string.text"
-msgid "Layout"
-msgstr "Layout"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_OPTIONS\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_SCALE\n"
-"string.text"
-msgid "Scale"
-msgstr "Skalierung"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_POSITIONING\n"
-"string.text"
-msgid "Positioning"
-msgstr "Positionierung"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_TRENDLINE_TYPE\n"
-"string.text"
-msgid "Type"
-msgstr "Typ"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_XERROR_BARS\n"
-"string.text"
-msgid "X Error Bars"
-msgstr "X-Fehlerbalken"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_YERROR_BARS\n"
-"string.text"
-msgid "Y Error Bars"
-msgstr "Y-Fehlerbalken"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_ALIGNMENT\n"
-"string.text"
-msgid "Alignment"
-msgstr "Ausrichtung"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_PERSPECTIVE\n"
-"string.text"
-msgid "Perspective"
-msgstr "Perspektive"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_APPEARANCE\n"
-"string.text"
-msgid "Appearance"
-msgstr "Aussehen"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_ILLUMINATION\n"
-"string.text"
-msgid "Illumination"
-msgstr "Beleuchtung"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PAGE_ASIAN\n"
-"string.text"
-msgid "Asian Typography"
-msgstr "Asiatische Typografie"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_AVERAGE_LINE_WITH_PARAMETERS\n"
-"string.text"
-msgid "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
-msgstr "Mittelwertlinie mit Wert %AVERAGE_VALUE und Standardabweichung %STD_DEVIATION"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_AXIS\n"
-"string.text"
-msgid "Axis"
-msgstr "Achse"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_AXIS_X\n"
-"string.text"
-msgid "X Axis"
-msgstr "X-Achse"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_AXIS_Y\n"
-"string.text"
-msgid "Y Axis"
-msgstr "Y-Achse"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_AXIS_Z\n"
-"string.text"
-msgid "Z Axis"
-msgstr "Z-Achse"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_SECONDARY_X_AXIS\n"
-"string.text"
-msgid "Secondary X Axis"
-msgstr "Sekundäre X-Achse"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_SECONDARY_Y_AXIS\n"
-"string.text"
-msgid "Secondary Y Axis"
-msgstr "Sekundäre Y-Achse"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_AXES\n"
-"string.text"
-msgid "Axes"
-msgstr "Achsen"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_GRIDS\n"
-"string.text"
-msgid "Grids"
-msgstr "Gitter"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_GRID\n"
-"string.text"
-msgid "Grid"
-msgstr "Gitter"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_GRID_MAJOR_X\n"
-"string.text"
-msgid "X Axis Major Grid"
-msgstr "X-Achsenhauptgitter"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_GRID_MAJOR_Y\n"
-"string.text"
-msgid "Y Axis Major Grid"
-msgstr "Y-Achsenhauptgitter"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_GRID_MAJOR_Z\n"
-"string.text"
-msgid "Z Axis Major Grid"
-msgstr "Z-Achsenhauptgitter"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_GRID_MINOR_X\n"
-"string.text"
-msgid "X Axis Minor Grid"
-msgstr "X-Achsenhilfsgitter"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_GRID_MINOR_Y\n"
-"string.text"
-msgid "Y Axis Minor Grid"
-msgstr "Y-Achsenhilfsgitter"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_GRID_MINOR_Z\n"
-"string.text"
-msgid "Z Axis Minor Grid"
-msgstr "Z-Achsenhilfsgitter"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_LEGEND\n"
-"string.text"
-msgid "Legend"
-msgstr "Legende"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_TITLE\n"
-"string.text"
-msgid "Title"
-msgstr "Titel"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_TITLES\n"
-"string.text"
-msgid "Titles"
-msgstr "Titel"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_TITLE_MAIN\n"
-"string.text"
-msgid "Main Title"
-msgstr "Haupttitel"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_TITLE_SUB\n"
-"string.text"
-msgid "Subtitle"
-msgstr "Untertitel"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_TITLE_X_AXIS\n"
-"string.text"
-msgid "X Axis Title"
-msgstr "X-Achsentitel"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_TITLE_Y_AXIS\n"
-"string.text"
-msgid "Y Axis Title"
-msgstr "Y-Achsentitel"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_TITLE_Z_AXIS\n"
-"string.text"
-msgid "Z Axis Title"
-msgstr "Z-Achsentitel"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_TITLE_SECONDARY_X_AXIS\n"
-"string.text"
-msgid "Secondary X Axis Title"
-msgstr "Titel für sekundäre X-Achse"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_TITLE_SECONDARY_Y_AXIS\n"
-"string.text"
-msgid "Secondary Y Axis Title"
-msgstr "Titel für sekundäre Y-Achse"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_LABEL\n"
-"string.text"
-msgid "Label"
-msgstr "Beschriftung"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_DATALABELS\n"
-"string.text"
-msgid "Data Labels"
-msgstr "Datenbeschriftung"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_DATAPOINT\n"
-"string.text"
-msgid "Data Point"
-msgstr "Datenpunkt"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_DATAPOINTS\n"
-"string.text"
-msgid "Data Points"
-msgstr "Datenpunkte"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_LEGEND_SYMBOL\n"
-"string.text"
-msgid "Legend Key"
-msgstr "Legendensymbol"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_DATASERIES\n"
-"string.text"
-msgid "Data Series"
-msgstr "Datenreihe"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_DATASERIES_PLURAL\n"
-"string.text"
-msgid "Data Series"
-msgstr "Datenreihe"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_CURVE\n"
-"string.text"
-msgid "Trend Line"
-msgstr "Regressionskurve"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_CURVES\n"
-"string.text"
-msgid "Trend Lines"
-msgstr "Regressionskurven"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_CURVE_WITH_PARAMETERS\n"
-"string.text"
-msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
-msgstr "Regressionskurve %FORMULA mit Genauigkeit R² = %RSQUARED"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_MOVING_AVERAGE_WITH_PARAMETERS\n"
-"string.text"
-msgid "Moving average trend line with period = %PERIOD"
-msgstr "Gleitenden Durchschnitt verschieben mit Periode = %PERIOD"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_AVERAGE_LINE\n"
-"string.text"
-msgid "Mean Value Line"
-msgstr "Mittelwertlinie"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_CURVE_EQUATION\n"
-"string.text"
-msgid "Equation"
-msgstr "Gleichung"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_ERROR_BARS_X\n"
-"string.text"
-msgid "X Error Bars"
-msgstr "X-Fehlerbalken"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_ERROR_BARS_Y\n"
-"string.text"
-msgid "Y Error Bars"
-msgstr "Y-Fehlerbalken"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_ERROR_BARS_Z\n"
-"string.text"
-msgid "Z Error Bars"
-msgstr "Z-Fehlerbalken"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_STOCK_LOSS\n"
-"string.text"
-msgid "Stock Loss"
-msgstr "Negative Abweichung"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_STOCK_GAIN\n"
-"string.text"
-msgid "Stock Gain"
-msgstr "Positive Abweichung"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_PAGE\n"
-"string.text"
-msgid "Chart Area"
-msgstr "Diagrammfläche"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_DIAGRAM\n"
-"string.text"
-msgid "Chart"
-msgstr "Diagramm"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_DIAGRAM_WALL\n"
-"string.text"
-msgid "Chart Wall"
-msgstr "Diagrammwand"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_DIAGRAM_FLOOR\n"
-"string.text"
-msgid "Chart Floor"
-msgstr "Diagrammboden"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_SHAPE\n"
-"string.text"
-msgid "Drawing Object"
-msgstr "Zeichenobjekt"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_TIP_DATASERIES\n"
-"string.text"
-msgid "Data Series '%SERIESNAME'"
-msgstr "Datenreihe '%SERIESNAME'"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_TIP_DATAPOINT_INDEX\n"
-"string.text"
-msgid "Data Point %POINTNUMBER"
-msgstr "Datenpunkt %POINTNUMBER"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_TIP_DATAPOINT_VALUES\n"
-"string.text"
-msgid "Values: %POINTVALUES"
-msgstr "Werte: %POINTVALUES"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_TIP_DATAPOINT\n"
-"string.text"
-msgid "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
-msgstr "Datenpunkt %POINTNUMBER, Datenreihe %SERIESNUMBER, Werte: %POINTVALUES"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_STATUS_DATAPOINT_MARKED\n"
-"string.text"
-msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
-msgstr "Datenpunkt %POINTNUMBER in Datenreihe %SERIESNUMBER ausgewählt, Werte: %POINTVALUES"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_STATUS_OBJECT_MARKED\n"
-"string.text"
-msgid "%OBJECTNAME selected"
-msgstr "%OBJECTNAME ausgewählt"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_STATUS_PIE_SEGMENT_EXPLODED\n"
-"string.text"
-msgid "Pie exploded by %PERCENTVALUE percent"
-msgstr "Kreissegment um %PERCENTVALUE Prozent ausgerückt"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_FOR_SERIES\n"
-"string.text"
-msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
-msgstr "%OBJECTNAME für Datenreihe '%SERIESNAME'"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_OBJECT_FOR_ALL_SERIES\n"
-"string.text"
-msgid "%OBJECTNAME for all Data Series"
-msgstr "%OBJECTNAME für alle Datenreihen"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_ACTION_EDIT_CHARTTYPE\n"
-"string.text"
-msgid "Edit chart type"
-msgstr "Diagrammtyp bearbeiten"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_ACTION_EDIT_DATA_RANGES\n"
-"string.text"
-msgid "Edit data ranges"
-msgstr "Datenbereiche bearbeiten"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_ACTION_EDIT_3D_VIEW\n"
-"string.text"
-msgid "Edit 3D view"
-msgstr "3D-Ansicht bearbeiten"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_ACTION_EDIT_CHART_DATA\n"
-"string.text"
-msgid "Edit chart data"
-msgstr "Diagrammdaten bearbeiten"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_ACTION_TOGGLE_LEGEND\n"
-"string.text"
-msgid "Legend on/off"
-msgstr "Legende ein/aus"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_ACTION_TOGGLE_GRID_HORZ\n"
-"string.text"
-msgid "Horizontal grid major/major&minor/off"
-msgstr "Horizontales Gitter (Hauptgitter/beide/keines)"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_ACTION_TOGGLE_GRID_VERTICAL\n"
-"string.text"
-msgid "Vertical grid major/major&minor/off"
-msgstr "Vertikales Gitter (Hauptgitter/beide/keines)"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_ACTION_SCALE_TEXT\n"
-"string.text"
-msgid "Scale Text"
-msgstr "Texte skalieren"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_ACTION_REARRANGE_CHART\n"
-"string.text"
-msgid "Automatic Layout"
-msgstr "Diagramm automatisch anordnen"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_ACTION_NOTPOSSIBLE\n"
-"string.text"
-msgid "This function cannot be completed with the selected objects."
-msgstr "Die Funktion kann mit den ausgewählten Objekten nicht ausgeführt werden."
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_ACTION_EDIT_TEXT\n"
-"string.text"
-msgid "Edit text"
-msgstr "Text bearbeiten"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_COLUMN_LABEL\n"
-"string.text"
-msgid "Column %COLUMNNUMBER"
-msgstr "Spalte %COLUMNNUMBER"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_ROW_LABEL\n"
-"string.text"
-msgid "Row %ROWNUMBER"
-msgstr "Zeile %ROWNUMBER"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_LABEL\n"
-"string.text"
-msgid "Name"
-msgstr "Name"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_X\n"
-"string.text"
-msgid "X-Values"
-msgstr "X-Werte"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_Y\n"
-"string.text"
-msgid "Y-Values"
-msgstr "Y-Werte"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_SIZE\n"
-"string.text"
-msgid "Bubble Sizes"
-msgstr "Blasengröße"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_X_ERROR\n"
-"string.text"
-msgid "X-Error-Bars"
-msgstr "X-Fehlerbalken"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_X_ERROR_POSITIVE\n"
-"string.text"
-msgid "Positive X-Error-Bars"
-msgstr "Positive X-Fehlerbalken"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_X_ERROR_NEGATIVE\n"
-"string.text"
-msgid "Negative X-Error-Bars"
-msgstr "Negative X-Fehlerbalken"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_Y_ERROR\n"
-"string.text"
-msgid "Y-Error-Bars"
-msgstr "Y-Fehlerbalken"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_Y_ERROR_POSITIVE\n"
-"string.text"
-msgid "Positive Y-Error-Bars"
-msgstr "Positive Y-Fehlerbalken"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_Y_ERROR_NEGATIVE\n"
-"string.text"
-msgid "Negative Y-Error-Bars"
-msgstr "Negative Y-Fehlerbalken"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_FIRST\n"
-"string.text"
-msgid "Open Values"
-msgstr "Eröffnungswerte"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_LAST\n"
-"string.text"
-msgid "Close Values"
-msgstr "Schlusswerte"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_MIN\n"
-"string.text"
-msgid "Low Values"
-msgstr "Minimalwerte"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_MAX\n"
-"string.text"
-msgid "High Values"
-msgstr "Höchstwerte"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_ROLE_CATEGORIES\n"
-"string.text"
-msgid "Categories"
-msgstr "Kategorien"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_UNNAMED_SERIES\n"
-"string.text"
-msgid "Unnamed Series"
-msgstr "Unbenannte Datenreihe"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_UNNAMED_SERIES_WITH_INDEX\n"
-"string.text"
-msgid "Unnamed Series %NUMBER"
-msgstr "Unbenannte Datenreihe %NUMBER"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_SELECT_RANGE_FOR_SERIES\n"
-"string.text"
-msgid "Select Range for %VALUETYPE of %SERIESNAME"
-msgstr "Datenbereich für %VALUETYPE von %SERIESNAME auswählen"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_SELECT_RANGE_FOR_CATEGORIES\n"
-"string.text"
-msgid "Select Range for Categories"
-msgstr "Datenbereich für Kategorien auswählen"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_SELECT_RANGE_FOR_DATALABELS\n"
-"string.text"
-msgid "Select Range for data labels"
-msgstr "Datenbereich für Datenbeschriftung auswählen"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_DATA_EDITOR_INCORRECT_INPUT\n"
-"string.text"
-msgid ""
-"Your last input is incorrect.\n"
-"Ignore this change and close the dialog?"
-msgstr ""
-"Ihre letzte Eingabe ist nicht korrekt.\n"
-"Diese Änderung verwerfen und den Dialog schließen?"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_TEXT_DIRECTION_LTR\n"
-"string.text"
-msgid "Left-to-right"
-msgstr "Links-nach-rechts"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_TEXT_DIRECTION_RTL\n"
-"string.text"
-msgid "Right-to-left"
-msgstr "Rechts-nach-links"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_TEXT_DIRECTION_SUPER\n"
-"string.text"
-msgid "Use superordinate object settings"
-msgstr "Einstellungen des übergeordneten Objekts verwenden"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PROPERTY_ROLE_FILLCOLOR\n"
-"string.text"
-msgid "Fill Color"
-msgstr "Füllfarbe"
-
-#: Strings.src
-msgctxt ""
-"Strings.src\n"
-"STR_PROPERTY_ROLE_BORDERCOLOR\n"
-"string.text"
-msgid "Border Color"
-msgstr "Rahmenfarbe"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_TYPE_COLUMN\n"
-"string.text"
-msgid "Column"
-msgstr "Säulendiagramm"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_TYPE_BAR\n"
-"string.text"
-msgid "Bar"
-msgstr "Balkendiagramm"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_TYPE_AREA\n"
-"string.text"
-msgid "Area"
-msgstr "Flächendiagramm"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_TYPE_PIE\n"
-"string.text"
-msgid "Pie"
-msgstr "Kreisdiagramm"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_PIE_EXPLODED\n"
-"string.text"
-msgid "Exploded Pie Chart"
-msgstr "Explodiertes Kreisdiagramm"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_DONUT_EXPLODED\n"
-"string.text"
-msgid "Exploded Donut Chart"
-msgstr "Explodiertes Ringdiagramm"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_DONUT\n"
-"string.text"
-msgid "Donut"
-msgstr "Ringdiagramm"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_TYPE_LINE\n"
-"string.text"
-msgid "Line"
-msgstr "Liniendiagramm"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_TYPE_XY\n"
-"string.text"
-msgid "XY (Scatter)"
-msgstr "XY (Streudiagramm)"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_POINTS_AND_LINES\n"
-"string.text"
-msgid "Points and Lines"
-msgstr "Punkte und Linien"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_POINTS_ONLY\n"
-"string.text"
-msgid "Points Only"
-msgstr "Nur Punkte"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_LINES_ONLY\n"
-"string.text"
-msgid "Lines Only"
-msgstr "Nur Linien"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_LINES_3D\n"
-"string.text"
-msgid "3D Lines"
-msgstr "3D-Linien"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_TYPE_COMBI_COLUMN_LINE\n"
-"string.text"
-msgid "Column and Line"
-msgstr "Säulen und Linien"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_LINE_COLUMN\n"
-"string.text"
-msgid "Columns and Lines"
-msgstr "Säulen und Linien"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_LINE_STACKEDCOLUMN\n"
-"string.text"
-msgid "Stacked Columns and Lines"
-msgstr "Gestapelte Säulen und Linien"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_TYPE_NET\n"
-"string.text"
-msgid "Net"
-msgstr "Netzdiagramm"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_TYPE_STOCK\n"
-"string.text"
-msgid "Stock"
-msgstr "Kursdiagramm"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_STOCK_1\n"
-"string.text"
-msgid "Stock Chart 1"
-msgstr "Kursdiagramm 1"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_STOCK_2\n"
-"string.text"
-msgid "Stock Chart 2"
-msgstr "Kursdiagramm 2"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_STOCK_3\n"
-"string.text"
-msgid "Stock Chart 3"
-msgstr "Kursdiagramm 3"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_STOCK_4\n"
-"string.text"
-msgid "Stock Chart 4"
-msgstr "Kursdiagramm 4"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_NORMAL\n"
-"string.text"
-msgid "Normal"
-msgstr "Normal"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_STACKED\n"
-"string.text"
-msgid "Stacked"
-msgstr "Gestapelt"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_PERCENT\n"
-"string.text"
-msgid "Percent Stacked"
-msgstr "Prozentual gestapelt"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_DEEP\n"
-"string.text"
-msgid "Deep"
-msgstr "Hintereinander"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_FILLED\n"
-"string.text"
-msgid "Filled"
-msgstr "Ausgefüllt"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_TYPE_BUBBLE\n"
-"string.text"
-msgid "Bubble"
-msgstr "Blasendiagramm"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_BUBBLE_1\n"
-"string.text"
-msgid "Bubble Chart"
-msgstr "Blasendiagramm"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_TYPE_GL3D_BAR\n"
-"string.text"
-msgid "GL3D Bar"
-msgstr "GL3D-Balken"
-
-#: Strings_ChartTypes.src
-msgctxt ""
-"Strings_ChartTypes.src\n"
-"STR_GL3D_BAR\n"
-"string.text"
-msgid "GL3D Bar Chart"
-msgstr "GL3D-Balkendiagramm"
-
-#: Strings_Scale.src
-msgctxt ""
-"Strings_Scale.src\n"
-"STR_INVALID_NUMBER\n"
-"string.text"
-msgid "Numbers are required. Check your input."
-msgstr "Es werden Zahlenwerte benötigt. Bitte überprüfen Sie die Eingabe."
-
-#: Strings_Scale.src
-msgctxt ""
-"Strings_Scale.src\n"
-"STR_STEP_GT_ZERO\n"
-"string.text"
-msgid "The major interval requires a positive number. Check your input."
-msgstr "Das Hauptintervall benötigt einen positiven Zahlenwert. Bitte überprüfen Sie die Eingabe."
-
-#: Strings_Scale.src
-msgctxt ""
-"Strings_Scale.src\n"
-"STR_BAD_LOGARITHM\n"
-"string.text"
-msgid "The logarithmic scale requires positive numbers. Check your input."
-msgstr "Für die logarithmische Darstellung werden positive Zahlenwerte benötigt. Bitte überprüfen Sie die Eingabe."
-
-#: Strings_Scale.src
-msgctxt ""
-"Strings_Scale.src\n"
-"STR_MIN_GREATER_MAX\n"
-"string.text"
-msgid "The minimum must be lower than the maximum. Check your input."
-msgstr "Der Mindestwert muss unter dem Höchstwert liegen. Prüfen Sie die eingegebenen Werte."
-
-#: Strings_Scale.src
-msgctxt ""
-"Strings_Scale.src\n"
-"STR_INVALID_INTERVALS\n"
-"string.text"
-msgid "The major interval needs to be greater than the minor interval. Check your input."
-msgstr "Das Hauptintervall benötigt einen größeren Zahlenwert als das Hilfsintervall. Bitte überprüfen Sie die Eingabe."
-
-#: Strings_Scale.src
-msgctxt ""
-"Strings_Scale.src\n"
-"STR_INVALID_TIME_UNIT\n"
-"string.text"
-msgid "The major and minor interval need to be greater or equal to the resolution. Check your input."
-msgstr "Das Haupt- und Hilfsintervall benötigen einen mindestens genauso großen Zahlenwert wie die Auflösung. Bitte überprüfen Sie die Eingabe."
-
-#: Strings_Statistic.src
-msgctxt ""
-"Strings_Statistic.src\n"
-"STR_CONTROLTEXT_ERROR_BARS_FROM_DATA\n"
-"string.text"
-msgid "From Data Table"
-msgstr "Aus Datentabelle"
-
-#: Strings_Statistic.src
-msgctxt ""
-"Strings_Statistic.src\n"
-"STR_REGRESSION_LINEAR\n"
-"string.text"
-msgid "Linear"
-msgstr "Linear"
-
-#: Strings_Statistic.src
-msgctxt ""
-"Strings_Statistic.src\n"
-"STR_REGRESSION_LOG\n"
-"string.text"
-msgid "Logarithmic"
-msgstr "Logarithmisch"
-
-#: Strings_Statistic.src
-msgctxt ""
-"Strings_Statistic.src\n"
-"STR_REGRESSION_EXP\n"
-"string.text"
-msgid "Exponential"
-msgstr "Exponentiell"
-
-#: Strings_Statistic.src
-msgctxt ""
-"Strings_Statistic.src\n"
-"STR_REGRESSION_POWER\n"
-"string.text"
-msgid "Power"
-msgstr "Potenziell"
-
-#: Strings_Statistic.src
-msgctxt ""
-"Strings_Statistic.src\n"
-"STR_REGRESSION_POLYNOMIAL\n"
-"string.text"
-msgid "Polynomial"
-msgstr "Polynomisch"
-
-#: Strings_Statistic.src
-msgctxt ""
-"Strings_Statistic.src\n"
-"STR_REGRESSION_MOVING_AVERAGE\n"
-"string.text"
-msgid "Moving average"
-msgstr "Gleitender Mittelwert"
-
-#: Strings_Statistic.src
-msgctxt ""
-"Strings_Statistic.src\n"
-"STR_REGRESSION_MEAN\n"
-"string.text"
-msgid "Mean"
-msgstr "Mittelwert"
diff --git a/source/de/chart2/uiconfig/ui.po b/source/de/chart2/uiconfig/ui.po
deleted file mode 100644
index 24b4bff82d7..00000000000
--- a/source/de/chart2/uiconfig/ui.po
+++ /dev/null
@@ -1,4103 +0,0 @@
-#. extracted from chart2/uiconfig/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-14 17:35+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492191353.000000\n"
-
-#: 3dviewdialog.ui
-msgctxt ""
-"3dviewdialog.ui\n"
-"3DViewDialog\n"
-"title\n"
-"string.text"
-msgid "3D View"
-msgstr "3D-Ansicht"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"CharDialog\n"
-"title\n"
-"string.text"
-msgid "Character"
-msgstr "Zeichen"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"font\n"
-"label\n"
-"string.text"
-msgid "Font"
-msgstr "Schrift"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"fonteffects\n"
-"label\n"
-"string.text"
-msgid "Font Effects"
-msgstr "Schrifteffekte"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"position\n"
-"label\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: chartdatadialog.ui
-msgctxt ""
-"chartdatadialog.ui\n"
-"ChartDataDialog\n"
-"title\n"
-"string.text"
-msgid "Data Table"
-msgstr "Datentabelle"
-
-#: chartdatadialog.ui
-msgctxt ""
-"chartdatadialog.ui\n"
-"InsertRow\n"
-"label\n"
-"string.text"
-msgid "Insert Row"
-msgstr "Zeile einfügen"
-
-#: chartdatadialog.ui
-msgctxt ""
-"chartdatadialog.ui\n"
-"InsertColumn\n"
-"label\n"
-"string.text"
-msgid "Insert Series"
-msgstr "Datenreihe einfügen"
-
-#: chartdatadialog.ui
-msgctxt ""
-"chartdatadialog.ui\n"
-"InsertTextColumn\n"
-"label\n"
-"string.text"
-msgid "Insert Text Column"
-msgstr "Textspalte einfügen"
-
-#: chartdatadialog.ui
-msgctxt ""
-"chartdatadialog.ui\n"
-"RemoveRow\n"
-"label\n"
-"string.text"
-msgid "Delete Row"
-msgstr "Zeile löschen"
-
-#: chartdatadialog.ui
-msgctxt ""
-"chartdatadialog.ui\n"
-"RemoveColumn\n"
-"label\n"
-"string.text"
-msgid "Delete Series"
-msgstr "Datenreihe löschen"
-
-#: chartdatadialog.ui
-msgctxt ""
-"chartdatadialog.ui\n"
-"MoveLeftColumn\n"
-"label\n"
-"string.text"
-msgid "Move Series Left"
-msgstr "Spalte nach links verschieben"
-
-#: chartdatadialog.ui
-msgctxt ""
-"chartdatadialog.ui\n"
-"MoveRightColumn\n"
-"label\n"
-"string.text"
-msgid "Move Series Right"
-msgstr "Spalte nach rechts verschieben"
-
-#: chartdatadialog.ui
-msgctxt ""
-"chartdatadialog.ui\n"
-"MoveUpRow\n"
-"label\n"
-"string.text"
-msgid "Move Row Up"
-msgstr "Zeile nach oben verschieben"
-
-#: chartdatadialog.ui
-msgctxt ""
-"chartdatadialog.ui\n"
-"MoveDownRow\n"
-"label\n"
-"string.text"
-msgid "Move Row Down"
-msgstr "Zeile nach unten verschieben"
-
-#: charttypedialog.ui
-msgctxt ""
-"charttypedialog.ui\n"
-"ChartTypeDialog\n"
-"title\n"
-"string.text"
-msgid "Chart Type"
-msgstr "Diagrammtyp"
-
-#: datarangedialog.ui
-msgctxt ""
-"datarangedialog.ui\n"
-"DataRangeDialog\n"
-"title\n"
-"string.text"
-msgid "Data Ranges"
-msgstr "Datenbereiche"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"dlg_DataLabels\n"
-"title\n"
-"string.text"
-msgid "Data Labels for all Data Series"
-msgstr "Datenbeschriftung für alle Datenreihen"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"CB_VALUE_AS_NUMBER\n"
-"label\n"
-"string.text"
-msgid "Show value as _number"
-msgstr "_Wert als Zahl anzeigen"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"CB_VALUE_AS_PERCENTAGE\n"
-"label\n"
-"string.text"
-msgid "Show value as _percentage"
-msgstr "Wert als _Prozentwert anzeigen"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"CB_CATEGORY\n"
-"label\n"
-"string.text"
-msgid "Show _category"
-msgstr "_Kategorie anzeigen"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"CB_SYMBOL\n"
-"label\n"
-"string.text"
-msgid "Show _legend key"
-msgstr "_Legendensymbol anzeigen"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"CB_WRAP_TEXT\n"
-"label\n"
-"string.text"
-msgid "Auto text _wrap"
-msgstr "Automatischer Zeilenumbru_ch"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"PB_NUMBERFORMAT\n"
-"label\n"
-"string.text"
-msgid "Number _format..."
-msgstr "Zahlen_format..."
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"PB_PERCENT_NUMBERFORMAT\n"
-"label\n"
-"string.text"
-msgid "Percentage f_ormat..."
-msgstr "Prozentwert-Fo_rmat..."
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"CT_LABEL_DIAL\n"
-"label\n"
-"string.text"
-msgid "ABCD"
-msgstr "ABCD"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"FT_TEXT_SEPARATOR\n"
-"label\n"
-"string.text"
-msgid "_Separator"
-msgstr "_Trenner"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"FT_LABEL_PLACEMENT\n"
-"label\n"
-"string.text"
-msgid "Place_ment"
-msgstr "Platz_ierung"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE\n"
-"label\n"
-"string.text"
-msgid "Number Format for Percentage Value"
-msgstr "Zahlenformat für Prozentwerte"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Text Attributes"
-msgstr "Textattribute"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"FT_LABEL_DEGREES\n"
-"label\n"
-"string.text"
-msgid "_Degrees"
-msgstr "_Grad"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"FT_LABEL_TEXTDIR\n"
-"label\n"
-"string.text"
-msgid "Te_xt direction"
-msgstr "Te_xtrichtung"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Rotate Text"
-msgstr "Text drehen"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"0\n"
-"stringlist.text"
-msgid "Best fit"
-msgstr "Passend"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"1\n"
-"stringlist.text"
-msgid "Center"
-msgstr "Zentriert"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"2\n"
-"stringlist.text"
-msgid "Above"
-msgstr "Oberhalb"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"3\n"
-"stringlist.text"
-msgid "Top left"
-msgstr "Oben links"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"4\n"
-"stringlist.text"
-msgid "Left"
-msgstr "Links"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"5\n"
-"stringlist.text"
-msgid "Bottom left"
-msgstr "Unten links"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"6\n"
-"stringlist.text"
-msgid "Below"
-msgstr "Unterhalb"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"7\n"
-"stringlist.text"
-msgid "Bottom right"
-msgstr "Unten rechts"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"8\n"
-"stringlist.text"
-msgid "Right"
-msgstr "Rechts"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"9\n"
-"stringlist.text"
-msgid "Top right"
-msgstr "Oben rechts"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"10\n"
-"stringlist.text"
-msgid "Inside"
-msgstr "Innen"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"11\n"
-"stringlist.text"
-msgid "Outside"
-msgstr "Außen"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"12\n"
-"stringlist.text"
-msgid "Near origin"
-msgstr "Nahe Ursprung"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststoreSEPARATOR\n"
-"0\n"
-"stringlist.text"
-msgid "Space"
-msgstr "Leerzeichen"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststoreSEPARATOR\n"
-"1\n"
-"stringlist.text"
-msgid "Comma"
-msgstr "Kommata"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststoreSEPARATOR\n"
-"2\n"
-"stringlist.text"
-msgid "Semicolon"
-msgstr "Semikolon"
-
-#: dlg_DataLabel.ui
-msgctxt ""
-"dlg_DataLabel.ui\n"
-"liststoreSEPARATOR\n"
-"3\n"
-"stringlist.text"
-msgid "New line"
-msgstr "Zeilenumbruch"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"dlg_InsertErrorBars\n"
-"title\n"
-"string.text"
-msgid "Legend"
-msgstr "Legende"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"RB_NONE\n"
-"label\n"
-"string.text"
-msgid "_None"
-msgstr "Ohn_e"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"RB_CONST\n"
-"label\n"
-"string.text"
-msgid "_Constant Value"
-msgstr "_Konstanter Wert"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"RB_PERCENT\n"
-"label\n"
-"string.text"
-msgid "_Percentage"
-msgstr "_Prozentual"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"RB_RANGE\n"
-"label\n"
-"string.text"
-msgid "Cell _Range"
-msgstr "Zell_bereich"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Error Category"
-msgstr "Fehlerkategorie"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"RB_BOTH\n"
-"label\n"
-"string.text"
-msgid "Positive _and Negative"
-msgstr "Positiv _und negativ"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"RB_POSITIVE\n"
-"label\n"
-"string.text"
-msgid "Pos_itive"
-msgstr "Pos_itiv"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"RB_NEGATIVE\n"
-"label\n"
-"string.text"
-msgid "Ne_gative"
-msgstr "Ne_gativ"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Error Indicator"
-msgstr "Fehlerindikator"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"FT_POSITIVE\n"
-"label\n"
-"string.text"
-msgid "P_ositive (+)"
-msgstr "Po_sitiv (+)"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"IB_RANGE_POSITIVE\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select data range"
-msgstr "Positiven Datenbereich auswählen"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"FT_NEGATIVE\n"
-"label\n"
-"string.text"
-msgid "_Negative (-)"
-msgstr "_Negativ (-)"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"IB_RANGE_NEGATIVE\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select data range"
-msgstr "Negativen Datenbereich auswählen"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"CB_SYN_POS_NEG\n"
-"label\n"
-"string.text"
-msgid "Same value for both"
-msgstr "Bei_de Seiten gleich"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Parameters"
-msgstr "Parameter"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS\n"
-"label\n"
-"string.text"
-msgid "Select Range for Positive Error Bars"
-msgstr "Datenbereich für positive Fehlerbalken auswählen"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS\n"
-"label\n"
-"string.text"
-msgid "Select Range for Negative Error Bars"
-msgstr "Datenbereich für negative Fehlerbalken auswählen"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"STR_CONTROLTEXT_ERROR_BARS_FROM_DATA\n"
-"label\n"
-"string.text"
-msgid "From Data Table"
-msgstr "Aus Datentabelle"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"liststoreFUNCTION\n"
-"0\n"
-"stringlist.text"
-msgid "Standard Error"
-msgstr "Standardfehler"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"liststoreFUNCTION\n"
-"1\n"
-"stringlist.text"
-msgid "Standard Deviation"
-msgstr "Standardabweichung"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"liststoreFUNCTION\n"
-"2\n"
-"stringlist.text"
-msgid "Variance"
-msgstr "Varianz"
-
-#: dlg_InsertErrorBars.ui
-msgctxt ""
-"dlg_InsertErrorBars.ui\n"
-"liststoreFUNCTION\n"
-"3\n"
-"stringlist.text"
-msgid "Error Margin"
-msgstr "Fehlerbereich"
-
-#: dlg_InsertLegend.ui
-msgctxt ""
-"dlg_InsertLegend.ui\n"
-"dlg_InsertLegend\n"
-"title\n"
-"string.text"
-msgid "Legend"
-msgstr "Legende"
-
-#: dlg_InsertLegend.ui
-msgctxt ""
-"dlg_InsertLegend.ui\n"
-"show\n"
-"label\n"
-"string.text"
-msgid "_Display legend"
-msgstr "L_egende anzeigen"
-
-#: dlg_InsertLegend.ui
-msgctxt ""
-"dlg_InsertLegend.ui\n"
-"left\n"
-"label\n"
-"string.text"
-msgid "_Left"
-msgstr "_Links"
-
-#: dlg_InsertLegend.ui
-msgctxt ""
-"dlg_InsertLegend.ui\n"
-"right\n"
-"label\n"
-"string.text"
-msgid "_Right"
-msgstr "_Rechts"
-
-#: dlg_InsertLegend.ui
-msgctxt ""
-"dlg_InsertLegend.ui\n"
-"top\n"
-"label\n"
-"string.text"
-msgid "_Top"
-msgstr "_Oben"
-
-#: dlg_InsertLegend.ui
-msgctxt ""
-"dlg_InsertLegend.ui\n"
-"bottom\n"
-"label\n"
-"string.text"
-msgid "_Bottom"
-msgstr "_Unten"
-
-#: dlg_InsertLegend.ui
-msgctxt ""
-"dlg_InsertLegend.ui\n"
-"TXT_POSITION\n"
-"label\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: insertaxisdlg.ui
-msgctxt ""
-"insertaxisdlg.ui\n"
-"InsertAxisDialog\n"
-"title\n"
-"string.text"
-msgid "Axes"
-msgstr "Achsen"
-
-#: insertaxisdlg.ui
-msgctxt ""
-"insertaxisdlg.ui\n"
-"primaryX\n"
-"label\n"
-"string.text"
-msgid "_X axis"
-msgstr "_X-Achse"
-
-#: insertaxisdlg.ui
-msgctxt ""
-"insertaxisdlg.ui\n"
-"primaryY\n"
-"label\n"
-"string.text"
-msgid "_Y axis"
-msgstr "_Y-Achse"
-
-#: insertaxisdlg.ui
-msgctxt ""
-"insertaxisdlg.ui\n"
-"primaryZ\n"
-"label\n"
-"string.text"
-msgid "_Z axis"
-msgstr "_Z-Achse"
-
-#: insertaxisdlg.ui
-msgctxt ""
-"insertaxisdlg.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Axes"
-msgstr "Achsen"
-
-#: insertaxisdlg.ui
-msgctxt ""
-"insertaxisdlg.ui\n"
-"secondaryX\n"
-"label\n"
-"string.text"
-msgid "X _axis"
-msgstr "X-_Achse"
-
-#: insertaxisdlg.ui
-msgctxt ""
-"insertaxisdlg.ui\n"
-"secondaryY\n"
-"label\n"
-"string.text"
-msgid "Y ax_is"
-msgstr "Y-A_chse"
-
-#: insertaxisdlg.ui
-msgctxt ""
-"insertaxisdlg.ui\n"
-"secondaryZ\n"
-"label\n"
-"string.text"
-msgid "Z axi_s"
-msgstr "Z-Ach_se"
-
-#: insertaxisdlg.ui
-msgctxt ""
-"insertaxisdlg.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Secondary Axes"
-msgstr "Sekundäre Achsen"
-
-#: insertgriddlg.ui
-msgctxt ""
-"insertgriddlg.ui\n"
-"InsertGridDialog\n"
-"title\n"
-"string.text"
-msgid "Grids"
-msgstr "Gitterlinien"
-
-#: insertgriddlg.ui
-msgctxt ""
-"insertgriddlg.ui\n"
-"primaryX\n"
-"label\n"
-"string.text"
-msgid "_X axis"
-msgstr "_X-Achse"
-
-#: insertgriddlg.ui
-msgctxt ""
-"insertgriddlg.ui\n"
-"primaryY\n"
-"label\n"
-"string.text"
-msgid "_Y axis"
-msgstr "_Y-Achse"
-
-#: insertgriddlg.ui
-msgctxt ""
-"insertgriddlg.ui\n"
-"primaryZ\n"
-"label\n"
-"string.text"
-msgid "_Z axis"
-msgstr "_Z-Achse"
-
-#: insertgriddlg.ui
-msgctxt ""
-"insertgriddlg.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Major Grids"
-msgstr "Hauptgitter"
-
-#: insertgriddlg.ui
-msgctxt ""
-"insertgriddlg.ui\n"
-"secondaryX\n"
-"label\n"
-"string.text"
-msgid "X _axis"
-msgstr "X-_Achse"
-
-#: insertgriddlg.ui
-msgctxt ""
-"insertgriddlg.ui\n"
-"secondaryY\n"
-"label\n"
-"string.text"
-msgid "Y ax_is"
-msgstr "Y-A_chse"
-
-#: insertgriddlg.ui
-msgctxt ""
-"insertgriddlg.ui\n"
-"secondaryZ\n"
-"label\n"
-"string.text"
-msgid "Z axi_s"
-msgstr "Z-Ach_se"
-
-#: insertgriddlg.ui
-msgctxt ""
-"insertgriddlg.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Minor Grids"
-msgstr "Hilfsgitter"
-
-#: inserttitledlg.ui
-msgctxt ""
-"inserttitledlg.ui\n"
-"InsertTitleDialog\n"
-"title\n"
-"string.text"
-msgid "Titles"
-msgstr "Titel"
-
-#: inserttitledlg.ui
-msgctxt ""
-"inserttitledlg.ui\n"
-"labelMainTitle\n"
-"label\n"
-"string.text"
-msgid "_Title"
-msgstr "_Titel"
-
-#: inserttitledlg.ui
-msgctxt ""
-"inserttitledlg.ui\n"
-"labelSubTitle\n"
-"label\n"
-"string.text"
-msgid "_Subtitle"
-msgstr "_Untertitel"
-
-#: inserttitledlg.ui
-msgctxt ""
-"inserttitledlg.ui\n"
-"labelPrimaryXaxis\n"
-"label\n"
-"string.text"
-msgid "_X axis"
-msgstr "_X-Achse"
-
-#: inserttitledlg.ui
-msgctxt ""
-"inserttitledlg.ui\n"
-"labelPrimaryYaxis\n"
-"label\n"
-"string.text"
-msgid "_Y axis"
-msgstr "_Y-Achse"
-
-#: inserttitledlg.ui
-msgctxt ""
-"inserttitledlg.ui\n"
-"labelPrimaryZaxis\n"
-"label\n"
-"string.text"
-msgid "_Z axis"
-msgstr "_Z-Achse"
-
-#: inserttitledlg.ui
-msgctxt ""
-"inserttitledlg.ui\n"
-"Axe\n"
-"label\n"
-"string.text"
-msgid "Axes"
-msgstr "Achsen"
-
-#: inserttitledlg.ui
-msgctxt ""
-"inserttitledlg.ui\n"
-"labelSecondaryXAxis\n"
-"label\n"
-"string.text"
-msgid "X _axis"
-msgstr "X-_Achse"
-
-#: inserttitledlg.ui
-msgctxt ""
-"inserttitledlg.ui\n"
-"labelSecondaryYAxis\n"
-"label\n"
-"string.text"
-msgid "Y ax_is"
-msgstr "Y-A_chse"
-
-#: inserttitledlg.ui
-msgctxt ""
-"inserttitledlg.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Secondary Axes"
-msgstr "Sekundäre Achsen"
-
-#: paradialog.ui
-msgctxt ""
-"paradialog.ui\n"
-"ParagraphDialog\n"
-"title\n"
-"string.text"
-msgid "Paragraph"
-msgstr "Absatz"
-
-#: paradialog.ui
-msgctxt ""
-"paradialog.ui\n"
-"labelTP_PARA_STD\n"
-"label\n"
-"string.text"
-msgid "Indents & Spacing"
-msgstr "Einzüge & Abstände"
-
-#: paradialog.ui
-msgctxt ""
-"paradialog.ui\n"
-"labelTP_PARA_ALIGN\n"
-"label\n"
-"string.text"
-msgid "Alignment"
-msgstr "Ausrichtung"
-
-#: paradialog.ui
-msgctxt ""
-"paradialog.ui\n"
-"labelTP_PARA_ASIAN\n"
-"label\n"
-"string.text"
-msgid "Asian Typography"
-msgstr "Asiatische Typografie"
-
-#: paradialog.ui
-msgctxt ""
-"paradialog.ui\n"
-"labelTP_TABULATOR\n"
-"label\n"
-"string.text"
-msgid "Tabs"
-msgstr "Tabulator"
-
-#: sidebaraxis.ui
-msgctxt ""
-"sidebaraxis.ui\n"
-"checkbutton_show_label\n"
-"label\n"
-"string.text"
-msgid "Show labels"
-msgstr "_Beschriftung anzeigen"
-
-#: sidebaraxis.ui
-msgctxt ""
-"sidebaraxis.ui\n"
-"checkbutton_reverse\n"
-"label\n"
-"string.text"
-msgid "Reverse direction"
-msgstr "Richtun_g umkehren"
-
-#: sidebaraxis.ui
-msgctxt ""
-"sidebaraxis.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Label position:"
-msgstr "Beschriftungs_position:"
-
-#: sidebaraxis.ui
-msgctxt ""
-"sidebaraxis.ui\n"
-"comboboxtext_label_position\n"
-"0\n"
-"stringlist.text"
-msgid "Near Axis"
-msgstr "An der Achse"
-
-#: sidebaraxis.ui
-msgctxt ""
-"sidebaraxis.ui\n"
-"comboboxtext_label_position\n"
-"1\n"
-"stringlist.text"
-msgid "Near Axis (other side)"
-msgstr "An der Achse (andere Seite)"
-
-#: sidebaraxis.ui
-msgctxt ""
-"sidebaraxis.ui\n"
-"comboboxtext_label_position\n"
-"2\n"
-"stringlist.text"
-msgid "Outside start"
-msgstr "Außerhalb des Anfangs"
-
-#: sidebaraxis.ui
-msgctxt ""
-"sidebaraxis.ui\n"
-"comboboxtext_label_position\n"
-"3\n"
-"stringlist.text"
-msgid "Outside end"
-msgstr "Außerhalb des Endes"
-
-#: sidebaraxis.ui
-msgctxt ""
-"sidebaraxis.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Text orientation:"
-msgstr "_Textausrichtung:"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_subtitle\n"
-"label\n"
-"string.text"
-msgid "Subtitle"
-msgstr "_Untertitel"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_title\n"
-"label\n"
-"string.text"
-msgid "Title"
-msgstr "Titel"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"l\n"
-"label\n"
-"string.text"
-msgid "Titles"
-msgstr "Titel"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_legend\n"
-"tooltip_text\n"
-"string.text"
-msgid "Show Legend"
-msgstr "Legende anzeigen"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"placement_label\n"
-"label\n"
-"string.text"
-msgid "_Placement:"
-msgstr "Platz_ierung:"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"comboboxtext_legend\n"
-"0\n"
-"stringlist.text"
-msgid "Right"
-msgstr "Rechts"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"comboboxtext_legend\n"
-"1\n"
-"stringlist.text"
-msgid "Top"
-msgstr "Oben"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"comboboxtext_legend\n"
-"2\n"
-"stringlist.text"
-msgid "Bottom"
-msgstr "Unten"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"comboboxtext_legend\n"
-"3\n"
-"stringlist.text"
-msgid "Left"
-msgstr "Links"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"comboboxtext_legend\n"
-"4\n"
-"stringlist.text"
-msgid "Manual"
-msgstr "Ma_nuell"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"label_legen\n"
-"label\n"
-"string.text"
-msgid "Legend"
-msgstr "Legende"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_x_axis\n"
-"label\n"
-"string.text"
-msgid "X axis"
-msgstr "_X-Achse"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_x_axis_title\n"
-"label\n"
-"string.text"
-msgid "X axis title"
-msgstr "Titel X-Achse"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_y_axis\n"
-"label\n"
-"string.text"
-msgid "Y axis"
-msgstr "_Y-Achse"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_y_axis_title\n"
-"label\n"
-"string.text"
-msgid "Y axis title"
-msgstr "Titel Y-Achse"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_z_axis\n"
-"label\n"
-"string.text"
-msgid "Z axis"
-msgstr "_Z-Achse"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_z_axis_title\n"
-"label\n"
-"string.text"
-msgid "Z axis title"
-msgstr "Titel Z-Achse"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_2nd_x_axis\n"
-"label\n"
-"string.text"
-msgid "2nd X axis"
-msgstr "2. X-Achse"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_2nd_x_axis_title\n"
-"label\n"
-"string.text"
-msgid "2nd X axis title"
-msgstr "Titel 2. X-Achse"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_2nd_y_axis\n"
-"label\n"
-"string.text"
-msgid "2nd Y axis"
-msgstr "2. Y-Achse"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_2nd_y_axis_title\n"
-"label\n"
-"string.text"
-msgid "2nd Y axis title"
-msgstr "Titel 2. Y-Achse"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"label_axes\n"
-"label\n"
-"string.text"
-msgid "Axes"
-msgstr "Achsen"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_gridline_horizontal_major\n"
-"label\n"
-"string.text"
-msgid "Horizontal major"
-msgstr "Hauptgitter horizontal"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_gridline_vertical_major\n"
-"label\n"
-"string.text"
-msgid "Vertical major"
-msgstr "Hauptgitter vertikal"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_gridline_horizontal_minor\n"
-"label\n"
-"string.text"
-msgid "Horizontal minor"
-msgstr "Hilfsgitter horizontal"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"checkbutton_gridline_vertical_minor\n"
-"label\n"
-"string.text"
-msgid "Vertical minor"
-msgstr "Hilfsgitter vertikal"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"label_gri\n"
-"label\n"
-"string.text"
-msgid "Gridlines"
-msgstr "Gitterlinien"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"text_title\n"
-"label\n"
-"string.text"
-msgid "Title"
-msgstr "Titel"
-
-#: sidebarelements.ui
-msgctxt ""
-"sidebarelements.ui\n"
-"text_subtitle\n"
-"label\n"
-"string.text"
-msgid "Subtitle"
-msgstr "Untertitel"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Category:"
-msgstr "Kategorie:"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"comboboxtext_type\n"
-"0\n"
-"stringlist.text"
-msgid "Constant"
-msgstr "Konstant"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"comboboxtext_type\n"
-"1\n"
-"stringlist.text"
-msgid "Percentage"
-msgstr "_Prozentual"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"comboboxtext_type\n"
-"2\n"
-"stringlist.text"
-msgid "Cell Range or Data Table"
-msgstr "Zellbereich oder Datentabelle"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"comboboxtext_type\n"
-"3\n"
-"stringlist.text"
-msgid "Standard deviation"
-msgstr "Standardabweichung"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"comboboxtext_type\n"
-"4\n"
-"stringlist.text"
-msgid "Standard error"
-msgstr "Standardfehler"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"comboboxtext_type\n"
-"5\n"
-"stringlist.text"
-msgid "Variance"
-msgstr "Varianz"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"comboboxtext_type\n"
-"6\n"
-"stringlist.text"
-msgid "Error margin"
-msgstr "Fehlerbereich"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Positive (+):"
-msgstr "Po_sitiv (+):"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Negative (-):"
-msgstr "_Negativ (-):"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"spinbutton_pos\n"
-"text\n"
-"string.text"
-msgid "0.00"
-msgstr "0,00"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"spinbutton_neg\n"
-"text\n"
-"string.text"
-msgid "0.00"
-msgstr "0,00"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"radiobutton_positive_negative\n"
-"tooltip_text\n"
-"string.text"
-msgid "Positive and Negative"
-msgstr "Positiv _und negativ"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"radiobutton_positive\n"
-"tooltip_text\n"
-"string.text"
-msgid "Positive"
-msgstr "Pos_itiv"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"radiobutton_negative\n"
-"tooltip_text\n"
-"string.text"
-msgid "Negative"
-msgstr "Ne_gativ"
-
-#: sidebarerrorbar.ui
-msgctxt ""
-"sidebarerrorbar.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Indicator"
-msgstr "Indikator"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"checkbutton_label\n"
-"label\n"
-"string.text"
-msgid "Show data labels"
-msgstr "Datenbeschriftung anzeigen"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"label_box\n"
-"label\n"
-"string.text"
-msgid "P_lacement:"
-msgstr "Platz_ierung:"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"comboboxtext_label\n"
-"0\n"
-"stringlist.text"
-msgid "Above"
-msgstr "Oberhalb"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"comboboxtext_label\n"
-"1\n"
-"stringlist.text"
-msgid "Below"
-msgstr "Unterhalb"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"comboboxtext_label\n"
-"2\n"
-"stringlist.text"
-msgid "Center"
-msgstr "Zentriert"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"comboboxtext_label\n"
-"3\n"
-"stringlist.text"
-msgid "Outside"
-msgstr "Außen"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"comboboxtext_label\n"
-"4\n"
-"stringlist.text"
-msgid "Inside"
-msgstr "Innen"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"comboboxtext_label\n"
-"5\n"
-"stringlist.text"
-msgid "Near origin"
-msgstr "Nahe Ursprung"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"checkbutton_trendline\n"
-"label\n"
-"string.text"
-msgid "Show trendline"
-msgstr "Trendlinie anzeigen"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"checkbutton_y_error\n"
-"label\n"
-"string.text"
-msgid "Y error bars"
-msgstr "Y-Fehlerbalken"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"checkbutton_x_error\n"
-"label\n"
-"string.text"
-msgid "X error bars"
-msgstr "X-Fehlerbalken"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Error Bars"
-msgstr "Fehlerbalken"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"radiobutton_primary_axis\n"
-"label\n"
-"string.text"
-msgid "Primary Y axis"
-msgstr "Primäre Y-Achse"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"radiobutton_secondary_axis\n"
-"label\n"
-"string.text"
-msgid "Secondary Y axis"
-msgstr "Sekundäre Y-Achse"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"axis_label\n"
-"label\n"
-"string.text"
-msgid "Align Series to Axis"
-msgstr "Reihen an Achsen ausrichten"
-
-#: sidebarseries.ui
-msgctxt ""
-"sidebarseries.ui\n"
-"label_series_tmpl\n"
-"label\n"
-"string.text"
-msgid "Data series '%1'"
-msgstr "Datenreihe '%1'"
-
-#: smoothlinesdlg.ui
-msgctxt ""
-"smoothlinesdlg.ui\n"
-"SmoothLinesDialog\n"
-"title\n"
-"string.text"
-msgid "Smooth Lines"
-msgstr "Kurvenglättung"
-
-#: smoothlinesdlg.ui
-msgctxt ""
-"smoothlinesdlg.ui\n"
-"TypeLabel\n"
-"label\n"
-"string.text"
-msgid "Line _Type:"
-msgstr "Linien_typ:"
-
-#: smoothlinesdlg.ui
-msgctxt ""
-"smoothlinesdlg.ui\n"
-"SplineTypeComboBox\n"
-"0\n"
-"stringlist.text"
-msgid "Cubic spline"
-msgstr "Kubischer Spline"
-
-#: smoothlinesdlg.ui
-msgctxt ""
-"smoothlinesdlg.ui\n"
-"SplineTypeComboBox\n"
-"1\n"
-"stringlist.text"
-msgid "B-spline"
-msgstr "B-Spline"
-
-#: smoothlinesdlg.ui
-msgctxt ""
-"smoothlinesdlg.ui\n"
-"ResolutionLabel\n"
-"label\n"
-"string.text"
-msgid "_Resolution:"
-msgstr "_Auflösung:"
-
-#: smoothlinesdlg.ui
-msgctxt ""
-"smoothlinesdlg.ui\n"
-"PolynomialsLabel\n"
-"label\n"
-"string.text"
-msgid "_Degree of polynomials:"
-msgstr "_Grad der Polynome:"
-
-#: smoothlinesdlg.ui
-msgctxt ""
-"smoothlinesdlg.ui\n"
-"SplineTypeModel\n"
-"0\n"
-"stringlist.text"
-msgid "Cubic Spline"
-msgstr "Kubischer Spline"
-
-#: smoothlinesdlg.ui
-msgctxt ""
-"smoothlinesdlg.ui\n"
-"SplineTypeModel\n"
-"1\n"
-"stringlist.text"
-msgid "B-Spline"
-msgstr "B-Spline"
-
-#: steppedlinesdlg.ui
-msgctxt ""
-"steppedlinesdlg.ui\n"
-"step_start_rb\n"
-"label\n"
-"string.text"
-msgid "_Start with horizontal line"
-msgstr "Mit horizontaler _Linie beginnen"
-
-#: steppedlinesdlg.ui
-msgctxt ""
-"steppedlinesdlg.ui\n"
-"step_center_x_rb\n"
-"label\n"
-"string.text"
-msgid "Step at the _horizontal mean"
-msgstr "_Stufe horizontal mittig"
-
-#: steppedlinesdlg.ui
-msgctxt ""
-"steppedlinesdlg.ui\n"
-"step_end_rb\n"
-"label\n"
-"string.text"
-msgid "_End with horizontal line"
-msgstr "Mit _vertikaler Linie beginnen"
-
-#: steppedlinesdlg.ui
-msgctxt ""
-"steppedlinesdlg.ui\n"
-"step_center_y_rb\n"
-"label\n"
-"string.text"
-msgid "Step to the _vertical mean"
-msgstr "Stufe vertikal _mittig"
-
-#: steppedlinesdlg.ui
-msgctxt ""
-"steppedlinesdlg.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Type of Stepping"
-msgstr "Art der Stufen"
-
-#: titlerotationtabpage.ui
-msgctxt ""
-"titlerotationtabpage.ui\n"
-"degreeL\n"
-"label\n"
-"string.text"
-msgid "_Degrees"
-msgstr "_Grad"
-
-#: titlerotationtabpage.ui
-msgctxt ""
-"titlerotationtabpage.ui\n"
-"stackedCB\n"
-"label\n"
-"string.text"
-msgid "Ve_rtically stacked"
-msgstr "_Senkrecht gestapelt"
-
-#: titlerotationtabpage.ui
-msgctxt ""
-"titlerotationtabpage.ui\n"
-"labelABCD\n"
-"label\n"
-"string.text"
-msgid "ABCD"
-msgstr "ABCD"
-
-#: titlerotationtabpage.ui
-msgctxt ""
-"titlerotationtabpage.ui\n"
-"textdirL\n"
-"label\n"
-"string.text"
-msgid "Te_xt direction:"
-msgstr "Te_xtrichtung:"
-
-#: titlerotationtabpage.ui
-msgctxt ""
-"titlerotationtabpage.ui\n"
-"labelTextOrient\n"
-"label\n"
-"string.text"
-msgid "Text Orientation"
-msgstr "Textausrichtung"
-
-#: tp_3D_SceneAppearance.ui
-msgctxt ""
-"tp_3D_SceneAppearance.ui\n"
-"FT_SCHEME\n"
-"label\n"
-"string.text"
-msgid "Sche_me"
-msgstr "Sche_ma"
-
-#: tp_3D_SceneAppearance.ui
-msgctxt ""
-"tp_3D_SceneAppearance.ui\n"
-"CB_SHADING\n"
-"label\n"
-"string.text"
-msgid "_Shading"
-msgstr "_Schattierung"
-
-#: tp_3D_SceneAppearance.ui
-msgctxt ""
-"tp_3D_SceneAppearance.ui\n"
-"CB_OBJECTLINES\n"
-"label\n"
-"string.text"
-msgid "_Object borders"
-msgstr "_Objektumrandungen"
-
-#: tp_3D_SceneAppearance.ui
-msgctxt ""
-"tp_3D_SceneAppearance.ui\n"
-"CB_ROUNDEDEDGE\n"
-"label\n"
-"string.text"
-msgid "_Rounded edges"
-msgstr "_Kantenrundungen"
-
-#: tp_3D_SceneAppearance.ui
-msgctxt ""
-"tp_3D_SceneAppearance.ui\n"
-"liststoreSCHEME\n"
-"0\n"
-"stringlist.text"
-msgid "Simple"
-msgstr "Einfach"
-
-#: tp_3D_SceneAppearance.ui
-msgctxt ""
-"tp_3D_SceneAppearance.ui\n"
-"liststoreSCHEME\n"
-"1\n"
-"stringlist.text"
-msgid "Realistic"
-msgstr "Realistisch"
-
-#: tp_3D_SceneAppearance.ui
-msgctxt ""
-"tp_3D_SceneAppearance.ui\n"
-"liststoreSCHEME\n"
-"2\n"
-"stringlist.text"
-msgid "Custom"
-msgstr "Benutzerdefiniert"
-
-#: tp_3D_SceneGeometry.ui
-msgctxt ""
-"tp_3D_SceneGeometry.ui\n"
-"CBX_RIGHT_ANGLED_AXES\n"
-"label\n"
-"string.text"
-msgid "_Right-angled axes"
-msgstr "_Rechtwinklige Achsen"
-
-#: tp_3D_SceneGeometry.ui
-msgctxt ""
-"tp_3D_SceneGeometry.ui\n"
-"FT_X_ROTATION\n"
-"label\n"
-"string.text"
-msgid "_X rotation"
-msgstr "_X Drehung"
-
-#: tp_3D_SceneGeometry.ui
-msgctxt ""
-"tp_3D_SceneGeometry.ui\n"
-"FT_Y_ROTATION\n"
-"label\n"
-"string.text"
-msgid "_Y rotation"
-msgstr "_Y Drehung"
-
-#: tp_3D_SceneGeometry.ui
-msgctxt ""
-"tp_3D_SceneGeometry.ui\n"
-"FT_Z_ROTATION\n"
-"label\n"
-"string.text"
-msgid "_Z rotation"
-msgstr "_Z Drehung"
-
-#: tp_3D_SceneGeometry.ui
-msgctxt ""
-"tp_3D_SceneGeometry.ui\n"
-"CBX_PERSPECTIVE\n"
-"label\n"
-"string.text"
-msgid "_Perspective"
-msgstr "_Perspektive"
-
-#: tp_3D_SceneGeometry.ui
-msgctxt ""
-"tp_3D_SceneGeometry.ui\n"
-"MTR_FLD_PERSPECTIVE\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Perspective"
-msgstr "Perspektive"
-
-#: tp_3D_SceneIllumination.ui
-msgctxt ""
-"tp_3D_SceneIllumination.ui\n"
-"BTN_LIGHT_1\n"
-"tooltip_text\n"
-"string.text"
-msgid "Light source 1"
-msgstr "Lichtquelle 1"
-
-#: tp_3D_SceneIllumination.ui
-msgctxt ""
-"tp_3D_SceneIllumination.ui\n"
-"BTN_LIGHT_2\n"
-"tooltip_text\n"
-"string.text"
-msgid "Light source 2"
-msgstr "Lichtquelle 2"
-
-#: tp_3D_SceneIllumination.ui
-msgctxt ""
-"tp_3D_SceneIllumination.ui\n"
-"BTN_LIGHT_3\n"
-"tooltip_text\n"
-"string.text"
-msgid "Light source 3"
-msgstr "Lichtquelle 3"
-
-#: tp_3D_SceneIllumination.ui
-msgctxt ""
-"tp_3D_SceneIllumination.ui\n"
-"BTN_LIGHT_4\n"
-"tooltip_text\n"
-"string.text"
-msgid "Light source 4"
-msgstr "Lichtquelle 4"
-
-#: tp_3D_SceneIllumination.ui
-msgctxt ""
-"tp_3D_SceneIllumination.ui\n"
-"BTN_LIGHT_5\n"
-"tooltip_text\n"
-"string.text"
-msgid "Light source 5"
-msgstr "Lichtquelle 5"
-
-#: tp_3D_SceneIllumination.ui
-msgctxt ""
-"tp_3D_SceneIllumination.ui\n"
-"BTN_LIGHT_6\n"
-"tooltip_text\n"
-"string.text"
-msgid "Light source 6"
-msgstr "Lichtquelle 6"
-
-#: tp_3D_SceneIllumination.ui
-msgctxt ""
-"tp_3D_SceneIllumination.ui\n"
-"BTN_LIGHT_7\n"
-"tooltip_text\n"
-"string.text"
-msgid "Light source 7"
-msgstr "Lichtquelle 7"
-
-#: tp_3D_SceneIllumination.ui
-msgctxt ""
-"tp_3D_SceneIllumination.ui\n"
-"BTN_LIGHT_8\n"
-"tooltip_text\n"
-"string.text"
-msgid "Light source 8"
-msgstr "Lichtquelle 8"
-
-#: tp_3D_SceneIllumination.ui
-msgctxt ""
-"tp_3D_SceneIllumination.ui\n"
-"BTN_LIGHTSOURCE_COLOR\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select a color using the color dialog"
-msgstr "Farbe über den Dialog Farbe auswählen"
-
-#: tp_3D_SceneIllumination.ui
-msgctxt ""
-"tp_3D_SceneIllumination.ui\n"
-"FT_LIGHTSOURCE\n"
-"label\n"
-"string.text"
-msgid "_Light source"
-msgstr "_Lichtquelle"
-
-#: tp_3D_SceneIllumination.ui
-msgctxt ""
-"tp_3D_SceneIllumination.ui\n"
-"BTN_AMBIENT_COLOR\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select a color using the color dialog"
-msgstr "Farbe über Dialog Farbe auswählen"
-
-#: tp_3D_SceneIllumination.ui
-msgctxt ""
-"tp_3D_SceneIllumination.ui\n"
-"FT_AMBIENTLIGHT\n"
-"label\n"
-"string.text"
-msgid "_Ambient light"
-msgstr "_Umgebungslicht"
-
-#: tp_3D_SceneIllumination.ui
-msgctxt ""
-"tp_3D_SceneIllumination.ui\n"
-"CTL_LIGHT_PREVIEW\n"
-"tooltip_text\n"
-"string.text"
-msgid "Light Preview"
-msgstr "Lichtvorschau"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"FT_CROSSES_OTHER_AXIS_AT\n"
-"label\n"
-"string.text"
-msgid "_Cross other axis at"
-msgstr "Andere Achse schneiden _bei"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"LB_CROSSES_OTHER_AXIS_AT\n"
-"0\n"
-"stringlist.text"
-msgid "Start"
-msgstr "Anfang"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"LB_CROSSES_OTHER_AXIS_AT\n"
-"1\n"
-"stringlist.text"
-msgid "End"
-msgstr "Ende"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"LB_CROSSES_OTHER_AXIS_AT\n"
-"2\n"
-"stringlist.text"
-msgid "Value"
-msgstr "Wert"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"LB_CROSSES_OTHER_AXIS_AT\n"
-"3\n"
-"stringlist.text"
-msgid "Category"
-msgstr "Kategorie"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"CB_AXIS_BETWEEN_CATEGORIES\n"
-"label\n"
-"string.text"
-msgid "Axis _between categories"
-msgstr "Achse zwischen _Kategorien"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"TXT_AXIS_LINE\n"
-"label\n"
-"string.text"
-msgid "Axis Line"
-msgstr "Koordinatenachsen"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"FT_PLACE_LABELS\n"
-"label\n"
-"string.text"
-msgid "_Place labels"
-msgstr "_Position"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"LB_PLACE_LABELS\n"
-"0\n"
-"stringlist.text"
-msgid "Near axis"
-msgstr "An der Achse"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"LB_PLACE_LABELS\n"
-"1\n"
-"stringlist.text"
-msgid "Near axis (other side)"
-msgstr "An der Achse (andere Seite)"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"LB_PLACE_LABELS\n"
-"2\n"
-"stringlist.text"
-msgid "Outside start"
-msgstr "Außerhalb des Anfangs"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"LB_PLACE_LABELS\n"
-"3\n"
-"stringlist.text"
-msgid "Outside end"
-msgstr "Außerhalb des Endes"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"FT_AXIS_LABEL_DISTANCE\n"
-"label\n"
-"string.text"
-msgid "_Distance"
-msgstr "_Abstand"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"TXT_FL_LABELS\n"
-"label\n"
-"string.text"
-msgid "Labels"
-msgstr "Beschriftung"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"FT_MAJOR\n"
-"label\n"
-"string.text"
-msgid "Major:"
-msgstr "Hauptintervall:"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"FT_MINOR\n"
-"label\n"
-"string.text"
-msgid "Minor:"
-msgstr "Hilfsinertvall:"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"CB_TICKS_INNER\n"
-"label\n"
-"string.text"
-msgid "_Inner"
-msgstr "_Innen"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"CB_TICKS_OUTER\n"
-"label\n"
-"string.text"
-msgid "_Outer"
-msgstr "A_ußen"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"CB_MINOR_INNER\n"
-"label\n"
-"string.text"
-msgid "I_nner"
-msgstr "I_nnen"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"CB_MINOR_OUTER\n"
-"label\n"
-"string.text"
-msgid "O_uter"
-msgstr "Auß_en"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"FT_PLACE_TICKS\n"
-"label\n"
-"string.text"
-msgid "Place _marks"
-msgstr "_Position"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"LB_PLACE_TICKS\n"
-"0\n"
-"stringlist.text"
-msgid "At labels"
-msgstr "An Beschriftung"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"LB_PLACE_TICKS\n"
-"1\n"
-"stringlist.text"
-msgid "At axis"
-msgstr "An Achse"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"LB_PLACE_TICKS\n"
-"2\n"
-"stringlist.text"
-msgid "At axis and labels"
-msgstr "An Achse und Beschriftung"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"TXT_FL_TICKS\n"
-"label\n"
-"string.text"
-msgid "Interval Marks"
-msgstr "Intervallmarkierungen"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"CB_MAJOR_GRID\n"
-"label\n"
-"string.text"
-msgid "Show major _grid"
-msgstr "_Hauptgitter anzeigen"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"CB_MINOR_GRID\n"
-"label\n"
-"string.text"
-msgid "_Show minor grid"
-msgstr "_Hilfsgitter anzeigen"
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"PB_MAJOR_GRID\n"
-"label\n"
-"string.text"
-msgid "Mo_re..."
-msgstr "_Mehr..."
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"PB_MINOR_GRID\n"
-"label\n"
-"string.text"
-msgid "Mor_e..."
-msgstr "Meh_r..."
-
-#: tp_AxisPositions.ui
-msgctxt ""
-"tp_AxisPositions.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Grids"
-msgstr "Gitterlinien"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"FT_CAPTION_FOR_WIZARD\n"
-"label\n"
-"string.text"
-msgid "Choose a Chart Type"
-msgstr "Diagrammtyp wählen"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"3dlook\n"
-"label\n"
-"string.text"
-msgid "_3D Look"
-msgstr "_3D-Darstellung"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"3dscheme\n"
-"0\n"
-"stringlist.text"
-msgid "Simple"
-msgstr "Einfach"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"3dscheme\n"
-"1\n"
-"stringlist.text"
-msgid "Realistic"
-msgstr "Realistisch"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"shapeft\n"
-"label\n"
-"string.text"
-msgid "Sh_ape"
-msgstr "_Form"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"stack\n"
-"label\n"
-"string.text"
-msgid "_Stack series"
-msgstr "_Datenreihen stapeln"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"ontop\n"
-"label\n"
-"string.text"
-msgid "On top"
-msgstr "Übereinander"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"percent\n"
-"label\n"
-"string.text"
-msgid "Percent"
-msgstr "Prozentual"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"deep\n"
-"label\n"
-"string.text"
-msgid "Deep"
-msgstr "Hintereinander"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"linetypeft\n"
-"label\n"
-"string.text"
-msgid "_Line type"
-msgstr "Linien_typ"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"linetype\n"
-"0\n"
-"stringlist.text"
-msgid "Straight"
-msgstr "Gerade"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"linetype\n"
-"1\n"
-"stringlist.text"
-msgid "Smooth"
-msgstr "Kurve"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"linetype\n"
-"2\n"
-"stringlist.text"
-msgid "Stepped"
-msgstr "Stufen"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"properties\n"
-"label\n"
-"string.text"
-msgid "Properties..."
-msgstr "_Eigenschaften..."
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"sort\n"
-"label\n"
-"string.text"
-msgid "_Sort by X values"
-msgstr "_Nach X-Werten sortieren"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"nolinesft\n"
-"label\n"
-"string.text"
-msgid "_Number of lines"
-msgstr "Anzahl der _Linien"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"rounded-edge\n"
-"label\n"
-"string.text"
-msgid "Rounded edge"
-msgstr "_Kantenrundung"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"liststore1\n"
-"0\n"
-"stringlist.text"
-msgid "Bar"
-msgstr "Quader"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"liststore1\n"
-"1\n"
-"stringlist.text"
-msgid "Cylinder"
-msgstr "Zylinder"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"liststore1\n"
-"2\n"
-"stringlist.text"
-msgid "Cone"
-msgstr "Kegel"
-
-#: tp_ChartType.ui
-msgctxt ""
-"tp_ChartType.ui\n"
-"liststore1\n"
-"3\n"
-"stringlist.text"
-msgid "Pyramid"
-msgstr "Pyramide"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"CB_VALUE_AS_NUMBER\n"
-"label\n"
-"string.text"
-msgid "Show value as _number"
-msgstr "_Wert als Zahl anzeigen"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"CB_VALUE_AS_PERCENTAGE\n"
-"label\n"
-"string.text"
-msgid "Show value as _percentage"
-msgstr "Wert als _Prozentwert anzeigen"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"CB_CATEGORY\n"
-"label\n"
-"string.text"
-msgid "Show _category"
-msgstr "_Kategorie anzeigen"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"CB_SYMBOL\n"
-"label\n"
-"string.text"
-msgid "Show _legend key"
-msgstr "_Legendensymbol anzeigen"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"CB_WRAP_TEXT\n"
-"label\n"
-"string.text"
-msgid "Auto text _wrap"
-msgstr "Automatischer Zeilenumbru_ch"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"PB_NUMBERFORMAT\n"
-"label\n"
-"string.text"
-msgid "Number _format..."
-msgstr "Zahlen_format..."
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"PB_PERCENT_NUMBERFORMAT\n"
-"label\n"
-"string.text"
-msgid "Percentage f_ormat..."
-msgstr "Prozentwert-Fo_rmat..."
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"CT_LABEL_DIAL\n"
-"label\n"
-"string.text"
-msgid "ABCD"
-msgstr "ABCD"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"FT_TEXT_SEPARATOR\n"
-"label\n"
-"string.text"
-msgid "_Separator"
-msgstr "_Trenner"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"FT_LABEL_PLACEMENT\n"
-"label\n"
-"string.text"
-msgid "Place_ment"
-msgstr "Platz_ierung"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE\n"
-"label\n"
-"string.text"
-msgid "Number Format for Percentage Value"
-msgstr "Zahlenformat für Prozentwerte"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Text Attributes"
-msgstr "Textattribute"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"FT_LABEL_DEGREES\n"
-"label\n"
-"string.text"
-msgid "_Degrees"
-msgstr "_Grad"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"FT_LABEL_TEXTDIR\n"
-"label\n"
-"string.text"
-msgid "Te_xt direction"
-msgstr "Te_xtrichtung"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Rotate Text"
-msgstr "Beschriftung drehen"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"0\n"
-"stringlist.text"
-msgid "Best fit"
-msgstr "Passend"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"1\n"
-"stringlist.text"
-msgid "Center"
-msgstr "Zentriert"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"2\n"
-"stringlist.text"
-msgid "Above"
-msgstr "Oberhalb"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"3\n"
-"stringlist.text"
-msgid "Top left"
-msgstr "Oben links"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"4\n"
-"stringlist.text"
-msgid "Left"
-msgstr "Links"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"5\n"
-"stringlist.text"
-msgid "Bottom left"
-msgstr "Unten links"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"6\n"
-"stringlist.text"
-msgid "Below"
-msgstr "Unterhalb"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"7\n"
-"stringlist.text"
-msgid "Bottom right"
-msgstr "Unten rechts"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"8\n"
-"stringlist.text"
-msgid "Right"
-msgstr "Rechts"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"9\n"
-"stringlist.text"
-msgid "Top right"
-msgstr "Oben rechts"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"10\n"
-"stringlist.text"
-msgid "Inside"
-msgstr "Innen"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"11\n"
-"stringlist.text"
-msgid "Outside"
-msgstr "Außen"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststorePLACEMENT\n"
-"12\n"
-"stringlist.text"
-msgid "Near origin"
-msgstr "Nahe Ursprung"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststoreSEPARATOR\n"
-"0\n"
-"stringlist.text"
-msgid "Space"
-msgstr "Leerzeichen"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststoreSEPARATOR\n"
-"1\n"
-"stringlist.text"
-msgid "Comma"
-msgstr "Kommata"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststoreSEPARATOR\n"
-"2\n"
-"stringlist.text"
-msgid "Semicolon"
-msgstr "Semikolon"
-
-#: tp_DataLabel.ui
-msgctxt ""
-"tp_DataLabel.ui\n"
-"liststoreSEPARATOR\n"
-"3\n"
-"stringlist.text"
-msgid "New line"
-msgstr "Zeilenumbruch"
-
-#: tp_DataSource.ui
-msgctxt ""
-"tp_DataSource.ui\n"
-"imageIMB_RANGE_CAT\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select data range"
-msgstr "Positiven Datenbereich auswählen"
-
-#: tp_DataSource.ui
-msgctxt ""
-"tp_DataSource.ui\n"
-"imageIMB_RANGE_MAIN\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select data range"
-msgstr "Positiven Datenbereich auswählen"
-
-#: tp_DataSource.ui
-msgctxt ""
-"tp_DataSource.ui\n"
-"FT_CAPTION_FOR_WIZARD\n"
-"label\n"
-"string.text"
-msgid "Customize Data Ranges for Individual Data Series"
-msgstr "Wählen Sie spezielle Datenbereiche für die Datenreihen"
-
-#: tp_DataSource.ui
-msgctxt ""
-"tp_DataSource.ui\n"
-"FT_SERIES\n"
-"label\n"
-"string.text"
-msgid "Data _series:"
-msgstr "Daten_reihen:"
-
-#: tp_DataSource.ui
-msgctxt ""
-"tp_DataSource.ui\n"
-"BTN_ADD\n"
-"label\n"
-"string.text"
-msgid "_Add"
-msgstr "H_inzufügen"
-
-#: tp_DataSource.ui
-msgctxt ""
-"tp_DataSource.ui\n"
-"BTN_UP-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Up"
-msgstr "Nach oben"
-
-#: tp_DataSource.ui
-msgctxt ""
-"tp_DataSource.ui\n"
-"BTN_REMOVE\n"
-"label\n"
-"string.text"
-msgid "_Remove"
-msgstr "_Entfernen"
-
-#: tp_DataSource.ui
-msgctxt ""
-"tp_DataSource.ui\n"
-"BTN_DOWN-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Down"
-msgstr "Nach unten"
-
-#: tp_DataSource.ui
-msgctxt ""
-"tp_DataSource.ui\n"
-"FT_ROLE\n"
-"label\n"
-"string.text"
-msgid "_Data ranges:"
-msgstr "_Datenbereiche:"
-
-#: tp_DataSource.ui
-msgctxt ""
-"tp_DataSource.ui\n"
-"FT_RANGE\n"
-"label\n"
-"string.text"
-msgid "Ran_ge for %VALUETYPE"
-msgstr "_Bereich für %VALUETYPE"
-
-#: tp_DataSource.ui
-msgctxt ""
-"tp_DataSource.ui\n"
-"FT_CATEGORIES\n"
-"label\n"
-"string.text"
-msgid "_Categories"
-msgstr "_Kategorien"
-
-#: tp_DataSource.ui
-msgctxt ""
-"tp_DataSource.ui\n"
-"FT_DATALABELS\n"
-"label\n"
-"string.text"
-msgid "Data _labels"
-msgstr "Datenbe_schriftung"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"RB_NONE\n"
-"label\n"
-"string.text"
-msgid "_None"
-msgstr "Ohn_e"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"RB_CONST\n"
-"label\n"
-"string.text"
-msgid "_Constant Value"
-msgstr "_Konstanter Wert"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"RB_PERCENT\n"
-"label\n"
-"string.text"
-msgid "_Percentage"
-msgstr "_Prozentual"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"RB_RANGE\n"
-"label\n"
-"string.text"
-msgid "Cell _Range"
-msgstr "Zell_bereich"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Error Category"
-msgstr "Fehlerkategorie"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"RB_BOTH\n"
-"label\n"
-"string.text"
-msgid "Positive _and Negative"
-msgstr "Positiv _und negativ"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"RB_POSITIVE\n"
-"label\n"
-"string.text"
-msgid "Pos_itive"
-msgstr "Pos_itiv"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"RB_NEGATIVE\n"
-"label\n"
-"string.text"
-msgid "Ne_gative"
-msgstr "Ne_gativ"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Error Indicator"
-msgstr "Fehlerindikator"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"FT_POSITIVE\n"
-"label\n"
-"string.text"
-msgid "P_ositive (+)"
-msgstr "Po_sitiv (+)"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"IB_RANGE_POSITIVE\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select data range"
-msgstr "Positiven Datenbereich auswählen"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"FT_NEGATIVE\n"
-"label\n"
-"string.text"
-msgid "_Negative (-)"
-msgstr "_Negativ (-)"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"IB_RANGE_NEGATIVE\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select data range"
-msgstr "Positiven Datenbereich auswählen"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"CB_SYN_POS_NEG\n"
-"label\n"
-"string.text"
-msgid "Same value for both"
-msgstr "Bei_de Seiten gleich"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Parameters"
-msgstr "Parameter"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS\n"
-"label\n"
-"string.text"
-msgid "Select Range for Positive Error Bars"
-msgstr "Datenbereich für positive Fehlerbalken auswählen"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS\n"
-"label\n"
-"string.text"
-msgid "Select Range for Negative Error Bars"
-msgstr "Datenbereich für negative Fehlerbalken auswählen"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"STR_CONTROLTEXT_ERROR_BARS_FROM_DATA\n"
-"label\n"
-"string.text"
-msgid "From Data Table"
-msgstr "Aus Datentabelle"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"liststoreFUNCTION\n"
-"0\n"
-"stringlist.text"
-msgid "Standard Error"
-msgstr "Standardfehler"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"liststoreFUNCTION\n"
-"1\n"
-"stringlist.text"
-msgid "Standard Deviation"
-msgstr "Standardabweichung"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"liststoreFUNCTION\n"
-"2\n"
-"stringlist.text"
-msgid "Variance"
-msgstr "Varianz"
-
-#: tp_ErrorBars.ui
-msgctxt ""
-"tp_ErrorBars.ui\n"
-"liststoreFUNCTION\n"
-"3\n"
-"stringlist.text"
-msgid "Error Margin"
-msgstr "Fehlerbereich"
-
-#: tp_LegendPosition.ui
-msgctxt ""
-"tp_LegendPosition.ui\n"
-"left\n"
-"label\n"
-"string.text"
-msgid "_Left"
-msgstr "_Links"
-
-#: tp_LegendPosition.ui
-msgctxt ""
-"tp_LegendPosition.ui\n"
-"right\n"
-"label\n"
-"string.text"
-msgid "_Right"
-msgstr "_Rechts"
-
-#: tp_LegendPosition.ui
-msgctxt ""
-"tp_LegendPosition.ui\n"
-"top\n"
-"label\n"
-"string.text"
-msgid "_Top"
-msgstr "_Oben"
-
-#: tp_LegendPosition.ui
-msgctxt ""
-"tp_LegendPosition.ui\n"
-"bottom\n"
-"label\n"
-"string.text"
-msgid "_Bottom"
-msgstr "_Unten"
-
-#: tp_LegendPosition.ui
-msgctxt ""
-"tp_LegendPosition.ui\n"
-"TXT_POSITION\n"
-"label\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: tp_LegendPosition.ui
-msgctxt ""
-"tp_LegendPosition.ui\n"
-"FT_LEGEND_TEXTDIR\n"
-"label\n"
-"string.text"
-msgid "Te_xt direction"
-msgstr "Te_xtrichtung"
-
-#: tp_LegendPosition.ui
-msgctxt ""
-"tp_LegendPosition.ui\n"
-"TXT_ORIENTATION\n"
-"label\n"
-"string.text"
-msgid "Text Orientation"
-msgstr "Textausrichtung"
-
-#: tp_PolarOptions.ui
-msgctxt ""
-"tp_PolarOptions.ui\n"
-"CB_CLOCKWISE\n"
-"label\n"
-"string.text"
-msgid "_Clockwise direction"
-msgstr "Im _Uhrzeigersinn"
-
-#: tp_PolarOptions.ui
-msgctxt ""
-"tp_PolarOptions.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Orientation"
-msgstr "Ausrichtung"
-
-#: tp_PolarOptions.ui
-msgctxt ""
-"tp_PolarOptions.ui\n"
-"FT_ROTATION_DEGREES\n"
-"label\n"
-"string.text"
-msgid "_Degrees"
-msgstr "_Grad"
-
-#: tp_PolarOptions.ui
-msgctxt ""
-"tp_PolarOptions.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Starting Angle"
-msgstr "Startwinkel"
-
-#: tp_PolarOptions.ui
-msgctxt ""
-"tp_PolarOptions.ui\n"
-"CB_INCLUDE_HIDDEN_CELLS_POLAR\n"
-"label\n"
-"string.text"
-msgid "Include _values from hidden cells"
-msgstr "_Werte ausgeblendeter Zellen einbeziehen"
-
-#: tp_PolarOptions.ui
-msgctxt ""
-"tp_PolarOptions.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Plot Options"
-msgstr "Darstellungsoptionen"
-
-#: tp_RangeChooser.ui
-msgctxt ""
-"tp_RangeChooser.ui\n"
-"imageIB_RANGE\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select data range"
-msgstr "Datenbereich auswählen"
-
-#: tp_RangeChooser.ui
-msgctxt ""
-"tp_RangeChooser.ui\n"
-"FT_CAPTION_FOR_WIZARD\n"
-"label\n"
-"string.text"
-msgid "Choose a Data Range"
-msgstr "Wählen Sie einen Datenbereich"
-
-#: tp_RangeChooser.ui
-msgctxt ""
-"tp_RangeChooser.ui\n"
-"FT_RANGE\n"
-"label\n"
-"string.text"
-msgid "_Data range:"
-msgstr "_Datenbereich:"
-
-#: tp_RangeChooser.ui
-msgctxt ""
-"tp_RangeChooser.ui\n"
-"IB_RANGE\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select data range"
-msgstr "Datenbereich auswählen"
-
-#: tp_RangeChooser.ui
-msgctxt ""
-"tp_RangeChooser.ui\n"
-"RB_DATAROWS\n"
-"label\n"
-"string.text"
-msgid "Data series in _rows"
-msgstr "Datenreihen in _Zeilen"
-
-#: tp_RangeChooser.ui
-msgctxt ""
-"tp_RangeChooser.ui\n"
-"RB_DATACOLS\n"
-"label\n"
-"string.text"
-msgid "Data series in _columns"
-msgstr "Datenreihen in _Spalten"
-
-#: tp_RangeChooser.ui
-msgctxt ""
-"tp_RangeChooser.ui\n"
-"CB_FIRST_ROW_ASLABELS\n"
-"label\n"
-"string.text"
-msgid "_First row as label"
-msgstr "_Erste Zeile als Beschriftung"
-
-#: tp_RangeChooser.ui
-msgctxt ""
-"tp_RangeChooser.ui\n"
-"CB_FIRST_COLUMN_ASLABELS\n"
-"label\n"
-"string.text"
-msgid "F_irst column as label"
-msgstr "E_rste Spalte als Beschriftung"
-
-#: tp_RangeChooser.ui
-msgctxt ""
-"tp_RangeChooser.ui\n"
-"CB_TIME_BASED\n"
-"label\n"
-"string.text"
-msgid "Time based charting"
-msgstr "Zeitbasiertes Zeichnen"
-
-#: tp_RangeChooser.ui
-msgctxt ""
-"tp_RangeChooser.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Start Table Index"
-msgstr "Anfang des Tabellenindex"
-
-#: tp_RangeChooser.ui
-msgctxt ""
-"tp_RangeChooser.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "End Table Index"
-msgstr "Ende des Tabellenindex"
-
-#: tp_RangeChooser.ui
-msgctxt ""
-"tp_RangeChooser.ui\n"
-"STR_PAGE_DATA_RANGE\n"
-"label\n"
-"string.text"
-msgid "Data Range"
-msgstr "Datenbereich"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"CBX_REVERSE\n"
-"label\n"
-"string.text"
-msgid "_Reverse direction"
-msgstr "Richtun_g umkehren"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"CBX_LOGARITHM\n"
-"label\n"
-"string.text"
-msgid "_Logarithmic scale"
-msgstr "_Logarithmische Skalierung"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"TXT_AXIS_TYPE\n"
-"label\n"
-"string.text"
-msgid "T_ype"
-msgstr "A_rt"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"LB_AXIS_TYPE\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"LB_AXIS_TYPE\n"
-"1\n"
-"stringlist.text"
-msgid "Text"
-msgstr "Text"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"LB_AXIS_TYPE\n"
-"2\n"
-"stringlist.text"
-msgid "Date"
-msgstr "Datum"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"TXT_MIN\n"
-"label\n"
-"string.text"
-msgid "_Minimum"
-msgstr "_Minimum"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"TXT_MAX\n"
-"label\n"
-"string.text"
-msgid "Ma_ximum"
-msgstr "Ma_ximum"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"CBX_AUTO_MIN\n"
-"label\n"
-"string.text"
-msgid "_Automatic"
-msgstr "A_utomatisch"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"CBX_AUTO_MAX\n"
-"label\n"
-"string.text"
-msgid "A_utomatic"
-msgstr "Au_tomatisch"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"TXT_TIME_RESOLUTION\n"
-"label\n"
-"string.text"
-msgid "R_esolution"
-msgstr "_Auflösung"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"CBX_AUTO_TIME_RESOLUTION\n"
-"label\n"
-"string.text"
-msgid "Automat_ic"
-msgstr "Automat_isch"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"TXT_STEP_MAIN\n"
-"label\n"
-"string.text"
-msgid "Ma_jor interval"
-msgstr "Hau_ptintervall"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"CBX_AUTO_STEP_MAIN\n"
-"label\n"
-"string.text"
-msgid "Au_tomatic"
-msgstr "Automati_sch"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"TXT_STEP_HELP\n"
-"label\n"
-"string.text"
-msgid "Minor inter_val"
-msgstr "Hilfsinter_vall"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"TXT_STEP_HELP_COUNT\n"
-"label\n"
-"string.text"
-msgid "Minor inter_val count"
-msgstr "Hil_fsintervall Schritte"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"CBX_AUTO_STEP_HELP\n"
-"label\n"
-"string.text"
-msgid "Aut_omatic"
-msgstr "Automatis_ch"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"TXT_ORIGIN\n"
-"label\n"
-"string.text"
-msgid "Re_ference value"
-msgstr "Re_ferenzwert"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"CBX_AUTO_ORIGIN\n"
-"label\n"
-"string.text"
-msgid "Automat_ic"
-msgstr "Au_tomatisch"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"FL_SCALE\n"
-"label\n"
-"string.text"
-msgid "Scale"
-msgstr "Skalierung"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"liststoreDATE\n"
-"0\n"
-"stringlist.text"
-msgid "Days"
-msgstr "Tage"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"liststoreDATE\n"
-"1\n"
-"stringlist.text"
-msgid "Months"
-msgstr "Monate"
-
-#: tp_Scale.ui
-msgctxt ""
-"tp_Scale.ui\n"
-"liststoreDATE\n"
-"2\n"
-"stringlist.text"
-msgid "Years"
-msgstr "Jahre"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"RBT_OPT_AXIS_1\n"
-"label\n"
-"string.text"
-msgid "Primary Y axis"
-msgstr "Primäre Y-Achse"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"RBT_OPT_AXIS_2\n"
-"label\n"
-"string.text"
-msgid "Secondary Y axis"
-msgstr "Sekundäre Y-Achse"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Align Data Series to"
-msgstr "Datenreihe ausrichten an"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"FT_GAP\n"
-"label\n"
-"string.text"
-msgid "_Spacing"
-msgstr "Ab_stand"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"FT_OVERLAP\n"
-"label\n"
-"string.text"
-msgid "_Overlap"
-msgstr "Ü_berlappung"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"CB_BARS_SIDE_BY_SIDE\n"
-"label\n"
-"string.text"
-msgid "Show _bars side by side"
-msgstr "_Balken nebeneinander darstellen"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"CB_CONNECTOR\n"
-"label\n"
-"string.text"
-msgid "Connection lines"
-msgstr "Verbindungslinien"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"FT_MISSING_VALUES\n"
-"label\n"
-"string.text"
-msgid "Plot missing values"
-msgstr "Fehlende Werte darstellen"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"RB_DONT_PAINT\n"
-"label\n"
-"string.text"
-msgid "_Leave gap"
-msgstr "_Lücke lassen"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"RB_ASSUME_ZERO\n"
-"label\n"
-"string.text"
-msgid "_Assume zero"
-msgstr "_Null annehmen"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"RB_CONTINUE_LINE\n"
-"label\n"
-"string.text"
-msgid "_Continue line"
-msgstr "Linie _fortsetzen"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"CB_INCLUDE_HIDDEN_CELLS\n"
-"label\n"
-"string.text"
-msgid "Include _values from hidden cells"
-msgstr "_Werte ausgeblendeter Zellen einbeziehen"
-
-#: tp_SeriesToAxis.ui
-msgctxt ""
-"tp_SeriesToAxis.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Plot Options"
-msgstr "Darstellungsoptionen"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"linear\n"
-"label\n"
-"string.text"
-msgid "_Linear"
-msgstr "_Linear"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"logarithmic\n"
-"label\n"
-"string.text"
-msgid "L_ogarithmic"
-msgstr "Lo_garithmisch"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"exponential\n"
-"label\n"
-"string.text"
-msgid "_Exponential"
-msgstr "Ex_ponentiell"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"power\n"
-"label\n"
-"string.text"
-msgid "Po_wer"
-msgstr "_Potenziell"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"polynomial\n"
-"label\n"
-"string.text"
-msgid "_Polynomial"
-msgstr "Pol_ynomisch"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"movingAverage\n"
-"label\n"
-"string.text"
-msgid "_Moving Average"
-msgstr "Gleitender _Durchschnitt"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Degree"
-msgstr "G_rad"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Period"
-msgstr "Per_iode"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Regression Type"
-msgstr "Regressionstyp"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Extrapolate Forward"
-msgstr "_Vorwärts extrapolieren um"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Extrapolate Backward"
-msgstr "Z_urück extrapolieren um"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"setIntercept\n"
-"label\n"
-"string.text"
-msgid "Force _Intercept"
-msgstr "Y-Achsen-_Schnitt erzwingen bei"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"showEquation\n"
-"label\n"
-"string.text"
-msgid "Show E_quation"
-msgstr "Gl_eichung anzeigen"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"showCorrelationCoefficient\n"
-"label\n"
-"string.text"
-msgid "Show _Coefficient of Determination (R²)"
-msgstr "_Bestimmtheitsmaß (R²) anzeigen"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Trendline _Name"
-msgstr "_Name der Trendlinie"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "_X Variable Name"
-msgstr "_X-Variablenname"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "_Y Variable Name"
-msgstr "_Y-Variablenname"
-
-#: tp_Trendline.ui
-msgctxt ""
-"tp_Trendline.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"showlabelsCB\n"
-"label\n"
-"string.text"
-msgid "Sho_w labels"
-msgstr "_Beschriftung anzeigen"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"tile\n"
-"label\n"
-"string.text"
-msgid "_Tile"
-msgstr "_Nebeneinander"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"odd\n"
-"label\n"
-"string.text"
-msgid "St_agger odd"
-msgstr "Hoch-tief _versetzt"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"even\n"
-"label\n"
-"string.text"
-msgid "Stagger _even"
-msgstr "_Tief-hoch versetzt"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"auto\n"
-"label\n"
-"string.text"
-msgid "A_utomatic"
-msgstr "A_utomatisch"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"orderL\n"
-"label\n"
-"string.text"
-msgid "Order"
-msgstr "Ordnung"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"overlapCB\n"
-"label\n"
-"string.text"
-msgid "O_verlap"
-msgstr "Ü_berlappung"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"breakCB\n"
-"label\n"
-"string.text"
-msgid "_Break"
-msgstr "Au_fbrechen"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"textflowL\n"
-"label\n"
-"string.text"
-msgid "Text Flow"
-msgstr "Textfluss"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"degreeL\n"
-"label\n"
-"string.text"
-msgid "_Degrees"
-msgstr "_Grad"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"stackedCB\n"
-"label\n"
-"string.text"
-msgid "Ve_rtically stacked"
-msgstr "_Senkrecht gestapelt"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"labelABCD\n"
-"label\n"
-"string.text"
-msgid "ABCD"
-msgstr "ABCD"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"textdirL\n"
-"label\n"
-"string.text"
-msgid "Te_xt direction:"
-msgstr "Schreib_richtung:"
-
-#: tp_axisLabel.ui
-msgctxt ""
-"tp_axisLabel.ui\n"
-"labelTextOrient\n"
-"label\n"
-"string.text"
-msgid "Text Orientation"
-msgstr "Textausrichtung"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"labelPrimaryXaxis\n"
-"label\n"
-"string.text"
-msgid "_X axis"
-msgstr "_X-Achse"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"labelPrimaryYaxis\n"
-"label\n"
-"string.text"
-msgid "_Y axis"
-msgstr "_Y-Achse"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"labelPrimaryZaxis\n"
-"label\n"
-"string.text"
-msgid "_Z axis"
-msgstr "_Z-Achse"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"labelMainTitle\n"
-"label\n"
-"string.text"
-msgid "_Title"
-msgstr "_Titel"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"labelSubTitle\n"
-"label\n"
-"string.text"
-msgid "_Subtitle"
-msgstr "_Untertitel"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"labelSecondaryXAxis\n"
-"label\n"
-"string.text"
-msgid "X _axis"
-msgstr "X-_Achse"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"labelSecondaryYAxis\n"
-"label\n"
-"string.text"
-msgid "Y ax_is"
-msgstr "Y-A_chse"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"show\n"
-"label\n"
-"string.text"
-msgid "_Display legend"
-msgstr "L_egende anzeigen"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"left\n"
-"label\n"
-"string.text"
-msgid "_Left"
-msgstr "_Links"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"right\n"
-"label\n"
-"string.text"
-msgid "_Right"
-msgstr "_Rechts"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"top\n"
-"label\n"
-"string.text"
-msgid "_Top"
-msgstr "_Oben"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"bottom\n"
-"label\n"
-"string.text"
-msgid "_Bottom"
-msgstr "_Unten"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"Axe\n"
-"label\n"
-"string.text"
-msgid "Choose Titles, Legend, and Grid Settings"
-msgstr "Wählen Sie Titel-, Legenden- und Gittereinstellungen"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"x\n"
-"label\n"
-"string.text"
-msgid "X axis"
-msgstr "_X-Achse"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"y\n"
-"label\n"
-"string.text"
-msgid "Y ax_is"
-msgstr "Y-A_chse"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"z\n"
-"label\n"
-"string.text"
-msgid "Z axi_s"
-msgstr "Z-Ach_se"
-
-#: wizelementspage.ui
-msgctxt ""
-"wizelementspage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Display Grids"
-msgstr "Gitter anzeigen"
diff --git a/source/de/connectivity/messages.po b/source/de/connectivity/messages.po
new file mode 100644
index 00000000000..82a518cc986
--- /dev/null
+++ b/source/de/connectivity/messages.po
@@ -0,0 +1,832 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"PO-Revision-Date: 2017-06-09 04:45+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1496983521.000000\n"
+
+#. KjDmE
+#: conn_error_message.src
+msgctxt "256 + 2*100 + 0"
+msgid "The record operation has been vetoed."
+msgstr "Die Datensatzoperation wurde abgelehnt."
+
+#. xAZXk
+#: conn_error_message.src
+msgctxt "256 + 2*200 + 0"
+msgid "The statement contains a cyclic reference to one or more sub queries."
+msgstr ""
+"Die Anweisung enthält einen zirkulären Verweis auf eine oder mehrere "
+"Unterabfragen."
+
+#. sppzX
+#: conn_error_message.src
+msgctxt "256 + 2*300 + 0"
+msgid "The name must not contain any slashes ('/')."
+msgstr "Der Name darf keine Schrägstriche ('/') enthalten."
+
+#. pcGch
+#: conn_error_message.src
+msgctxt "256 + 2*301 + 0"
+msgid "$1$ is no SQL conform identifier."
+msgstr "$1$ ist kein SQL-konformer Bezeichner."
+
+#. rhNKU
+#: conn_error_message.src
+msgctxt "256 + 2*302 + 0"
+msgid "Query names must not contain quote characters."
+msgstr "Abfragenamen dürfen keine Anführungszeichen enthalten."
+
+#. vt9Xy
+#: conn_error_message.src
+msgctxt "256 + 2*303 + 0"
+msgid "The name '$1$' is already in use in the database."
+msgstr "Der Name '$1$' wird in dieser Datenbank bereits benutzt."
+
+#. mHdB5
+#: conn_error_message.src
+msgctxt "256 + 2*304 + 0"
+msgid "No connection to the database exists."
+msgstr "Es besteht keine Verbindung zur Datenbank."
+
+#. qsN7W
+#: conn_error_message.src
+msgctxt "256 + 2*500 + 0"
+msgid "No $1$ exists."
+msgstr "$1$ nicht vorhanden."
+
+#. xvK2D
+#: conn_error_message.src
+msgctxt "256 + 2*550 + 0"
+msgid "Unable to display the complete table content. Please apply a filter."
+msgstr ""
+"Der Tabelleninhalt kann nicht vollständig angezeigt werden. Weisen Sie einen"
+" Filter zu."
+
+#. 9LXDp
+#: conn_shared_res.src
+msgctxt "STR_ERR_EXECUTING_QUERY"
+msgid "An error occurred while executing the query."
+msgstr "Fehler beim Ausführen der Abfrage."
+
+#. 7yRgf
+#: conn_shared_res.src
+msgctxt "STR_QUERY_AT_LEAST_ONE_TABLES"
+msgid "The query can not be executed. It needs at least one table."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. Es wird mindestens eine Spalte "
+"benötigt."
+
+#. aBhA8
+#: conn_shared_res.src
+msgctxt "STR_NO_COUNT_SUPPORT"
+msgid "The driver does not support the 'COUNT' function."
+msgstr "Der Treiber unterstützt die Funktion 'ANZAHL' nicht."
+
+#. FB59h
+#: conn_shared_res.src
+msgctxt "STR_STMT_TYPE_NOT_SUPPORTED"
+msgid "This statement type not supported by this database driver."
+msgstr "Diese Abfrageart wird von diesem Datenbanktreiber nicht unterstützt."
+
+#. KodDj
+#: conn_shared_res.src
+msgctxt "STR_UNSPECIFIED_ERROR"
+msgid "An unknown error occurred."
+msgstr "Ein unbekannter Fehler ist aufgetreten."
+
+#. 2CZNZ
+#: conn_shared_res.src
+msgctxt "STR_ERROR_REFRESH_ROW"
+msgid "An error occurred while refreshing the current row."
+msgstr "Beim Auffrischen der aktuellen Zeile ist ein Fehler aufgetreten."
+
+#. DJhQp
+#: conn_shared_res.src
+msgctxt "STR_ERROR_GET_ROW"
+msgid "An error occurred while getting the current row."
+msgstr "Beim Ermitteln der aktuellen Zeile ist ein Fehler aufgetreten."
+
+#. s9ves
+#: conn_shared_res.src
+msgctxt "STR_QUERY_INVALID_IS_NULL_COLUMN"
+msgid ""
+"The query can not be executed. The 'IS NULL' can only be used with a column "
+"name."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. 'IST LEER' kann nur in Verbindung "
+"mit einem Spaltennamen genutzt werden."
+
+#. kLhAy
+#: conn_shared_res.src
+msgctxt "STR_ILLEGAL_MOVEMENT"
+msgid "Illegal cursor movement occurred."
+msgstr "Eine ungültige Bewegung des Cursors ist aufgetreten."
+
+#. vGtCJ
+#: conn_shared_res.src
+msgctxt "STR_COMMIT_ROW"
+msgid "Please commit row '$position$' before update rows or insert new rows."
+msgstr ""
+"Bitte bestätigen Sie Zeile '$position$', bevor Sie weitere Zeilen bearbeiten"
+" oder neue Zeilen einfügen."
+
+#. 7DcRU
+#: conn_shared_res.src
+msgctxt "STR_NO_CONNECTION_GIVEN"
+msgid "It doesn't exist a connection to the database."
+msgstr "Es besteht keine Verbindung zur Datenbank."
+
+#. 5BYEX
+#: conn_shared_res.src
+msgctxt "STR_WRONG_PARAM_INDEX"
+msgid ""
+"You tried to set a parameter at position '$pos$' but there is/are only "
+"'$count$' parameter(s) allowed. One reason may be that the property "
+"\"ParameterNameSubstitution\" is not set to TRUE in the data source."
+msgstr ""
+"Sie haben versucht, an Position '$pos$' einen Parameter einzufügen, es "
+"ist/sind aber nur '$count$' Parameter erlaubt. Eine Ursache könnte sein, "
+"dass die Eigenschaft \"ParameterNameSubstitution\" in der Datenquelle nicht "
+"auf WAHR gesetzt ist."
+
+#. 6FnrV
+#: conn_shared_res.src
+msgctxt "STR_NO_INPUTSTREAM"
+msgid "The input stream was not set."
+msgstr "Der InputStream wurde nicht gesetzt."
+
+#. Davdp
+#: conn_shared_res.src
+msgctxt "STR_NO_ELEMENT_NAME"
+msgid "There is no element named '$name$'."
+msgstr "Es existiert kein Element mit Namen '$name$'."
+
+#. CWktu
+#: conn_shared_res.src
+msgctxt "STR_INVALID_BOOKMARK"
+msgid "Invalid bookmark value"
+msgstr "Ungültiger Lesezeichenwert."
+
+#. VXSEP
+#: conn_shared_res.src
+msgctxt "STR_PRIVILEGE_NOT_GRANTED"
+msgid "Privilege not granted: Only table privileges can be granted."
+msgstr "Rechte nicht gewährt: Es können nur Tabellenrechte gewährt werden."
+
+#. DZf3v
+#: conn_shared_res.src
+msgctxt "STR_PRIVILEGE_NOT_REVOKED"
+msgid "Privilege not revoked: Only table privileges can be revoked."
+msgstr "Rechte nicht entzogen: Es können nur Tabellenrechte entzogen werden."
+
+#. qTZj7
+#: conn_shared_res.src
+msgctxt "STR_ERRORMSG_SEQUENCE"
+msgid "Function sequence error."
+msgstr "Fehler in der Funktionsfolge."
+
+#. scUDb
+#: conn_shared_res.src
+msgctxt "STR_INVALID_INDEX"
+msgid "Invalid descriptor index."
+msgstr "Ungültiger Deskriptor-Index."
+
+#. MAAeW
+#: conn_shared_res.src
+msgctxt "STR_UNSUPPORTED_FUNCTION"
+msgid "The driver does not support the function '$functionname$'."
+msgstr "Der Treiber unterstützt die Funktion '$functionname$' nicht."
+
+#. FAp7x
+#: conn_shared_res.src
+msgctxt "STR_UNSUPPORTED_FEATURE"
+msgid ""
+"The driver does not support the functionality for '$featurename$'. It is not"
+" implemented."
+msgstr ""
+"Der Treiber unterstützt die für '$featurename$' nötige Funktionalität nicht."
+" Diese ist nicht implementiert."
+
+#. zXVCV
+#: conn_shared_res.src
+msgctxt "STR_FORMULA_WRONG"
+msgid "The formula for TypeInfoSettings is wrong!"
+msgstr "Die Formel für TypeInfoSettings ist falsch!"
+
+#. ZWq6D
+#: conn_shared_res.src
+msgctxt "STR_STRING_LENGTH_EXCEEDED"
+msgid ""
+"The string '$string$' exceeds the maximum length of $maxlen$ characters when"
+" converted to the target character set '$charset$'."
+msgstr ""
+"Die Zeichenkette '$string$' überschreitet die Höchstlänge von $maxlen$ "
+"Zeichen, wenn sie in den Zielzeichensatz '$charset$' umgewandelt wird."
+
+#. CYSBr
+#: conn_shared_res.src
+msgctxt "STR_CANNOT_CONVERT_STRING"
+msgid ""
+"The string '$string$' cannot be converted using the encoding '$charset$'."
+msgstr ""
+"Die Zeichenkette '$string$' kann nicht mithilfe der Zeichenkodierung "
+"'$charset$' umgewandelt werden."
+
+#. sSzsJ
+#: conn_shared_res.src
+msgctxt "STR_URI_SYNTAX_ERROR"
+msgid "The connection URL is invalid."
+msgstr "Die URL der Verbindung ist ungültig."
+
+#. ULTqE
+#: conn_shared_res.src
+msgctxt "STR_QUERY_TOO_COMPLEX"
+msgid "The query can not be executed. It is too complex."
+msgstr "Die Abfrage kann nicht ausgeführt werden. Sie ist zu komplex."
+
+#. UQYpN
+#: conn_shared_res.src
+msgctxt "STR_OPERATOR_TOO_COMPLEX"
+msgid "The query can not be executed. The operator is too complex."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. Der Operator ist zu komplex."
+
+#. DmQcr
+#: conn_shared_res.src
+msgctxt "STR_QUERY_INVALID_LIKE_COLUMN"
+msgid ""
+"The query can not be executed. You cannot use 'LIKE' with columns of this "
+"type."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. 'WIE' kann mit Spalten dieses Typs"
+" nicht verwendet werden."
+
+#. EMgKF
+#: conn_shared_res.src
+msgctxt "STR_QUERY_INVALID_LIKE_STRING"
+msgid ""
+"The query can not be executed. 'LIKE' can be used with a string argument "
+"only."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. 'WIE' kann nur mit einem "
+"Zeichenkettenargument benutzt werden."
+
+#. PBG3H
+#: conn_shared_res.src
+msgctxt "STR_QUERY_NOT_LIKE_TOO_COMPLEX"
+msgid ""
+"The query can not be executed. The 'NOT LIKE' condition is too complex."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. Die Bedingung 'NICHT WIE' ist zu "
+"komplex."
+
+#. CWeME
+#: conn_shared_res.src
+msgctxt "STR_QUERY_LIKE_WILDCARD"
+msgid ""
+"The query can not be executed. The 'LIKE' condition contains wildcard in the"
+" middle."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. Die Bedingung 'WIE' enthält "
+"Platzhalter in der Mitte."
+
+#. NK7eq
+#: conn_shared_res.src
+msgctxt "STR_QUERY_LIKE_WILDCARD_MANY"
+msgid ""
+"The query can not be executed. The 'LIKE' condition contains too many "
+"wildcards."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. Die Bedingung 'WIE' enthält zu "
+"viele Platzhalter."
+
+#. nADdF
+#: conn_shared_res.src
+msgctxt "STR_INVALID_COLUMNNAME"
+msgid "The column name '$columnname$' is not valid."
+msgstr "Der Spaltenname '$columnname$' ist ungültig."
+
+#. FT3Zb
+#: conn_shared_res.src
+msgctxt "STR_INVALID_COLUMN_SELECTION"
+msgid "The statement contains an invalid selection of columns."
+msgstr "Die Abfrage enthält eine ungültige Auswahl von Spalten."
+
+#. sEFWB
+#: conn_shared_res.src
+msgctxt "STR_COLUMN_NOT_UPDATEABLE"
+msgid "The column at position '$position$' could not be updated."
+msgstr "Die Spalte an Position '$position$' konnte nicht aktualisiert werden."
+
+#. iLNAb
+#: conn_shared_res.src
+msgctxt "STR_COULD_NOT_LOAD_FILE"
+msgid "The file $filename$ could not be loaded."
+msgstr "Die Datei $filename$ konnte nicht geladen werden."
+
+#. jq62z
+#: conn_shared_res.src
+msgctxt "STR_LOAD_FILE_ERROR_MESSAGE"
+msgid ""
+"The attempt to load the file resulted in the following error message ($exception_type$):\n"
+"\n"
+"$error_message$"
+msgstr ""
+"Der Versuch, die Datei zu laden, führte zu folgender Fehlermeldung ($exception_type$):\n"
+"\n"
+"$error_message$"
+
+#. sbrdS
+#: conn_shared_res.src
+msgctxt "STR_TYPE_NOT_CONVERT"
+msgid "The type could not be converted."
+msgstr "Der Typ konnte nicht konvertiert werden."
+
+#. 3L6uG
+#: conn_shared_res.src
+msgctxt "STR_INVALID_COLUMN_DESCRIPTOR_ERROR"
+msgid "Could not append column: invalid column descriptor."
+msgstr ""
+"Die Spalte konnte nicht angehängt werden: ungültiger Spalten-Descriptor."
+
+#. 4GMmY
+#: conn_shared_res.src
+msgctxt "STR_INVALID_GROUP_DESCRIPTOR_ERROR"
+msgid "Could not create group: invalid object descriptor."
+msgstr "Die Gruppe konnte nicht erzeugt werden: ungültiger Objekt-Descriptor."
+
+#. MDKgr
+#: conn_shared_res.src
+msgctxt "STR_INVALID_INDEX_DESCRIPTOR_ERROR"
+msgid "Could not create index: invalid object descriptor."
+msgstr "Der Index konnte nicht erzeugt werden: ungültiger Objekt-Deskriptor."
+
+#. jPjxi
+#: conn_shared_res.src
+msgctxt "STR_INVALID_KEY_DESCRIPTOR_ERROR"
+msgid "Could not create key: invalid object descriptor."
+msgstr ""
+"Der Schlüssel konnte nicht erzeugt werden: ungültiger Objekt-Descriptor."
+
+#. jaDH3
+#: conn_shared_res.src
+msgctxt "STR_INVALID_TABLE_DESCRIPTOR_ERROR"
+msgid "Could not create table: invalid object descriptor."
+msgstr ""
+"Die Tabelle konnte nicht erzeugt werden: ungültiger Objekt-Descriptor."
+
+#. utNzu
+#: conn_shared_res.src
+msgctxt "STR_INVALID_USER_DESCRIPTOR_ERROR"
+msgid "Could not create user: invalid object descriptor."
+msgstr ""
+"Der Benutzer konnte nicht erzeugt werden: ungültiger Objekt-Descriptor."
+
+#. 4TE9R
+#: conn_shared_res.src
+msgctxt "STR_INVALID_VIEW_DESCRIPTOR_ERROR"
+msgid "Could not create view: invalid object descriptor."
+msgstr "Die Sicht konnte nicht erzeugt werden: ungültiger Objekt-Descriptor."
+
+#. BrHQp
+#: conn_shared_res.src
+msgctxt "STR_VIEW_NO_COMMAND_ERROR"
+msgid "Could not create view: no command object."
+msgstr "Die Sicht konnte nicht erzeugt werden: kein Befehls-Objekt."
+
+#. GgFCn
+#: conn_shared_res.src
+msgctxt "STR_NO_CONNECTION"
+msgid ""
+"The connection could not be created. May be the necessary data provider is "
+"not installed."
+msgstr ""
+"Die Verbindung konnte nicht hergestellt werden. Möglicherweise ist der "
+"benötigte Datenprovider nicht installiert."
+
+#. GRZEu
+#: conn_shared_res.src
+msgctxt "STR_COULD_NOT_DELETE_INDEX"
+msgid ""
+"The index could not be deleted. An unknown error while accessing the file "
+"system occurred."
+msgstr ""
+"Der Index konnte nicht gelöscht werden. Es ist ein unbekannter Fehler beim "
+"Zugriff auf das Dateisystem aufgetreten."
+
+#. JbDnu
+#: conn_shared_res.src
+msgctxt "STR_ONL_ONE_COLUMN_PER_INDEX"
+msgid "The index could not be created. Only one column per index is allowed."
+msgstr ""
+"Der Index konnte nicht erzeugt werden. Es ist nur eine Spalte pro Index "
+"erlaubt."
+
+#. rB3XE
+#: conn_shared_res.src
+msgctxt "STR_COULD_NOT_CREATE_INDEX_NOT_UNIQUE"
+msgid "The index could not be created. The values are not unique."
+msgstr ""
+"Der Index konnte nicht erzeugt werden. Die Werte sind nicht eindeutig."
+
+#. f8DTu
+#: conn_shared_res.src
+msgctxt "STR_COULD_NOT_CREATE_INDEX"
+msgid "The index could not be created. An unknown error appeared."
+msgstr ""
+"Der Index konnte nicht erzeugt werden. Ein unbekannter Fehler ist "
+"aufgetreten."
+
+#. HPZuZ
+#: conn_shared_res.src
+msgctxt "STR_COULD_NOT_CREATE_INDEX_NAME"
+msgid ""
+"The index could not be created. The file '$filename$' is used by an other "
+"index."
+msgstr ""
+"Der Index konnte nicht erzeugt werden. Die Datei '$filename$' wird von einem"
+" anderen Index benutzt."
+
+#. GcK7B
+#: conn_shared_res.src
+msgctxt "STR_COULD_NOT_CREATE_INDEX_KEYSIZE"
+msgid ""
+"The index could not be created. The size of the chosen column is too big."
+msgstr ""
+"Der Index konnte nicht erzeugt werden. Die Größe der ausgewählten Spalte ist"
+" zu groß."
+
+#. vWZ84
+#: conn_shared_res.src
+msgctxt "STR_SQL_NAME_ERROR"
+msgid "The name '$name$' doesn't match SQL naming constraints."
+msgstr "Der Name '$name$' entspricht nicht den SQL-Namensregeln."
+
+#. wv2Cx
+#: conn_shared_res.src
+msgctxt "STR_COULD_NOT_DELETE_FILE"
+msgid "The file $filename$ could not be deleted."
+msgstr "Die Datei $filename$ konnte nicht gelöscht werden."
+
+#. rp3rF
+#: conn_shared_res.src
+msgctxt "STR_INVALID_COLUMN_TYPE"
+msgid "Invalid column type for column '$columnname$'."
+msgstr "Ungültiger Spaltentyp für Spalte '$columnname$'."
+
+#. jAStU
+#: conn_shared_res.src
+msgctxt "STR_INVALID_COLUMN_PRECISION"
+msgid "Invalid precision for column '$columnname$'."
+msgstr "Ungültige Genauigkeit für Spalte '$columnname$'."
+
+#. zJbtr
+#: conn_shared_res.src
+msgctxt "STR_INVALID_PRECISION_SCALE"
+msgid "Precision is less than scale for column '$columnname$'."
+msgstr ""
+"Genauigkeit ist kleiner als Anzahl der Nachkommastellen für Spalte "
+"'$columnname$'."
+
+#. PDCV3
+#: conn_shared_res.src
+msgctxt "STR_INVALID_COLUMN_NAME_LENGTH"
+msgid "Invalid column name length for column '$columnname$'."
+msgstr "Ungültige Länge des Spaltennamens für Spalte '$columnname$'."
+
+#. NZWGq
+#: conn_shared_res.src
+msgctxt "STR_DUPLICATE_VALUE_IN_COLUMN"
+msgid "Duplicate value found in column '$columnname$'."
+msgstr "Doppelte Werte in Spalte '$columnname$' gefunden."
+
+#. sfaxE
+#: conn_shared_res.src
+msgctxt "STR_INVALID_COLUMN_DECIMAL_VALUE"
+msgid ""
+"The '$columnname$' column has been defined as a \"Decimal\" type, the max. length is $precision$ characters (with $scale$ decimal places).\n"
+"\n"
+"The specified value \"$value$ is longer than the number of digits allowed."
+msgstr ""
+"Die Spalte '$columnname$' wurde als \"Dezimal\" deklariert, die maximale Länge beträgt $precision$ Zeichen (mit $scale$ Nachkommastellen).\n"
+"\n"
+"Der angegebene Wert \"$value$\" ist länger als die zulässige Anzahl von Ziffern."
+
+#. ZvEz9
+#: conn_shared_res.src
+msgctxt "STR_COLUMN_NOT_ALTERABLE"
+msgid ""
+"The column '$columnname$' could not be altered. May be the file system is "
+"write protected."
+msgstr ""
+"Die Spalte '$columnname$' konnte nicht geändert werden. Eventuell ist das "
+"Dateisystem schreibgeschützt."
+
+#. 4BgE9
+#: conn_shared_res.src
+msgctxt "STR_INVALID_COLUMN_VALUE"
+msgid ""
+"The column '$columnname$' could not be updated. The value is invalid for "
+"that column."
+msgstr ""
+"Die Spalte '$columnname$' konnte nicht aktualisiert werden. Der Wert für "
+"diese Spalte ist ungültig."
+
+#. dFAFB
+#: conn_shared_res.src
+msgctxt "STR_COLUMN_NOT_ADDABLE"
+msgid ""
+"The column '$columnname$' could not be added. May be the file system is "
+"write protected."
+msgstr ""
+"Die Spalte '$columnname$' konnte nicht hinzugefügt werden. Eventuell ist das"
+" Dateisystem schreibgeschützt."
+
+#. zk3QB
+#: conn_shared_res.src
+msgctxt "STR_COLUMN_NOT_DROP"
+msgid ""
+"The column at position '$position$' could not be dropped. May be the file "
+"system is write protected."
+msgstr ""
+"Die Spalte an Position '$position$' konnte nicht gelöscht werden. Eventuell "
+"ist das Dateisystem schreibgeschützt."
+
+#. hAwmi
+#: conn_shared_res.src
+msgctxt "STR_TABLE_NOT_DROP"
+msgid ""
+"The table '$tablename$' could not be dropped. May be the file system is "
+"write protected."
+msgstr ""
+"Die Tabelle '$tablename$' konnte nicht gelöscht werden. Eventuell ist das "
+"Dateisystem schreibgeschützt."
+
+#. R3BGx
+#: conn_shared_res.src
+msgctxt "STR_COULD_NOT_ALTER_TABLE"
+msgid "The table could not be altered."
+msgstr "Die Tabelle konnte nicht geändert werden."
+
+#. UuoNm
+#: conn_shared_res.src
+msgctxt "STR_INVALID_DBASE_FILE"
+msgid "The file '$filename$' is an invalid (or unrecognized) dBase file."
+msgstr ""
+"Die Datei '$filename$' ist eine ungültige (oder nicht erkannte) dBase-Datei."
+
+#. LhHTA
+#: conn_shared_res.src
+msgctxt "STR_CANNOT_OPEN_BOOK"
+msgid "Cannot open Evolution address book."
+msgstr "Das Evolution Adressbuch kann nicht geöffnet werden."
+
+#. sxbEF
+#: conn_shared_res.src
+msgctxt "STR_SORT_BY_COL_ONLY"
+msgid "Can only sort by table columns."
+msgstr "Es kann nur nach Tabellenspalten sortiert werden."
+
+#. E4wn2
+#: conn_shared_res.src
+msgctxt "STR_QUERY_COMPLEX_COUNT"
+msgid ""
+"The query can not be executed. It is too complex. Only \"COUNT(*)\" is "
+"supported."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. Sie ist zu komplex. Nur "
+"\"ANZAHL(*)\" wird unterstützt."
+
+#. 8VQo4
+#: conn_shared_res.src
+msgctxt "STR_QUERY_INVALID_BETWEEN"
+msgid ""
+"The query can not be executed. The 'BETWEEN' arguments are not correct."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. Die Argumente für 'ZWISCHEN' sind "
+"nicht korrekt."
+
+#. 4oK7N
+#: conn_shared_res.src
+msgctxt "STR_QUERY_FUNCTION_NOT_SUPPORTED"
+msgid "The query can not be executed. The function is not supported."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. Die Funktion wird nicht "
+"unterstützt."
+
+#. kCjVU
+#: conn_shared_res.src
+msgctxt "STR_TABLE_READONLY"
+msgid "The table can not be changed. It is read only."
+msgstr "Die Tabelle kann nicht verändert werden. Sie ist nur lesbar."
+
+#. cqWEv
+#: conn_shared_res.src
+msgctxt "STR_DELETE_ROW"
+msgid ""
+"The row could not be deleted. The option \"Display inactive records\" is "
+"set."
+msgstr ""
+"Die Zeile kann nicht gelöscht werden. Die Option \"Auch gelöschte Datensätze"
+" anzeigen\" ist aktiv."
+
+#. TZTfv
+#: conn_shared_res.src
+msgctxt "STR_ROW_ALREADY_DELETED"
+msgid "The row could not be deleted. It is already deleted."
+msgstr "Die Zeile kann nicht gelöscht werden. Sie ist bereits gelöscht."
+
+#. fuJot
+#: conn_shared_res.src
+msgctxt "STR_QUERY_MORE_TABLES"
+msgid "The query can not be executed. It contains more than one table."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. Sie enthält mehr als eine Tabelle."
+
+#. w7AzE
+#: conn_shared_res.src
+msgctxt "STR_QUERY_NO_TABLE"
+msgid "The query can not be executed. It contains no valid table."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. Sie enthält keine gültige Tabelle."
+
+#. CRsGn
+#: conn_shared_res.src
+msgctxt "STR_QUERY_NO_COLUMN"
+msgid "The query can not be executed. It contains no valid columns."
+msgstr ""
+"Die Abfrage kann nicht ausgeführt werden. Sie enthält keine gültigen "
+"Spalten."
+
+#. ucGyR
+#: conn_shared_res.src
+msgctxt "STR_INVALID_PARA_COUNT"
+msgid "The count of the given parameter values doesn't match the parameters."
+msgstr ""
+"Die Anzahl der angegebenen Parameterwerte entspricht nicht der Anzahl der "
+"Parameter."
+
+#. 3EDJB
+#: conn_shared_res.src
+msgctxt "STR_NO_VALID_FILE_URL"
+msgid "The URL '$URL$' is not valid. A connection can not be created."
+msgstr ""
+"Die URL '$URL$' ist ungültig. Es kann keine Verbindung hergestellt werden."
+
+#. 9n4j2
+#: conn_shared_res.src
+msgctxt "STR_NO_CLASSNAME"
+msgid "The driver class '$classname$' could not be loaded."
+msgstr "Die Treiberklasse '$classname$' konnte nicht geladen werden."
+
+#. jbnZZ
+#: conn_shared_res.src
+msgctxt "STR_NO_JAVA"
+msgid "No Java installation could be found. Please check your installation."
+msgstr ""
+"Es konnte keine Java-Installation gefunden werden. Bitte prüfen Sie Ihre "
+"Installation."
+
+#. iKnFy
+#: conn_shared_res.src
+msgctxt "STR_NO_RESULTSET"
+msgid "The execution of the query doesn't return a valid result set."
+msgstr "Die Ausführung der Abfrage gibt keine gültige Ergebnismenge zurück."
+
+#. kiYDS
+#: conn_shared_res.src
+msgctxt "STR_NO_ROWCOUNT"
+msgid "The execution of the update statement doesn't effect any rows."
+msgstr "Die Ausführung der Aktualisierungsabfrage betrifft keine Zeile."
+
+#. xiRq3
+#: conn_shared_res.src
+msgctxt "STR_NO_CLASSNAME_PATH"
+msgid "The additional driver class path is '$classpath$'."
+msgstr "Der Pfad für zusätzliche Treiberklassen ist '$classpath$'."
+
+#. QxNVP
+#: conn_shared_res.src
+msgctxt "STR_UNKNOWN_PARA_TYPE"
+msgid "The type of parameter at position '$position$' is unknown."
+msgstr "Der Typ des Parameters an Position '$position$' ist nicht bekannt."
+
+#. ghuVV
+#: conn_shared_res.src
+msgctxt "STR_UNKNOWN_COLUMN_TYPE"
+msgid "The type of column at position '$position$' is unknown."
+msgstr "Der Typ der Spalte an Position '$position$' ist nicht bekannt."
+
+#. 2M8qG
+#: conn_shared_res.src
+msgctxt "STR_NO_KDE_INST"
+msgid "No suitable KDE installation was found."
+msgstr "Es wurde keine passende KDE-Installation gefunden."
+
+#. aCWED
+#: conn_shared_res.src
+msgctxt "STR_KDE_VERSION_TOO_OLD"
+msgid ""
+"KDE version $major$.$minor$ or higher is required to access the KDE Address "
+"Book."
+msgstr ""
+"KDE Version $major$.$minor$ oder höher wird für den Zugriff auf das KDE-"
+"Adressbuch benötigt."
+
+#. LVhyq
+#: conn_shared_res.src
+msgctxt "STR_KDE_VERSION_TOO_NEW"
+msgid ""
+"The found KDE version is too new. Only KDE up to version $major$.$minor$ is "
+"known to work with this product.\n"
+msgstr ""
+"Die gefundene KDE Version ist zu neu. Nur für KDE bis Version "
+"$major$.$minor$ ist bekannt, dass es mit diesem Produkt zusammenarbeitet.\n"
+
+#. gnHHh
+#: conn_shared_res.src
+msgctxt "STR_KDE_VERSION_TOO_NEW_WORK_AROUND"
+msgid ""
+"If you are sure that your KDE version works, you might execute the following Basic macro to disable this version check:\n"
+"\n"
+msgstr ""
+"Falls Sie sicher sind, dass ihre KDE-Version funktioniert, können Sie folgendes Basic-Makro ausführen, um die Prüfung abzuschalten:\n"
+"\n"
+
+#. 3FmFX
+#: conn_shared_res.src
+msgctxt "STR_PARA_ONLY_PREPARED"
+msgid "Parameters can appear only in prepared statements."
+msgstr "Parameter können nur in vorbereiteten Anweisungen auftreten."
+
+#. CB7pj
+#: conn_shared_res.src
+msgctxt "STR_NO_TABLE"
+msgid "No such table!"
+msgstr "Tabelle nicht gefunden!"
+
+#. CDY8S
+#: conn_shared_res.src
+msgctxt "STR_NO_MAC_OS_FOUND"
+msgid "No suitable Mac OS installation was found."
+msgstr "Es wurde keine passende Mac OS Installation gefunden."
+
+#. HNSzq
+#: conn_shared_res.src
+msgctxt "STR_NO_STORAGE"
+msgid "The connection can not be established. No storage or URL was given."
+msgstr ""
+"Die Verbindung konnte nicht hergestellt werden. Es wurde kein "
+"Speicherbereich oder keine URL angegeben."
+
+#. SZSmZ
+#: conn_shared_res.src
+msgctxt "STR_INVALID_FILE_URL"
+msgid ""
+"The given URL contains no valid local file system path. Please check the "
+"location of your database file."
+msgstr ""
+"Der angegebene URL enthält keinen gültigen Pfad zum lokalen Dateisystem. "
+"Bitte überprüfen Sie den Speicherort Ihrer Datenbankdatei."
+
+#. muHcn
+#: conn_shared_res.src
+msgctxt "STR_NO_TABLE_CONTAINER"
+msgid "An error occurred while obtaining the connection's table container."
+msgstr ""
+"Es ist ein Fehler beim Beschaffen des Tabellenbehälters der Verbindung "
+"aufgetreten."
+
+#. Rm4Le
+#: conn_shared_res.src
+msgctxt "STR_NO_TABLENAME"
+msgid "There is no table named '$tablename$'."
+msgstr "Es existiert keine Tabelle mit dem Namen '$tablename$'."
+
+#. 3BxCF
+#: conn_shared_res.src
+msgctxt "STR_NO_DOCUMENTUI"
+msgid "The provided DocumentUI is not allowed to be NULL."
+msgstr "Die angegebene DocumentUI darf nicht NULL sein."
+
+#. VLEMM
+#: conn_shared_res.src
+msgctxt "STR_ERROR_NEW_VERSION"
+msgid ""
+"The connection could not be established. The database was created by a newer"
+" version of %PRODUCTNAME."
+msgstr ""
+"Die Verbindung konnte nicht hergestellt werden. Die Datenbank wurde mit "
+"einer neueren Version von %PRODUCTNAME erstellt."
diff --git a/source/de/connectivity/source/resource.po b/source/de/connectivity/source/resource.po
deleted file mode 100644
index 0864713c5b5..00000000000
--- a/source/de/connectivity/source/resource.po
+++ /dev/null
@@ -1,913 +0,0 @@
-#. extracted from connectivity/source/resource
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-06-09 04:45+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496983521.000000\n"
-
-#: conn_error_message.src
-msgctxt ""
-"conn_error_message.src\n"
-"256 + 2*100 + 0\n"
-"string.text"
-msgid "The record operation has been vetoed."
-msgstr "Die Datensatzoperation wurde abgelehnt."
-
-#: conn_error_message.src
-msgctxt ""
-"conn_error_message.src\n"
-"256 + 2*200 + 0\n"
-"string.text"
-msgid "The statement contains a cyclic reference to one or more sub queries."
-msgstr "Die Anweisung enthält einen zirkulären Verweis auf eine oder mehrere Unterabfragen."
-
-#: conn_error_message.src
-msgctxt ""
-"conn_error_message.src\n"
-"256 + 2*300 + 0\n"
-"string.text"
-msgid "The name must not contain any slashes ('/')."
-msgstr "Der Name darf keine Schrägstriche ('/') enthalten."
-
-#: conn_error_message.src
-msgctxt ""
-"conn_error_message.src\n"
-"256 + 2*301 + 0\n"
-"string.text"
-msgid "$1$ is no SQL conform identifier."
-msgstr "$1$ ist kein SQL-konformer Bezeichner."
-
-#: conn_error_message.src
-msgctxt ""
-"conn_error_message.src\n"
-"256 + 2*302 + 0\n"
-"string.text"
-msgid "Query names must not contain quote characters."
-msgstr "Abfragenamen dürfen keine Anführungszeichen enthalten."
-
-#: conn_error_message.src
-msgctxt ""
-"conn_error_message.src\n"
-"256 + 2*303 + 0\n"
-"string.text"
-msgid "The name '$1$' is already in use in the database."
-msgstr "Der Name '$1$' wird in dieser Datenbank bereits benutzt."
-
-#: conn_error_message.src
-msgctxt ""
-"conn_error_message.src\n"
-"256 + 2*304 + 0\n"
-"string.text"
-msgid "No connection to the database exists."
-msgstr "Es besteht keine Verbindung zur Datenbank."
-
-#: conn_error_message.src
-msgctxt ""
-"conn_error_message.src\n"
-"256 + 2*500 + 0\n"
-"string.text"
-msgid "No $1$ exists."
-msgstr "$1$ nicht vorhanden."
-
-#: conn_error_message.src
-msgctxt ""
-"conn_error_message.src\n"
-"256 + 2*550 + 0\n"
-"string.text"
-msgid "Unable to display the complete table content. Please apply a filter."
-msgstr "Der Tabelleninhalt kann nicht vollständig angezeigt werden. Weisen Sie einen Filter zu."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_ERR_EXECUTING_QUERY\n"
-"string.text"
-msgid "An error occurred while executing the query."
-msgstr "Fehler beim Ausführen der Abfrage."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_AT_LEAST_ONE_TABLES\n"
-"string.text"
-msgid "The query can not be executed. It needs at least one table."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Es wird mindestens eine Spalte benötigt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_COUNT_SUPPORT\n"
-"string.text"
-msgid "The driver does not support the 'COUNT' function."
-msgstr "Der Treiber unterstützt die Funktion 'ANZAHL' nicht."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_STMT_TYPE_NOT_SUPPORTED\n"
-"string.text"
-msgid "This statement type not supported by this database driver."
-msgstr "Diese Abfrageart wird von diesem Datenbanktreiber nicht unterstützt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_UNSPECIFIED_ERROR\n"
-"string.text"
-msgid "An unknown error occurred."
-msgstr "Ein unbekannter Fehler ist aufgetreten."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_ERROR_REFRESH_ROW\n"
-"string.text"
-msgid "An error occurred while refreshing the current row."
-msgstr "Beim Auffrischen der aktuellen Zeile ist ein Fehler aufgetreten."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_ERROR_GET_ROW\n"
-"string.text"
-msgid "An error occurred while getting the current row."
-msgstr "Beim Ermitteln der aktuellen Zeile ist ein Fehler aufgetreten."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_INVALID_IS_NULL_COLUMN\n"
-"string.text"
-msgid "The query can not be executed. The 'IS NULL' can only be used with a column name."
-msgstr "Die Abfrage kann nicht ausgeführt werden. 'IST LEER' kann nur in Verbindung mit einem Spaltennamen genutzt werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_ILLEGAL_MOVEMENT\n"
-"string.text"
-msgid "Illegal cursor movement occurred."
-msgstr "Eine ungültige Bewegung des Cursors ist aufgetreten."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_COMMIT_ROW\n"
-"string.text"
-msgid "Please commit row '$position$' before update rows or insert new rows."
-msgstr "Bitte bestätigen Sie Zeile '$position$', bevor Sie weitere Zeilen bearbeiten oder neue Zeilen einfügen."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_CONNECTION_GIVEN\n"
-"string.text"
-msgid "It doesn't exist a connection to the database."
-msgstr "Es besteht keine Verbindung zur Datenbank."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_WRONG_PARAM_INDEX\n"
-"string.text"
-msgid "You tried to set a parameter at position '$pos$' but there is/are only '$count$' parameter(s) allowed. One reason may be that the property \"ParameterNameSubstitution\" is not set to TRUE in the data source."
-msgstr "Sie haben versucht, an Position '$pos$' einen Parameter einzufügen, es ist/sind aber nur '$count$' Parameter erlaubt. Eine Ursache könnte sein, dass die Eigenschaft \"ParameterNameSubstitution\" in der Datenquelle nicht auf WAHR gesetzt ist."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_INPUTSTREAM\n"
-"string.text"
-msgid "The input stream was not set."
-msgstr "Der InputStream wurde nicht gesetzt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_ELEMENT_NAME\n"
-"string.text"
-msgid "There is no element named '$name$'."
-msgstr "Es existiert kein Element mit Namen '$name$'."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_BOOKMARK\n"
-"string.text"
-msgid "Invalid bookmark value"
-msgstr "Ungültiger Lesezeichenwert."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_PRIVILEGE_NOT_GRANTED\n"
-"string.text"
-msgid "Privilege not granted: Only table privileges can be granted."
-msgstr "Rechte nicht gewährt: Es können nur Tabellenrechte gewährt werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_PRIVILEGE_NOT_REVOKED\n"
-"string.text"
-msgid "Privilege not revoked: Only table privileges can be revoked."
-msgstr "Rechte nicht entzogen: Es können nur Tabellenrechte entzogen werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_ERRORMSG_SEQUENCE\n"
-"string.text"
-msgid "Function sequence error."
-msgstr "Fehler in der Funktionsfolge."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_INDEX\n"
-"string.text"
-msgid "Invalid descriptor index."
-msgstr "Ungültiger Deskriptor-Index."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_UNSUPPORTED_FUNCTION\n"
-"string.text"
-msgid "The driver does not support the function '$functionname$'."
-msgstr "Der Treiber unterstützt die Funktion '$functionname$' nicht."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_UNSUPPORTED_FEATURE\n"
-"string.text"
-msgid "The driver does not support the functionality for '$featurename$'. It is not implemented."
-msgstr "Der Treiber unterstützt die für '$featurename$' nötige Funktionalität nicht. Diese ist nicht implementiert."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_FORMULA_WRONG\n"
-"string.text"
-msgid "The formula for TypeInfoSettings is wrong!"
-msgstr "Die Formel für TypeInfoSettings ist falsch!"
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_STRING_LENGTH_EXCEEDED\n"
-"string.text"
-msgid "The string '$string$' exceeds the maximum length of $maxlen$ characters when converted to the target character set '$charset$'."
-msgstr "Die Zeichenkette '$string$' überschreitet die Höchstlänge von $maxlen$ Zeichen, wenn sie in den Zielzeichensatz '$charset$' umgewandelt wird."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_CANNOT_CONVERT_STRING\n"
-"string.text"
-msgid "The string '$string$' cannot be converted using the encoding '$charset$'."
-msgstr "Die Zeichenkette '$string$' kann nicht mithilfe der Zeichenkodierung '$charset$' umgewandelt werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_URI_SYNTAX_ERROR\n"
-"string.text"
-msgid "The connection URL is invalid."
-msgstr "Die URL der Verbindung ist ungültig."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_TOO_COMPLEX\n"
-"string.text"
-msgid "The query can not be executed. It is too complex."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Sie ist zu komplex."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_OPERATOR_TOO_COMPLEX\n"
-"string.text"
-msgid "The query can not be executed. The operator is too complex."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Der Operator ist zu komplex."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_INVALID_LIKE_COLUMN\n"
-"string.text"
-msgid "The query can not be executed. You cannot use 'LIKE' with columns of this type."
-msgstr "Die Abfrage kann nicht ausgeführt werden. 'WIE' kann mit Spalten dieses Typs nicht verwendet werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_INVALID_LIKE_STRING\n"
-"string.text"
-msgid "The query can not be executed. 'LIKE' can be used with a string argument only."
-msgstr "Die Abfrage kann nicht ausgeführt werden. 'WIE' kann nur mit einem Zeichenkettenargument benutzt werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_NOT_LIKE_TOO_COMPLEX\n"
-"string.text"
-msgid "The query can not be executed. The 'NOT LIKE' condition is too complex."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Die Bedingung 'NICHT WIE' ist zu komplex."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_LIKE_WILDCARD\n"
-"string.text"
-msgid "The query can not be executed. The 'LIKE' condition contains wildcard in the middle."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Die Bedingung 'WIE' enthält Platzhalter in der Mitte."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_LIKE_WILDCARD_MANY\n"
-"string.text"
-msgid "The query can not be executed. The 'LIKE' condition contains too many wildcards."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Die Bedingung 'WIE' enthält zu viele Platzhalter."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_COLUMNNAME\n"
-"string.text"
-msgid "The column name '$columnname$' is not valid."
-msgstr "Der Spaltenname '$columnname$' ist ungültig."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_COLUMN_SELECTION\n"
-"string.text"
-msgid "The statement contains an invalid selection of columns."
-msgstr "Die Abfrage enthält eine ungültige Auswahl von Spalten."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_COLUMN_NOT_UPDATEABLE\n"
-"string.text"
-msgid "The column at position '$position$' could not be updated."
-msgstr "Die Spalte an Position '$position$' konnte nicht aktualisiert werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_COULD_NOT_LOAD_FILE\n"
-"string.text"
-msgid "The file $filename$ could not be loaded."
-msgstr "Die Datei $filename$ konnte nicht geladen werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_LOAD_FILE_ERROR_MESSAGE\n"
-"string.text"
-msgid ""
-"The attempt to load the file resulted in the following error message ($exception_type$):\n"
-"\n"
-"$error_message$"
-msgstr ""
-"Der Versuch, die Datei zu laden, führte zu folgender Fehlermeldung ($exception_type$):\n"
-"\n"
-"$error_message$"
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_TYPE_NOT_CONVERT\n"
-"string.text"
-msgid "The type could not be converted."
-msgstr "Der Typ konnte nicht konvertiert werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_COLUMN_DESCRIPTOR_ERROR\n"
-"string.text"
-msgid "Could not append column: invalid column descriptor."
-msgstr "Die Spalte konnte nicht angehängt werden: ungültiger Spalten-Descriptor."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_GROUP_DESCRIPTOR_ERROR\n"
-"string.text"
-msgid "Could not create group: invalid object descriptor."
-msgstr "Die Gruppe konnte nicht erzeugt werden: ungültiger Objekt-Descriptor."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_INDEX_DESCRIPTOR_ERROR\n"
-"string.text"
-msgid "Could not create index: invalid object descriptor."
-msgstr "Der Index konnte nicht erzeugt werden: ungültiger Objekt-Deskriptor."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_KEY_DESCRIPTOR_ERROR\n"
-"string.text"
-msgid "Could not create key: invalid object descriptor."
-msgstr "Der Schlüssel konnte nicht erzeugt werden: ungültiger Objekt-Descriptor."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_TABLE_DESCRIPTOR_ERROR\n"
-"string.text"
-msgid "Could not create table: invalid object descriptor."
-msgstr "Die Tabelle konnte nicht erzeugt werden: ungültiger Objekt-Descriptor."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_USER_DESCRIPTOR_ERROR\n"
-"string.text"
-msgid "Could not create user: invalid object descriptor."
-msgstr "Der Benutzer konnte nicht erzeugt werden: ungültiger Objekt-Descriptor."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_VIEW_DESCRIPTOR_ERROR\n"
-"string.text"
-msgid "Could not create view: invalid object descriptor."
-msgstr "Die Sicht konnte nicht erzeugt werden: ungültiger Objekt-Descriptor."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_VIEW_NO_COMMAND_ERROR\n"
-"string.text"
-msgid "Could not create view: no command object."
-msgstr "Die Sicht konnte nicht erzeugt werden: kein Befehls-Objekt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_CONNECTION\n"
-"string.text"
-msgid "The connection could not be created. May be the necessary data provider is not installed."
-msgstr "Die Verbindung konnte nicht hergestellt werden. Möglicherweise ist der benötigte Datenprovider nicht installiert."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_COULD_NOT_DELETE_INDEX\n"
-"string.text"
-msgid "The index could not be deleted. An unknown error while accessing the file system occurred."
-msgstr "Der Index konnte nicht gelöscht werden. Es ist ein unbekannter Fehler beim Zugriff auf das Dateisystem aufgetreten."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_ONL_ONE_COLUMN_PER_INDEX\n"
-"string.text"
-msgid "The index could not be created. Only one column per index is allowed."
-msgstr "Der Index konnte nicht erzeugt werden. Es ist nur eine Spalte pro Index erlaubt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_COULD_NOT_CREATE_INDEX_NOT_UNIQUE\n"
-"string.text"
-msgid "The index could not be created. The values are not unique."
-msgstr "Der Index konnte nicht erzeugt werden. Die Werte sind nicht eindeutig."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_COULD_NOT_CREATE_INDEX\n"
-"string.text"
-msgid "The index could not be created. An unknown error appeared."
-msgstr "Der Index konnte nicht erzeugt werden. Ein unbekannter Fehler ist aufgetreten."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_COULD_NOT_CREATE_INDEX_NAME\n"
-"string.text"
-msgid "The index could not be created. The file '$filename$' is used by an other index."
-msgstr "Der Index konnte nicht erzeugt werden. Die Datei '$filename$' wird von einem anderen Index benutzt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_COULD_NOT_CREATE_INDEX_KEYSIZE\n"
-"string.text"
-msgid "The index could not be created. The size of the chosen column is too big."
-msgstr "Der Index konnte nicht erzeugt werden. Die Größe der ausgewählten Spalte ist zu groß."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_SQL_NAME_ERROR\n"
-"string.text"
-msgid "The name '$name$' doesn't match SQL naming constraints."
-msgstr "Der Name '$name$' entspricht nicht den SQL-Namensregeln."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_COULD_NOT_DELETE_FILE\n"
-"string.text"
-msgid "The file $filename$ could not be deleted."
-msgstr "Die Datei $filename$ konnte nicht gelöscht werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_COLUMN_TYPE\n"
-"string.text"
-msgid "Invalid column type for column '$columnname$'."
-msgstr "Ungültiger Spaltentyp für Spalte '$columnname$'."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_COLUMN_PRECISION\n"
-"string.text"
-msgid "Invalid precision for column '$columnname$'."
-msgstr "Ungültige Genauigkeit für Spalte '$columnname$'."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_PRECISION_SCALE\n"
-"string.text"
-msgid "Precision is less than scale for column '$columnname$'."
-msgstr "Genauigkeit ist kleiner als Anzahl der Nachkommastellen für Spalte '$columnname$'."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_COLUMN_NAME_LENGTH\n"
-"string.text"
-msgid "Invalid column name length for column '$columnname$'."
-msgstr "Ungültige Länge des Spaltennamens für Spalte '$columnname$'."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_DUPLICATE_VALUE_IN_COLUMN\n"
-"string.text"
-msgid "Duplicate value found in column '$columnname$'."
-msgstr "Doppelte Werte in Spalte '$columnname$' gefunden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_COLUMN_DECIMAL_VALUE\n"
-"string.text"
-msgid ""
-"The '$columnname$' column has been defined as a \"Decimal\" type, the max. length is $precision$ characters (with $scale$ decimal places).\n"
-"\n"
-"The specified value \"$value$ is longer than the number of digits allowed."
-msgstr ""
-"Die Spalte '$columnname$' wurde als \"Dezimal\" deklariert, die maximale Länge beträgt $precision$ Zeichen (mit $scale$ Nachkommastellen).\n"
-"\n"
-"Der angegebene Wert \"$value$\" ist länger als die zulässige Anzahl von Ziffern."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_COLUMN_NOT_ALTERABLE\n"
-"string.text"
-msgid "The column '$columnname$' could not be altered. May be the file system is write protected."
-msgstr "Die Spalte '$columnname$' konnte nicht geändert werden. Eventuell ist das Dateisystem schreibgeschützt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_COLUMN_VALUE\n"
-"string.text"
-msgid "The column '$columnname$' could not be updated. The value is invalid for that column."
-msgstr "Die Spalte '$columnname$' konnte nicht aktualisiert werden. Der Wert für diese Spalte ist ungültig."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_COLUMN_NOT_ADDABLE\n"
-"string.text"
-msgid "The column '$columnname$' could not be added. May be the file system is write protected."
-msgstr "Die Spalte '$columnname$' konnte nicht hinzugefügt werden. Eventuell ist das Dateisystem schreibgeschützt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_COLUMN_NOT_DROP\n"
-"string.text"
-msgid "The column at position '$position$' could not be dropped. May be the file system is write protected."
-msgstr "Die Spalte an Position '$position$' konnte nicht gelöscht werden. Eventuell ist das Dateisystem schreibgeschützt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_TABLE_NOT_DROP\n"
-"string.text"
-msgid "The table '$tablename$' could not be dropped. May be the file system is write protected."
-msgstr "Die Tabelle '$tablename$' konnte nicht gelöscht werden. Eventuell ist das Dateisystem schreibgeschützt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_COULD_NOT_ALTER_TABLE\n"
-"string.text"
-msgid "The table could not be altered."
-msgstr "Die Tabelle konnte nicht geändert werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_DBASE_FILE\n"
-"string.text"
-msgid "The file '$filename$' is an invalid (or unrecognized) dBase file."
-msgstr "Die Datei '$filename$' ist eine ungültige (oder nicht erkannte) dBase-Datei."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_CANNOT_OPEN_BOOK\n"
-"string.text"
-msgid "Cannot open Evolution address book."
-msgstr "Das Evolution Adressbuch kann nicht geöffnet werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_SORT_BY_COL_ONLY\n"
-"string.text"
-msgid "Can only sort by table columns."
-msgstr "Es kann nur nach Tabellenspalten sortiert werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_COMPLEX_COUNT\n"
-"string.text"
-msgid "The query can not be executed. It is too complex. Only \"COUNT(*)\" is supported."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Sie ist zu komplex. Nur \"ANZAHL(*)\" wird unterstützt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_INVALID_BETWEEN\n"
-"string.text"
-msgid "The query can not be executed. The 'BETWEEN' arguments are not correct."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Die Argumente für 'ZWISCHEN' sind nicht korrekt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_FUNCTION_NOT_SUPPORTED\n"
-"string.text"
-msgid "The query can not be executed. The function is not supported."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Die Funktion wird nicht unterstützt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_TABLE_READONLY\n"
-"string.text"
-msgid "The table can not be changed. It is read only."
-msgstr "Die Tabelle kann nicht verändert werden. Sie ist nur lesbar."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_DELETE_ROW\n"
-"string.text"
-msgid "The row could not be deleted. The option \"Display inactive records\" is set."
-msgstr "Die Zeile kann nicht gelöscht werden. Die Option \"Auch gelöschte Datensätze anzeigen\" ist aktiv."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_ROW_ALREADY_DELETED\n"
-"string.text"
-msgid "The row could not be deleted. It is already deleted."
-msgstr "Die Zeile kann nicht gelöscht werden. Sie ist bereits gelöscht."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_MORE_TABLES\n"
-"string.text"
-msgid "The query can not be executed. It contains more than one table."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Sie enthält mehr als eine Tabelle."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_NO_TABLE\n"
-"string.text"
-msgid "The query can not be executed. It contains no valid table."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Sie enthält keine gültige Tabelle."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_QUERY_NO_COLUMN\n"
-"string.text"
-msgid "The query can not be executed. It contains no valid columns."
-msgstr "Die Abfrage kann nicht ausgeführt werden. Sie enthält keine gültigen Spalten."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_PARA_COUNT\n"
-"string.text"
-msgid "The count of the given parameter values doesn't match the parameters."
-msgstr "Die Anzahl der angegebenen Parameterwerte entspricht nicht der Anzahl der Parameter."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_VALID_FILE_URL\n"
-"string.text"
-msgid "The URL '$URL$' is not valid. A connection can not be created."
-msgstr "Die URL '$URL$' ist ungültig. Es kann keine Verbindung hergestellt werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_CLASSNAME\n"
-"string.text"
-msgid "The driver class '$classname$' could not be loaded."
-msgstr "Die Treiberklasse '$classname$' konnte nicht geladen werden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_JAVA\n"
-"string.text"
-msgid "No Java installation could be found. Please check your installation."
-msgstr "Es konnte keine Java-Installation gefunden werden. Bitte prüfen Sie Ihre Installation."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_RESULTSET\n"
-"string.text"
-msgid "The execution of the query doesn't return a valid result set."
-msgstr "Die Ausführung der Abfrage gibt keine gültige Ergebnismenge zurück."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_ROWCOUNT\n"
-"string.text"
-msgid "The execution of the update statement doesn't effect any rows."
-msgstr "Die Ausführung der Aktualisierungsabfrage betrifft keine Zeile."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_CLASSNAME_PATH\n"
-"string.text"
-msgid "The additional driver class path is '$classpath$'."
-msgstr "Der Pfad für zusätzliche Treiberklassen ist '$classpath$'."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_UNKNOWN_PARA_TYPE\n"
-"string.text"
-msgid "The type of parameter at position '$position$' is unknown."
-msgstr "Der Typ des Parameters an Position '$position$' ist nicht bekannt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_UNKNOWN_COLUMN_TYPE\n"
-"string.text"
-msgid "The type of column at position '$position$' is unknown."
-msgstr "Der Typ der Spalte an Position '$position$' ist nicht bekannt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_KDE_INST\n"
-"string.text"
-msgid "No suitable KDE installation was found."
-msgstr "Es wurde keine passende KDE-Installation gefunden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_KDE_VERSION_TOO_OLD\n"
-"string.text"
-msgid "KDE version $major$.$minor$ or higher is required to access the KDE Address Book."
-msgstr "KDE Version $major$.$minor$ oder höher wird für den Zugriff auf das KDE-Adressbuch benötigt."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_KDE_VERSION_TOO_NEW\n"
-"string.text"
-msgid "The found KDE version is too new. Only KDE up to version $major$.$minor$ is known to work with this product.\n"
-msgstr "Die gefundene KDE Version ist zu neu. Nur für KDE bis Version $major$.$minor$ ist bekannt, dass es mit diesem Produkt zusammenarbeitet.\n"
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_KDE_VERSION_TOO_NEW_WORK_AROUND\n"
-"string.text"
-msgid ""
-"If you are sure that your KDE version works, you might execute the following Basic macro to disable this version check:\n"
-"\n"
-msgstr ""
-"Falls Sie sicher sind, dass ihre KDE-Version funktioniert, können Sie folgendes Basic-Makro ausführen, um die Prüfung abzuschalten:\n"
-"\n"
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_PARA_ONLY_PREPARED\n"
-"string.text"
-msgid "Parameters can appear only in prepared statements."
-msgstr "Parameter können nur in vorbereiteten Anweisungen auftreten."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_TABLE\n"
-"string.text"
-msgid "No such table!"
-msgstr "Tabelle nicht gefunden!"
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_MAC_OS_FOUND\n"
-"string.text"
-msgid "No suitable Mac OS installation was found."
-msgstr "Es wurde keine passende Mac OS Installation gefunden."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_STORAGE\n"
-"string.text"
-msgid "The connection can not be established. No storage or URL was given."
-msgstr "Die Verbindung konnte nicht hergestellt werden. Es wurde kein Speicherbereich oder keine URL angegeben."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_INVALID_FILE_URL\n"
-"string.text"
-msgid "The given URL contains no valid local file system path. Please check the location of your database file."
-msgstr "Der angegebene URL enthält keinen gültigen Pfad zum lokalen Dateisystem. Bitte überprüfen Sie den Speicherort Ihrer Datenbankdatei."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_TABLE_CONTAINER\n"
-"string.text"
-msgid "An error occurred while obtaining the connection's table container."
-msgstr "Es ist ein Fehler beim Beschaffen des Tabellenbehälters der Verbindung aufgetreten."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_TABLENAME\n"
-"string.text"
-msgid "There is no table named '$tablename$'."
-msgstr "Es existiert keine Tabelle mit dem Namen '$tablename$'."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_NO_DOCUMENTUI\n"
-"string.text"
-msgid "The provided DocumentUI is not allowed to be NULL."
-msgstr "Die angegebene DocumentUI darf nicht NULL sein."
-
-#: conn_shared_res.src
-msgctxt ""
-"conn_shared_res.src\n"
-"STR_ERROR_NEW_VERSION\n"
-"string.text"
-msgid "The connection could not be established. The database was created by a newer version of %PRODUCTNAME."
-msgstr "Die Verbindung konnte nicht hergestellt werden. Die Datenbank wurde mit einer neueren Version von %PRODUCTNAME erstellt."
diff --git a/source/de/cui/messages.po b/source/de/cui/messages.po
new file mode 100644
index 00000000000..073e5cc1740
--- /dev/null
+++ b/source/de/cui/messages.po
@@ -0,0 +1,14074 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"PO-Revision-Date: 2017-05-20 05:46+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1495259196.000000\n"
+
+#. zvqUJ
+#: border.src
+msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
+msgid "Set No Borders"
+msgstr "Keine Umrandung zeichnen"
+
+#. ABKEK
+#: border.src
+msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
+msgid "Set Outer Border Only"
+msgstr "Nur äußere Umrandung zeichnen"
+
+#. ygU8P
+#: border.src
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
+msgid "Set Outer Border and Horizontal Lines"
+msgstr "Äußere Umrandung und horizontale Linien zeichnen"
+
+#. q5KJ8
+#: border.src
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
+msgid "Set Outer Border and All Inner Lines"
+msgstr "Äußere Umrandung und alle inneren Linien zeichnen"
+
+#. H5s9X
+#: border.src
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr "Äußere Umrandung zeichnen, ohne innere Linien zu verändern"
+
+#. T5crG
+#: border.src
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
+msgid "Set Diagonal Lines Only"
+msgstr "Nur diagonale Linien zeichnen"
+
+#. S6AAA
+#: border.src
+msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
+msgid "Set All Four Borders"
+msgstr "Komplette Umrandung zeichnen"
+
+#. tknFJ
+#: border.src
+msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Set Left and Right Borders Only"
+msgstr "Nur linken und rechten Rand zeichnen"
+
+#. hSmnW
+#: border.src
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Set Top and Bottom Borders Only"
+msgstr "Nur oberen und unteren Rand zeichnen"
+
+#. Dy2UG
+#: border.src
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
+msgid "Set Left Border Only"
+msgstr "Nur linken Rand zeichnen"
+
+#. nCjXG
+#: border.src
+msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr "Oberen und unteren Rand und alle inneren Linien zeichnen"
+
+#. 46Fq7
+#: border.src
+msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr "Linken und rechten Rand und alle inneren Linien zeichnen"
+
+#. cZX7G
+#: border.src
+msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
+msgid "No Shadow"
+msgstr "Kein Schatten"
+
+#. bzAHG
+#: border.src
+msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
+msgid "Cast Shadow to Bottom Right"
+msgstr "Schatten nach rechts unten werfen"
+
+#. FjBGC
+#: border.src
+msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
+msgid "Cast Shadow to Top Right"
+msgstr "Schatten nach rechts oben werfen"
+
+#. 5BkoC
+#: border.src
+msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
+msgid "Cast Shadow to Bottom Left"
+msgstr "Schatten nach links unten werfen"
+
+#. GYB8M
+#: border.src
+msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
+msgid "Cast Shadow to Top Left"
+msgstr "Schatten nach links oben werfen"
+
+#. BGGvD
+#: frmdirlbox.src
+msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
+msgid "Left-to-right (LTR)"
+msgstr "Links-nach-rechts (LTR)"
+
+#. Ct9UG
+#: frmdirlbox.src
+msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
+msgid "Right-to-left (RTL)"
+msgstr "Rechts-nach-links (RTL)"
+
+#. XFhAz
+#: frmdirlbox.src
+msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
+msgid "Use superordinate object settings"
+msgstr "Einstellungen des Objektes verwenden"
+
+#. G2Jyh
+#: frmdirlbox.src
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
+msgid "Left-to-right (horizontal)"
+msgstr "Links-nach-rechts (horizontal)"
+
+#. b6Guf
+#: frmdirlbox.src
+msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
+msgid "Right-to-left (horizontal)"
+msgstr "Rechts-nach-links (horizontal)"
+
+#. yQGoC
+#: frmdirlbox.src
+msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
+msgid "Right-to-left (vertical)"
+msgstr "Rechts-nach-links (vertikal)"
+
+#. k7B2r
+#: frmdirlbox.src
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
+msgid "Left-to-right (vertical)"
+msgstr "Links-nach-rechts (vertikal)"
+
+#. UCFD6
+#: strings.src
+msgctxt "RID_SVXSTR_DESC_GRADIENT"
+msgid "Please enter a name for the gradient:"
+msgstr "Geben Sie hier bitte den Namen für den Farbverlauf ein:"
+
+#. UDvKR
+#: strings.src
+msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
+msgid "Please enter a name for the bitmap:"
+msgstr "Geben Sie hier bitte den Namen für die Bitmap ein:"
+
+#. QXqJD
+#: strings.src
+msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
+msgid "Please enter a name for the external bitmap:"
+msgstr "Geben Sie hier bitte den Namen für die externe Bitmap ein:"
+
+#. SrS6X
+#: strings.src
+msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
+msgid "Please enter a name for the pattern:"
+msgstr "Geben Sie hier bitte den Namen für das Muster ein:"
+
+#. yD7AW
+#: strings.src
+msgctxt "RID_SVXSTR_DESC_LINESTYLE"
+msgid "Please enter a name for the line style:"
+msgstr "Geben Sie hier bitte den Namen für den Linienstil ein:"
+
+#. FQDrh
+#: strings.src
+msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
+msgid ""
+"The line style was modified without saving. \n"
+"Modify the selected line style or add a new line style."
+msgstr ""
+"Der Linienstil wurde geändert und nicht gesichert.\n"
+"Sie können den ausgewählten Linienstil ändern oder einen neuen Linienstil hinzufügen."
+
+#. Z5Dkg
+#: strings.src
+msgctxt "RID_SVXSTR_DESC_HATCH"
+msgid "Please enter a name for the hatching:"
+msgstr "Geben Sie hier bitte den Namen für die Schraffur ein:"
+
+#. rvyBi
+#: strings.src
+msgctxt "RID_SVXSTR_CHANGE"
+msgid "Modify"
+msgstr "Ändern"
+
+#. ZDhBm
+#: strings.src
+msgctxt "RID_SVXSTR_ADD"
+msgid "Add"
+msgstr "Hinzufügen"
+
+#. QgAFH
+#: strings.src
+msgctxt "RID_SVXSTR_DESC_COLOR"
+msgid "Please enter a name for the new color:"
+msgstr "Geben Sie hier bitte den Namen für die neue Farbe ein:"
+
+#. GKnJR
+#: strings.src
+msgctxt "RID_SVXSTR_TABLE"
+msgid "Table"
+msgstr "Tabelle"
+
+#. J6FBw
+#: strings.src
+msgctxt "RID_SVXSTR_DESC_LINEEND"
+msgid "Please enter a name for the new arrowhead:"
+msgstr "Geben Sie hier bitte den Namen für die neue Linienspitze ein:"
+
+#. xD9BU
+#: strings.src
+msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
+msgid "No %1"
+msgstr "Kein %1"
+
+#. NMGqL
+#: strings.src
+msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
+msgid "Family"
+msgstr "Familie"
+
+#. VTJGq
+#: strings.src
+msgctxt "RID_SVXSTR_CHARNAME_FONT"
+msgid "Font"
+msgstr "Schrift"
+
+#. EDcuk
+#: strings.src
+msgctxt "RID_SVXSTR_CHARNAME_STYLE"
+msgid "Style"
+msgstr "Stil"
+
+#. LDDaB
+#: strings.src
+msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
+msgid "Typeface"
+msgstr "Schriftschnitt"
+
+#. Zr8Xa
+#: strings.src
+msgctxt "RID_SVXSTR_CHARNAME_HIGHLIGHTING"
+msgid "Highlight Color"
+msgstr "Farbe für Hervorhebungen"
+
+#. BcWHA
+#: strings.src
+msgctxt "RID_SVXSTR_USE_REPLACE"
+msgid "Use replacement table"
+msgstr "Ersetzungstabelle anwenden"
+
+#. L8BEE
+#: strings.src
+msgctxt "RID_SVXSTR_CPTL_STT_WORD"
+msgid "Correct TWo INitial CApitals"
+msgstr "ZWei GRoßbuchstaben am WOrtanfang korrigieren"
+
+#. p5h3s
+#: strings.src
+msgctxt "RID_SVXSTR_CPTL_STT_SENT"
+msgid "Capitalize first letter of every sentence"
+msgstr "Jeden Satz mit einem Großbuchstaben beginnen"
+
+#. prrWd
+#: strings.src
+msgctxt "RID_SVXSTR_BOLD_UNDER"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr "Automatisch *fett*, /kursiv/, -durchstreichen- und _unterstreichen_"
+
+#. a89xT
+#: strings.src
+msgctxt "RID_SVXSTR_NO_DBL_SPACES"
+msgid "Ignore double spaces"
+msgstr "Doppelte Leerzeichen ignorieren"
+
+#. qEA6h
+#: strings.src
+msgctxt "RID_SVXSTR_DETECT_URL"
+msgid "URL Recognition"
+msgstr "URL erkennen"
+
+#. JfySE
+#: strings.src
+msgctxt "RID_SVXSTR_DASH"
+msgid "Replace dashes"
+msgstr "Gedankenstriche ersetzen"
+
+#. u2BuA
+#: strings.src
+msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
+msgid "Correct accidental use of cAPS LOCK key"
+msgstr "Unbeabsichtigten Gebrauch der fESTSTELL-tASTE korrigieren"
+
+#. GZqG9
+#: strings.src
+msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
+msgid ""
+"Add non-breaking space before specific punctuation marks in French text"
+msgstr ""
+"Fügt ein geschütztes Leerzeichen vor bestimmten Satzzeichen in französischen"
+" Text ein"
+
+#. NDmW9
+#: strings.src
+msgctxt "RID_SVXSTR_ORDINAL"
+msgid "Format ordinal numbers suffixes (1st -> 1^st)"
+msgstr "Suffixe von Ordnungszahlen formatieren (1st -> 1^st)"
+
+#. Rc6Zg
+#: strings.src
+msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
+msgid "Remove blank paragraphs"
+msgstr "Leere Absätze entfernen"
+
+#. F6HCc
+#: strings.src
+msgctxt "RID_SVXSTR_USER_STYLE"
+msgid "Replace Custom Styles"
+msgstr "Benutzervorlagen ersetzen"
+
+#. vL6yM
+#: strings.src
+msgctxt "RID_SVXSTR_BULLET"
+msgid "Replace bullets with: "
+msgstr "Aufzählungszeichen ersetzen durch: "
+
+#. DzBTQ
+#: strings.src
+msgctxt "RID_SVXSTR_RIGHT_MARGIN"
+msgid "Combine single line paragraphs if length greater than"
+msgstr "Zusammenfassen von einzeiligen Absätzen ab"
+
+#. 9UBAe
+#: strings.src
+msgctxt "RID_SVXSTR_NUM"
+msgid "Bulleted and numbered lists. Bullet symbol: "
+msgstr "Aufzählungszeichen und Nummerierung. Aufzählungszeichen: "
+
+#. BJVGT
+#: strings.src
+msgctxt "RID_SVXSTR_BORDER"
+msgid "Apply border"
+msgstr "Umrandung zuweisen"
+
+#. bXpcq
+#: strings.src
+msgctxt "RID_SVXSTR_CREATE_TABLE"
+msgid "Create table"
+msgstr "Tabelle erzeugen"
+
+#. RvEBo
+#: strings.src
+msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
+msgid "Apply Styles"
+msgstr "Vorlagen zuweisen"
+
+#. 6MGUe
+#: strings.src
+msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
+msgid "Delete spaces and tabs at beginning and end of paragraph"
+msgstr "Lösche Leerzeichen und Tabulatoren am Absatzanfang und -ende"
+
+#. R9Kke
+#: strings.src
+msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
+msgid "Delete spaces and tabs at end and start of line"
+msgstr "Lösche Leerzeichen und Tabulatoren zwischen Zeilenende und -anfang"
+
+#. GFpkR
+#: strings.src
+msgctxt "RID_SVXSTR_CONNECTOR"
+msgid "Connector"
+msgstr "Verbinder"
+
+#. XDp8d
+#: strings.src
+msgctxt "RID_SVXSTR_DIMENSION_LINE"
+msgid "Dimension line"
+msgstr "Bemaßungslinie"
+
+#. rArar
+#: strings.src
+msgctxt "RID_SVXSTR_LOAD_ERROR"
+msgid "The selected module could not be loaded."
+msgstr "Das ausgewählte Modul konnte nicht geladen werden."
+
+#. Mxt3D
+#: strings.src
+msgctxt "RID_SVXSTR_STARTQUOTE"
+msgid "Start Quote"
+msgstr "Am Wortanfang"
+
+#. o8nY6
+#: strings.src
+msgctxt "RID_SVXSTR_ENDQUOTE"
+msgid "End Quote"
+msgstr "Am Wortende"
+
+#. VNK5b
+#: cfg.src
+msgctxt "RID_SVXSTR_NEW_MENU"
+msgid "New Menu %n"
+msgstr "Neues Menü %n"
+
+#. dJXBJ
+#: cfg.src
+msgctxt "RID_SVXSTR_NEW_TOOLBAR"
+msgid "New Toolbar %n"
+msgstr "Neue Symbolleiste %n"
+
+#. PCa2G
+#: cfg.src
+msgctxt "RID_SVXSTR_MOVE_MENU"
+msgid "Move Menu"
+msgstr "Menü verschieben"
+
+#. KbZFf
+#: cfg.src
+msgctxt "RID_SVXSTR_ADD_SUBMENU"
+msgid "Add Submenu"
+msgstr "Untermenü hinzufügen"
+
+#. w2qNv
+#: cfg.src
+msgctxt "RID_SVXSTR_SUBMENU_NAME"
+msgid "Submenu name"
+msgstr "Name des Untermenüs"
+
+#. 8E7ck
+#: cfg.src
+msgctxt "RID_SVXSTR_MENU_ADDCOMMANDS_DESCRIPTION"
+msgid ""
+"To add a command to a menu, select the category and then the command. You "
+"can also drag the command to the Commands list of the Menus tab page in the "
+"Customize dialog."
+msgstr ""
+"Um einen Befehl zu einem Menü hinzuzufügen, wählen Sie zuerst eine Kategorie"
+" und dann den Befehl. Alternativ ziehen Sie den Befehl in die Liste Befehle "
+"des Registers Menüs im Dialog Anpassen."
+
+#. qJgZw
+#: cfg.src
+msgctxt "RID_SVXSTR_DELETE_ICON_CONFIRM"
+msgid "Are you sure to delete the image?"
+msgstr "Sind Sie sicher, dass Sie das Symbol löschen möchten?"
+
+#. d6e9K
+#: cfg.src
+msgctxt "RID_SVXSTR_REPLACE_ICON_WARNING"
+msgid ""
+"The icon %ICONNAME is already contained in the image list.\n"
+"Would you like to replace the existing icon?"
+msgstr ""
+"Das Symbol %ICONNAME befindet sich bereits in der Symbolleiste.\n"
+"Möchten Sie das vorhandene Symbol ersetzen?"
+
+#. FRvQe
+#: cfg.src
+msgctxt "RID_SVXSTR_REPLACE_ICON_CONFIRM"
+msgid "Confirm Icon Replacement"
+msgstr "Symbolersetzung bestätigen"
+
+#. xC2Wc
+#: cfg.src
+msgctxt "RID_SVXSTR_YESTOALL"
+msgid "Yes to All"
+msgstr "Ja alle"
+
+#. HiSAE
+#: cfg.src
+msgctxt "RID_SVXSTR_PRODUCTNAME_TOOLBARS"
+msgid "%PRODUCTNAME %MODULENAME Toolbars"
+msgstr "%PRODUCTNAME %MODULENAME Symbolleisten"
+
+#. P4L6L
+#: cfg.src
+msgctxt "RID_SVXSTR_PRODUCTNAME_CONTEXTMENUS"
+msgid "%PRODUCTNAME %MODULENAME Context Menus"
+msgstr "%PRODUCTNAME %MODULENAME Kontextmenüs"
+
+#. 4xJvV
+#: cfg.src
+msgctxt "RID_SVXSTR_TOOLBAR"
+msgid "Toolbar"
+msgstr "Symbolleiste"
+
+#. yFCdF
+#: cfg.src
+msgctxt "RID_SVXSTR_TOOLBAR_CONTENT"
+msgid "Toolbar Content"
+msgstr "Symbolleisteninhalt"
+
+#. AH8BC
+#: cfg.src
+msgctxt "RID_SVXSTR_COMMANDS"
+msgid "Commands"
+msgstr "Befehle"
+
+#. jCwDZ
+#: cfg.src
+msgctxt "RID_SXVSTR_CONFIRM_DELETE_TOOLBAR"
+msgid ""
+"There are no more commands on the toolbar. Do you want to delete the "
+"toolbar?"
+msgstr ""
+"Die Symbolleiste beinhaltet keine Befehle mehr. Soll die Symbolleiste "
+"gelöscht werden?"
+
+#. saf9m
+#: cfg.src
+msgctxt "RID_SVXSTR_CONFIRM_MENU_RESET"
+msgid ""
+"The menu configuration for %SAVE IN SELECTION% will be reset to the default "
+"settings. Do you want to continue?"
+msgstr ""
+"Die Menükonfiguration für %SAVE IN SELECTION% wird auf die "
+"Standardeinstellung zurückgesetzt. Möchten Sie fortfahren?"
+
+#. RYeCk
+#: cfg.src
+msgctxt "RID_SVXSTR_CONFIRM_TOOLBAR_RESET"
+msgid ""
+"The toolbar configuration for %SAVE IN SELECTION% will be reset to the "
+"default settings. Do you want to continue?"
+msgstr ""
+"Die Symbolleistenkonfiguration für %SAVE IN SELECTION% wird auf die "
+"Standardeinstellung zurückgesetzt. Möchten Sie fortfahren?"
+
+#. JgGvm
+#: cfg.src
+msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT"
+msgid ""
+"This will delete all changes previously made to this toolbar. Do you really "
+"want to reset the toolbar?"
+msgstr ""
+"Alle Anpassungen, die an dieser Symbolleiste vorgenommen wurden, werden "
+"gelöscht. Möchten Sie diese Symbolleiste wirklich zurücksetzen?"
+
+#. CPW5b
+#: cfg.src
+msgctxt "RID_SVXSTR_MNUCFG_ALREADY_INCLUDED"
+msgid "Function is already included in this popup."
+msgstr "Die Funktion ist bereits in diesem Popup enthalten."
+
+#. G2mu7
+#: cfg.src
+msgctxt "RID_SVXSTR_LABEL_NEW_NAME"
+msgid "~New name"
+msgstr "~Neuer Name"
+
+#. Ahhg9
+#: cfg.src
+msgctxt "RID_SVXSTR_RENAME_MENU"
+msgid "Rename Menu"
+msgstr "Menü umbenennen"
+
+#. CmDaN
+#: cfg.src
+msgctxt "RID_SVXSTR_RENAME_TOOLBAR"
+msgid "Rename Toolbar"
+msgstr "Symbolleiste umbenennen"
+
+#. hFEBv
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_STARTAPP"
+msgid "Start Application"
+msgstr "Programmstart"
+
+#. 6tUvx
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
+msgid "Close Application"
+msgstr "Programmende"
+
+#. 6NsQz
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_NEWDOC"
+msgid "New Document"
+msgstr "Neues Dokument"
+
+#. G6b2e
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
+msgid "Document closed"
+msgstr "Dokument geschlossen"
+
+#. yvsTa
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
+msgid "Document is going to be closed"
+msgstr "Dokument wird geschlossen"
+
+#. DKpfj
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_OPENDOC"
+msgid "Open Document"
+msgstr "Dokument öffnen"
+
+#. DTDDm
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
+msgid "Save Document"
+msgstr "Dokument speichern"
+
+#. Trc82
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
+msgid "Save Document As"
+msgstr "Dokument speichern unter"
+
+#. GCbZt
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
+msgid "Document has been saved"
+msgstr "Dokument wurde gespeichert"
+
+#. mYtMa
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
+msgid "Document has been saved as"
+msgstr "Dokument wurde gespeichert unter"
+
+#. t8F8W
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
+msgid "Activate Document"
+msgstr "Dokument aktivieren"
+
+#. T7QE3
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
+msgid "Deactivate Document"
+msgstr "Dokument deaktivieren"
+
+#. AQXyC
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
+msgid "Print Document"
+msgstr "Dokument drucken"
+
+#. 8uXuz
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
+msgid "'Modified' status was changed"
+msgstr "Der Status 'Geändert' wurde geändert"
+
+#. 5CKDG
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
+msgid "Printing of form letters started"
+msgstr "Serienbriefdruck gestartet"
+
+#. AZ2io
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
+msgid "Printing of form letters finished"
+msgstr "Serienbriefdruck abgeschlossen"
+
+#. dHtbz
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
+msgid "Merging of form fields started"
+msgstr "Zusammenführen der Formularfelder gestartet"
+
+#. uGCdD
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
+msgid "Merging of form fields finished"
+msgstr "Zusammenführen der Formularfelder beendet"
+
+#. srLLa
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
+msgid "Changing the page count"
+msgstr "Änderung der Seitenanzahl"
+
+#. AsuQF
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
+msgid "Loaded a sub component"
+msgstr "Unterdokument wurde geladen"
+
+#. Gf22f
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
+msgid "Closed a sub component"
+msgstr "Unterdokument wurde geschlossen"
+
+#. QayEb
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
+msgid "Fill parameters"
+msgstr "Parameter füllen"
+
+#. mL59X
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
+msgid "Execute action"
+msgstr "Aktion ausführen"
+
+#. KtHBE
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
+msgid "After updating"
+msgstr "Nach dem Aktualisieren"
+
+#. b6CCj
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
+msgid "Before updating"
+msgstr "Vor dem Aktualisieren"
+
+#. KTBcp
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
+msgid "Before record action"
+msgstr "Vor der Datensatzaktion"
+
+#. Fhyio
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
+msgid "After record action"
+msgstr "Nach der Datensatzaktion"
+
+#. PmJgM
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
+msgid "Confirm deletion"
+msgstr "Löschen bestätigen"
+
+#. gcREA
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
+msgid "Error occurred"
+msgstr "Fehler aufgetreten"
+
+#. oAwDt
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
+msgid "While adjusting"
+msgstr "Beim Justieren"
+
+#. AyfwP
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
+msgid "When receiving focus"
+msgstr "Bei Fokuserhalt"
+
+#. BD96B
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
+msgid "When losing focus"
+msgstr "Bei Fokusverlust"
+
+#. wEhfE
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
+msgid "Item status changed"
+msgstr "Status geändert"
+
+#. FRW7b
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
+msgid "Key pressed"
+msgstr "Taste gedrückt"
+
+#. 4kZCD
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_KEYUP"
+msgid "Key released"
+msgstr "Taste losgelassen"
+
+#. ZiS2D
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_LOADED"
+msgid "When loading"
+msgstr "Beim Laden"
+
+#. vEjAG
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_RELOADING"
+msgid "Before reloading"
+msgstr "Vor dem erneuten Laden"
+
+#. 5FvrE
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_RELOADED"
+msgid "When reloading"
+msgstr "Beim erneuten Laden"
+
+#. CDcYt
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
+msgid "Mouse moved while key pressed"
+msgstr "Mausbewegung bei Tastendruck"
+
+#. CPpyk
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
+msgid "Mouse inside"
+msgstr "Maus innerhalb"
+
+#. 4hGfp
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
+msgid "Mouse outside"
+msgstr "Maus außerhalb"
+
+#. QEuWr
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
+msgid "Mouse moved"
+msgstr "Mausbewegung"
+
+#. 8YA3S
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
+msgid "Mouse button pressed"
+msgstr "Maustaste gedrückt"
+
+#. RMuJe
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
+msgid "Mouse button released"
+msgstr "Maustaste losgelassen"
+
+#. 5iPHQ
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_POSITIONING"
+msgid "Before record change"
+msgstr "Vor dem Datensatzwechsel"
+
+#. yrBiz
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_POSITIONED"
+msgid "After record change"
+msgstr "Nach dem Datensatzwechsel"
+
+#. bdBH4
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_RESETTED"
+msgid "After resetting"
+msgstr "Nach dem Zurücksetzen"
+
+#. eVsFk
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
+msgid "Prior to reset"
+msgstr "Vor dem Zurücksetzen"
+
+#. 2oAoV
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
+msgid "Approve action"
+msgstr "Aktion bestätigen"
+
+#. hQAzK
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
+msgid "Before submitting"
+msgstr "Vor dem Absenden"
+
+#. CFPSo
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
+msgid "Text modified"
+msgstr "Text modifiziert"
+
+#. 2ADMH
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_UNLOADING"
+msgid "Before unloading"
+msgstr "Vor dem Entladen"
+
+#. F8BL3
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_UNLOADED"
+msgid "When unloading"
+msgstr "Beim Entladen"
+
+#. M6fPe
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_CHANGED"
+msgid "Changed"
+msgstr "Modifiziert"
+
+#. gZyVB
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
+msgid "Document created"
+msgstr "Dokument erzeugt"
+
+#. BcPDW
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
+msgid "Document loading finished"
+msgstr "Laden des Dokuments beendet"
+
+#. ir7AQ
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
+msgid "Saving of document failed"
+msgstr "Speichern des Dokuments fehlgeschlagen"
+
+#. BFtTF
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
+msgid "'Save as' has failed"
+msgstr "'Speichern unter' fehlgeschlagen"
+
+#. N9e6u
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
+msgid "Storing or exporting copy of document"
+msgstr "Dokumentkopie speichern oder exportieren"
+
+#. okb9H
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
+msgid "Document copy has been created"
+msgstr "Dokumentkopie wurde erzeugt"
+
+#. DrYTY
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
+msgid "Creating of document copy failed"
+msgstr "Erzeugen der Dokumentkopie fehlgeschlagen"
+
+#. BBJJQ
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
+msgid "View created"
+msgstr "Ansicht wurde erzeugt"
+
+#. XN9Az
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
+msgid "View is going to be closed"
+msgstr "Ansicht wird geschlossen"
+
+#. a9qty
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
+msgid "View closed"
+msgstr "Ansicht geschlossen"
+
+#. dDunN
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
+msgid "Document title changed"
+msgstr "Dokumenttitel wurde geändert"
+
+#. 6D6BS
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
+msgid "Selection changed"
+msgstr "Auswahl geändert"
+
+#. XArW3
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
+msgid "Double click"
+msgstr "Doppelklick"
+
+#. oDkyz
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
+msgid "Right click"
+msgstr "Rechtsklick"
+
+#. tVSz9
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_CALCULATE"
+msgid "Formulas calculated"
+msgstr "Formeln geändert"
+
+#. ESxTQ
+#: macropg.src
+msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
+msgid "Content changed"
+msgstr "Inhalt geändert"
+
+#. ciqJ9
+#: cuires.src
+msgctxt "RID_SVXSTR_ERR_TEXTNOTFOUND"
+msgid "No alternatives found."
+msgstr "Keine Alternativen gefunden."
+
+#. smWax
+#: cuires.src
+msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
+msgid "Select File for Floating Frame"
+msgstr "Datei für schwebenden Rahmen auswählen"
+
+#. kcqWo
+#: cuires.src
+msgctxt "RID_SVXSTR_ALLFUNCTIONS"
+msgid "All categories"
+msgstr "Alle Kategorien"
+
+#. mkEjQ
+#: cuires.src
+msgctxt "RID_SVXSTR_MYMACROS"
+msgid "My Macros"
+msgstr "Meine Makros"
+
+#. Cv5m8
+#: cuires.src
+msgctxt "RID_SVXSTR_PRODMACROS"
+msgid "%PRODUCTNAME Macros"
+msgstr "%PRODUCTNAME Makros"
+
+#. Ne7wd
+#: cuires.src
+msgctxt "RID_SVXSTR_SELECTOR_ADD_COMMANDS"
+msgid "Add Commands"
+msgstr "Befehle hinzufügen"
+
+#. AFniE
+#: cuires.src
+msgctxt "RID_SVXSTR_SELECTOR_RUN"
+msgid "Run"
+msgstr "Ausführen"
+
+#. whwAN
+#: cuires.src
+msgctxt "RID_SVXSTR_ROW"
+msgid "Insert Rows"
+msgstr "Zeilen einfügen"
+
+#. AvBBC
+#: cuires.src
+msgctxt "RID_SVXSTR_PPI"
+msgid "(%1 PPI)"
+msgstr "(%1 PPI)"
+
+#. thimC
+#: cuires.src
+msgctxt "RID_SVXSTR_COL"
+msgid "Insert Columns"
+msgstr "Spalten einfügen"
+
+#. QrFJZ
+#: cuires.src
+msgctxt "RID_SVXSTR_AUTO_ENTRY"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. X9CWA
+#: cuires.src
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr "Verknüpfung"
+
+#. QCgnw
+#: cuires.src
+msgctxt "RID_SVXSTR_LOADACCELCONFIG"
+msgid "Load Keyboard Configuration"
+msgstr "Tastaturkonfiguration laden"
+
+#. eWQoY
+#: cuires.src
+msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
+msgid "Save Keyboard Configuration"
+msgstr "Tastaturkonfiguration speichern"
+
+#. ggFZE
+#: cuires.src
+msgctxt "RID_SVXSTR_FILTERNAME_CFG"
+msgid "Configuration (*.cfg)"
+msgstr "Konfiguration (*.cfg)"
+
+#. DigQB
+#: cuires.src
+msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
+msgid "Targets do not exist in the document."
+msgstr "Keine Sprungziele im Dokument vorhanden."
+
+#. pCbRV
+#: cuires.src
+msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
+msgid "Couldn't open the document."
+msgstr "Das Dokument konnte nicht geöffnet werden."
+
+#. zAUfq
+#: cuires.src
+msgctxt "RID_SVXSTR_EDITHINT"
+msgid "[Enter text here]"
+msgstr "[Text hier eingeben]"
+
+#. ResDx
+#: cuires.src
+msgctxt "RID_SVXSTR_HANGUL"
+msgid "Hangul"
+msgstr "Hangul"
+
+#. 3t3AC
+#: cuires.src
+msgctxt "RID_SVXSTR_HANJA"
+msgid "Hanja"
+msgstr "Hanja"
+
+#. 88dts
+#: cuires.src
+msgctxt "RID_SVXSTR_BASICMACROS"
+msgid "BASIC Macros"
+msgstr "BASIC-Makros"
+
+#. XKYHn
+#: cuires.src
+msgctxt "RID_SVXSTR_GROUP_STYLES"
+msgid "Styles"
+msgstr "Stile"
+
+#. Zimeo
+#: fmsearch.src
+msgctxt "RID_STR_SEARCH_ANYWHERE"
+msgid "anywhere in the field"
+msgstr "irgendwo im Feld"
+
+#. qCKMY
+#: fmsearch.src
+msgctxt "RID_STR_SEARCH_BEGINNING"
+msgid "beginning of field"
+msgstr "am Anfang des Feldes"
+
+#. CKVTF
+#: fmsearch.src
+msgctxt "RID_STR_SEARCH_END"
+msgid "end of field"
+msgstr "am Ende des Feldes"
+
+#. FZwxu
+#: fmsearch.src
+msgctxt "RID_STR_SEARCH_WHOLE"
+msgid "entire field"
+msgstr "gesamtes Feld"
+
+#. AFUFs
+#: fmsearch.src
+msgctxt "RID_STR_FROM_TOP"
+msgid "From top"
+msgstr "Von oben"
+
+#. FBDbX
+#: fmsearch.src
+msgctxt "RID_STR_FROM_BOTTOM"
+msgid "From bottom"
+msgstr "Von unten"
+
+#. brdgV
+#: fmsearch.src
+msgctxt "RID_STR_SEARCH_NORECORD"
+msgid "No records corresponding to your data found."
+msgstr "Es wurden keine Datensätze, die zu Ihren Angaben passen, gefunden."
+
+#. VkTjA
+#: fmsearch.src
+msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
+msgid "An unknown error occurred. The search could not be finished."
+msgstr ""
+"Es trat ein nicht näher bekannter Fehler auf. Die Suche konnte nicht beendet"
+" werden."
+
+#. jiQdw
+#: fmsearch.src
+msgctxt "RID_STR_OVERFLOW_FORWARD"
+msgid "Overflow, search continued at the beginning"
+msgstr "Suche wurde am Anfang fortgesetzt"
+
+#. EzK3y
+#: fmsearch.src
+msgctxt "RID_STR_OVERFLOW_BACKWARD"
+msgid "Overflow, search continued at the end"
+msgstr "Suche wurde am Ende fortgesetzt"
+
+#. zwiat
+#: fmsearch.src
+msgctxt "RID_STR_SEARCH_COUNTING"
+msgid "counting records"
+msgstr "zähle Datensätze"
+
+#. 7cVWa
+#: gallery.src
+msgctxt "RID_SVXSTR_GALLERY_NOFILES"
+msgid "<No Files>"
+msgstr "<Keine Dateien>"
+
+#. AnJUu
+#: gallery.src
+msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
+msgid "Object;Objects"
+msgstr "Objekt;Objekte"
+
+#. GQXSM
+#: gallery.src
+msgctxt "RID_SVXSTR_GALLERY_READONLY"
+msgid "(read-only)"
+msgstr "(schreibgeschützt)"
+
+#. sAwgA
+#: gallery.src
+msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
+msgid "<All Files>"
+msgstr "<Alle Dateien>"
+
+#. YkCky
+#: gallery.src
+msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
+msgid "This ID already exists..."
+msgstr "Diese ID existiert bereits..."
+
+#. GN45E
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
+msgid "Close"
+msgstr "Schließen"
+
+#. dkH9d
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPDLG_MACROACT1"
+msgid "Mouse over object"
+msgstr "Maus über Objekt"
+
+#. 4QYHe
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
+msgid "Trigger hyperlink"
+msgstr "Hyperlink auslösen"
+
+#. WMQPj
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
+msgid "Mouse leaves object"
+msgstr "Maus verlässt Objekt"
+
+#. E8XCn
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPDLG_NOVALIDFILENAME"
+msgid "Please type in a valid file name."
+msgstr "Geben Sie bitte einen gültigen Dateinamen ein."
+
+#. HGSZ9
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPERDLG_HLINETTP"
+msgid "Internet"
+msgstr "Internet"
+
+#. dyGGc
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPERDLG_HLINETTP_HELP"
+msgid ""
+"This is where you create a hyperlink to a Web page or FTP server connection."
+msgstr ""
+"Hier können Sie einen Hyperlink zu einer Webseite oder einem FTP Server "
+"erstellen."
+
+#. Q7tLE
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP"
+msgid "Mail"
+msgstr "E-Mail"
+
+#. MKK8G
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP_HELP"
+msgid "This is where you create a hyperlink to an e-mail address."
+msgstr "Hier können Sie einen Hyperlink zu einer E-Mail-Adresse erstellen."
+
+#. u8CAy
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP"
+msgid "Document"
+msgstr "Dokument"
+
+#. GFLnz
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP_HELP"
+msgid ""
+"This is where you create a hyperlink to an existing document or a target "
+"within a document."
+msgstr ""
+"Erstellen Sie einen Hyperlink zu einem bestehenden Dokument oder ein Ziel "
+"innerhalb eines Dokumentes."
+
+#. zi7AZ
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPERDLG_HLDOCNTP"
+msgid "New Document"
+msgstr "Neues Dokument"
+
+#. 5TUkK
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPERDLG_HLDOCNTP_HELP"
+msgid "This is where you create a new document to which the new link points."
+msgstr ""
+"Erstellen Sie ein neues Dokument, auf das dann der neue Hyperlink verweist."
+
+#. ES4Pj
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
+msgid "Button"
+msgstr "Schaltfläche"
+
+#. MPHHF
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
+msgid "Text"
+msgstr "Text"
+
+#. 9nkb2
+#: hyperdlg.src
+msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
+msgid "The file already exists. Overwrite?"
+msgstr "Die Datei existiert bereits. Soll sie überschrieben werden?"
+
+#. w3AUk
+#: multipat.src
+msgctxt "RID_MULTIPATH_DBL_ERR"
+msgid "The path %1 already exists."
+msgstr "Der Pfad %1 ist bereits vorhanden."
+
+#. 54BsS
+#: multipat.src
+msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
+msgid "Select Archives"
+msgstr "Archive auswählen"
+
+#. NDB5V
+#: multipat.src
+msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
+msgid "Archives"
+msgstr "Archive"
+
+#. ffPAq
+#: multipat.src
+msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
+msgid "The file %1 already exists."
+msgstr "Die Datei %1 ist bereits vorhanden."
+
+#. 5FyxP
+#: multipat.src
+msgctxt "RID_SVXSTR_ADD_IMAGE"
+msgid "Add Image"
+msgstr "Bild hinzufügen"
+
+#. eUzGk
+#: passwdomdlg.src
+msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
+msgid ""
+"The confirmation password did not match the password. Set the password again"
+" by entering the same password in both boxes."
+msgstr ""
+"Die Bestätigung stimmt nicht mit dem Kennwort überein. Setzen Sie das "
+"Kennwort erneut, indem Sie das gleiche Kennwort in beiden Feldern eingeben."
+
+#. mN9jE
+#: passwdomdlg.src
+msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
+msgid ""
+"The confirmation passwords did not match the original passwords. Set the "
+"passwords again."
+msgstr ""
+"Die Bestätigung stimmt nicht mit dem Originalkennwort überein. Setzen Sie "
+"das Kennwort erneut."
+
+#. 48ez3
+#: passwdomdlg.src
+msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
+msgid ""
+"Please enter a password to open or to modify, or check the open read-only "
+"option to continue."
+msgstr ""
+"Geben Sie ein Kennwort zum Öffnen oder Bearbeiten ein oder aktivieren Sie "
+"die Option Schreibgeschützt, um fortzufahren."
+
+#. aAbAN
+#: passwdomdlg.src
+msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
+msgid "Set the password by entering the same password in both boxes."
+msgstr ""
+"Setzen Sie das Kennwort, indem Sie das gleiche Kennwort in beiden Feldern "
+"eingeben."
+
+#. QJKgF
+#: screenshotannotationdlg.src
+msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
+msgid "Save Screenshot As..."
+msgstr "Bildschirmfoto speichern als..."
+
+#. gg9gD
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_DELQUERY"
+msgid "Do you want to delete the following object?"
+msgstr "Möchten Sie das folgende Objekt löschen?"
+
+#. 42ivC
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_DELQUERY_TITLE"
+msgid "Confirm Deletion"
+msgstr "Löschen bestätigen"
+
+#. kn5KE
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_DELFAILED"
+msgid "The selected object could not be deleted."
+msgstr "Das ausgewählte Objekt konnte nicht gelöscht werden."
+
+#. T7T8x
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_DELFAILED_TITLE"
+msgid "Error Deleting Object"
+msgstr "Fehler beim Löschen"
+
+#. SCgXy
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_CREATEFAILED"
+msgid "The object could not be created."
+msgstr "Das Objekt konnte nicht erstellt werden."
+
+#. TmiCU
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
+msgid " Object with the same name already exists."
+msgstr " Ein Objekt mit demselben Namen existiert bereits."
+
+#. ffc5M
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
+msgid "Error Creating Object"
+msgstr "Fehler beim Erstellen"
+
+#. hpB8B
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_RENAMEFAILED"
+msgid "The object could not be renamed."
+msgstr "Das Objekt konnte nicht umbenannt werden."
+
+#. eevjm
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
+msgid "Error Renaming Object"
+msgstr "Fehler beim Umbenennen"
+
+#. fTHFY
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_ERROR_TITLE"
+msgid "%PRODUCTNAME Error"
+msgstr "%PRODUCTNAME Fehler"
+
+#. e6BgS
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
+msgid "The scripting language %LANGUAGENAME is not supported."
+msgstr "Die Skriptsprache %LANGUAGENAME wird nicht unterstützt."
+
+#. EUek9
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_ERROR_RUNNING"
+msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr ""
+"Ein Fehler trat während der Ausführung vom %LANGUAGENAME-Skript %SCRIPTNAME "
+"auf."
+
+#. KVQAh
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
+msgid ""
+"An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr ""
+"Ein Ausnahmefehler trat während der Ausführung vom %LANGUAGENAME-Skript "
+"%SCRIPTNAME auf."
+
+#. 5bFCQ
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_ERROR_AT_LINE"
+msgid ""
+"An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at "
+"line: %LINENUMBER."
+msgstr ""
+"Ein Fehler trat während der Ausführung vom %LANGUAGENAME-Skript %SCRIPTNAME "
+"in Zeile %LINENUMBER auf."
+
+#. KTptU
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
+msgid ""
+"An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at "
+"line: %LINENUMBER."
+msgstr ""
+"Ein Ausnahmefehler trat während der Ausführung vom %LANGUAGENAME-Skript "
+"%SCRIPTNAME in Zeile %LINENUMBER auf."
+
+#. BZDbp
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
+msgid ""
+"A Scripting Framework error occurred while running the %LANGUAGENAME script "
+"%SCRIPTNAME."
+msgstr ""
+"Ein Scripting Framework Fehler trat während der Ausführung vom "
+"%LANGUAGENAME-Skript %SCRIPTNAME auf."
+
+#. AAghx
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
+msgid "Type:"
+msgstr "Typ:"
+
+#. GAsca
+#: scriptdlg.src
+msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
+msgid "Message:"
+msgstr "Meldung:"
+
+#. Fko49
+#: svuidlg.src
+msgctxt "STR_AUTOLINK"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. WYHFb
+#: svuidlg.src
+msgctxt "STR_MANUALLINK"
+msgid "Manual"
+msgstr "Manuell"
+
+#. PFN4j
+#: svuidlg.src
+msgctxt "STR_BROKENLINK"
+msgid "Not available"
+msgstr "Nicht verfügbar"
+
+#. 5ymS3
+#: svuidlg.src
+msgctxt "STR_CLOSELINKMSG"
+msgid "Are you sure you want to remove the selected link?"
+msgstr "Soll die gewählte Verknüpfung wirklich gelöscht werden?"
+
+#. wyMwT
+#: svuidlg.src
+msgctxt "STR_CLOSELINKMSG_MULTI"
+msgid "Are you sure you want to remove the selected link?"
+msgstr "Soll die gewählte Verknüpfung wirklich gelöscht werden?"
+
+#. CN74h
+#: svuidlg.src
+msgctxt "STR_WAITINGLINK"
+msgid "Waiting"
+msgstr "Warten"
+
+#. EPuek
+#: connpooloptions.src
+msgctxt "RID_SVXSTR_DRIVER_NAME"
+msgid "Driver name"
+msgstr "Treibername"
+
+#. RFXeR
+#: connpooloptions.src
+msgctxt "RID_SVXSTR_POOLED_FLAG"
+msgid "Pool"
+msgstr "Aufbewahren"
+
+#. fx9RA
+#: connpooloptions.src
+msgctxt "RID_SVXSTR_POOL_TIMEOUT"
+msgid "Timeout"
+msgstr "Verfallszeit"
+
+#. HzhXp
+#: connpooloptions.src
+msgctxt "RID_SVXSTR_YES"
+msgid "Yes"
+msgstr "Ja"
+
+#. RuQiB
+#: connpooloptions.src
+msgctxt "RID_SVXSTR_NO"
+msgid "No"
+msgstr "Nein"
+
+#. nGkWh
+#: dbregister.src
+msgctxt "RID_SVXSTR_TYPE"
+msgid "Registered name"
+msgstr "Registrierter Name"
+
+#. pPzse
+#: dbregister.src
+msgctxt "RID_SVXSTR_PATH"
+msgid "Database file"
+msgstr "Datenbankdatei"
+
+#. irLeD
+#: doclinkdialog.src
+msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist."
+msgstr ""
+"Die Datei\n"
+"$file$\n"
+"existiert nicht."
+
+#. iQYnX
+#: doclinkdialog.src
+msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist in the local file system."
+msgstr ""
+"Die Datei\n"
+"$file$\n"
+"existiert im lokalen Dateisystem nicht."
+
+#. 4PaJ2
+#: doclinkdialog.src
+msgctxt "STR_NAME_CONFLICT"
+msgid ""
+"The name '$file$' is already used for another database.\n"
+"Please choose a different name."
+msgstr ""
+"Der Name '$file$' wird bereits für eine andere Datenbank verwendet.\n"
+"Bitte wählen Sie einen anderen Namen."
+
+#. KFB7q
+#: doclinkdialog.src
+msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
+msgid "Do you want to delete the entry?"
+msgstr "Soll der Eintrag gelöscht werden?"
+
+#. CAaFf
+#: optchart.src
+msgctxt "RID_SVXSTR_DIAGRAM_ROW"
+msgid "Data Series $(ROW)"
+msgstr "Datenreihe $(ROW)"
+
+#. XEFrB
+#: optcolor.src
+msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
+msgid "Do you really want to delete the color scheme?"
+msgstr "Soll das Farbschema wirklich gelöscht werden?"
+
+#. ybdED
+#: optcolor.src
+msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
+msgid "Color Scheme Deletion"
+msgstr "Löschen des Schemas bestätigen"
+
+#. DoNBE
+#: optcolor.src
+msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
+msgid "Save scheme"
+msgstr "Schema speichern"
+
+#. tFrki
+#: optcolor.src
+msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
+msgid "Name of color scheme"
+msgstr "Name des Farbschemas"
+
+#. dDtDU
+#: optdict.src
+msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
+msgid ""
+"The specified name already exists.\n"
+"Please enter a new name."
+msgstr ""
+"Der angegebene Name ist schon vorhanden.\n"
+"Bitte geben Sie einen neuen Namen ein."
+
+#. LPb5d
+#: optdict.src
+msgctxt "STR_MODIFY"
+msgid "~Replace"
+msgstr "~Ersetzen"
+
+#. anivV
+#: optdict.src
+msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
+msgid "Do you want to change the '%1' dictionary language?"
+msgstr "Möchten Sie die Sprache des Wörterbuches '%1' ändern?"
+
+#. cKvfS
+#: optfltr.src
+msgctxt "RID_SVXSTR_HEADER1"
+msgid "[L]"
+msgstr "[L]"
+
+#. WaMmc
+#: optfltr.src
+msgctxt "RID_SVXSTR_HEADER2"
+msgid "[S]"
+msgstr "[S]"
+
+#. ZcxRY
+#: optfltr.src
+msgctxt "RID_SVXSTR_CHG_MATH"
+msgid "MathType to %PRODUCTNAME Math or reverse"
+msgstr "MathType nach %PRODUCTNAME Math oder umgekehrt"
+
+#. Ttggs
+#: optfltr.src
+msgctxt "RID_SVXSTR_CHG_WRITER"
+msgid "WinWord to %PRODUCTNAME Writer or reverse"
+msgstr "WinWord nach %PRODUCTNAME Writer oder umgekehrt"
+
+#. ZJRKY
+#: optfltr.src
+msgctxt "RID_SVXSTR_CHG_CALC"
+msgid "Excel to %PRODUCTNAME Calc or reverse"
+msgstr "Excel nach %PRODUCTNAME Calc oder umgekehrt"
+
+#. VmuND
+#: optfltr.src
+msgctxt "RID_SVXSTR_CHG_IMPRESS"
+msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
+msgstr "PowerPoint nach %PRODUCTNAME Impress oder umgekehrt"
+
+#. sE8as
+#: optfltr.src
+msgctxt "RID_SVXSTR_CHG_SMARTART"
+msgid "SmartArt to %PRODUCTNAME shapes or reverse"
+msgstr "SmartArt in %PRODUCTNAME-Formen oder umgekehrt"
+
+#. fsbAN
+#: optinet2.src
+msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
+msgid ""
+"Invalid value!\n"
+"\n"
+"The maximum value for a port number is 65535."
+msgstr ""
+"Ungültiger Wert!\n"
+"\n"
+"Der Höchstwert einer Portnummer ist 65535."
+
+#. weKUF
+#: optjava.src
+msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
+msgid ""
+"The folder you selected does not contain a Java runtime environment.\n"
+"Please select a different folder."
+msgstr ""
+"Der von Ihnen ausgewählte Order enthält keine Java-Laufzeitumgebung.\n"
+"Bitte wählen Sie einen anderen Ordner."
+
+#. jFLdB
+#: optjava.src
+msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
+msgid ""
+"The Java runtime environment you selected is not the required version.\n"
+"Please select a different folder."
+msgstr ""
+"Die ausgewählte Java-Laufzeitumgebung hat nicht die erforderliche Version.\n"
+"Bitte wählen Sie einen anderen Ordner."
+
+#. GZBBn
+#: optjava.src
+msgctxt "RID_SVXSTR_OPTIONS_RESTART"
+msgid ""
+"Please restart %PRODUCTNAME now so the new or modified values can take "
+"effect."
+msgstr ""
+"Bitte starten Sie %PRODUCTNAME jetzt neu, damit die neuen oder geänderten "
+"Werte wirksam werden können."
+
+#. 79uiz
+#: optjava.src
+msgctxt "RID_SVXSTR_JAVA_START_PARAM"
+msgid "Edit Parameter"
+msgstr "Parameter bearbeiten"
+
+#. BAGbe
+#: optlingu.src
+msgctxt "RID_SVXSTR_SPELL"
+msgid "Spelling"
+msgstr "Rechtschreibung"
+
+#. uBohu
+#: optlingu.src
+msgctxt "RID_SVXSTR_HYPH"
+msgid "Hyphenation"
+msgstr "Silbentrennung"
+
+#. XGkt6
+#: optlingu.src
+msgctxt "RID_SVXSTR_THES"
+msgid "Thesaurus"
+msgstr "Thesaurus"
+
+#. EFrDA
+#: optlingu.src
+msgctxt "RID_SVXSTR_GRAMMAR"
+msgid "Grammar"
+msgstr "Grammatik"
+
+#. zbEv9
+#: optlingu.src
+msgctxt "RID_SVXSTR_CAPITAL_WORDS"
+msgid "Check uppercase words"
+msgstr "Großgeschriebene Wörter prüfen"
+
+#. BbDNe
+#: optlingu.src
+msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
+msgid "Check words with numbers "
+msgstr "Wörter mit Ziffern prüfen "
+
+#. bPDyB
+#: optlingu.src
+msgctxt "RID_SVXSTR_SPELL_SPECIAL"
+msgid "Check special regions"
+msgstr "Sonderbereiche prüfen"
+
+#. XjifG
+#: optlingu.src
+msgctxt "RID_SVXSTR_SPELL_AUTO"
+msgid "Check spelling as you type"
+msgstr "Rechtschreibung während der Eingabe prüfen"
+
+#. J3ENq
+#: optlingu.src
+msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
+msgid "Check grammar as you type"
+msgstr "Grammatik während der Eingabe prüfen"
+
+#. f6v3L
+#: optlingu.src
+msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
+msgid "Minimal number of characters for hyphenation: "
+msgstr "Minimale Wortlänge für Silbentrennung: "
+
+#. BCrEf
+#: optlingu.src
+msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
+msgid "Characters before line break: "
+msgstr "Zeichen vor dem Zeilenumbruch: "
+
+#. Kgioh
+#: optlingu.src
+msgctxt "RID_SVXSTR_NUM_POST_BREAK"
+msgid "Characters after line break: "
+msgstr "Zeichen nach dem Zeilenumbruch: "
+
+#. AewrH
+#: optlingu.src
+msgctxt "RID_SVXSTR_HYPH_AUTO"
+msgid "Hyphenate without inquiry"
+msgstr "Trennen ohne Nachfrage"
+
+#. qCKn9
+#: optlingu.src
+msgctxt "RID_SVXSTR_HYPH_SPECIAL"
+msgid "Hyphenate special regions"
+msgstr "Sonderbereiche trennen"
+
+#. E6GDh
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_CONFIG_DIR"
+msgid "Configuration"
+msgstr "Konfiguration"
+
+#. z7dmW
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_WORK_PATH"
+msgid "My Documents"
+msgstr "Arbeitsverzeichnis"
+
+#. wnMWp
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_GRAPHICS_PATH"
+msgid "Images"
+msgstr "Bilder"
+
+#. AnM4M
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_BITMAP_PATH"
+msgid "Icons"
+msgstr "Symbole"
+
+#. bpvbo
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_PALETTE_PATH"
+msgid "Palettes"
+msgstr "Paletten"
+
+#. shiKT
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_BACKUP_PATH"
+msgid "Backups"
+msgstr "Sicherungskopien"
+
+#. ai8eF
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_MODULES_PATH"
+msgid "Modules"
+msgstr "Module"
+
+#. WyhJD
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_TEMPLATE_PATH"
+msgid "Templates"
+msgstr "Dokumentvorlagen"
+
+#. mNj9y
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_GLOSSARY_PATH"
+msgid "AutoText"
+msgstr "AutoText"
+
+#. co7GJ
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_DICTIONARY_PATH"
+msgid "Dictionaries"
+msgstr "Wörterbücher"
+
+#. MbjWM
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_HELP_DIR"
+msgid "Help"
+msgstr "Hilfedateien"
+
+#. u2bQB
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_GALLERY_DIR"
+msgid "Gallery"
+msgstr "Gallery"
+
+#. 2umbs
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_STORAGE_DIR"
+msgid "Message Storage"
+msgstr "Nachrichtenspeicher"
+
+#. oMdF8
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_TEMP_PATH"
+msgid "Temporary files"
+msgstr "Temporäre Dateien"
+
+#. 4DDzW
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_PLUGINS_PATH"
+msgid "Plug-ins"
+msgstr "Plugins-Verzeichnis"
+
+#. v5YHp
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_FAVORITES_DIR"
+msgid "Folder Bookmarks"
+msgstr "Ordner-Lesezeichen"
+
+#. AJkga
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_FILTER_PATH"
+msgid "Filters"
+msgstr "Filter"
+
+#. 2DKUC
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_ADDINS_PATH"
+msgid "Add-ins"
+msgstr "Add-ins"
+
+#. Tm2DM
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_USERCONFIG_PATH"
+msgid "User Configuration"
+msgstr "Benutzerkonfiguration"
+
+#. ATuL4
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_USERDICTIONARY_DIR"
+msgid "User-defined dictionaries"
+msgstr "Benutzerwörterbücher"
+
+#. qxBAu
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_CLASSIFICATION_PATH"
+msgid "Classification"
+msgstr "Klassifikation"
+
+#. FrDws
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_AUTOCORRECT_DIR"
+msgid "AutoCorrect"
+msgstr "AutoKorrektur"
+
+#. jD48Q
+#: optpath.src
+msgctxt "RID_SVXSTR_KEY_LINGUISTIC_DIR"
+msgid "Writing aids"
+msgstr "Linguistik"
+
+#. Q2QAg
+#: personalization.src
+msgctxt "RID_SVXSTR_SELECTEDPERSONA"
+msgid "Selected Theme: "
+msgstr "Gewähltes Theme: "
+
+#. mvAvC
+#: personalization.src
+msgctxt "RID_SVXSTR_SEARCHING"
+msgid "Searching, please wait..."
+msgstr "Suchvorgang, bitte warten..."
+
+#. DYi9o
+#: personalization.src
+msgctxt "RID_SVXSTR_SEARCHERROR"
+msgid "Cannot open %1, please try again later."
+msgstr "%1 kann nicht geöffnet werden, bitte versuchen Sie es später erneut."
+
+#. WJiET
+#: personalization.src
+msgctxt "RID_SVXSTR_NORESULTS"
+msgid "No results found."
+msgstr "Keine Suchergebnisse."
+
+#. ty3FS
+#: personalization.src
+msgctxt "RID_SVXSTR_APPLYPERSONA"
+msgid "Applying Theme..."
+msgstr "Theme zuweisen..."
+
+#. uGAGa
+#: personalization.src
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "LibreOffice"
+msgstr "LibreOffice"
+
+#. tE79S
+#: personalization.src
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Abstract"
+msgstr "Zusammenfassung"
+
+#. D2V8B
+#: personalization.src
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Color"
+msgstr "Farbe"
+
+#. idX7t
+#: personalization.src
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Music"
+msgstr "Musik"
+
+#. oNEyH
+#: personalization.src
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Nature"
+msgstr "Natur"
+
+#. YnCvD
+#: personalization.src
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Solid"
+msgstr "Einfarbig"
+
+#. ubU8d
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "%PRODUCTNAME"
+msgstr "%PRODUCTNAME"
+
+#. Fbf7Z
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "User Data"
+msgstr "Benutzerdaten"
+
+#. G55YZ
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "General"
+msgstr "Allgemein"
+
+#. mpAJ5
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "Memory"
+msgstr "Speicher"
+
+#. yg7Ea
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "View"
+msgstr "Ansicht"
+
+#. 5MaGb
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "Print"
+msgstr "Drucken"
+
+#. DkZfH
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "Paths"
+msgstr "Pfade"
+
+#. sbB4G
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "Fonts"
+msgstr "Schriftarten"
+
+#. BrLBB
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "Security"
+msgstr "Sicherheit"
+
+#. hxXbS
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "Personalization"
+msgstr "Personalisierung"
+
+#. BB6YA
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "Application Colors"
+msgstr "Anwendungsfarben"
+
+#. MqVzs
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "Accessibility"
+msgstr "Barrierefreiheit"
+
+#. 2gTGD
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "Advanced"
+msgstr "Erweitert"
+
+#. uteRa
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "Basic IDE Options"
+msgstr "Basic-IDE-Optionen"
+
+#. DrYub
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "Online Update"
+msgstr "Online-Update"
+
+#. VEDeF
+#: treeopt.src
+msgctxt "SID_GENERAL_OPTIONS"
+msgid "OpenCL"
+msgstr "OpenCL"
+
+#. bF9Xt
+#: treeopt.src
+msgctxt "SID_LANGUAGE_OPTIONS"
+msgid "Language Settings"
+msgstr "Spracheinstellungen"
+
+#. AEJ37
+#: treeopt.src
+msgctxt "SID_LANGUAGE_OPTIONS"
+msgid "Languages"
+msgstr "Sprachen"
+
+#. Po8qw
+#: treeopt.src
+msgctxt "SID_LANGUAGE_OPTIONS"
+msgid "Writing Aids"
+msgstr "Linguistik"
+
+#. eCRhr
+#: treeopt.src
+msgctxt "SID_LANGUAGE_OPTIONS"
+msgid "Searching in Japanese"
+msgstr "Suchoptionen für Japanisch"
+
+#. TDZ2D
+#: treeopt.src
+msgctxt "SID_LANGUAGE_OPTIONS"
+msgid "Asian Layout"
+msgstr "Asiatisches Layout"
+
+#. iCEUL
+#: treeopt.src
+msgctxt "SID_LANGUAGE_OPTIONS"
+msgid "Complex Text Layout"
+msgstr "Complex Text Layout"
+
+#. SmpKz
+#: treeopt.src
+msgctxt "SID_INET_DLG"
+msgid "Internet"
+msgstr "Internet"
+
+#. GdHv2
+#: treeopt.src
+msgctxt "SID_INET_DLG"
+msgid "Proxy"
+msgstr "Proxy"
+
+#. czKoF
+#: treeopt.src
+msgctxt "SID_INET_DLG"
+msgid "E-mail"
+msgstr "E-Mail"
+
+#. j4BDi
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "%PRODUCTNAME Writer"
+msgstr "%PRODUCTNAME Writer"
+
+#. oK57R
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "General"
+msgstr "Allgemein"
+
+#. i7TLJ
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "View"
+msgstr "Ansicht"
+
+#. GxV74
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "Formatting Aids"
+msgstr "Formatierungshilfen"
+
+#. bDGEa
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "Grid"
+msgstr "Raster"
+
+#. Eiuek
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "Basic Fonts (Western)"
+msgstr "Grundschriftarten (westlich)"
+
+#. D3zJf
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "Basic Fonts (Asian)"
+msgstr "Grundschriftarten (asiatisch)"
+
+#. m9Fzc
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "Basic Fonts (CTL)"
+msgstr "Grundschriftarten (CTL)"
+
+#. hWtPK
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "Print"
+msgstr "Drucken"
+
+#. GaX3t
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "Table"
+msgstr "Tabelle"
+
+#. Uzv5j
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "Changes"
+msgstr "Änderungen"
+
+#. JmFxQ
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "Comparison"
+msgstr "Vergleich"
+
+#. V7Y3n
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "Compatibility"
+msgstr "Kompatibilität"
+
+#. NZRvS
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "AutoCaption"
+msgstr "Automatische Beschriftung"
+
+#. e5pTU
+#: treeopt.src
+msgctxt "SID_SW_EDITOPTIONS"
+msgid "Mail Merge E-mail"
+msgstr "Serien-E-Mail"
+
+#. rFFEP
+#: treeopt.src
+msgctxt "SID_SW_ONLINEOPTIONS"
+msgid "%PRODUCTNAME Writer/Web"
+msgstr "%PRODUCTNAME Writer/Web"
+
+#. pxeoH
+#: treeopt.src
+msgctxt "SID_SW_ONLINEOPTIONS"
+msgid "View"
+msgstr "Ansicht"
+
+#. B5xmZ
+#: treeopt.src
+msgctxt "SID_SW_ONLINEOPTIONS"
+msgid "Formatting Aids"
+msgstr "Formatierungshilfen"
+
+#. hnMUZ
+#: treeopt.src
+msgctxt "SID_SW_ONLINEOPTIONS"
+msgid "Grid"
+msgstr "Gitter"
+
+#. D4uGi
+#: treeopt.src
+msgctxt "SID_SW_ONLINEOPTIONS"
+msgid "Print"
+msgstr "Drucken"
+
+#. eGWAD
+#: treeopt.src
+msgctxt "SID_SW_ONLINEOPTIONS"
+msgid "Table"
+msgstr "Tabelle"
+
+#. 6jDFu
+#: treeopt.src
+msgctxt "SID_SW_ONLINEOPTIONS"
+msgid "Background"
+msgstr "Hintergrund"
+
+#. cu5iQ
+#: treeopt.src
+msgctxt "SID_SM_EDITOPTIONS"
+msgid "%PRODUCTNAME Math"
+msgstr "%PRODUCTNAME Math"
+
+#. sreez
+#: treeopt.src
+msgctxt "SID_SM_EDITOPTIONS"
+msgid "Settings"
+msgstr "Einstellungen"
+
+#. YjnFt
+#: treeopt.src
+msgctxt "SID_SC_EDITOPTIONS"
+msgid "%PRODUCTNAME Calc"
+msgstr "%PRODUCTNAME Calc"
+
+#. 3So2Y
+#: treeopt.src
+msgctxt "SID_SC_EDITOPTIONS"
+msgid "General"
+msgstr "Allgemein"
+
+#. ki5BV
+#: treeopt.src
+msgctxt "SID_SC_EDITOPTIONS"
+msgid "Defaults"
+msgstr "Standards"
+
+#. FcsJw
+#: treeopt.src
+msgctxt "SID_SC_EDITOPTIONS"
+msgid "View"
+msgstr "Ansicht"
+
+#. edo6p
+#: treeopt.src
+msgctxt "SID_SC_EDITOPTIONS"
+msgid "Calculate"
+msgstr "Berechnen"
+
+#. Aum8G
+#: treeopt.src
+msgctxt "SID_SC_EDITOPTIONS"
+msgid "Formula"
+msgstr "Formel"
+
+#. CghkF
+#: treeopt.src
+msgctxt "SID_SC_EDITOPTIONS"
+msgid "Sort Lists"
+msgstr "Sortierlisten"
+
+#. FsE49
+#: treeopt.src
+msgctxt "SID_SC_EDITOPTIONS"
+msgid "Changes"
+msgstr "Änderungen"
+
+#. D7LGd
+#: treeopt.src
+msgctxt "SID_SC_EDITOPTIONS"
+msgid "Compatibility"
+msgstr "Kompatibilität"
+
+#. HSFGE
+#: treeopt.src
+msgctxt "SID_SC_EDITOPTIONS"
+msgid "Grid"
+msgstr "Raster"
+
+#. 8RKH4
+#: treeopt.src
+msgctxt "SID_SC_EDITOPTIONS"
+msgid "Print"
+msgstr "Drucken"
+
+#. DSmNS
+#: treeopt.src
+msgctxt "SID_SD_EDITOPTIONS"
+msgid "%PRODUCTNAME Impress"
+msgstr "%PRODUCTNAME Impress"
+
+#. tKfJG
+#: treeopt.src
+msgctxt "SID_SD_EDITOPTIONS"
+msgid "General"
+msgstr "Allgemein"
+
+#. c4KDN
+#: treeopt.src
+msgctxt "SID_SD_EDITOPTIONS"
+msgid "View"
+msgstr "Ansicht"
+
+#. mAg5e
+#: treeopt.src
+msgctxt "SID_SD_EDITOPTIONS"
+msgid "Grid"
+msgstr "Raster"
+
+#. DkjJA
+#: treeopt.src
+msgctxt "SID_SD_EDITOPTIONS"
+msgid "Print"
+msgstr "Drucken"
+
+#. YD2Ca
+#: treeopt.src
+msgctxt "SID_SD_GRAPHIC_OPTIONS"
+msgid "%PRODUCTNAME Draw"
+msgstr "%PRODUCTNAME Draw"
+
+#. iMxcN
+#: treeopt.src
+msgctxt "SID_SD_GRAPHIC_OPTIONS"
+msgid "General"
+msgstr "Allgemein"
+
+#. NdvwJ
+#: treeopt.src
+msgctxt "SID_SD_GRAPHIC_OPTIONS"
+msgid "View"
+msgstr "Ansicht"
+
+#. 6TCca
+#: treeopt.src
+msgctxt "SID_SD_GRAPHIC_OPTIONS"
+msgid "Grid"
+msgstr "Raster"
+
+#. 8gjDP
+#: treeopt.src
+msgctxt "SID_SD_GRAPHIC_OPTIONS"
+msgid "Print"
+msgstr "Drucken"
+
+#. X6Nmr
+#: treeopt.src
+msgctxt "SID_SCH_EDITOPTIONS"
+msgid "Charts"
+msgstr "Diagramme"
+
+#. wuqtU
+#: treeopt.src
+msgctxt "SID_SCH_EDITOPTIONS"
+msgid "Default Colors"
+msgstr "Grundfarben"
+
+#. QxH7n
+#: treeopt.src
+msgctxt "SID_FILTER_DLG"
+msgid "Load/Save"
+msgstr "Laden/Speichern"
+
+#. UiXpC
+#: treeopt.src
+msgctxt "SID_FILTER_DLG"
+msgid "General"
+msgstr "Allgemein"
+
+#. wxTEY
+#: treeopt.src
+msgctxt "SID_FILTER_DLG"
+msgid "VBA Properties"
+msgstr "VBA-Eigenschaften"
+
+#. M38Xh
+#: treeopt.src
+msgctxt "SID_FILTER_DLG"
+msgid "Microsoft Office"
+msgstr "Microsoft Office"
+
+#. jRPQv
+#: treeopt.src
+msgctxt "SID_FILTER_DLG"
+msgid "HTML Compatibility"
+msgstr "HTML-Kompatibilität"
+
+#. pFM3G
+#: treeopt.src
+msgctxt "SID_SB_STARBASEOPTIONS"
+msgid "%PRODUCTNAME Base"
+msgstr "%PRODUCTNAME Base"
+
+#. wuA45
+#: treeopt.src
+msgctxt "SID_SB_STARBASEOPTIONS"
+msgid "Connections"
+msgstr "Verbindungen"
+
+#. KcEWi
+#: treeopt.src
+msgctxt "SID_SB_STARBASEOPTIONS"
+msgid "Databases"
+msgstr "Datenbanken"
+
+#. YjEAy
+#: aboutconfigdialog.ui
+msgctxt "aboutconfigdialog|AboutConfig"
+msgid "Expert Configuration"
+msgstr "Experteneinstellungen"
+
+#. EhpWF
+#: aboutconfigdialog.ui
+msgctxt "aboutconfigdialog|searchButton"
+msgid "_Search"
+msgstr "_Suchen"
+
+#. BMohC
+#: aboutconfigdialog.ui
+msgctxt "aboutconfigdialog|preference"
+msgid "Preference Name"
+msgstr "Einstellungsname"
+
+#. PiV9t
+#: aboutconfigdialog.ui
+msgctxt "aboutconfigdialog|property"
+msgid "Property"
+msgstr "Eigenschaft"
+
+#. g6RFE
+#: aboutconfigdialog.ui
+msgctxt "aboutconfigdialog|type"
+msgid "Type"
+msgstr "Art"
+
+#. BYBgx
+#: aboutconfigdialog.ui
+msgctxt "aboutconfigdialog|value"
+msgid "Value"
+msgstr "Wert"
+
+#. GBiPy
+#: aboutconfigdialog.ui
+msgctxt "aboutconfigdialog|edit"
+msgid "Edit"
+msgstr "Bearbeiten"
+
+#. 2uM3W
+#: aboutconfigdialog.ui
+msgctxt "aboutconfigdialog|reset"
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#. B8FF9
+#: aboutconfigvaluedialog.ui
+msgctxt "aboutconfigvaluedialog|AboutConfigValueDialog"
+msgid "Name"
+msgstr "Name"
+
+#. SPnss
+#: aboutconfigvaluedialog.ui
+msgctxt "aboutconfigvaluedialog|label1"
+msgid "Value:"
+msgstr "Wert:"
+
+#. q8p26
+#: aboutdialog.ui
+msgctxt "aboutdialog|textbuffer1"
+msgid "Version: %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX"
+msgstr "Version: %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX"
+
+#. fFDEn
+#: aboutdialog.ui
+msgctxt "aboutdialog|AboutDialog"
+msgid "About %PRODUCTNAME"
+msgstr "Info zu %PRODUCTNAME"
+
+#. xTXty
+#: aboutdialog.ui
+msgctxt "aboutdialog|credits"
+msgid "Cre_dits"
+msgstr "_Beiträge"
+
+#. SqECU
+#: aboutdialog.ui
+msgctxt "aboutdialog|website"
+msgid "_Website"
+msgstr "_Webseite"
+
+#. xkBD8
+#: aboutdialog.ui
+msgctxt "aboutdialog|logoreplacement"
+msgid "%PRODUCTNAME"
+msgstr "%PRODUCTNAME"
+
+#. XZmEs
+#: aboutdialog.ui
+msgctxt "aboutdialog|buildid"
+msgid "Build ID: $BUILDID"
+msgstr "Build-ID: $BUILDID"
+
+#. Ru2AA
+#: aboutdialog.ui
+msgctxt "aboutdialog|locale"
+msgid "Locale: $LOCALE"
+msgstr "Gebietsschema: $LOCALE"
+
+#. TxdMF
+#: aboutdialog.ui
+msgctxt "aboutdialog|buildIdLink"
+msgid "See Log: $GITHASH"
+msgstr "Siehe Logdatei: $GITHASH"
+
+#. KFo3i
+#: aboutdialog.ui
+msgctxt "aboutdialog|description"
+msgid ""
+"%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for "
+"word processing, spreadsheets, presentations and more."
+msgstr ""
+"%PRODUCTNAME ist ein modernes und einfach zu nutzendes Open-Source-Programm "
+"für Textverarbeitung, Tabellenkalkulation, Präsentationen und mehr."
+
+#. 5vpFS
+#: aboutdialog.ui
+msgctxt "aboutdialog|copyright"
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Copyright © 2000–2017 LibreOffice-Beitragende."
+
+#. Lz9nx
+#: aboutdialog.ui
+msgctxt "aboutdialog|libreoffice"
+msgid "LibreOffice was based on OpenOffice.org."
+msgstr "LibreOffice basiert auf OpenOffice.org."
+
+#. cvY7p
+#: aboutdialog.ui
+msgctxt "aboutdialog|derived"
+msgid ""
+"%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
+msgstr ""
+"%PRODUCTNAME ist von LibreOffice abgeleitet, das auf OpenOffice.org basiert."
+
+#. WCnhx
+#: aboutdialog.ui
+msgctxt "aboutdialog|vendor"
+msgid "This release was supplied by %OOOVENDOR."
+msgstr "Dieses Produkt wurde von %OOOVENDOR zur Verfügung gestellt."
+
+#. GesDU
+#: aboutdialog.ui
+msgctxt "aboutdialog|link"
+msgid "https://www.libreoffice.org/about-us/credits/"
+msgstr "http://de.libreoffice.org/about-us/credits/"
+
+#. qRPnL
+#: accelconfigpage.ui
+msgctxt "accelconfigpage|label21"
+msgid "Shortcut Keys"
+msgstr "Tastenkombinationen"
+
+#. rEN3b
+#: accelconfigpage.ui
+msgctxt "accelconfigpage|office"
+msgid "%PRODUCTNAME"
+msgstr "%PRODUCTNAME"
+
+#. jjhUE
+#: accelconfigpage.ui
+msgctxt "accelconfigpage|module"
+msgid "$(MODULE)"
+msgstr "$(MODULE)"
+
+#. R2nhJ
+#: accelconfigpage.ui
+msgctxt "accelconfigpage|change"
+msgid "_Modify"
+msgstr "Än_dern"
+
+#. 6MwWq
+#: accelconfigpage.ui
+msgctxt "accelconfigpage|load"
+msgid "_Load..."
+msgstr "_Laden..."
+
+#. Uq7F5
+#: accelconfigpage.ui
+msgctxt "accelconfigpage|save"
+msgid "_Save..."
+msgstr "_Speichern..."
+
+#. T5FGo
+#: accelconfigpage.ui
+msgctxt "accelconfigpage|label23"
+msgid "_Category"
+msgstr "_Bereich"
+
+#. xfWzA
+#: accelconfigpage.ui
+msgctxt "accelconfigpage|label24"
+msgid "_Function"
+msgstr "_Funktion"
+
+#. 7PCeb
+#: accelconfigpage.ui
+msgctxt "accelconfigpage|label25"
+msgid "_Keys"
+msgstr "_Tasten"
+
+#. KQTN5
+#: accelconfigpage.ui
+msgctxt "accelconfigpage|label22"
+msgid "Functions"
+msgstr "Funktionen"
+
+#. vanfV
+#: acorexceptpage.ui
+msgctxt "acorexceptpage|autoabbrev"
+msgid "_AutoInclude"
+msgstr "Au_tomatisch aufnehmen"
+
+#. tpV8t
+#: acorexceptpage.ui
+msgctxt "acorexceptpage|newabbrev-atkobject"
+msgid "New abbreviations"
+msgstr "Abkürzungen hinzufügen"
+
+#. CEdQa
+#: acorexceptpage.ui
+msgctxt "acorexceptpage|replace"
+msgid "_Replace"
+msgstr "_Ersetzen"
+
+#. st6Jc
+#: acorexceptpage.ui
+msgctxt "acorexceptpage|delabbrev-atkobject"
+msgid "Delete abbreviations"
+msgstr "Abkürzungen löschen"
+
+#. VoLnB
+#: acorexceptpage.ui
+msgctxt "acorexceptpage|label1"
+msgid "Abbreviations (no Subsequent Capital)"
+msgstr "Abkürzungen (nach denen kein Großbuchstabe folgt)"
+
+#. kAzxB
+#: acorexceptpage.ui
+msgctxt "acorexceptpage|autodouble"
+msgid "A_utoInclude"
+msgstr "A_utomatisch aufnehmen"
+
+#. 7saGw
+#: acorexceptpage.ui
+msgctxt "acorexceptpage|newdouble-atkobject"
+msgid "New words with two initial capitals"
+msgstr "Neue Wörter, die mit zwei Großbuchstaben beginnen"
+
+#. 5Y2Wh
+#: acorexceptpage.ui
+msgctxt "acorexceptpage|replace1"
+msgid "_Replace"
+msgstr "_Ersetzen"
+
+#. MxRgg
+#: acorexceptpage.ui
+msgctxt "acorexceptpage|deldouble-atkobject"
+msgid "Delete words with two initial capitals"
+msgstr "Wörter, die mit zwei Großbuchstaben beginnen, löschen"
+
+#. 7FgqY
+#: acorexceptpage.ui
+msgctxt "acorexceptpage|label2"
+msgid "Words With TWo INitial CApitals"
+msgstr "WÖrter, die mit zwei GRoßbuchstaben beginnen"
+
+#. qjPVK
+#: acorreplacepage.ui
+msgctxt "acorreplacepage|replace"
+msgid "_Replace"
+msgstr "_Ersetzen"
+
+#. GLT9J
+#: acorreplacepage.ui
+msgctxt "acorreplacepage|label1"
+msgid "Repla_ce"
+msgstr "_Ersetzen"
+
+#. Fihah
+#: acorreplacepage.ui
+msgctxt "acorreplacepage|label2"
+msgid "_With:"
+msgstr "_Durch:"
+
+#. 25PQc
+#: acorreplacepage.ui
+msgctxt "acorreplacepage|textonly"
+msgid "_Text only"
+msgstr "Nur _Text"
+
+#. BuMBh
+#: agingdialog.ui
+msgctxt "agingdialog|AgingDialog"
+msgid "Aging"
+msgstr "Alterung"
+
+#. bJvBm
+#: agingdialog.ui
+msgctxt "agingdialog|label2"
+msgid "Aging degree:"
+msgstr "Alterungsgrad:"
+
+#. 6FVBe
+#: agingdialog.ui
+msgctxt "agingdialog|label1"
+msgid "Parameters"
+msgstr "Parameter"
+
+#. nxZTH
+#: applyautofmtpage.ui
+msgctxt "applyautofmtpage|edit"
+msgid "_Edit..."
+msgstr "_Bearbeiten..."
+
+#. sYxng
+#: applyautofmtpage.ui
+msgctxt "applyautofmtpage|label1"
+msgid "[M]: Replace while modifying existing text"
+msgstr "[N]: AutoFormat während der Nachbearbeitung"
+
+#. FtXg9
+#: applyautofmtpage.ui
+msgctxt "applyautofmtpage|label2"
+msgid "[T]: AutoCorrect while typing"
+msgstr "[E]: AutoKorrektur während der Eingabe"
+
+#. NujUD
+#: applyautofmtpage.ui
+msgctxt "applyautofmtpage|m"
+msgid "[M]"
+msgstr "[N]"
+
+#. qanx6
+#: applyautofmtpage.ui
+msgctxt "applyautofmtpage|t"
+msgid "[T]"
+msgstr "[E]"
+
+#. EjG2g
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|m"
+msgid "[M]"
+msgstr "[N]"
+
+#. YUBPr
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|t"
+msgid "[T]"
+msgstr "[E]"
+
+#. srHxL
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|singlereplace"
+msgid "Repla_ce"
+msgstr "E_rsetzen"
+
+#. EQrEN
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|startquoteft"
+msgid "_Start quote:"
+msgstr "Am Wortan_fang:"
+
+#. ASq8L
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|startsingle-atkobject"
+msgid "Start quote of single quotes"
+msgstr "Beginn: einfache Anführungszeichen"
+
+#. FFEVA
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|singlestartex"
+msgid "Default"
+msgstr "Standard"
+
+#. RindW
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|defaultsingle"
+msgid "_Default"
+msgstr "Standar_d"
+
+#. QY58F
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|defaultsingle-atkobject"
+msgid "Single quotes default"
+msgstr "Einfache Anführungszeichen"
+
+#. GRDaT
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|endquoteft"
+msgid "_End quote:"
+msgstr "Am Worten_de:"
+
+#. Am27U
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|endsingle-atkobject"
+msgid "End quote of single quotes"
+msgstr "Ende: einfache Anführungszeichen"
+
+#. M4BCQ
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|singleendex"
+msgid "Default"
+msgstr "Standard"
+
+#. VBKmS
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|label1"
+msgid "Single Quotes"
+msgstr "Einfache Anführungszeichen"
+
+#. Kadoe
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|doublereplace"
+msgid "Repla_ce"
+msgstr "_Ersetzen"
+
+#. MAW53
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|label6"
+msgid "_Start quote:"
+msgstr "A_m Wortanfang:"
+
+#. BEFQi
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|startdouble-atkobject"
+msgid "Start quote of double quotes"
+msgstr "Beginn: doppelte Anführungszeichen"
+
+#. oqBJC
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|doublestartex"
+msgid "Default"
+msgstr "Standard"
+
+#. F7yr9
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|defaultdouble"
+msgid "_Default"
+msgstr "Standar_d"
+
+#. KFTqi
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|defaultdouble-atkobject"
+msgid "Double quotes default"
+msgstr "Doppelte Anführungszeichen"
+
+#. cDwwK
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|label8"
+msgid "_End quote:"
+msgstr "Am _Wortende:"
+
+#. 85hDi
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|enddouble-atkobject"
+msgid "End quote of double quotes"
+msgstr "Ende: doppelte Anführungszeichen"
+
+#. FBndB
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|doubleendex"
+msgid "Default"
+msgstr "Standard"
+
+#. BDqUY
+#: applylocalizedpage.ui
+msgctxt "applylocalizedpage|label10"
+msgid "Double Quotes"
+msgstr "Doppelte Anführungszeichen"
+
+#. BXzDP
+#: areadialog.ui
+msgctxt "areadialog|AreaDialog"
+msgid "Area"
+msgstr "Fläche"
+
+#. eVAJs
+#: areadialog.ui
+msgctxt "areadialog|RID_SVXPAGE_AREA"
+msgid "Area"
+msgstr "Fläche"
+
+#. GvZjP
+#: areadialog.ui
+msgctxt "areadialog|RID_SVXPAGE_SHADOW"
+msgid "Shadow"
+msgstr "Schatten"
+
+#. 4XRBr
+#: areadialog.ui
+msgctxt "areadialog|RID_SVXPAGE_TRANSPARENCE"
+msgid "Transparency"
+msgstr "Transparenz"
+
+#. 2kC9i
+#: areatabpage.ui
+msgctxt "areatabpage|btnnone"
+msgid "None"
+msgstr "Keine"
+
+#. AiEuM
+#: areatabpage.ui
+msgctxt "areatabpage|btncolor"
+msgid "Color"
+msgstr "Farbe"
+
+#. zXDcA
+#: areatabpage.ui
+msgctxt "areatabpage|btngradient"
+msgid "Gradient"
+msgstr "Farbverlauf"
+
+#. 5y6vj
+#: areatabpage.ui
+msgctxt "areatabpage|btnhatch"
+msgid "Hatch"
+msgstr "Schraffur"
+
+#. MDHs7
+#: areatabpage.ui
+msgctxt "areatabpage|btnbitmap"
+msgid "Bitmap"
+msgstr "Bild"
+
+#. 9q7GD
+#: areatabpage.ui
+msgctxt "areatabpage|btnpattern"
+msgid "Pattern"
+msgstr "Muster"
+
+#. GSXcM
+#: asiantypography.ui
+msgctxt "asiantypography|checkForbidList"
+msgid "Apply list of forbidden characters to the beginning and end of lines"
+msgstr ""
+"Liste der verbotenen Zeichen am Zeilenanfang und -ende berücksichtigen"
+
+#. Pxxtv
+#: asiantypography.ui
+msgctxt "asiantypography|checkHangPunct"
+msgid "Allow hanging punctuation"
+msgstr "Hängende Interpunktion zulassen"
+
+#. FBFYC
+#: asiantypography.ui
+msgctxt "asiantypography|checkApplySpacing"
+msgid "Apply spacing between Asian, Latin and complex text"
+msgstr ""
+"Abstand zwischen asiatischem, lateinischem und komplexem Text anwenden"
+
+#. Xr8Ls
+#: asiantypography.ui
+msgctxt "asiantypography|labelLineChange"
+msgid "Line Change"
+msgstr "Zeilenwechsel"
+
+#. yjBU4
+#: assigncomponentdialog.ui
+msgctxt "assigncomponentdialog|AssignComponent"
+msgid "Assign Component"
+msgstr "Komponente zuweisen"
+
+#. EAbGN
+#: assigncomponentdialog.ui
+msgctxt "assigncomponentdialog|label1"
+msgid "Component method name:"
+msgstr "Komponentenmethode-Name:"
+
+#. anHSu
+#: autocorrectdialog.ui
+msgctxt "autocorrectdialog|AutoCorrectDialog"
+msgid "AutoCorrect"
+msgstr "AutoKorrektur"
+
+#. HBfWE
+#: autocorrectdialog.ui
+msgctxt "autocorrectdialog|label1"
+msgid "Replacements and exceptions for language:"
+msgstr "Ersetzungen und Ausnahmen für Sprache:"
+
+#. Qpig7
+#: autocorrectdialog.ui
+msgctxt "autocorrectdialog|replace"
+msgid "Replace"
+msgstr "Ersetzungen"
+
+#. gFjcV
+#: autocorrectdialog.ui
+msgctxt "autocorrectdialog|exceptions"
+msgid "Exceptions"
+msgstr "Ausnahmen"
+
+#. FCFAS
+#: autocorrectdialog.ui
+msgctxt "autocorrectdialog|options"
+msgid "Options"
+msgstr "Optionen"
+
+#. PgrDz
+#: autocorrectdialog.ui
+msgctxt "autocorrectdialog|apply"
+msgid "Options"
+msgstr "Optionen"
+
+#. TCyBg
+#: autocorrectdialog.ui
+msgctxt "autocorrectdialog|localized"
+msgid "Localized Options"
+msgstr "Gebietsschemaabhängige Optionen"
+
+#. G4rrm
+#: autocorrectdialog.ui
+msgctxt "autocorrectdialog|wordcompletion"
+msgid "Word Completion"
+msgstr "Wortergänzung"
+
+#. 2HJ6n
+#: autocorrectdialog.ui
+msgctxt "autocorrectdialog|smarttags"
+msgid "Smart Tags"
+msgstr "Geeignete Schlagwörter"
+
+#. 4ETjs
+#: backgroundpage.ui
+msgctxt "backgroundpage|asft"
+msgid "A_s:"
+msgstr "A_ls:"
+
+#. LBHfA
+#: backgroundpage.ui
+msgctxt "backgroundpage|forft"
+msgid "F_or:"
+msgstr "Fü_r:"
+
+#. DFGFK
+#: backgroundpage.ui
+msgctxt "backgroundpage|tablelb"
+msgid "Cell"
+msgstr "Zelle"
+
+#. PcFM4
+#: backgroundpage.ui
+msgctxt "backgroundpage|tablelb"
+msgid "Row"
+msgstr "Zeile"
+
+#. iFtHN
+#: backgroundpage.ui
+msgctxt "backgroundpage|tablelb"
+msgid "Table"
+msgstr "Tabelle"
+
+#. PijhM
+#: backgroundpage.ui
+msgctxt "backgroundpage|background_label"
+msgid "Background Color"
+msgstr "Hintergrundfarbe"
+
+#. eBEnp
+#: backgroundpage.ui
+msgctxt "backgroundpage|unlinkedft"
+msgid "Unlinked image"
+msgstr "Unverknüpftes Bild"
+
+#. rNE9z
+#: backgroundpage.ui
+msgctxt "backgroundpage|findgraphicsft"
+msgid "Find images"
+msgstr "Bilder suchen"
+
+#. jFyoe
+#: backgroundpage.ui
+msgctxt "backgroundpage|browse"
+msgid "_Browse..."
+msgstr "Durch_suchen..."
+
+#. 4mpJu
+#: backgroundpage.ui
+msgctxt "backgroundpage|link"
+msgid "_Link"
+msgstr "_Verknüpfung"
+
+#. i7osu
+#: backgroundpage.ui
+msgctxt "backgroundpage|label2"
+msgid "File"
+msgstr "Datei"
+
+#. AJSNU
+#: backgroundpage.ui
+msgctxt "backgroundpage|positionrb"
+msgid "_Position"
+msgstr "_Position"
+
+#. QEND2
+#: backgroundpage.ui
+msgctxt "backgroundpage|arearb"
+msgid "Ar_ea"
+msgstr "_Fläche"
+
+#. aQXso
+#: backgroundpage.ui
+msgctxt "backgroundpage|tilerb"
+msgid "_Tile"
+msgstr "_Nebeneinander"
+
+#. GGBhL
+#: backgroundpage.ui
+msgctxt "backgroundpage|label8"
+msgid "Type"
+msgstr "Art"
+
+#. WusYG
+#: backgroundpage.ui
+msgctxt "backgroundpage|showpreview"
+msgid "Pre_view"
+msgstr "Vor_schau"
+
+#. NAJVf
+#: backgroundpage.ui
+msgctxt "backgroundpage|liststore1"
+msgid "Color"
+msgstr "Farbe"
+
+#. BMDKF
+#: backgroundpage.ui
+msgctxt "backgroundpage|liststore1"
+msgid "Image"
+msgstr "Bild"
+
+#. C46DC
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|BaseLinksDialog"
+msgid "Edit Links"
+msgstr "Verknüpfungen bearbeiten"
+
+#. SEEGs
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|UPDATE_NOW"
+msgid "_Update"
+msgstr "Akt_ualisieren"
+
+#. MCZSo
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|OPEN"
+msgid "_Open"
+msgstr "Ö_ffnen"
+
+#. siGFm
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|CHANGE_SOURCE"
+msgid "_Modify..."
+msgstr "Ä_ndern..."
+
+#. RDZHa
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|BREAK_LINK"
+msgid "_Break Link"
+msgstr "_Lösen"
+
+#. A6Mz4
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|FILES"
+msgid "Source file"
+msgstr "Quelldatei"
+
+#. orUCD
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|LINKS"
+msgid "Element:"
+msgstr "Element:"
+
+#. 5Hr79
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|TYPE"
+msgid "Type"
+msgstr "Art"
+
+#. rnFJV
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|STATUS"
+msgid "Status"
+msgstr "Status"
+
+#. uU6Dx
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|TB_LINKS"
+msgid "Edit Links"
+msgstr "Verknüpfungen bearbeiten"
+
+#. VUouK
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|FILES2"
+msgid "Source file"
+msgstr "Quelldatei"
+
+#. ZukQV
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|SOURCE2"
+msgid "Element:"
+msgstr "Element:"
+
+#. jg4VW
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|TYPE2"
+msgid "Type:"
+msgstr "Typ:"
+
+#. BPXPn
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|UPDATE"
+msgid "Update:"
+msgstr "Aktualisieren:"
+
+#. NpTPK
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|AUTOMATIC"
+msgid "_Automatic"
+msgstr "A_utomatisch"
+
+#. GzGG5
+#: baselinksdialog.ui
+msgctxt "baselinksdialog|MANUAL"
+msgid "Ma_nual"
+msgstr "Ma_nuell"
+
+#. D264D
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|BTN_IMPORT"
+msgid "Add / Import"
+msgstr "Importieren"
+
+#. UYRCn
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|label1"
+msgid "Bitmap"
+msgstr "Bild"
+
+#. CFtG8
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|label3"
+msgid "Style:"
+msgstr "Stil:"
+
+#. 2qj3G
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|bitmapstyle"
+msgid "Original"
+msgstr "Original"
+
+#. 7yAyA
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|bitmapstyle"
+msgid "Filled"
+msgstr "Füllend"
+
+#. tksrC
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|bitmapstyle"
+msgid "Stretched"
+msgstr "Gestreckt"
+
+#. yoGqT
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|bitmapstyle"
+msgid "Zoomed"
+msgstr "Vergrößert"
+
+#. sZsHX
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|bitmapstyle"
+msgid "Custom"
+msgstr "Angepasst"
+
+#. exzsR
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|bitmapstyle"
+msgid "Tiled"
+msgstr "Gekachelt"
+
+#. dHVHq
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|label4"
+msgid "Size:"
+msgstr "Größe:"
+
+#. 548D8
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|label5"
+msgid "W:"
+msgstr "B:"
+
+#. E7PHr
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|label6"
+msgid "H:"
+msgstr "H:"
+
+#. D7XC6
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|scaletsb"
+msgid "Scale"
+msgstr "Skalierung"
+
+#. r9QEy
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|label7"
+msgid "Position:"
+msgstr "Position:"
+
+#. qqHXj
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|positionlb"
+msgid "Top Left"
+msgstr "Oben links"
+
+#. SuAZu
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|positionlb"
+msgid "Top Center"
+msgstr "Oben zentriert"
+
+#. CiwFK
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|positionlb"
+msgid "Top Right"
+msgstr "Oben rechts"
+
+#. gB3qr
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|positionlb"
+msgid "Center Left"
+msgstr "Mitte links"
+
+#. 6nG4k
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|positionlb"
+msgid "Center"
+msgstr "Mitte zentriert"
+
+#. 5uwBi
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|positionlb"
+msgid "Center Right"
+msgstr "Mitte rechts"
+
+#. 9bWMT
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|positionlb"
+msgid "Bottom Left"
+msgstr "Unten links"
+
+#. BFD9u
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|positionlb"
+msgid "Bottom Center"
+msgstr "Unten zentriert"
+
+#. TGk6s
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|positionlb"
+msgid "Bottom Right"
+msgstr "Unten rechts"
+
+#. s3kat
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|label9"
+msgid "Tiling Position:"
+msgstr "Kachelposition:"
+
+#. qJBQs
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|label10"
+msgid "X:"
+msgstr "X:"
+
+#. DS5qJ
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|label11"
+msgid "Y:"
+msgstr "Y:"
+
+#. oDXfi
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|label15"
+msgid "Tiling Offset:"
+msgstr "Kachelversatz:"
+
+#. GEMsd
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|tileofflb"
+msgid "Row"
+msgstr "Zeile"
+
+#. NFEF6
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|tileofflb"
+msgid "Column"
+msgstr "Spalte"
+
+#. CAdor
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|label2"
+msgid "Options"
+msgstr "Optionen"
+
+#. EqVUn
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|CTL_BITMAP_PREVIEW-atkobject"
+msgid "Example"
+msgstr "Beispiel"
+
+#. uFFCW
+#: bitmaptabpage.ui
+msgctxt "bitmaptabpage|label8"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. E3FFR
+#: blackorwhitelistentrydialog.ui
+msgctxt "blackorwhitelistentrydialog|label4"
+msgid "Operating system:"
+msgstr "Betriebssystem:"
+
+#. TCSFy
+#: blackorwhitelistentrydialog.ui
+msgctxt "blackorwhitelistentrydialog|label5"
+msgid "Version:"
+msgstr "Version:"
+
+#. Bm5M5
+#: blackorwhitelistentrydialog.ui
+msgctxt "blackorwhitelistentrydialog|label6"
+msgid "OpenCL vendor:"
+msgstr "OpenCL-Anbieter:"
+
+#. Mu3FY
+#: blackorwhitelistentrydialog.ui
+msgctxt "blackorwhitelistentrydialog|label7"
+msgid "Device:"
+msgstr "Gerät:"
+
+#. MQ4B7
+#: blackorwhitelistentrydialog.ui
+msgctxt "blackorwhitelistentrydialog|label8"
+msgid "Driver version:"
+msgstr "Treiberversion:"
+
+#. VxVBK
+#: blackorwhitelistentrydialog.ui
+msgctxt "blackorwhitelistentrydialog|bledittitle"
+msgid "Edit OpenCL Blacklist Entry"
+msgstr "OpenCL-Negativlisteneintrag bearbeiten"
+
+#. 87CDw
+#: blackorwhitelistentrydialog.ui
+msgctxt "blackorwhitelistentrydialog|bladdtitle"
+msgid "Create OpenCL Blacklist Entry"
+msgstr "OpenCL-Negativlisteneintrag erstellen"
+
+#. QWF5M
+#: blackorwhitelistentrydialog.ui
+msgctxt "blackorwhitelistentrydialog|wledittitle"
+msgid "Edit OpenCL Whitelist Entry"
+msgstr "OpenCL-Positivlisteneintrag bearbeiten"
+
+#. Y5tn9
+#: blackorwhitelistentrydialog.ui
+msgctxt "blackorwhitelistentrydialog|wladdtitle"
+msgid "Create OpenCL Whitelist Entry"
+msgstr "OpenCL-Positivlisteneintrag erstellen"
+
+#. 7mQJL
+#: blackorwhitelistentrydialog.ui
+msgctxt "blackorwhitelistentrydialog|label1"
+msgid "OpenCL Information"
+msgstr "OpenCL-Information"
+
+#. DETYD
+#: blackorwhitelistentrydialog.ui
+msgctxt "blackorwhitelistentrydialog|os-liststore"
+msgid "Any"
+msgstr "Alle"
+
+#. AYRA3
+#: borderareatransparencydialog.ui
+msgctxt "borderareatransparencydialog|BorderAreaTransparencyDialog"
+msgid "Border / Background"
+msgstr "Umrandung / Hintergrund"
+
+#. ogcAy
+#: borderareatransparencydialog.ui
+msgctxt "borderareatransparencydialog|borders"
+msgid "Borders"
+msgstr "Umrandung"
+
+#. nDGCh
+#: borderareatransparencydialog.ui
+msgctxt "borderareatransparencydialog|area"
+msgid "Area"
+msgstr "Fläche"
+
+#. gmozB
+#: borderareatransparencydialog.ui
+msgctxt "borderareatransparencydialog|transparence"
+msgid "Transparency"
+msgstr "Transparenz"
+
+#. kvArx
+#: borderbackgrounddialog.ui
+msgctxt "borderbackgrounddialog|BorderBackgroundDialog"
+msgid "Border / Background"
+msgstr "Umrandung / Hintergrund"
+
+#. gVV2M
+#: borderbackgrounddialog.ui
+msgctxt "borderbackgrounddialog|borders"
+msgid "Borders"
+msgstr "Umrandung"
+
+#. Wamfp
+#: borderbackgrounddialog.ui
+msgctxt "borderbackgrounddialog|background"
+msgid "Background"
+msgstr "Hintergrund"
+
+#. 8B7Rg
+#: borderpage.ui
+msgctxt "borderpage|userdefft"
+msgid "_User-defined:"
+msgstr "_Benutzerdefiniert:"
+
+#. sRXeg
+#: borderpage.ui
+msgctxt "borderpage|label14"
+msgid "Pr_esets:"
+msgstr "Vor_einstellungen:"
+
+#. WTqFr
+#: borderpage.ui
+msgctxt "borderpage|rmadjcellbordersft"
+msgid "_Adjacent Cells:"
+msgstr "An_grenzende Zellen:"
+
+#. FHdEF
+#: borderpage.ui
+msgctxt "borderpage|rmadjcellborders"
+msgid "Remove border"
+msgstr "Umrandung entfernen"
+
+#. 2PwAL
+#: borderpage.ui
+msgctxt "borderpage|label8"
+msgid "Line Arrangement"
+msgstr "Linienanordnung"
+
+#. GwAqX
+#: borderpage.ui
+msgctxt "borderpage|label15"
+msgid "St_yle:"
+msgstr "Sti_l:"
+
+#. 8UGAB
+#: borderpage.ui
+msgctxt "borderpage|label16"
+msgid "_Width:"
+msgstr "_Breite:"
+
+#. Dweon
+#: borderpage.ui
+msgctxt "borderpage|label17"
+msgid "_Color:"
+msgstr "_Farbe:"
+
+#. uwByw
+#: borderpage.ui
+msgctxt "borderpage|label9"
+msgid "Line"
+msgstr "Linie"
+
+#. VeC3F
+#: borderpage.ui
+msgctxt "borderpage|leftft"
+msgid "_Left:"
+msgstr "_Links:"
+
+#. nULKu
+#: borderpage.ui
+msgctxt "borderpage|rightft"
+msgid "Right:"
+msgstr "Rechts:"
+
+#. aFSka
+#: borderpage.ui
+msgctxt "borderpage|topft"
+msgid "_Top:"
+msgstr "_Oben:"
+
+#. fRE8t
+#: borderpage.ui
+msgctxt "borderpage|bottomft"
+msgid "_Bottom:"
+msgstr "_Unten:"
+
+#. M8CGp
+#: borderpage.ui
+msgctxt "borderpage|sync"
+msgid "Synchronize"
+msgstr "Synchronisieren"
+
+#. YVBaD
+#: borderpage.ui
+msgctxt "borderpage|label10"
+msgid "Spacing to Contents"
+msgstr "Abstand zum Inhalt"
+
+#. 76zLX
+#: borderpage.ui
+msgctxt "borderpage|label22"
+msgid "_Position:"
+msgstr "_Position:"
+
+#. C7T8B
+#: borderpage.ui
+msgctxt "borderpage|distanceft"
+msgid "Distan_ce:"
+msgstr "_Distanz:"
+
+#. gEF6E
+#: borderpage.ui
+msgctxt "borderpage|shadowcolorft"
+msgid "C_olor:"
+msgstr "_Farbe:"
+
+#. RsGNr
+#: borderpage.ui
+msgctxt "borderpage|label11"
+msgid "Shadow Style"
+msgstr "Schatten"
+
+#. BLQ4v
+#: borderpage.ui
+msgctxt "borderpage|mergewithnext"
+msgid "_Merge with next paragraph"
+msgstr "_Mit dem nächsten Absatz verschmelzen"
+
+#. xkm5N
+#: borderpage.ui
+msgctxt "borderpage|mergeadjacent"
+msgid "_Merge adjacent line styles"
+msgstr "Be_nachbarte Linienstile zusammenführen"
+
+#. b2Ym7
+#: borderpage.ui
+msgctxt "borderpage|label12"
+msgid "Properties"
+msgstr "Eigenschaften"
+
+#. GVjnt
+#: breaknumberoption.ui
+msgctxt "breaknumberoption|BreakNumberOption"
+msgid "Hyphenation"
+msgstr "Silbentrennung"
+
+#. 8Fp43
+#: breaknumberoption.ui
+msgctxt "breaknumberoption|beforelabel"
+msgid "Characters Before Break"
+msgstr "Zeichen vor Umbruch"
+
+#. p6cfZ
+#: breaknumberoption.ui
+msgctxt "breaknumberoption|afterlabel"
+msgid "Characters After Break"
+msgstr "Zeichen nach Umbruch"
+
+#. sAo4B
+#: breaknumberoption.ui
+msgctxt "breaknumberoption|minimallabel"
+msgid "Minimal Word Length"
+msgstr "Minimale Wortlänge"
+
+#. 3C4Fe
+#: calloutdialog.ui
+msgctxt "calloutdialog|CalloutDialog"
+msgid "Position and Size"
+msgstr "Position und Größe"
+
+#. te8F8
+#: calloutdialog.ui
+msgctxt "calloutdialog|RID_SVXPAGE_POSITION_SIZE"
+msgid "Position and Size"
+msgstr "Position und Größe"
+
+#. VWZTj
+#: calloutdialog.ui
+msgctxt "calloutdialog|RID_SVXPAGE_SWPOSSIZE"
+msgid "Position and Size"
+msgstr "Position und Größe"
+
+#. sCFW5
+#: calloutdialog.ui
+msgctxt "calloutdialog|RID_SVXPAGE_CAPTION"
+msgid "Callout"
+msgstr "Legende"
+
+#. cAZqx
+#: calloutpage.ui
+msgctxt "calloutpage|label2"
+msgid "_Extension:"
+msgstr "A_nsatz:"
+
+#. SFvEw
+#: calloutpage.ui
+msgctxt "calloutpage|lengthft"
+msgid "_Length:"
+msgstr "_Länge:"
+
+#. Yb2kZ
+#: calloutpage.ui
+msgctxt "calloutpage|optimal"
+msgid "_Optimal"
+msgstr "_Optimal"
+
+#. dD3os
+#: calloutpage.ui
+msgctxt "calloutpage|positionft"
+msgid "_Position:"
+msgstr "_Position:"
+
+#. EXWoL
+#: calloutpage.ui
+msgctxt "calloutpage|byft"
+msgid "_By:"
+msgstr "_Um:"
+
+#. R7VbC
+#: calloutpage.ui
+msgctxt "calloutpage|position"
+msgid "Top"
+msgstr "Oben"
+
+#. G4QwP
+#: calloutpage.ui
+msgctxt "calloutpage|position"
+msgid "Middle"
+msgstr "Mitte"
+
+#. WU9cc
+#: calloutpage.ui
+msgctxt "calloutpage|position"
+msgid "Bottom"
+msgstr "Unten"
+
+#. XAgVD
+#: calloutpage.ui
+msgctxt "calloutpage|position"
+msgid "Left"
+msgstr "Links"
+
+#. W5B2V
+#: calloutpage.ui
+msgctxt "calloutpage|position"
+msgid "Center"
+msgstr "Mitte"
+
+#. NNBsv
+#: calloutpage.ui
+msgctxt "calloutpage|position"
+msgid "Right"
+msgstr "Rechts"
+
+#. jG4AE
+#: calloutpage.ui
+msgctxt "calloutpage|label1"
+msgid "_Spacing:"
+msgstr "A_bstand:"
+
+#. wvzCN
+#: calloutpage.ui
+msgctxt "calloutpage|linetypes"
+msgid "Straight Line"
+msgstr "Gerade Linie"
+
+#. bQMyC
+#: calloutpage.ui
+msgctxt "calloutpage|linetypes"
+msgid "Angled Line"
+msgstr "Abgewinkelte Linie"
+
+#. LFs2D
+#: calloutpage.ui
+msgctxt "calloutpage|linetypes"
+msgid "Angled Connector Line"
+msgstr "Abgewinkelte Linie einfach geknickt"
+
+#. vfBPx
+#: calloutpage.ui
+msgctxt "calloutpage|liststore1"
+msgid "Optimal"
+msgstr "Optimal"
+
+#. HjpWL
+#: calloutpage.ui
+msgctxt "calloutpage|liststore1"
+msgid "From top"
+msgstr "Von oben"
+
+#. CQsFs
+#: calloutpage.ui
+msgctxt "calloutpage|liststore1"
+msgid "From left"
+msgstr "Von links"
+
+#. ZjSVS
+#: calloutpage.ui
+msgctxt "calloutpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#. bzD84
+#: calloutpage.ui
+msgctxt "calloutpage|liststore1"
+msgid "Vertical"
+msgstr "Vertikal"
+
+#. vQp3A
+#: cellalignment.ui
+msgctxt "cellalignment|labelDegrees"
+msgid "_Degrees:"
+msgstr "_Winkel:"
+
+#. La2Pc
+#: cellalignment.ui
+msgctxt "cellalignment|labelRefEdge"
+msgid "_Reference edge:"
+msgstr "_Bezugskante:"
+
+#. Gwudo
+#: cellalignment.ui
+msgctxt "cellalignment|checkVertStack"
+msgid "Vertically s_tacked"
+msgstr "Senkrecht g_estapelt"
+
+#. XBFYt
+#: cellalignment.ui
+msgctxt "cellalignment|checkAsianMode"
+msgid "Asian layout _mode"
+msgstr "Asiatischer _Layoutmodus"
+
+#. Kh9JE
+#: cellalignment.ui
+msgctxt "cellalignment|labelTextOrient"
+msgid "Text Orientation"
+msgstr "Schreibrichtung"
+
+#. eM4r3
+#: cellalignment.ui
+msgctxt "cellalignment|checkWrapTextAuto"
+msgid "_Wrap text automatically"
+msgstr "Automatischer Zeilenumbru_ch"
+
+#. GDRER
+#: cellalignment.ui
+msgctxt "cellalignment|checkShrinkFitCellSize"
+msgid "_Shrink to fit cell size"
+msgstr "_An Zellgröße anpassen"
+
+#. Phw2T
+#: cellalignment.ui
+msgctxt "cellalignment|checkHyphActive"
+msgid "Hyphenation _active"
+msgstr "Silben_trennung aktiv"
+
+#. pQLTe
+#: cellalignment.ui
+msgctxt "cellalignment|LabelTxtDir"
+msgid "Te_xt direction:"
+msgstr "Te_xtfluss:"
+
+#. jDFtf
+#: cellalignment.ui
+msgctxt "cellalignment|labelProperties"
+msgid "Properties"
+msgstr "Eigenschaften"
+
+#. XDvh9
+#: cellalignment.ui
+msgctxt "cellalignment|labelHorzAlign"
+msgid "Hori_zontal"
+msgstr "_Horizontal"
+
+#. SDF4B
+#: cellalignment.ui
+msgctxt "cellalignment|labelVertAlign"
+msgid "_Vertical"
+msgstr "_Vertikal"
+
+#. rdTV9
+#: cellalignment.ui
+msgctxt "cellalignment|labelIndent"
+msgid "I_ndent"
+msgstr "Einzu_g"
+
+#. FT9GJ
+#: cellalignment.ui
+msgctxt "cellalignment|LabelTextAlig"
+msgid "Text Alignment"
+msgstr "Textausrichtung"
+
+#. CDKBz
+#: cellalignment.ui
+msgctxt "cellalignment|labelSTR_BOTTOMLOCK"
+msgid "Text Extension From Lower Cell Border"
+msgstr "Textausdehnung von unterer Zellkante aus."
+
+#. 7MTSt
+#: cellalignment.ui
+msgctxt "cellalignment|labelSTR_TOPLOCK"
+msgid "Text Extension From Upper Cell Border"
+msgstr "Textausdehnung von oberer Zellkante aus."
+
+#. HJYjP
+#: cellalignment.ui
+msgctxt "cellalignment|labelSTR_CELLLOCK"
+msgid "Text Extension Inside Cell"
+msgstr "Textausdehnung nur innerhalb der Zelle."
+
+#. EDRZX
+#: cellalignment.ui
+msgctxt "cellalignment|labelABCD"
+msgid "ABCD"
+msgstr "ABCD"
+
+#. FUsYk
+#: cellalignment.ui
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Default"
+msgstr "Standard"
+
+#. tweuQ
+#: cellalignment.ui
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Left"
+msgstr "Links"
+
+#. RGwHA
+#: cellalignment.ui
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Center"
+msgstr "Zentriert"
+
+#. W9PDc
+#: cellalignment.ui
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Right"
+msgstr "Rechts"
+
+#. sFf4x
+#: cellalignment.ui
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Justified"
+msgstr "Blocksatz"
+
+#. yJ33b
+#: cellalignment.ui
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Filled"
+msgstr "Ausgefüllt"
+
+#. CF59Y
+#: cellalignment.ui
+msgctxt "cellalignment|liststoreHorzAlign"
+msgid "Distributed"
+msgstr "Verteilt"
+
+#. Cu2BM
+#: cellalignment.ui
+msgctxt "cellalignment|liststoreVertAlign"
+msgid "Default"
+msgstr "Standard"
+
+#. dNANA
+#: cellalignment.ui
+msgctxt "cellalignment|liststoreVertAlign"
+msgid "Top"
+msgstr "Oben"
+
+#. 8qsJF
+#: cellalignment.ui
+msgctxt "cellalignment|liststoreVertAlign"
+msgid "Middle"
+msgstr "Mitte"
+
+#. eGhGU
+#: cellalignment.ui
+msgctxt "cellalignment|liststoreVertAlign"
+msgid "Bottom"
+msgstr "Unten"
+
+#. TGeEd
+#: cellalignment.ui
+msgctxt "cellalignment|liststoreVertAlign"
+msgid "Justified"
+msgstr "Blocksatz"
+
+#. s7QDA
+#: cellalignment.ui
+msgctxt "cellalignment|liststoreVertAlign"
+msgid "Distributed"
+msgstr "Verteilt"
+
+#. xPtim
+#: certdialog.ui
+msgctxt "certdialog|CertDialog"
+msgid "Certificate Path"
+msgstr "Zertifizierungspfad"
+
+#. 3NRNS
+#: certdialog.ui
+msgctxt "certdialog|add"
+msgid "_Add..."
+msgstr "_Hinzufügen..."
+
+#. GFGjC
+#: certdialog.ui
+msgctxt "certdialog|label2"
+msgid ""
+"Select or add the correct Network Security Services Certificate directory to"
+" use for digital signatures:"
+msgstr ""
+"Wählen Sie aus oder erstellen Sie das korrekte Verzeichnis für das Network-"
+"Security-Services-Zertifikat, das für die digitalen Signaturen benutzt "
+"werden soll:"
+
+#. BbEyB
+#: certdialog.ui
+msgctxt "certdialog|manual"
+msgid "manual"
+msgstr "Manuell"
+
+#. 7NJfB
+#: certdialog.ui
+msgctxt "certdialog|profile"
+msgid "Profile"
+msgstr "Profil"
+
+#. YBT5H
+#: certdialog.ui
+msgctxt "certdialog|dir"
+msgid "Directory"
+msgstr "Verzeichnis"
+
+#. zWhfK
+#: certdialog.ui
+msgctxt "certdialog|certdir"
+msgid "Select a Certificate directory"
+msgstr "Wählen Sie ein Zertifizierungsverzeichnis aus"
+
+#. Bt5Lw
+#: certdialog.ui
+msgctxt "certdialog|label1"
+msgid "Certificate Path"
+msgstr "Zertifizierungspfad"
+
+#. WQxtG
+#: charnamepage.ui
+msgctxt "charnamepage|westlangft-nocjk"
+msgid "Language:"
+msgstr "Sprache:"
+
+#. CLyfM
+#: charnamepage.ui
+msgctxt "charnamepage|westfontnameft-nocjk"
+msgid "Family:"
+msgstr "Familie:"
+
+#. fruNh
+#: charnamepage.ui
+msgctxt "charnamepage|weststyleft-nocjk"
+msgid "Style:"
+msgstr "Stil:"
+
+#. YcKtn
+#: charnamepage.ui
+msgctxt "charnamepage|westsizeft-nocjk"
+msgid "Size:"
+msgstr "Größe:"
+
+#. RC44r
+#: charnamepage.ui
+msgctxt "charnamepage|westfontnameft-cjk"
+msgid "Family:"
+msgstr "Familie:"
+
+#. DCjYw
+#: charnamepage.ui
+msgctxt "charnamepage|weststyleft-cjk"
+msgid "Style:"
+msgstr "Stil:"
+
+#. nKfjE
+#: charnamepage.ui
+msgctxt "charnamepage|westsizeft-cjk"
+msgid "Size:"
+msgstr "Größe:"
+
+#. jJc8T
+#: charnamepage.ui
+msgctxt "charnamepage|westlangft-cjk"
+msgid "Language:"
+msgstr "Sprache:"
+
+#. LYK4e
+#: charnamepage.ui
+msgctxt "charnamepage|label4"
+msgid "Western Text Font"
+msgstr "Schriftart für westlichen Text"
+
+#. TfGto
+#: charnamepage.ui
+msgctxt "charnamepage|eastfontnameft"
+msgid "Family:"
+msgstr "Familie:"
+
+#. JDE4o
+#: charnamepage.ui
+msgctxt "charnamepage|eaststyleft"
+msgid "Style:"
+msgstr "Stil:"
+
+#. q4WZB
+#: charnamepage.ui
+msgctxt "charnamepage|eastsizeft"
+msgid "Size:"
+msgstr "Größe:"
+
+#. 6MVEP
+#: charnamepage.ui
+msgctxt "charnamepage|eastlangft"
+msgid "Language:"
+msgstr "Sprache:"
+
+#. vAo4E
+#: charnamepage.ui
+msgctxt "charnamepage|label5"
+msgid "Asian Text Font"
+msgstr "Schriftart für asiatischen Text"
+
+#. QbEC7
+#: charnamepage.ui
+msgctxt "charnamepage|ctlfontnameft"
+msgid "Family:"
+msgstr "Familie:"
+
+#. h8PBu
+#: charnamepage.ui
+msgctxt "charnamepage|ctlstyleft"
+msgid "Style:"
+msgstr "Stil:"
+
+#. FSm5y
+#: charnamepage.ui
+msgctxt "charnamepage|ctlsizeft"
+msgid "Size:"
+msgstr "Größe:"
+
+#. j6bmf
+#: charnamepage.ui
+msgctxt "charnamepage|ctllangft"
+msgid "Language:"
+msgstr "Sprache:"
+
+#. C8hPj
+#: charnamepage.ui
+msgctxt "charnamepage|label6"
+msgid "CTL Font"
+msgstr "Schriftart für CTL"
+
+#. mz4RX
+#: charnamepage.ui
+msgctxt "charnamepage|preview"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. LE7Wp
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|docboundaries"
+msgid "Text boundaries"
+msgstr "Textbegrenzungen"
+
+#. CQrvm
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|doccolor"
+msgid "Document background"
+msgstr "Dokumenthintergrund"
+
+#. hDvCW
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|general"
+msgid "General"
+msgstr "Allgemein"
+
+#. dWQqH
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|appback"
+msgid "Application background"
+msgstr "Hintergrund der Anwendung"
+
+#. XAMAa
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|objboundaries"
+msgid "Object boundaries"
+msgstr "Objektumrandungen"
+
+#. KsUa5
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|tblboundaries"
+msgid "Table boundaries"
+msgstr "Tabellenbegrenzungen"
+
+#. TkNp4
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|font"
+msgid "Font color"
+msgstr "Schriftfarbe"
+
+#. EhDTB
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|unvisitedlinks"
+msgid "Unvisited links"
+msgstr "Unbesuchte Verknüpfungen"
+
+#. UTPiE
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|visitedlinks"
+msgid "Visited links"
+msgstr "Besuchte Verknüpfungen"
+
+#. RP2Vp
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|autospellcheck"
+msgid "AutoSpellcheck"
+msgstr "AutoRechtschreibprüfung"
+
+#. CpXy5
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|smarttags"
+msgid "Smart Tags"
+msgstr "Geeignete Schlagwörter"
+
+#. ZZcPY
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|writer"
+msgid "Text Document"
+msgstr "Textdokument"
+
+#. 3bVoq
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|writergrid"
+msgid "Grid"
+msgstr "Gitter"
+
+#. wBw2w
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|script"
+msgid "Script Indicator"
+msgstr "Skriptanzeiger"
+
+#. RydzU
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|field"
+msgid "Field shadings"
+msgstr "Feldhinterlegungen"
+
+#. DqZGn
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|index"
+msgid "Index and table shadings"
+msgstr "Verzeichnishinterlegungen"
+
+#. fitqS
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|section"
+msgid "Section boundaries"
+msgstr "Bereichsumrandungen"
+
+#. wHL6h
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|hdft"
+msgid "Headers and Footer delimiter"
+msgstr "Kopf- und Fußzeilen Trennzeichen"
+
+#. dCEBJ
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|pagebreak"
+msgid "Page and column breaks"
+msgstr "Seiten- und Spaltenumbrüche"
+
+#. yrTZF
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|direct"
+msgid "Direct Cursor"
+msgstr "Direkt-Cursor"
+
+#. XxGeg
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|html"
+msgid "HTML Document"
+msgstr "HTML-Dokument"
+
+#. NcJi8
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|sgml"
+msgid "SGML syntax highlighting"
+msgstr "SGML Syntax-Hervorhebung"
+
+#. uYB5C
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|htmlcomment"
+msgid "Comment highlighting"
+msgstr "Kommentar-Hervorhebung"
+
+#. 82UJf
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|htmlkeyword"
+msgid "Keyword highlighting"
+msgstr "Schlüsselwort-Hervorhebung"
+
+#. otYwD
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|unknown"
+msgid "Text"
+msgstr "Text"
+
+#. mA6HV
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|calc"
+msgid "Spreadsheet"
+msgstr "Tabellendokument"
+
+#. GFFes
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|calcgrid"
+msgid "Grid lines"
+msgstr "Gitterlinien"
+
+#. MGvyJ
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|brk"
+msgid "Page breaks"
+msgstr "Seitenumbrüche"
+
+#. aNnBE
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|brkmanual"
+msgid "Manual page breaks"
+msgstr "Manuelle Seitenumbrüche"
+
+#. PVzmm
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|brkauto"
+msgid "Automatic page breaks"
+msgstr "Automatische Seitenumbrüche"
+
+#. NgGUC
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|det"
+msgid "Detective"
+msgstr "Detektiv"
+
+#. 5Mp8g
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|deterror"
+msgid "Detective error"
+msgstr "Detektiv-Fehler"
+
+#. K5CDH
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|ref"
+msgid "References"
+msgstr "Bezüge"
+
+#. ebAgi
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|notes"
+msgid "Notes background"
+msgstr "Notizhintergrund"
+
+#. oKFnR
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|draw"
+msgid "Drawing / Presentation"
+msgstr "Zeichnung / Präsentation"
+
+#. C8q88
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|drawgrid"
+msgid "Grid"
+msgstr "Gitter"
+
+#. 4JokA
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|basic"
+msgid "Basic Syntax Highlighting"
+msgstr "Basic Syntaxhervorhebung"
+
+#. yELpi
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|basicid"
+msgid "Identifier"
+msgstr "Bezeichner"
+
+#. 5uQto
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|basiccomment"
+msgid "Comment"
+msgstr "Kommentar"
+
+#. 73qea
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|basicnumber"
+msgid "Number"
+msgstr "Zahl"
+
+#. rHmNM
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|basicstring"
+msgid "String"
+msgstr "Text"
+
+#. Kf9eR
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|basicop"
+msgid "Operator"
+msgstr "Operator"
+
+#. EFQpW
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|basickeyword"
+msgid "Reserved expression"
+msgstr "Reservierter Ausdruck"
+
+#. QEuyS
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|error"
+msgid "Error"
+msgstr "Fehler"
+
+#. PLRFA
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|sql"
+msgid "SQL Syntax Highlighting"
+msgstr "SQL Syntax-Hervorhebung"
+
+#. ERVJA
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|sqlid"
+msgid "Identifier"
+msgstr "Bezeichner"
+
+#. nAF39
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|sqlnumber"
+msgid "Number"
+msgstr "Zahl"
+
+#. B6Bku
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|sqlstring"
+msgid "String"
+msgstr "Text"
+
+#. FPDgu
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|sqlop"
+msgid "Operator"
+msgstr "Operator"
+
+#. 4t4Ww
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|sqlkeyword"
+msgid "Keyword"
+msgstr "Schlüsselwort"
+
+#. qbVhS
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|sqlparam"
+msgid "Parameter"
+msgstr "Parameter"
+
+#. B7ubh
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|sqlcomment"
+msgid "Comment"
+msgstr "Kommentar"
+
+#. HshHE
+#: colorconfigwin.ui
+msgctxt "colorconfigwin|shadows"
+msgid "Shadows"
+msgstr "Schatten"
+
+#. ZFBK2
+#: colorpage.ui
+msgctxt "colorpage|label21"
+msgid "Palette:"
+msgstr "Palette:"
+
+#. fKSac
+#: colorpage.ui
+msgctxt "colorpage|label20"
+msgid "Recent Colors"
+msgstr "Zuletzt benutzte Farben"
+
+#. MwnMh
+#: colorpage.ui
+msgctxt "colorpage|RGB"
+msgid "RGB"
+msgstr "RGB"
+
+#. Yq5RX
+#: colorpage.ui
+msgctxt "colorpage|CMYK"
+msgid "CMYK"
+msgstr "CMYK"
+
+#. wnZGh
+#: colorpage.ui
+msgctxt "colorpage|delete"
+msgid "Delete"
+msgstr "Löschen"
+
+#. m2Qm7
+#: colorpage.ui
+msgctxt "colorpage|label22"
+msgid "Custom Palette"
+msgstr "Palette anpassen"
+
+#. 5jjvt
+#: colorpage.ui
+msgctxt "colorpage|label1"
+msgid "Colors"
+msgstr "Farben"
+
+#. CvMfT
+#: colorpage.ui
+msgctxt "colorpage|oldpreview-atkobject"
+msgid "Old Color"
+msgstr "Alte Farbe"
+
+#. 2m4w9
+#: colorpage.ui
+msgctxt "colorpage|label7"
+msgid "B"
+msgstr "B"
+
+#. DwaiD
+#: colorpage.ui
+msgctxt "colorpage|label8"
+msgid "G"
+msgstr "G"
+
+#. hYiqy
+#: colorpage.ui
+msgctxt "colorpage|label9"
+msgid "R"
+msgstr "R"
+
+#. MKq8c
+#: colorpage.ui
+msgctxt "colorpage|label18"
+msgid "Hex"
+msgstr "Hex"
+
+#. nnSGG
+#: colorpage.ui
+msgctxt "colorpage|label10"
+msgid "_C"
+msgstr "_C"
+
+#. LCfVw
+#: colorpage.ui
+msgctxt "colorpage|label16"
+msgid "_K"
+msgstr "_K"
+
+#. qmNUp
+#: colorpage.ui
+msgctxt "colorpage|label17"
+msgid "_Y"
+msgstr "_Y"
+
+#. TSEpY
+#: colorpage.ui
+msgctxt "colorpage|label15"
+msgid "_M"
+msgstr "_M"
+
+#. VnCYq
+#: colorpage.ui
+msgctxt "colorpage|label5"
+msgid "Active"
+msgstr "Aktive"
+
+#. AwBVq
+#: colorpage.ui
+msgctxt "colorpage|newpreview-atkobject"
+msgid "New Color"
+msgstr "Neue Farbe"
+
+#. yFQFh
+#: colorpage.ui
+msgctxt "colorpage|B_custom"
+msgid "Blue"
+msgstr "Blau"
+
+#. 3DcMm
+#: colorpage.ui
+msgctxt "colorpage|R_custom"
+msgid "Red"
+msgstr "Rot"
+
+#. 2o8Uw
+#: colorpage.ui
+msgctxt "colorpage|label4"
+msgid "_B"
+msgstr "_B"
+
+#. HXuEA
+#: colorpage.ui
+msgctxt "colorpage|label3"
+msgid "_G"
+msgstr "_G"
+
+#. Kd4oX
+#: colorpage.ui
+msgctxt "colorpage|label2"
+msgid "_R"
+msgstr "_R"
+
+#. FgaZg
+#: colorpage.ui
+msgctxt "colorpage|G_custom"
+msgid "Green"
+msgstr "Grün"
+
+#. FZ69n
+#: colorpage.ui
+msgctxt "colorpage|label19"
+msgid "_Hex"
+msgstr "_Hex"
+
+#. BAYSF
+#: colorpage.ui
+msgctxt "colorpage|label11"
+msgid "_C"
+msgstr "_C"
+
+#. r3QVM
+#: colorpage.ui
+msgctxt "colorpage|label12"
+msgid "_M"
+msgstr "_M"
+
+#. 9C3nc
+#: colorpage.ui
+msgctxt "colorpage|label13"
+msgid "_K"
+msgstr "_K"
+
+#. KeYG5
+#: colorpage.ui
+msgctxt "colorpage|label14"
+msgid "_Y"
+msgstr "_Y"
+
+#. WPVmD
+#: colorpage.ui
+msgctxt "colorpage|edit"
+msgid "Pick"
+msgstr "Auswählen..."
+
+#. DpUCG
+#: colorpage.ui
+msgctxt "colorpage|label6"
+msgid "New"
+msgstr "Neu"
+
+#. MnQ4Q
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|ColorPicker"
+msgid "Pick a Color"
+msgstr "Farbauswahl"
+
+#. mjiGo
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|redRadiobutton"
+msgid "_Red:"
+msgstr "_Rot:"
+
+#. TkTSB
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|greenRadiobutton"
+msgid "_Green:"
+msgstr "_Grün:"
+
+#. 5FGfv
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|blueRadiobutton"
+msgid "_Blue:"
+msgstr "_Blau:"
+
+#. 2nFsj
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|label2"
+msgid "Hex _#:"
+msgstr "Hex _#:"
+
+#. sD6YC
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|label1"
+msgid "RGB"
+msgstr "RGB"
+
+#. wGrVM
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|hueRadiobutton"
+msgid "H_ue:"
+msgstr "_Farbton:"
+
+#. C4GE3
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|satRadiobutton"
+msgid "_Saturation:"
+msgstr "_Sättigung:"
+
+#. NXs9w
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|brightRadiobutton"
+msgid "Bright_ness:"
+msgstr "H_elligkeit:"
+
+#. B7RjF
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|label3"
+msgid "HSB"
+msgstr "HSB"
+
+#. sesZZ
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|label5"
+msgid "_Cyan:"
+msgstr "_Cyan:"
+
+#. Gw7rx
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|label6"
+msgid "_Magenta:"
+msgstr "_Magenta:"
+
+#. Uv2KG
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|label7"
+msgid "_Yellow:"
+msgstr "_Gelb (Yellow):"
+
+#. aFvbe
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|label8"
+msgid "_Key:"
+msgstr "_Key:"
+
+#. mxFDw
+#: colorpickerdialog.ui
+msgctxt "colorpickerdialog|label4"
+msgid "CMYK"
+msgstr "CMYK"
+
+#. vDFei
+#: comment.ui
+msgctxt "comment|CommentDialog"
+msgid "Insert Comment"
+msgstr "Kommentar einfügen"
+
+#. 22CJX
+#: comment.ui
+msgctxt "comment|label2"
+msgid "Author"
+msgstr "Autor"
+
+#. QNkY6
+#: comment.ui
+msgctxt "comment|label4"
+msgid "_Text"
+msgstr "Initialen_text"
+
+#. bEtYk
+#: comment.ui
+msgctxt "comment|label5"
+msgid "_Insert"
+msgstr "_Einfügen"
+
+#. eGHyF
+#: comment.ui
+msgctxt "comment|author"
+msgid "Author"
+msgstr "Autor"
+
+#. VjKDs
+#: comment.ui
+msgctxt "comment|alttitle"
+msgid "Edit Comment"
+msgstr "Kommentar bearbeiten"
+
+#. JKZFi
+#: comment.ui
+msgctxt "comment|label1"
+msgid "Contents"
+msgstr "Inhalt"
+
+#. B73bz
+#: connectortabpage.ui
+msgctxt "connectortabpage|FT_TYPE"
+msgid "_Type:"
+msgstr "_Typ:"
+
+#. VnKTH
+#: connectortabpage.ui
+msgctxt "connectortabpage|FT_LINE_1"
+msgid "Line _1:"
+msgstr "Linie _1:"
+
+#. VHqZH
+#: connectortabpage.ui
+msgctxt "connectortabpage|FT_LINE_2"
+msgid "Line _2:"
+msgstr "Linie _2:"
+
+#. vx3j2
+#: connectortabpage.ui
+msgctxt "connectortabpage|FT_LINE_3"
+msgid "Line _3:"
+msgstr "Linie _3:"
+
+#. xvCfy
+#: connectortabpage.ui
+msgctxt "connectortabpage|label2"
+msgid "Line Skew"
+msgstr "Linienversatz"
+
+#. hAdsA
+#: connectortabpage.ui
+msgctxt "connectortabpage|FT_HORZ_1"
+msgid "_Begin horizontal:"
+msgstr "Anfang h_orizontal:"
+
+#. jENzB
+#: connectortabpage.ui
+msgctxt "connectortabpage|FT_HORZ_2"
+msgid "End _horizontal:"
+msgstr "Ende ho_rizontal:"
+
+#. WSBhJ
+#: connectortabpage.ui
+msgctxt "connectortabpage|FT_VERT_1"
+msgid "Begin _vertical:"
+msgstr "Anfang _vertikal:"
+
+#. bGjTC
+#: connectortabpage.ui
+msgctxt "connectortabpage|FT_VERT_2"
+msgid "_End vertical:"
+msgstr "Ende v_ertikal:"
+
+#. idTk6
+#: connectortabpage.ui
+msgctxt "connectortabpage|label3"
+msgid "Line Spacing"
+msgstr "Linienabstand"
+
+#. 6hSVr
+#: connectortabpage.ui
+msgctxt "connectortabpage|CTL_PREVIEW|tooltip_text"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. z3Hzq
+#: connectortabpage.ui
+msgctxt "connectortabpage|CTL_PREVIEW"
+msgid "Example"
+msgstr "Beispiel"
+
+#. ezicB
+#: connpooloptions.ui
+msgctxt "connpooloptions|connectionpooling"
+msgid "Connection pooling enabled"
+msgstr "Verbindungen aufbewahren"
+
+#. GHbky
+#: connpooloptions.ui
+msgctxt "connpooloptions|driverslabel"
+msgid "Drivers known in %PRODUCTNAME"
+msgstr "In %PRODUCTNAME bekannte Treiber"
+
+#. Yohxk
+#: connpooloptions.ui
+msgctxt "connpooloptions|driverlabel"
+msgid "Current driver:"
+msgstr "Aktueller Treiber:"
+
+#. RGWQy
+#: connpooloptions.ui
+msgctxt "connpooloptions|enablepooling"
+msgid "Enable pooling for this driver"
+msgstr "Verbindungen dieses Treibers aufbewahren"
+
+#. uzbLN
+#: connpooloptions.ui
+msgctxt "connpooloptions|timeoutlabel"
+msgid "_Timeout (seconds)"
+msgstr "_Verfallszeit (Sekunden)"
+
+#. 9ctBe
+#: connpooloptions.ui
+msgctxt "connpooloptions|label1"
+msgid "Connection Pool"
+msgstr "Verbindungspool"
+
+#. XfFi7
+#: croppage.ui
+msgctxt "croppage|keepscale"
+msgid "Keep _scale"
+msgstr "_Skalierung beibehalten"
+
+#. fCWwt
+#: croppage.ui
+msgctxt "croppage|keepsize"
+msgid "Keep image si_ze"
+msgstr "Bildgröße beibehal_ten"
+
+#. JcdEh
+#: croppage.ui
+msgctxt "croppage|label2"
+msgid "_Left:"
+msgstr "_Links:"
+
+#. J8z8h
+#: croppage.ui
+msgctxt "croppage|label3"
+msgid "_Right:"
+msgstr "_Rechts:"
+
+#. GxnM4
+#: croppage.ui
+msgctxt "croppage|label4"
+msgid "_Top:"
+msgstr "_Oben:"
+
+#. VAUDo
+#: croppage.ui
+msgctxt "croppage|label5"
+msgid "_Bottom:"
+msgstr "_Unten:"
+
+#. 8CoGW
+#: croppage.ui
+msgctxt "croppage|label1"
+msgid "Crop"
+msgstr "Zuschneiden"
+
+#. VG8gn
+#: croppage.ui
+msgctxt "croppage|label6"
+msgid "_Width:"
+msgstr "_Breite:"
+
+#. bcKhi
+#: croppage.ui
+msgctxt "croppage|label7"
+msgid "_Height:"
+msgstr "Höh_e:"
+
+#. JVnvr
+#: croppage.ui
+msgctxt "croppage|label10"
+msgid "Scale"
+msgstr "Skalierung"
+
+#. Brcxv
+#: croppage.ui
+msgctxt "croppage|label8"
+msgid "_Width:"
+msgstr "_Breite:"
+
+#. tacwF
+#: croppage.ui
+msgctxt "croppage|label9"
+msgid "_Height:"
+msgstr "Höh_e:"
+
+#. aBkuE
+#: croppage.ui
+msgctxt "croppage|label11"
+msgid "Image Size"
+msgstr "Bildgröße"
+
+#. BSBCG
+#: croppage.ui
+msgctxt "croppage|origsize"
+msgid "_Original Size"
+msgstr "Ori_ginalgröße"
+
+#. AFMP6
+#: cuiimapdlg.ui
+msgctxt "cuiimapdlg|IMapDialog"
+msgid "Properties"
+msgstr "Eigenschaften"
+
+#. DcBMH
+#: cuiimapdlg.ui
+msgctxt "cuiimapdlg|label1"
+msgid "_URL:"
+msgstr "_URL:"
+
+#. FLKr9
+#: cuiimapdlg.ui
+msgctxt "cuiimapdlg|label2"
+msgid "F_rame:"
+msgstr "_Rahmen:"
+
+#. V8Zgo
+#: cuiimapdlg.ui
+msgctxt "cuiimapdlg|label3"
+msgid "_Name:"
+msgstr "_Name:"
+
+#. BAXQk
+#: cuiimapdlg.ui
+msgctxt "cuiimapdlg|label4"
+msgid "Alternative _text:"
+msgstr "_Alternativtext:"
+
+#. bsgYj
+#: cuiimapdlg.ui
+msgctxt "cuiimapdlg|label5"
+msgid "_Description:"
+msgstr "_Beschreibung:"
+
+#. 8LR3s
+#: customizedialog.ui
+msgctxt "customizedialog|CustomizeDialog"
+msgid "Customize"
+msgstr "Anpassen"
+
+#. ZACQJ
+#: customizedialog.ui
+msgctxt "customizedialog|menus"
+msgid "Menus"
+msgstr "Menüs"
+
+#. CGNCy
+#: customizedialog.ui
+msgctxt "customizedialog|contextmenus"
+msgid "Context Menus"
+msgstr "Kontextmenüs"
+
+#. G6BaU
+#: customizedialog.ui
+msgctxt "customizedialog|keyboard"
+msgid "Keyboard"
+msgstr "Tastatur"
+
+#. neKvC
+#: customizedialog.ui
+msgctxt "customizedialog|toolbars"
+msgid "Toolbars"
+msgstr "Symbolleisten"
+
+#. hBm4Z
+#: customizedialog.ui
+msgctxt "customizedialog|events"
+msgid "Events"
+msgstr "Ereignisse"
+
+#. ssUfL
+#: databaselinkdialog.ui
+msgctxt "databaselinkdialog|DatabaseLinkDialog"
+msgid "Create Database Link"
+msgstr "Neue Datenbankverknüpfung anlegen"
+
+#. XAYvY
+#: databaselinkdialog.ui
+msgctxt "databaselinkdialog|browse"
+msgid "Browse..."
+msgstr "Durchsuchen..."
+
+#. kvNEy
+#: databaselinkdialog.ui
+msgctxt "databaselinkdialog|label1"
+msgid "_Database file:"
+msgstr "_Datenbankdatei:"
+
+#. X5UnF
+#: databaselinkdialog.ui
+msgctxt "databaselinkdialog|label4"
+msgid "Registered _name:"
+msgstr "Re_gistrierter Name:"
+
+#. FrRyU
+#: databaselinkdialog.ui
+msgctxt "databaselinkdialog|alttitle"
+msgid "Edit Database Link"
+msgstr "Datenbankverknüpfung bearbeiten"
+
+#. w8NyN
+#: dbregisterpage.ui
+msgctxt "dbregisterpage|new"
+msgid "_New..."
+msgstr "_Neu..."
+
+#. zqFjG
+#: dbregisterpage.ui
+msgctxt "dbregisterpage|delete"
+msgid "_Delete"
+msgstr "_Löschen"
+
+#. eiE2E
+#: dbregisterpage.ui
+msgctxt "dbregisterpage|edit"
+msgid "_Edit..."
+msgstr "_Bearbeiten..."
+
+#. Q3nF4
+#: dbregisterpage.ui
+msgctxt "dbregisterpage|label1"
+msgid "Registered Databases"
+msgstr "Registrierte Datenbanken"
+
+#. RB56k
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|FT_LINE_DIST"
+msgid "Line _distance:"
+msgstr "L_inienabstand:"
+
+#. tQ8gk
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|FT_HELPLINE_OVERHANG"
+msgid "Guide _overhang:"
+msgstr "Hilfslinienüberhan_g:"
+
+#. JvLym
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|FT_HELPLINE_DIST"
+msgid "_Guide distance:"
+msgstr "Hilfslinienabstan_d:"
+
+#. NFjhV
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|FT_HELPLINE1_LEN"
+msgid "_Left guide:"
+msgstr "_Linke Hilfslinie:"
+
+#. Xwg2v
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|FT_HELPLINE2_LEN"
+msgid "_Right guide:"
+msgstr "_Rechte Hilfslinie:"
+
+#. pt5Gm
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|FT_DECIMALPLACES"
+msgid "Decimal _places:"
+msgstr "Nach_kommastellen:"
+
+#. t7MZu
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|TSB_BELOW_REF_EDGE"
+msgid "Measure _below object"
+msgstr "Maßlinie unterhal_b des Objekts"
+
+#. uruYG
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|label1"
+msgid "Line"
+msgstr "Linie"
+
+#. E3CgJ
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|FT_POSITION"
+msgid "_Text position"
+msgstr "_Textposition"
+
+#. t8Ewg
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|TSB_AUTOPOSV"
+msgid "_AutoVertical"
+msgstr "Automatisch _Vertikal"
+
+#. KykMq
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|TSB_AUTOPOSH"
+msgid "A_utoHorizontal"
+msgstr "Automatisch Hori_zontal"
+
+#. yQtE3
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|TSB_PARALLEL"
+msgid "_Parallel to line"
+msgstr "_Parallel zur Hilfslinie"
+
+#. QNscD
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
+msgid "Show _measurement units"
+msgstr "_Maßeinheiten anzeigen"
+
+#. gX83d
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|label2"
+msgid "Legend"
+msgstr "Beschriftung"
+
+#. TmRKU
+#: dimensionlinestabpage.ui
+msgctxt "dimensionlinestabpage|STR_MEASURE_AUTOMATIC"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. o3vUV
+#: distributiondialog.ui
+msgctxt "distributiondialog|DistributionDialog"
+msgid "Distribution"
+msgstr "Verteilung"
+
+#. wG8jp
+#: distributionpage.ui
+msgctxt "distributionpage|hornone"
+msgid "_None"
+msgstr "_Keine"
+
+#. pB5Ai
+#: distributionpage.ui
+msgctxt "distributionpage|horleft"
+msgid "_Left"
+msgstr "_Links"
+
+#. pBR9z
+#: distributionpage.ui
+msgctxt "distributionpage|horcenter"
+msgid "_Center"
+msgstr "Z_entriert"
+
+#. 6zCGK
+#: distributionpage.ui
+msgctxt "distributionpage|horright"
+msgid "_Right"
+msgstr "_Rechts"
+
+#. b9pAA
+#: distributionpage.ui
+msgctxt "distributionpage|hordistance"
+msgid "_Spacing"
+msgstr "Ab_stand"
+
+#. 674zH
+#: distributionpage.ui
+msgctxt "distributionpage|label"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#. x6Mf8
+#: distributionpage.ui
+msgctxt "distributionpage|vernone"
+msgid "N_one"
+msgstr "Ke_ine"
+
+#. AqXxA
+#: distributionpage.ui
+msgctxt "distributionpage|vertop"
+msgid "_Top"
+msgstr "_Oben"
+
+#. CEBVG
+#: distributionpage.ui
+msgctxt "distributionpage|vercenter"
+msgid "C_enter"
+msgstr "Ze_ntriert"
+
+#. WrxKw
+#: distributionpage.ui
+msgctxt "distributionpage|verdistance"
+msgid "S_pacing"
+msgstr "A_bstand"
+
+#. FPUuF
+#: distributionpage.ui
+msgctxt "distributionpage|verbottom"
+msgid "_Bottom"
+msgstr "_Unten"
+
+#. 74ACK
+#: distributionpage.ui
+msgctxt "distributionpage|label1"
+msgid "Vertical"
+msgstr "Vertikal"
+
+#. KxUJj
+#: editdictionarydialog.ui
+msgctxt "editdictionarydialog|EditDictionaryDialog"
+msgid "Edit Custom Dictionary"
+msgstr "Benutzerwörterbuch bearbeiten"
+
+#. PV8x9
+#: editdictionarydialog.ui
+msgctxt "editdictionarydialog|book_label"
+msgid "_Book:"
+msgstr "_Buch:"
+
+#. HAsZg
+#: editdictionarydialog.ui
+msgctxt "editdictionarydialog|lang_label"
+msgid "_Language:"
+msgstr "_Sprache:"
+
+#. WWwmQ
+#: editdictionarydialog.ui
+msgctxt "editdictionarydialog|word_label"
+msgid "_Word"
+msgstr "_Wort"
+
+#. okMAh
+#: editdictionarydialog.ui
+msgctxt "editdictionarydialog|replace_label"
+msgid "_Replace By"
+msgstr "_Ersetzen durch"
+
+#. D7JJT
+#: editdictionarydialog.ui
+msgctxt "editdictionarydialog|newreplace"
+msgid "_New"
+msgstr "_Neu"
+
+#. K2Sst
+#: editdictionarydialog.ui
+msgctxt "editdictionarydialog|delete"
+msgid "_Delete"
+msgstr "_Löschen"
+
+#. XEUyG
+#: editmodulesdialog.ui
+msgctxt "editmodulesdialog|EditModulesDialog"
+msgid "Edit Modules"
+msgstr "Module bearbeiten"
+
+#. hcGaw
+#: editmodulesdialog.ui
+msgctxt "editmodulesdialog|moredictslink"
+msgid "Get more dictionaries online..."
+msgstr "Hier erhalten Sie online weitere Wörterbücher..."
+
+#. ibDJj
+#: editmodulesdialog.ui
+msgctxt "editmodulesdialog|label2"
+msgid "Language:"
+msgstr "Sprache:"
+
+#. 9zC9B
+#: editmodulesdialog.ui
+msgctxt "editmodulesdialog|up"
+msgid "Move Up"
+msgstr "Nach oben verschieben"
+
+#. aGo9M
+#: editmodulesdialog.ui
+msgctxt "editmodulesdialog|down"
+msgid "Move Down"
+msgstr "Nach unten verschieben"
+
+#. Vr5kM
+#: editmodulesdialog.ui
+msgctxt "editmodulesdialog|back"
+msgid "_Back"
+msgstr "_Zurück"
+
+#. ZF8AG
+#: editmodulesdialog.ui
+msgctxt "editmodulesdialog|label1"
+msgid "Options"
+msgstr "Optionen"
+
+#. omW2n
+#: effectspage.ui
+msgctxt "effectspage|fontcolorft"
+msgid "Font color:"
+msgstr "Schriftfarbe:"
+
+#. QnTvd
+#: effectspage.ui
+msgctxt "effectspage|effectsft"
+msgid "Effects:"
+msgstr "Effekte:"
+
+#. ce9M4
+#: effectspage.ui
+msgctxt "effectspage|reliefft"
+msgid "Relief:"
+msgstr "Relief:"
+
+#. BD3Ka
+#: effectspage.ui
+msgctxt "effectspage|label46"
+msgid "Overlining:"
+msgstr "Überstreichung:"
+
+#. WtjES
+#: effectspage.ui
+msgctxt "effectspage|label47"
+msgid "Strikethrough:"
+msgstr "Durchstreichung:"
+
+#. tCP45
+#: effectspage.ui
+msgctxt "effectspage|label48"
+msgid "Underlining:"
+msgstr "Unterstreichung:"
+
+#. mPyRn
+#: effectspage.ui
+msgctxt "effectspage|overlinecolorft"
+msgid "Overline color:"
+msgstr "Farbe:"
+
+#. ahDnT
+#: effectspage.ui
+msgctxt "effectspage|underlinecolorft"
+msgid "Underline color:"
+msgstr "Farbe:"
+
+#. 5pMfK
+#: effectspage.ui
+msgctxt "effectspage|outlinecb"
+msgid "Outline"
+msgstr "Kontur"
+
+#. 3NAaA
+#: effectspage.ui
+msgctxt "effectspage|blinkingcb"
+msgid "Blinking"
+msgstr "Blinkend"
+
+#. KraW7
+#: effectspage.ui
+msgctxt "effectspage|hiddencb"
+msgid "Hidden"
+msgstr "Ausgeblendet"
+
+#. VYaEr
+#: effectspage.ui
+msgctxt "effectspage|individualwordscb"
+msgid "Individual words"
+msgstr "Wortweise"
+
+#. D848F
+#: effectspage.ui
+msgctxt "effectspage|positionft"
+msgid "Position:"
+msgstr "Position:"
+
+#. QBQPF
+#: effectspage.ui
+msgctxt "effectspage|emphasisft"
+msgid "Emphasis mark:"
+msgstr "Betonungszeichen:"
+
+#. umH7r
+#: effectspage.ui
+msgctxt "effectspage|shadowcb"
+msgid "Shadow"
+msgstr "Schatten"
+
+#. aAbzm
+#: effectspage.ui
+msgctxt "effectspage|a11ywarning"
+msgid ""
+"Accessibility option \"Use automatic font color for screen display\" is "
+"active. Font color attributes are not currently used to display text."
+msgstr ""
+"Die Option \"Systemschriftfarbe für Bildschirmanzeige nutzen\" der "
+"Barrierefreiheit ist aktiviert. Schriftfarbattribute werden derzeit zur "
+"Anzeige des Textes nicht benutzt."
+
+#. ZPT4E
+#: effectspage.ui
+msgctxt "effectspage|preview"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. HSdYT
+#: effectspage.ui
+msgctxt "effectspage|liststore1"
+msgid "(Without)"
+msgstr "(Ohne)"
+
+#. aR6FC
+#: effectspage.ui
+msgctxt "effectspage|liststore1"
+msgid "Capitals"
+msgstr "Großbuchstaben"
+
+#. BtCF3
+#: effectspage.ui
+msgctxt "effectspage|liststore1"
+msgid "Lowercase"
+msgstr "Gemeine"
+
+#. qA8Rb
+#: effectspage.ui
+msgctxt "effectspage|liststore1"
+msgid "Title"
+msgstr "Titel"
+
+#. uuZUC
+#: effectspage.ui
+msgctxt "effectspage|liststore1"
+msgid "Small capitals"
+msgstr "Kapitälchen"
+
+#. GJExJ
+#: effectspage.ui
+msgctxt "effectspage|liststore2"
+msgid "(Without)"
+msgstr "(Ohne)"
+
+#. 2zc6A
+#: effectspage.ui
+msgctxt "effectspage|liststore2"
+msgid "Embossed"
+msgstr "Erhaben"
+
+#. Vq3YD
+#: effectspage.ui
+msgctxt "effectspage|liststore2"
+msgid "Engraved"
+msgstr "Vertieft"
+
+#. G8SPK
+#: effectspage.ui
+msgctxt "effectspage|liststore3"
+msgid "(Without)"
+msgstr "(Ohne)"
+
+#. V3aSU
+#: effectspage.ui
+msgctxt "effectspage|liststore3"
+msgid "Dot"
+msgstr "Punkt"
+
+#. sek6h
+#: effectspage.ui
+msgctxt "effectspage|liststore3"
+msgid "Circle"
+msgstr "Kreis"
+
+#. rbdan
+#: effectspage.ui
+msgctxt "effectspage|liststore3"
+msgid "Disc"
+msgstr "Scheibe"
+
+#. CCKAv
+#: effectspage.ui
+msgctxt "effectspage|liststore3"
+msgid "Accent"
+msgstr "Akzent"
+
+#. Z6WHC
+#: effectspage.ui
+msgctxt "effectspage|liststore4"
+msgid "Above text"
+msgstr "Über Text"
+
+#. 4dQqG
+#: effectspage.ui
+msgctxt "effectspage|liststore4"
+msgid "Below text"
+msgstr "Unter Text"
+
+#. FgNij
+#: effectspage.ui
+msgctxt "effectspage|liststore5"
+msgid "(Without)"
+msgstr "(Ohne)"
+
+#. Q4YtH
+#: effectspage.ui
+msgctxt "effectspage|liststore5"
+msgid "Single"
+msgstr "Einfach"
+
+#. 9ndBZ
+#: effectspage.ui
+msgctxt "effectspage|liststore5"
+msgid "Double"
+msgstr "Doppelt"
+
+#. p5Q9A
+#: effectspage.ui
+msgctxt "effectspage|liststore5"
+msgid "Bold"
+msgstr "Fett"
+
+#. bcZBk
+#: effectspage.ui
+msgctxt "effectspage|liststore5"
+msgid "With /"
+msgstr "Mit /"
+
+#. GJKbv
+#: effectspage.ui
+msgctxt "effectspage|liststore5"
+msgid "With X"
+msgstr "Mit X"
+
+#. EGta9
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "(Without)"
+msgstr "(Ohne)"
+
+#. wvpKK
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Single"
+msgstr "Einfach"
+
+#. dCubb
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Double"
+msgstr "Doppelt"
+
+#. JFKfG
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Bold"
+msgstr "Fett"
+
+#. m7Jwh
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Dotted"
+msgstr "Punktiert"
+
+#. iC5t6
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Dotted (Bold)"
+msgstr "Punktiert (fett)"
+
+#. uGcdw
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Dash"
+msgstr "Strich"
+
+#. BLRCY
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Dash (Bold)"
+msgstr "Strich (fett)"
+
+#. FCcKo
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Long Dash"
+msgstr "Strich lang"
+
+#. 7UBEL
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Long Dash (Bold)"
+msgstr "Strich lang (fett)"
+
+#. a58XD
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Dot Dash"
+msgstr "Punkt Strich"
+
+#. MhBD8
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Dot Dash (Bold)"
+msgstr "Punkt Strich (fett)"
+
+#. AcyEi
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Dot Dot Dash"
+msgstr "Punkt Punkt Strich"
+
+#. BRq6u
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Dot Dot Dash (Bold)"
+msgstr "Punkt Punkt Strich fett"
+
+#. kEEBv
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Wave"
+msgstr "Welle"
+
+#. XDicz
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Wave (Bold)"
+msgstr "Welle (fett)"
+
+#. ZxdxD
+#: effectspage.ui
+msgctxt "effectspage|liststore6"
+msgid "Double Wave"
+msgstr "Welle doppelt"
+
+#. GypUU
+#: embossdialog.ui
+msgctxt "embossdialog|EmbossDialog"
+msgid "Emboss"
+msgstr "Erhaben"
+
+#. uAQBB
+#: embossdialog.ui
+msgctxt "embossdialog|label2"
+msgid "_Light source:"
+msgstr "_Lichtquelle:"
+
+#. GPyhz
+#: embossdialog.ui
+msgctxt "embossdialog|label1"
+msgid "Parameters"
+msgstr "Parameter"
+
+#. FoFqz
+#: eventassigndialog.ui
+msgctxt "eventassigndialog|EventAssignDialog"
+msgid "Assign Macro"
+msgstr "Makro zuweisen"
+
+#. d229E
+#: eventassignpage.ui
+msgctxt "eventassignpage|existingmacrosft"
+msgid "Existing Macros"
+msgstr "Vorhandene Makros"
+
+#. y7Vyi
+#: eventassignpage.ui
+msgctxt "eventassignpage|macrotoft"
+msgid "Macro From"
+msgstr "Makro aus"
+
+#. BgFFN
+#: eventassignpage.ui
+msgctxt "eventassignpage|eventft"
+msgid "Event"
+msgstr "Ereignis"
+
+#. ginEm
+#: eventassignpage.ui
+msgctxt "eventassignpage|assignft"
+msgid "Assigned Action"
+msgstr "Zugewiesene Aktion"
+
+#. P3GeQ
+#: eventassignpage.ui
+msgctxt "eventassignpage|libraryft1"
+msgid "Assignments"
+msgstr "Zuweisungen"
+
+#. dcPPB
+#: eventassignpage.ui
+msgctxt "eventassignpage|assign"
+msgid "Assign"
+msgstr "Zuweisen"
+
+#. nwUkL
+#: eventassignpage.ui
+msgctxt "eventassignpage|delete"
+msgid "Remove"
+msgstr "Entfernen"
+
+#. 83DK5
+#: eventsconfigpage.ui
+msgctxt "eventsconfigpage|label1"
+msgid "Assign:"
+msgstr "Zuweisen:"
+
+#. DBtDc
+#: eventsconfigpage.ui
+msgctxt "eventsconfigpage|macro"
+msgid "M_acro..."
+msgstr "M_akro..."
+
+#. gxSRb
+#: eventsconfigpage.ui
+msgctxt "eventsconfigpage|delete"
+msgid "_Remove"
+msgstr "_Löschen"
+
+#. Ebcvv
+#: eventsconfigpage.ui
+msgctxt "eventsconfigpage|label2"
+msgid "Save in:"
+msgstr "Speichern in:"
+
+#. C6KwW
+#: eventsconfigpage.ui
+msgctxt "eventsconfigpage|eventft"
+msgid "Event"
+msgstr "Ereignis"
+
+#. daKJA
+#: eventsconfigpage.ui
+msgctxt "eventsconfigpage|actionft"
+msgid "Assigned Action"
+msgstr "Zugewiesene Aktion"
+
+#. BvWSS
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|RecordSearchDialog"
+msgid "Record Search"
+msgstr "Datensatzsuche"
+
+#. BiFWr
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|pbSearchAgain"
+msgid "S_earch"
+msgstr "_Suchen"
+
+#. sC6j6
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|rbSearchForText"
+msgid "_Text:"
+msgstr "Initialen_text:"
+
+#. CrVGp
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|rbSearchForNull"
+msgid "Field content is _NULL"
+msgstr "Feldinhalt ist _NULL"
+
+#. zxjuF
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|rbSearchForNotNull"
+msgid "Field content is not NU_LL"
+msgstr "Feldinhalt ist _ungleich NULL"
+
+#. X9FQy
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|flSearchFor"
+msgid "_Search for"
+msgstr "_Suchen nach"
+
+#. PGaCY
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|rbSingleField"
+msgid "_Single field:"
+msgstr "_Einzelnes Feld:"
+
+#. aLBBD
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|rbAllFields"
+msgid "_All fields"
+msgstr "A_lle Felder"
+
+#. 64yD3
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|ftForm"
+msgid "Form:"
+msgstr "Formular:"
+
+#. B2SYL
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|label2"
+msgid "Where to Search"
+msgstr "Bereich"
+
+#. yqEse
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|ftPosition"
+msgid "_Position:"
+msgstr "_Position:"
+
+#. c6ZbD
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|HalfFullFormsCJK"
+msgid "Match character wi_dth"
+msgstr "Zeichenbreite _berücksichtigen"
+
+#. EedjA
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|SoundsLikeCJK"
+msgid "Sounds like (_Japanese)"
+msgstr "Ähnliche Schreibweise (_Jap.)"
+
+#. 2Gsbd
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|SoundsLikeCJKSettings"
+msgid "Similarities..."
+msgstr "Ähnlichkeiten..."
+
+#. Ra8jW
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|cbApprox"
+msgid "S_imilarity search"
+msgstr "Äh_nlichkeitssuche"
+
+#. DNGxj
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|pbApproxSettings"
+msgid "Similarities..."
+msgstr "Ähnlichkeiten..."
+
+#. 6BpAF
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|cbCase"
+msgid "_Match case"
+msgstr "_Groß- und Kleinschreibung beachten"
+
+#. X5q2K
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|cbStartOver"
+msgid "Fr_om top"
+msgstr "Von o_ben"
+
+#. WP3XA
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|cbRegular"
+msgid "_Regular expression"
+msgstr "_Regulärer Ausdruck"
+
+#. qzKAB
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|cbUseFormat"
+msgid "Appl_y field format"
+msgstr "_Feldformatierung benutzen"
+
+#. 2GvF5
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|cbBackwards"
+msgid "Search _backwards"
+msgstr "_Rückwärts suchen"
+
+#. 4ixJZ
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|cbWildCard"
+msgid "_Wildcard expression"
+msgstr "_Platzhalter-Ausdruck"
+
+#. xHRxu
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|flOptions"
+msgid "Settings"
+msgstr "Einstellungen"
+
+#. wBBss
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|ftRecordLabel"
+msgid "Record:"
+msgstr "Datensatz:"
+
+#. UBLpq
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|ftRecord"
+msgid "record count"
+msgstr "Datensatz Anzahl"
+
+#. 8EDSy
+#: fmsearchdialog.ui
+msgctxt "fmsearchdialog|flState"
+msgid "State"
+msgstr "Status"
+
+#. CJQFA
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|FormatCellsDialog"
+msgid "Table Properties"
+msgstr "Tabelleneigenschaften"
+
+#. aCkau
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|name"
+msgid "Font"
+msgstr "Schriftart"
+
+#. zJZxA
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|effects"
+msgid "Font Effects"
+msgstr "Schrifteffekt"
+
+#. Pz8yJ
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|border"
+msgid "Borders"
+msgstr "Umrandung"
+
+#. wk9fG
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|area"
+msgid "Background"
+msgstr "Hintergrund"
+
+#. dpU36
+#: formatnumberdialog.ui
+msgctxt "formatnumberdialog|FormatNumberDialog"
+msgid "Format Number"
+msgstr "Zahl formatieren"
+
+#. wynwf
+#: galleryapplyprogress.ui
+msgctxt "galleryapplyprogress|GalleryApplyProgress"
+msgid "Apply"
+msgstr "Übernehmen"
+
+#. Ezb6M
+#: galleryapplyprogress.ui
+msgctxt "galleryapplyprogress|label2"
+msgid "File"
+msgstr "Datei"
+
+#. QgZAZ
+#: galleryfilespage.ui
+msgctxt "galleryfilespage|label1"
+msgid "_File type:"
+msgstr "_Dateityp:"
+
+#. mDSQY
+#: galleryfilespage.ui
+msgctxt "galleryfilespage|files"
+msgid "Files Found"
+msgstr "Gefundene Dateien"
+
+#. UnmAz
+#: galleryfilespage.ui
+msgctxt "galleryfilespage|preview"
+msgid "Pr_eview"
+msgstr "V_orschau"
+
+#. Pv8pP
+#: galleryfilespage.ui
+msgctxt "galleryfilespage|image"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. iGEBB
+#: galleryfilespage.ui
+msgctxt "galleryfilespage|findfiles"
+msgid "_Find Files..."
+msgstr "Dateien su_chen..."
+
+#. oNFEr
+#: galleryfilespage.ui
+msgctxt "galleryfilespage|addall"
+msgid "A_dd All"
+msgstr "_Alle hinzufügen"
+
+#. kfNzx
+#: gallerygeneralpage.ui
+msgctxt "gallerygeneralpage|label1"
+msgid "Modified:"
+msgstr "Geändert am:"
+
+#. 4Aw7C
+#: gallerygeneralpage.ui
+msgctxt "gallerygeneralpage|label2"
+msgid "Type:"
+msgstr "Typ:"
+
+#. EF8go
+#: gallerygeneralpage.ui
+msgctxt "gallerygeneralpage|label3"
+msgid "Location:"
+msgstr "Ort:"
+
+#. BEhhQ
+#: gallerygeneralpage.ui
+msgctxt "gallerygeneralpage|label4"
+msgid "Contents:"
+msgstr "Inhalt:"
+
+#. B2YS6
+#: gallerygeneralpage.ui
+msgctxt "gallerygeneralpage|image-atkobject"
+msgid "Theme Name"
+msgstr "Themename"
+
+#. US2Dq
+#: gallerysearchprogress.ui
+msgctxt "gallerysearchprogress|GallerySearchProgress"
+msgid "Find"
+msgstr "Suchen"
+
+#. wvuEx
+#: gallerysearchprogress.ui
+msgctxt "gallerysearchprogress|label1"
+msgid "File Type"
+msgstr "Dateityp"
+
+#. TBqGy
+#: gallerysearchprogress.ui
+msgctxt "gallerysearchprogress|label2"
+msgid "Directory"
+msgstr "Verzeichnis"
+
+#. uwvrB
+#: gallerythemedialog.ui
+msgctxt "gallerythemedialog|GalleryThemeDialog"
+msgid "Properties of "
+msgstr "Eigenschaften von "
+
+#. GG8AX
+#: gallerythemedialog.ui
+msgctxt "gallerythemedialog|general"
+msgid "General"
+msgstr "Allgemein"
+
+#. BfeDE
+#: gallerythemedialog.ui
+msgctxt "gallerythemedialog|files"
+msgid "Files"
+msgstr "Dateien"
+
+#. uxYNX
+#: gallerythemeiddialog.ui
+msgctxt "gallerythemeiddialog|GalleryThemeIDDialog"
+msgid "Theme ID"
+msgstr "Theme-ID"
+
+#. dDD78
+#: gallerythemeiddialog.ui
+msgctxt "gallerythemeiddialog|label2"
+msgid "ID:"
+msgstr "ID:"
+
+#. fJdBH
+#: gallerytitledialog.ui
+msgctxt "gallerytitledialog|GalleryTitleDialog"
+msgid "Enter Title"
+msgstr "Titel eingeben"
+
+#. DBmvf
+#: gallerytitledialog.ui
+msgctxt "gallerytitledialog|label2"
+msgid "Title:"
+msgstr "Titel:"
+
+#. dMeZG
+#: galleryupdateprogress.ui
+msgctxt "galleryupdateprogress|GalleryUpdateProgress"
+msgid "Update"
+msgstr "Aktualisieren"
+
+#. fEk5d
+#: galleryupdateprogress.ui
+msgctxt "galleryupdateprogress|label2"
+msgid "File"
+msgstr "Datei"
+
+#. QfZFH
+#: gradientpage.ui
+msgctxt "gradientpage|modify"
+msgid "_Modify"
+msgstr "Än_dern"
+
+#. 7ipyi
+#: gradientpage.ui
+msgctxt "gradientpage|label1"
+msgid "Gradient"
+msgstr "Farbverlauf"
+
+#. GPnwG
+#: gradientpage.ui
+msgctxt "gradientpage|typeft"
+msgid "_Type:"
+msgstr "_Typ:"
+
+#. 8Qjgv
+#: gradientpage.ui
+msgctxt "gradientpage|gradienttypelb"
+msgid "Linear"
+msgstr "Linear"
+
+#. fgBSm
+#: gradientpage.ui
+msgctxt "gradientpage|gradienttypelb"
+msgid "Axial"
+msgstr "Axial"
+
+#. FGjhA
+#: gradientpage.ui
+msgctxt "gradientpage|gradienttypelb"
+msgid "Radial"
+msgstr "Radial"
+
+#. VGtK3
+#: gradientpage.ui
+msgctxt "gradientpage|gradienttypelb"
+msgid "Ellipsoid"
+msgstr "Ellipsoid"
+
+#. 7FRe4
+#: gradientpage.ui
+msgctxt "gradientpage|gradienttypelb"
+msgid "Quadratic"
+msgstr "Quadratisch"
+
+#. wQDTv
+#: gradientpage.ui
+msgctxt "gradientpage|gradienttypelb"
+msgid "Square"
+msgstr "Rechteckig"
+
+#. BBKZM
+#: gradientpage.ui
+msgctxt "gradientpage|incrementft"
+msgid "Increment:"
+msgstr "Schrittweite:"
+
+#. 3myAF
+#: gradientpage.ui
+msgctxt "gradientpage|autoincrement"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. cGXmA
+#: gradientpage.ui
+msgctxt "gradientpage|angleft"
+msgid "A_ngle:"
+msgstr "_Winkel:"
+
+#. WpGU3
+#: gradientpage.ui
+msgctxt "gradientpage|centerft"
+msgid "Center ( X / Y ) :"
+msgstr "Mitte (X/Y):"
+
+#. ZZ7yo
+#: gradientpage.ui
+msgctxt "gradientpage|borderft"
+msgid "_Border:"
+msgstr "_Umrandung:"
+
+#. HeGTE
+#: gradientpage.ui
+msgctxt "gradientpage|colorfromft"
+msgid "_From:"
+msgstr "_Von:"
+
+#. JhbsD
+#: gradientpage.ui
+msgctxt "gradientpage|colortoft"
+msgid "_To:"
+msgstr "_Bis:"
+
+#. 58WB2
+#: gradientpage.ui
+msgctxt "gradientpage|propfl"
+msgid "Options"
+msgstr "Optionen"
+
+#. 5mDZm
+#: gradientpage.ui
+msgctxt "gradientpage|previewctl-atkobject"
+msgid "Example"
+msgstr "Beispiel"
+
+#. e2Ai2
+#: gradientpage.ui
+msgctxt "gradientpage|label2"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. 26WXC
+#: hangulhanjaadddialog.ui
+msgctxt "hangulhanjaadddialog|HangulHanjaAddDialog"
+msgid "New Dictionary"
+msgstr "Benutzerwörterbuch anlegen"
+
+#. iqNN4
+#: hangulhanjaadddialog.ui
+msgctxt "hangulhanjaadddialog|label2"
+msgid "_Name:"
+msgstr "_Name:"
+
+#. S2WpP
+#: hangulhanjaadddialog.ui
+msgctxt "hangulhanjaadddialog|label1"
+msgid "Dictionary"
+msgstr "Wörterbuch"
+
+#. yNExs
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|HangulHanjaConversionDialog"
+msgid "Hangul/Hanja Conversion"
+msgstr "Hangul/Hanja Konvertierung"
+
+#. kh2or
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|label1"
+msgid "Original"
+msgstr "Original"
+
+#. P2Lhg
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|label3"
+msgid "Word"
+msgstr "Wörter"
+
+#. JQfs4
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|find"
+msgid "_Find"
+msgstr "_Suchen"
+
+#. 3NS8C
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|label4"
+msgid "Suggestions"
+msgstr "Vorschläge"
+
+#. ECK62
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|label5"
+msgid "Format"
+msgstr "Format"
+
+#. ZG2Bm
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr "_Hangul/Hanja"
+
+#. xwknP
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr "Hanja (Han_gul)"
+
+#. 6guxd
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr "Hang_ul (Hanja)"
+
+#. TK2oD
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|hanja_above"
+msgid "Hanja"
+msgstr "Hanja"
+
+#. MShnU
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|hanja_below"
+msgid "Hanja"
+msgstr "Hanja"
+
+#. c3B3Q
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|hangul_above"
+msgid "Hangul"
+msgstr "Hangul"
+
+#. YLBsF
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|hangul_below"
+msgid "Hangul"
+msgstr "Hangul"
+
+#. 6CDaz
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|label6"
+msgid "Conversion"
+msgstr "Konvertierung"
+
+#. mctf7
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|hangulonly"
+msgid "Hangul _only"
+msgstr "Nu_r Hangul"
+
+#. r3HDY
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|hanjaonly"
+msgid "Hanja onl_y"
+msgstr "Nu_r Hanja"
+
+#. db8Nj
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|ignore"
+msgid "_Ignore"
+msgstr "_Ignorieren"
+
+#. QTqcN
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|ignoreall"
+msgid "Always I_gnore"
+msgstr "Immer i_gnorieren"
+
+#. MVirc
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|replace"
+msgid "_Replace"
+msgstr "_Ersetzen"
+
+#. DwnC2
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|replaceall"
+msgid "Always R_eplace"
+msgstr "I_mmer ersetzen"
+
+#. 7eniE
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|replacebychar"
+msgid "Replace b_y character"
+msgstr "Ein_zelne Zeichen ersetzen"
+
+#. UWu2Z
+#: hangulhanjaconversiondialog.ui
+msgctxt "hangulhanjaconversiondialog|options"
+msgid "Options"
+msgstr "Optionen"
+
+#. XiQXK
+#: hangulhanjaeditdictdialog.ui
+msgctxt "hangulhanjaeditdictdialog|HangulHanjaEditDictDialog"
+msgid "Edit Custom Dictionary"
+msgstr "Benutzerwörterbuch bearbeiten"
+
+#. AnsSG
+#: hangulhanjaeditdictdialog.ui
+msgctxt "hangulhanjaeditdictdialog|label4"
+msgid "Book"
+msgstr "Buch"
+
+#. uPgna
+#: hangulhanjaeditdictdialog.ui
+msgctxt "hangulhanjaeditdictdialog|label2"
+msgid "Original"
+msgstr "Original"
+
+#. ZiDNN
+#: hangulhanjaeditdictdialog.ui
+msgctxt "hangulhanjaeditdictdialog|label3"
+msgid "Suggestions"
+msgstr "Vorschläge"
+
+#. Kyy78
+#: hangulhanjaoptdialog.ui
+msgctxt "hangulhanjaoptdialog|HangulHanjaOptDialog"
+msgid "Hangul/Hanja Options"
+msgstr "Hangul/Hanja-Optionen"
+
+#. TLs2q
+#: hangulhanjaoptdialog.ui
+msgctxt "hangulhanjaoptdialog|new"
+msgid "New..."
+msgstr "Neu..."
+
+#. UbGjT
+#: hangulhanjaoptdialog.ui
+msgctxt "hangulhanjaoptdialog|edit"
+msgid "Edit..."
+msgstr "Bearbeiten..."
+
+#. DmfuX
+#: hangulhanjaoptdialog.ui
+msgctxt "hangulhanjaoptdialog|label1"
+msgid "User-defined Dictionaries"
+msgstr "Benutzerwörterbücher"
+
+#. DEoRc
+#: hangulhanjaoptdialog.ui
+msgctxt "hangulhanjaoptdialog|ignorepost"
+msgid "Ignore post-positional word"
+msgstr "Nachstehendes Wort ignorieren"
+
+#. EEKAT
+#: hangulhanjaoptdialog.ui
+msgctxt "hangulhanjaoptdialog|showrecentfirst"
+msgid "Show recently used entries first"
+msgstr "Zuletzt benutzte Einträge zuerst zeigen"
+
+#. MKAyM
+#: hangulhanjaoptdialog.ui
+msgctxt "hangulhanjaoptdialog|autoreplaceunique"
+msgid "Replace all unique entries automatically"
+msgstr "Alle eindeutigen Einträge automatisch ersetzen"
+
+#. Bdqne
+#: hangulhanjaoptdialog.ui
+msgctxt "hangulhanjaoptdialog|label2"
+msgid "Options"
+msgstr "Optionen"
+
+#. TGiD7
+#: hatchpage.ui
+msgctxt "hatchpage|modify"
+msgid "_Modify"
+msgstr "Än_dern"
+
+#. U8bWc
+#: hatchpage.ui
+msgctxt "hatchpage|label2"
+msgid "Hatch"
+msgstr "Schraffur"
+
+#. HNCBu
+#: hatchpage.ui
+msgctxt "hatchpage|distanceft"
+msgid "_Spacing:"
+msgstr "A_bstand:"
+
+#. spGWy
+#: hatchpage.ui
+msgctxt "hatchpage|angleft"
+msgid "A_ngle:"
+msgstr "_Winkel:"
+
+#. sEriJ
+#: hatchpage.ui
+msgctxt "hatchpage|linetypeft"
+msgid "_Line type:"
+msgstr "Li_nientyp:"
+
+#. mv3sN
+#: hatchpage.ui
+msgctxt "hatchpage|linetypelb"
+msgid "Single"
+msgstr "Einfach"
+
+#. 7DR7B
+#: hatchpage.ui
+msgctxt "hatchpage|linetypelb"
+msgid "Crossed"
+msgstr "Gekreuzt"
+
+#. EBDMC
+#: hatchpage.ui
+msgctxt "hatchpage|linetypelb"
+msgid "Triple"
+msgstr "Dreifach"
+
+#. VyTto
+#: hatchpage.ui
+msgctxt "hatchpage|linecolorft"
+msgid "Line _color:"
+msgstr "Linien_farbe:"
+
+#. 3hgCJ
+#: hatchpage.ui
+msgctxt "hatchpage|backgroundcolor"
+msgid "Background Color"
+msgstr "Hintergrundfarbe"
+
+#. uvmDA
+#: hatchpage.ui
+msgctxt "hatchpage|propfl"
+msgid "Options"
+msgstr "Optionen"
+
+#. D8ovo
+#: hatchpage.ui
+msgctxt "hatchpage|previewctl-atkobject"
+msgid "Example"
+msgstr "Beispiel"
+
+#. GbfFA
+#: hatchpage.ui
+msgctxt "hatchpage|label1"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. QqjhD
+#: hyperlinkdialog.ui
+msgctxt "hyperlinkdialog|HyperlinkDialog"
+msgid "Hyperlink"
+msgstr "Hyperlink"
+
+#. n9DBf
+#: hyperlinkdialog.ui
+msgctxt "hyperlinkdialog|apply"
+msgid "Apply"
+msgstr "Übernehmen"
+
+#. FN68B
+#: hyperlinkdialog.ui
+msgctxt "hyperlinkdialog|reset"
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#. rYEqo
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|path_label"
+msgid "_Path:"
+msgstr "_Pfad:"
+
+#. c2SLD
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|fileopen"
+msgid "Open File"
+msgstr "Datei öffnen"
+
+#. zqiYj
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|fileopen|tooltip_text"
+msgid "Open File"
+msgstr "Datei öffnen"
+
+#. Ewn6K
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|label2"
+msgid "Document"
+msgstr "Dokument"
+
+#. pedja
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|target_label"
+msgid "Targ_et:"
+msgstr "Sprungzie_l:"
+
+#. hUini
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|url_label"
+msgid "URL:"
+msgstr "URL:"
+
+#. 8iV3g
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|browse"
+msgid "Target in Document"
+msgstr "Sprungziel im Dokument"
+
+#. zH7Fk
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|browse|tooltip_text"
+msgid "Target in Document"
+msgstr "Sprungziel im Dokument"
+
+#. oUByt
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|url"
+msgid "Test text"
+msgstr "Testtext"
+
+#. 8Gbv5
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|label3"
+msgid "Target in Document"
+msgstr "Sprungziel im Dokument"
+
+#. VQxYG
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|frame_label"
+msgid "F_rame:"
+msgstr "_Rahmen:"
+
+#. cFnPM
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|indication_label"
+msgid "Te_xt:"
+msgstr "Te_xt:"
+
+#. o2Fic
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|name_label"
+msgid "N_ame:"
+msgstr "_Name:"
+
+#. y3amv
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|form_label"
+msgid "F_orm:"
+msgstr "F_orm:"
+
+#. sAAC7
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|script|tooltip_text"
+msgid "Events"
+msgstr "Ereignisse"
+
+#. frjow
+#: hyperlinkdocpage.ui
+msgctxt "hyperlinkdocpage|label1"
+msgid "Further Settings"
+msgstr "Weitere Einstellungen"
+
+#. BpE9F
+#: hyperlinkinternetpage.ui
+msgctxt "hyperlinkinternetpage|linktyp_internet"
+msgid "_Web"
+msgstr "_Web"
+
+#. HybDr
+#: hyperlinkinternetpage.ui
+msgctxt "hyperlinkinternetpage|linktyp_ftp"
+msgid "_FTP"
+msgstr "FT_P"
+
+#. qgyrE
+#: hyperlinkinternetpage.ui
+msgctxt "hyperlinkinternetpage|target_label"
+msgid "_URL:"
+msgstr "_URL:"
+
+#. YLtwS
+#: hyperlinkinternetpage.ui
+msgctxt "hyperlinkinternetpage|login_label"
+msgid "_Login name:"
+msgstr "Anme_ldename:"
+
+#. GGnn8
+#: hyperlinkinternetpage.ui
+msgctxt "hyperlinkinternetpage|password_label"
+msgid "_Password:"
+msgstr "_Kennwort:"
+
+#. HHhGY
+#: hyperlinkinternetpage.ui
+msgctxt "hyperlinkinternetpage|anonymous"
+msgid "Anonymous _user"
+msgstr "Anonymer Ben_utzer"
+
+#. MoZP7
+#: hyperlinkinternetpage.ui
+msgctxt "hyperlinkinternetpage|label2"
+msgid "Hyperlink Type"
+msgstr "Art des Hyperlinks"
+
+#. x4GDd
+#: hyperlinkinternetpage.ui
+msgctxt "hyperlinkinternetpage|frame_label"
+msgid "F_rame:"
+msgstr "_Rahmen:"
+
+#. XhMm4
+#: hyperlinkinternetpage.ui
+msgctxt "hyperlinkinternetpage|indication_label"
+msgid "Te_xt:"
+msgstr "Te_xt:"
+
+#. aFZx3
+#: hyperlinkinternetpage.ui
+msgctxt "hyperlinkinternetpage|name_label"
+msgid "N_ame:"
+msgstr "_Name:"
+
+#. UG2wE
+#: hyperlinkinternetpage.ui
+msgctxt "hyperlinkinternetpage|form_label"
+msgid "F_orm:"
+msgstr "F_orm:"
+
+#. MyGFB
+#: hyperlinkinternetpage.ui
+msgctxt "hyperlinkinternetpage|script|tooltip_text"
+msgid "Events"
+msgstr "Ereignisse"
+
+#. UKQMX
+#: hyperlinkinternetpage.ui
+msgctxt "hyperlinkinternetpage|label1"
+msgid "Further Settings"
+msgstr "Weitere Einstellungen"
+
+#. GKAsu
+#: hyperlinkmailpage.ui
+msgctxt "hyperlinkmailpage|receiver_label"
+msgid "Re_cipient:"
+msgstr "Em_pfänger:"
+
+#. n3cuM
+#: hyperlinkmailpage.ui
+msgctxt "hyperlinkmailpage|adressbook"
+msgid "Data Sources…"
+msgstr "Datenquellen…"
+
+#. B5Axh
+#: hyperlinkmailpage.ui
+msgctxt "hyperlinkmailpage|adressbook|tooltip_text"
+msgid "Data Sources..."
+msgstr "Datenquellen..."
+
+#. NJi4c
+#: hyperlinkmailpage.ui
+msgctxt "hyperlinkmailpage|subject_label"
+msgid "_Subject:"
+msgstr "_Betreff:"
+
+#. eCvXD
+#: hyperlinkmailpage.ui
+msgctxt "hyperlinkmailpage|label2"
+msgid "Mail"
+msgstr "E-Mail"
+
+#. Rx7bX
+#: hyperlinkmailpage.ui
+msgctxt "hyperlinkmailpage|frame_label"
+msgid "F_rame:"
+msgstr "_Rahmen:"
+
+#. E6CWA
+#: hyperlinkmailpage.ui
+msgctxt "hyperlinkmailpage|indication_label"
+msgid "Te_xt:"
+msgstr "Te_xt:"
+
+#. BjAaB
+#: hyperlinkmailpage.ui
+msgctxt "hyperlinkmailpage|name_label"
+msgid "N_ame:"
+msgstr "_Name:"
+
+#. zkpdN
+#: hyperlinkmailpage.ui
+msgctxt "hyperlinkmailpage|form_label"
+msgid "F_orm:"
+msgstr "F_orm:"
+
+#. 7wzYs
+#: hyperlinkmailpage.ui
+msgctxt "hyperlinkmailpage|script|tooltip_text"
+msgid "Events"
+msgstr "Ereignisse"
+
+#. BmHDh
+#: hyperlinkmailpage.ui
+msgctxt "hyperlinkmailpage|label1"
+msgid "Further Settings"
+msgstr "Weitere Einstellungen"
+
+#. FiqBU
+#: hyperlinkmarkdialog.ui
+msgctxt "hyperlinkmarkdialog|HyperlinkMark"
+msgid "Target in Document"
+msgstr "Sprungziel im Dokument"
+
+#. JRUcA
+#: hyperlinkmarkdialog.ui
+msgctxt "hyperlinkmarkdialog|apply"
+msgid "_Apply"
+msgstr "Ü_bernehmen"
+
+#. jWKYr
+#: hyperlinkmarkdialog.ui
+msgctxt "hyperlinkmarkdialog|close"
+msgid "_Close"
+msgstr "S_chließen"
+
+#. bysQe
+#: hyperlinkmarkdialog.ui
+msgctxt "hyperlinkmarkdialog|TreeListBox"
+msgid "Mark Tree"
+msgstr "Baum markieren"
+
+#. tHygQ
+#: hyperlinknewdocpage.ui
+msgctxt "hyperlinknewdocpage|editnow"
+msgid "Edit _now"
+msgstr "Sofort _bearbeiten"
+
+#. YAeDk
+#: hyperlinknewdocpage.ui
+msgctxt "hyperlinknewdocpage|editlater"
+msgid "Edit _later"
+msgstr "_Später bearbeiten"
+
+#. DqCc6
+#: hyperlinknewdocpage.ui
+msgctxt "hyperlinknewdocpage|file_label"
+msgid "_File:"
+msgstr "_Datei:"
+
+#. jJbSK
+#: hyperlinknewdocpage.ui
+msgctxt "hyperlinknewdocpage|create"
+msgid "Select Path"
+msgstr "Pfad auswählen"
+
+#. PDNz4
+#: hyperlinknewdocpage.ui
+msgctxt "hyperlinknewdocpage|create|tooltip_text"
+msgid "Select Path"
+msgstr "Pfad auswählen"
+
+#. NKd9R
+#: hyperlinknewdocpage.ui
+msgctxt "hyperlinknewdocpage|types_label"
+msgid "File _type:"
+msgstr "Dateit_yp:"
+
+#. 9TYuE
+#: hyperlinknewdocpage.ui
+msgctxt "hyperlinknewdocpage|label2"
+msgid "New Document"
+msgstr "Neues Dokument"
+
+#. uChAF
+#: hyperlinknewdocpage.ui
+msgctxt "hyperlinknewdocpage|frame_label"
+msgid "F_rame:"
+msgstr "_Rahmen:"
+
+#. NG5VC
+#: hyperlinknewdocpage.ui
+msgctxt "hyperlinknewdocpage|indication_label"
+msgid "Te_xt:"
+msgstr "Te_xt:"
+
+#. SVEq9
+#: hyperlinknewdocpage.ui
+msgctxt "hyperlinknewdocpage|name_label"
+msgid "N_ame:"
+msgstr "N_ame:"
+
+#. cSknQ
+#: hyperlinknewdocpage.ui
+msgctxt "hyperlinknewdocpage|form_label"
+msgid "F_orm:"
+msgstr "F_orm:"
+
+#. 5xVHb
+#: hyperlinknewdocpage.ui
+msgctxt "hyperlinknewdocpage|script|tooltip_text"
+msgid "Events"
+msgstr "Ereignisse"
+
+#. MS2Cn
+#: hyperlinknewdocpage.ui
+msgctxt "hyperlinknewdocpage|label1"
+msgid "Further Settings"
+msgstr "Weitere Einstellungen"
+
+#. XkDqc
+#: hyphenate.ui
+msgctxt "hyphenate|HyphenateDialog"
+msgid "Hyphenation"
+msgstr "Silbentrennung"
+
+#. N4zDD
+#: hyphenate.ui
+msgctxt "hyphenate|hyphall"
+msgid "Hyphenate All"
+msgstr "Alle trennen"
+
+#. TraEA
+#: hyphenate.ui
+msgctxt "hyphenate|ok"
+msgid "Hyphenate"
+msgstr "Trennen"
+
+#. gEGtP
+#: hyphenate.ui
+msgctxt "hyphenate|continue"
+msgid "Skip"
+msgstr "Weiter"
+
+#. dsjvf
+#: hyphenate.ui
+msgctxt "hyphenate|label1"
+msgid "Word:"
+msgstr "Wort:"
+
+#. ce8xK
+#: iconchangedialog.ui
+msgctxt "iconchangedialog|IconChange"
+msgid "%PRODUCTNAME %PRODUCTVERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#. HGCp4
+#: iconchangedialog.ui
+msgctxt "iconchangedialog|label1"
+msgid ""
+"The files listed below could not be imported.\n"
+"The file format could not be interpreted."
+msgstr ""
+"Die unten aufgelisteten Dateien konnten nicht importiert werden.\n"
+"Das Dateiformat konnte nicht erkannt werden."
+
+#. NA8j5
+#: iconselectordialog.ui
+msgctxt "iconselectordialog|IconSelector"
+msgid "Change Icon"
+msgstr "Symbol austauschen"
+
+#. qZXP7
+#: iconselectordialog.ui
+msgctxt "iconselectordialog|label1"
+msgid "_Icons"
+msgstr "_Symbole"
+
+#. ZyFG4
+#: iconselectordialog.ui
+msgctxt "iconselectordialog|importButton"
+msgid "I_mport..."
+msgstr "I_mport..."
+
+#. 46d7Z
+#: iconselectordialog.ui
+msgctxt "iconselectordialog|deleteButton"
+msgid "_Delete..."
+msgstr "_Löschen..."
+
+#. C4HU9
+#: iconselectordialog.ui
+msgctxt "iconselectordialog|noteLabel"
+msgid ""
+"Note:\n"
+"The size of an icon should be 16x16 pixel to achieve best quality.\n"
+"Different sized icons will be scaled automatically."
+msgstr ""
+"Hinweis:\n"
+"Für bestmögliche Qualität sollte die Größe eines Symbols 16x16 Pixel betragen.\n"
+"Symbole anderer Größe werden automatisch skaliert."
+
+#. zCiFk
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|InsertFloatingFrameDialog"
+msgid "Floating Frame Properties"
+msgstr "Schwebender Rahmen - Eigenschaften"
+
+#. 6Zg6E
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|label6"
+msgid "Name:"
+msgstr "Name:"
+
+#. QFERc
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|label7"
+msgid "Contents:"
+msgstr "Inhalt:"
+
+#. ExCGU
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|buttonbrowse"
+msgid "Browse..."
+msgstr "Durchsuchen..."
+
+#. CFNgz
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|scrollbaron"
+msgid "On"
+msgstr "Ein"
+
+#. RTCXH
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|scrollbaroff"
+msgid "Off"
+msgstr "Aus"
+
+#. iucHE
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|scrollbarauto"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. NTDhm
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|label1"
+msgid "Scroll Bar"
+msgstr "Bildlaufleiste"
+
+#. 9DUFs
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|borderon"
+msgid "On"
+msgstr "Ein"
+
+#. P9vwv
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|borderoff"
+msgid "Off"
+msgstr "Aus"
+
+#. xBDSb
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|label2"
+msgid "Border"
+msgstr "Umrandung"
+
+#. RAz7e
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|widthlabel"
+msgid "Width:"
+msgstr "Breite:"
+
+#. DMLy9
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|heightlabel"
+msgid "Height:"
+msgstr "Höhe:"
+
+#. EEPAq
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|defaultwidth"
+msgid "Default"
+msgstr "Standard"
+
+#. dQ8BY
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|defaultheight"
+msgid "Default"
+msgstr "Standard"
+
+#. JJC7G
+#: insertfloatingframe.ui
+msgctxt "insertfloatingframe|label3"
+msgid "Spacing to Contents"
+msgstr "Abstand zum Inhalt"
+
+#. DHyVM
+#: insertoleobject.ui
+msgctxt "insertoleobject|InsertOLEObjectDialog"
+msgid "Insert OLE Object"
+msgstr "OLE-Objekt einfügen"
+
+#. APCbM
+#: insertoleobject.ui
+msgctxt "insertoleobject|createnew"
+msgid "Create new"
+msgstr "Neu erstellen"
+
+#. g7yF2
+#: insertoleobject.ui
+msgctxt "insertoleobject|createfromfile"
+msgid "Create from file"
+msgstr "Aus Datei erstellen"
+
+#. JcNDd
+#: insertoleobject.ui
+msgctxt "insertoleobject|label1"
+msgid "Object Type"
+msgstr "Objekttyp"
+
+#. GYhtz
+#: insertoleobject.ui
+msgctxt "insertoleobject|urlbtn"
+msgid "Search…"
+msgstr "Suchen…"
+
+#. PL3Eq
+#: insertoleobject.ui
+msgctxt "insertoleobject|linktofile"
+msgid "Link to file"
+msgstr "Mit Datei verknüpfen"
+
+#. G8yfb
+#: insertoleobject.ui
+msgctxt "insertoleobject|asicon"
+msgid "Display as icon"
+msgstr "Als Symbol anzeigen"
+
+#. ry68g
+#: insertoleobject.ui
+msgctxt "insertoleobject|label2"
+msgid "File"
+msgstr "Datei"
+
+#. BCgnf
+#: insertrowcolumn.ui
+msgctxt "insertrowcolumn|InsertRowColumnDialog"
+msgid "Insert Row"
+msgstr "Zeile einfügen"
+
+#. ULGtA
+#: insertrowcolumn.ui
+msgctxt "insertrowcolumn|label3"
+msgid "_Number:"
+msgstr "A_nzahl:"
+
+#. nEwTY
+#: insertrowcolumn.ui
+msgctxt "insertrowcolumn|label1"
+msgid "Insert"
+msgstr "Einfügen"
+
+#. xdCAE
+#: insertrowcolumn.ui
+msgctxt "insertrowcolumn|insert_before"
+msgid "_Before"
+msgstr "_Vorher"
+
+#. ZmEKX
+#: insertrowcolumn.ui
+msgctxt "insertrowcolumn|insert_after"
+msgid "A_fter"
+msgstr "_Danach"
+
+#. mS7YV
+#: insertrowcolumn.ui
+msgctxt "insertrowcolumn|label2"
+msgid "Position"
+msgstr "Position"
+
+#. 3AdX5
+#: javaclasspathdialog.ui
+msgctxt "javaclasspathdialog|JavaClassPath"
+msgid "Class Path"
+msgstr "Class-Pfad"
+
+#. cCAqB
+#: javaclasspathdialog.ui
+msgctxt "javaclasspathdialog|label1"
+msgid "A_ssigned folders and archives"
+msgstr "Z_ugewiesenen Ordner und Archive"
+
+#. 5cgAY
+#: javaclasspathdialog.ui
+msgctxt "javaclasspathdialog|archive"
+msgid "_Add Archive..."
+msgstr "Ar_chiv hinzufügen..."
+
+#. LBBVG
+#: javaclasspathdialog.ui
+msgctxt "javaclasspathdialog|folder"
+msgid "Add _Folder"
+msgstr "_Ordner hinzufügen"
+
+#. YNHm3
+#: javaclasspathdialog.ui
+msgctxt "javaclasspathdialog|remove"
+msgid "_Remove"
+msgstr "_Löschen"
+
+#. LU9ad
+#: javastartparametersdialog.ui
+msgctxt "javastartparametersdialog|JavaStartParameters"
+msgid "Java Start Parameters"
+msgstr "Java-Startparameter"
+
+#. AkVB2
+#: javastartparametersdialog.ui
+msgctxt "javastartparametersdialog|label4"
+msgid "Java start _parameter"
+msgstr "Java-Start_parameter"
+
+#. bbrtf
+#: javastartparametersdialog.ui
+msgctxt "javastartparametersdialog|label5"
+msgid "Assig_ned start parameters"
+msgstr "Zuge_wiesene Startparameter"
+
+#. 87Ysi
+#: javastartparametersdialog.ui
+msgctxt "javastartparametersdialog|label6"
+msgid "For example: -Dmyprop=c:\\\\program files\\\\java"
+msgstr "Zum Beispiel: -Dmyprop=c:\\\\program files\\\\java"
+
+#. F3A9L
+#: javastartparametersdialog.ui
+msgctxt "javastartparametersdialog|assignbtn"
+msgid "_Add"
+msgstr "H_inzufügen"
+
+#. sNSWD
+#: javastartparametersdialog.ui
+msgctxt "javastartparametersdialog|editbtn"
+msgid "_Edit"
+msgstr "_Bearbeiten"
+
+#. fUGmG
+#: javastartparametersdialog.ui
+msgctxt "javastartparametersdialog|removebtn"
+msgid "_Remove"
+msgstr "_Entfernen"
+
+#. RdoKs
+#: linedialog.ui
+msgctxt "linedialog|LineDialog"
+msgid "Line"
+msgstr "Linie"
+
+#. 4FPRn
+#: linedialog.ui
+msgctxt "linedialog|RID_SVXPAGE_LINE"
+msgid "Line"
+msgstr "Linie"
+
+#. mJtTZ
+#: linedialog.ui
+msgctxt "linedialog|RID_SVXPAGE_SHADOW"
+msgid "Shadow"
+msgstr "Schatten"
+
+#. CxFty
+#: linedialog.ui
+msgctxt "linedialog|RID_SVXPAGE_LINE_DEF"
+msgid "Line Styles"
+msgstr "Linienstile"
+
+#. pEuvF
+#: linedialog.ui
+msgctxt "linedialog|RID_SVXPAGE_LINEEND_DEF"
+msgid "Arrow Styles"
+msgstr "Linienspitzen"
+
+#. wkVvG
+#: lineendstabpage.ui
+msgctxt "lineendstabpage|FT_TITLE"
+msgid "_Title:"
+msgstr "_Titel:"
+
+#. iGG25
+#: lineendstabpage.ui
+msgctxt "lineendstabpage|FT_LINE_END_STYLE"
+msgid "Arrow _style:"
+msgstr "Linien_spitzen:"
+
+#. y6SSb
+#: lineendstabpage.ui
+msgctxt "lineendstabpage|FI_TIP"
+msgid "Add a selected object to create new arrow styles."
+msgstr ""
+"Neue Linienspitzen erhalten Sie durch Hinzufügen eines ausgewählten "
+"Objektes."
+
+#. rgBEv
+#: lineendstabpage.ui
+msgctxt "lineendstabpage|BTN_MODIFY"
+msgid "_Modify"
+msgstr "Än_dern"
+
+#. V4C5Z
+#: lineendstabpage.ui
+msgctxt "lineendstabpage|BTN_LOAD|tooltip_text"
+msgid "Load arrow styles"
+msgstr "Linienspitzentabelle laden"
+
+#. CUTxx
+#: lineendstabpage.ui
+msgctxt "lineendstabpage|BTN_SAVE|tooltip_text"
+msgid "Save arrow styles"
+msgstr "Linienspitzentabelle sichern"
+
+#. hEYzS
+#: lineendstabpage.ui
+msgctxt "lineendstabpage|label1"
+msgid "Organize Arrow Styles"
+msgstr "Linienspitzen verwalten"
+
+#. rBY7A
+#: linestyletabpage.ui
+msgctxt "linestyletabpage|FT_LINESTYLE"
+msgid "Line _style:"
+msgstr "Linien_stil:"
+
+#. F3Hkn
+#: linestyletabpage.ui
+msgctxt "linestyletabpage|FT_TYPE"
+msgid "_Type:"
+msgstr "_Typ:"
+
+#. FELjh
+#: linestyletabpage.ui
+msgctxt "linestyletabpage|FT_NUMBER"
+msgid "_Number:"
+msgstr "An_zahl:"
+
+#. ApA5k
+#: linestyletabpage.ui
+msgctxt "linestyletabpage|FT_LENGTH"
+msgid "_Length:"
+msgstr "_Länge:"
+
+#. UyY5P
+#: linestyletabpage.ui
+msgctxt "linestyletabpage|FT_DISTANCE"
+msgid "_Spacing:"
+msgstr "A_bstand:"
+
+#. Ki2tD
+#: linestyletabpage.ui
+msgctxt "linestyletabpage|CBX_SYNCHRONIZE"
+msgid "_Fit to line width"
+msgstr "A_n Linienbreite anpassen"
+
+#. MAsFg
+#: linestyletabpage.ui
+msgctxt "linestyletabpage|BTN_MODIFY"
+msgid "_Modify"
+msgstr "Än_dern"
+
+#. FmGAy
+#: linestyletabpage.ui
+msgctxt "linestyletabpage|BTN_LOAD|tooltip_text"
+msgid "Load Line Styles"
+msgstr "Linienstiltabelle laden"
+
+#. JCDCi
+#: linestyletabpage.ui
+msgctxt "linestyletabpage|BTN_SAVE|tooltip_text"
+msgid "Save Line Styles"
+msgstr "Linienstiltabelle sichern"
+
+#. VGiHW
+#: linestyletabpage.ui
+msgctxt "linestyletabpage|label1"
+msgid "Properties"
+msgstr "Eigenschaften"
+
+#. LyV8a
+#: linestyletabpage.ui
+msgctxt "linestyletabpage|liststoreTYPE"
+msgid "Dots"
+msgstr "Punkte"
+
+#. uq5bZ
+#: linestyletabpage.ui
+msgctxt "linestyletabpage|liststoreTYPE"
+msgid "Dash"
+msgstr "Strich"
+
+#. vFEBA
+#: linetabpage.ui
+msgctxt "linetabpage|FT_LINE_STYLE"
+msgid "_Style:"
+msgstr "_Stil:"
+
+#. WBP2J
+#: linetabpage.ui
+msgctxt "linetabpage|FT_COLOR"
+msgid "Colo_r:"
+msgstr "_Farbe:"
+
+#. PtQxP
+#: linetabpage.ui
+msgctxt "linetabpage|FT_LINE_WIDTH"
+msgid "_Width:"
+msgstr "_Breite:"
+
+#. MzAeD
+#: linetabpage.ui
+msgctxt "linetabpage|FT_TRANSPARENT"
+msgid "_Transparency:"
+msgstr "_Transparenz:"
+
+#. 6TFWn
+#: linetabpage.ui
+msgctxt "linetabpage|label1"
+msgid "Line Properties"
+msgstr "Linieneigenschaften"
+
+#. HyxSJ
+#: linetabpage.ui
+msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
+msgid "Start st_yle:"
+msgstr "Linienanfan_g:"
+
+#. cCsuG
+#: linetabpage.ui
+msgctxt "linetabpage|label5"
+msgid "End sty_le:"
+msgstr "Liniene_nde:"
+
+#. 5RYtu
+#: linetabpage.ui
+msgctxt "linetabpage|FT_LINE_START_WIDTH"
+msgid "Wi_dth:"
+msgstr "B_reite:"
+
+#. aZYyn
+#: linetabpage.ui
+msgctxt "linetabpage|TSB_CENTER_START"
+msgid "Ce_nter"
+msgstr "_Zentriert"
+
+#. zm8Ga
+#: linetabpage.ui
+msgctxt "linetabpage|FT_LINE_END_WIDTH"
+msgid "W_idth:"
+msgstr "Br_eite:"
+
+#. g2gLY
+#: linetabpage.ui
+msgctxt "linetabpage|TSB_CENTER_END"
+msgid "C_enter"
+msgstr "Ze_ntriert"
+
+#. pQfyE
+#: linetabpage.ui
+msgctxt "linetabpage|CBX_SYNCHRONIZE"
+msgid "Synchroni_ze ends"
+msgstr "En_den synchronisieren"
+
+#. sged5
+#: linetabpage.ui
+msgctxt "linetabpage|label2"
+msgid "Arrow Styles"
+msgstr "Linienspitzen"
+
+#. BdoBN
+#: linetabpage.ui
+msgctxt "linetabpage|FT_EDGE_STYLE"
+msgid "_Corner style:"
+msgstr "Liniene_cken:"
+
+#. kCtQm
+#: linetabpage.ui
+msgctxt "linetabpage|FT_CAP_STYLE"
+msgid "Ca_p style:"
+msgstr "L_inienenden:"
+
+#. Y4Gmw
+#: linetabpage.ui
+msgctxt "linetabpage|label3"
+msgid "Corner and Cap Styles"
+msgstr "Ecken- und Linienendenstil"
+
+#. 4YTBE
+#: linetabpage.ui
+msgctxt "linetabpage|MB_SYMBOL_BITMAP"
+msgid "Select..."
+msgstr "Auswahl..."
+
+#. LaBcU
+#: linetabpage.ui
+msgctxt "linetabpage|FT_SYMBOL_WIDTH"
+msgid "Widt_h:"
+msgstr "_Breite:"
+
+#. yhVmm
+#: linetabpage.ui
+msgctxt "linetabpage|CB_SYMBOL_RATIO"
+msgid "_Keep ratio"
+msgstr "Seiten_verhältnis beibehalten"
+
+#. oV6GJ
+#: linetabpage.ui
+msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
+msgid "Hei_ght:"
+msgstr "Höh_e:"
+
+#. 9eaQs
+#: linetabpage.ui
+msgctxt "linetabpage|label4"
+msgid "Icon"
+msgstr "Symbol"
+
+#. 4LeEu
+#: linetabpage.ui
+msgctxt "linetabpage|CTL_PREVIEW"
+msgid "Example"
+msgstr "Beispiel"
+
+#. xjb8g
+#: linetabpage.ui
+msgctxt "linetabpage|menuitem1"
+msgid "_No Symbol"
+msgstr "_Kein Symbol"
+
+#. 2q5YF
+#: linetabpage.ui
+msgctxt "linetabpage|menuitem2"
+msgid "_Automatic"
+msgstr "A_utomatisch"
+
+#. WA9YD
+#: linetabpage.ui
+msgctxt "linetabpage|menuitem3"
+msgid "_From file..."
+msgstr "Aus _Datei..."
+
+#. DYone
+#: linetabpage.ui
+msgctxt "linetabpage|menuitem4"
+msgid "_Gallery"
+msgstr "_Gallery"
+
+#. EvAFu
+#: linetabpage.ui
+msgctxt "linetabpage|menuitem5"
+msgid "_Symbols"
+msgstr "_Symbole"
+
+#. biCBC
+#: linetabpage.ui
+msgctxt "linetabpage|liststoreCAP_STYLE"
+msgid "Flat"
+msgstr "Flach"
+
+#. GqrYS
+#: linetabpage.ui
+msgctxt "linetabpage|liststoreCAP_STYLE"
+msgid "Round"
+msgstr "Rund"
+
+#. 3hNSB
+#: linetabpage.ui
+msgctxt "linetabpage|liststoreCAP_STYLE"
+msgid "Square"
+msgstr "Rechteckig"
+
+#. Qx3Ur
+#: linetabpage.ui
+msgctxt "linetabpage|liststoreEDGE_STYLE"
+msgid "Rounded"
+msgstr "Abgerundet"
+
+#. XH7Z6
+#: linetabpage.ui
+msgctxt "linetabpage|liststoreEDGE_STYLE"
+msgid "- none -"
+msgstr "- kein -"
+
+#. HZoVf
+#: linetabpage.ui
+msgctxt "linetabpage|liststoreEDGE_STYLE"
+msgid "Mitered"
+msgstr "Gehrung"
+
+#. RjDyz
+#: linetabpage.ui
+msgctxt "linetabpage|liststoreEDGE_STYLE"
+msgid "Beveled"
+msgstr "Abgeschrägt"
+
+#. CVCUF
+#: macroassigndialog.ui
+msgctxt "macroassigndialog|MacroAssignDialog"
+msgid "Assign Action"
+msgstr "Aktion zuweisen"
+
+#. NGu7X
+#: macroassignpage.ui
+msgctxt "macroassignpage|eventft"
+msgid "Event"
+msgstr "Ereignis"
+
+#. Z8XAp
+#: macroassignpage.ui
+msgctxt "macroassignpage|assignft"
+msgid "Assigned Action"
+msgstr "Zugewiesene Aktion"
+
+#. jfate
+#: macroassignpage.ui
+msgctxt "macroassignpage|libraryft1"
+msgid "Assignments"
+msgstr "Zuweisungen"
+
+#. YG6nV
+#: macroassignpage.ui
+msgctxt "macroassignpage|assign"
+msgid "M_acro..."
+msgstr "M_akro..."
+
+#. nhxq7
+#: macroassignpage.ui
+msgctxt "macroassignpage|component"
+msgid "Com_ponent..."
+msgstr "Kom_ponente..."
+
+#. UNHTV
+#: macroassignpage.ui
+msgctxt "macroassignpage|delete"
+msgid "Remove"
+msgstr "Entfernen"
+
+#. CqT9E
+#: macroassignpage.ui
+msgctxt "macroassignpage|label1"
+msgid "Assign"
+msgstr "Zuweisen"
+
+#. RVDTA
+#: macroselectordialog.ui
+msgctxt "macroselectordialog|MacroSelectorDialog"
+msgid "Macro Selector"
+msgstr "Makro-Auswahl"
+
+#. sgKzf
+#: macroselectordialog.ui
+msgctxt "macroselectordialog|add"
+msgid "Add"
+msgstr "Hinzufügen"
+
+#. fpfnw
+#: macroselectordialog.ui
+msgctxt "macroselectordialog|helpmacro"
+msgid ""
+"Select the library that contains the macro you want. Then select the macro "
+"under 'Macro name'."
+msgstr ""
+"Wählen Sie zuerst die Bibliothek aus, die das gewünschte Makro enthält. "
+"Wählen Sie anschließend das Makro unter 'Name des Makros' aus."
+
+#. nVAE3
+#: macroselectordialog.ui
+msgctxt "macroselectordialog|helptoolbar"
+msgid ""
+"To add a command to a toolbar, select the category and then the command. "
+"Then drag the command to the Commands list of the Toolbars tab page in the "
+"Customize dialog."
+msgstr ""
+"Um einen Befehl zu einer Symbolleiste hinzuzufügen, wählen Sie zuerst eine "
+"Kategorie aus und dann den Befehl. Ziehen Sie den Befehl in die Liste "
+"Befehle des Registers Symbolleisten im Dialog Anpassen."
+
+#. SuCLc
+#: macroselectordialog.ui
+msgctxt "macroselectordialog|libraryft"
+msgid "Library"
+msgstr "Bibliothek"
+
+#. ah4q5
+#: macroselectordialog.ui
+msgctxt "macroselectordialog|categoryft"
+msgid "Category"
+msgstr "Bereich"
+
+#. QvKmS
+#: macroselectordialog.ui
+msgctxt "macroselectordialog|macronameft"
+msgid "Macro Name"
+msgstr "Name des Makros"
+
+#. 2pAF6
+#: macroselectordialog.ui
+msgctxt "macroselectordialog|commandsft"
+msgid "Commands"
+msgstr "Befehle"
+
+#. gsUCh
+#: macroselectordialog.ui
+msgctxt "macroselectordialog|label1"
+msgid "Description"
+msgstr "Beschreibung"
+
+#. DpEG7
+#: menuassignpage.ui
+msgctxt "menuassignpage|toolrename"
+msgid "Rename..."
+msgstr "Umbenennen..."
+
+#. F5thG
+#: menuassignpage.ui
+msgctxt "menuassignpage|toolrestore"
+msgid "Restore Default Command"
+msgstr "Standardbefehl wiederherstellen"
+
+#. Q34AD
+#: menuassignpage.ui
+msgctxt "menuassignpage|toolchange"
+msgid "Change Icon..."
+msgstr "Symbol austauschen..."
+
+#. B92oF
+#: menuassignpage.ui
+msgctxt "menuassignpage|toolreset"
+msgid "Reset Icon"
+msgstr "Symbol zurücksetzen"
+
+#. CLJdC
+#: menuassignpage.ui
+msgctxt "menuassignpage|toplevelft"
+msgid "Menu"
+msgstr "Menü"
+
+#. UFRnW
+#: menuassignpage.ui
+msgctxt "menuassignpage|toolbarstyleft"
+msgid "Style"
+msgstr "Stil"
+
+#. k7QME
+#: menuassignpage.ui
+msgctxt "menuassignpage|iconsandtextrb"
+msgid "Icons & Text"
+msgstr "Symbole & Text"
+
+#. ukuYq
+#: menuassignpage.ui
+msgctxt "menuassignpage|iconsrb"
+msgid "Icons"
+msgstr "Symbole"
+
+#. DAAF5
+#: menuassignpage.ui
+msgctxt "menuassignpage|textrb"
+msgid "Text"
+msgstr "Text"
+
+#. DiRgB
+#: menuassignpage.ui
+msgctxt "menuassignpage|toplevelbutton"
+msgid "New..."
+msgstr "Neu..."
+
+#. cmNqS
+#: menuassignpage.ui
+msgctxt "menuassignpage|menuedit"
+msgid "Menu"
+msgstr "Menü"
+
+#. U59uo
+#: menuassignpage.ui
+msgctxt "menuassignpage|label26"
+msgid "%PRODUCTNAME %MODULENAME Menus"
+msgstr "%PRODUCTNAME %MODULENAME Menüs"
+
+#. 9vfHQ
+#: menuassignpage.ui
+msgctxt "menuassignpage|label33"
+msgid "_Save In"
+msgstr "_Speichern in"
+
+#. qFpej
+#: menuassignpage.ui
+msgctxt "menuassignpage|contentslabel"
+msgid "Entries"
+msgstr "Einträge"
+
+#. xySvN
+#: menuassignpage.ui
+msgctxt "menuassignpage|resetbtn"
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#. MdfQh
+#: menuassignpage.ui
+msgctxt "menuassignpage|modify"
+msgid "Modify"
+msgstr "Ändern"
+
+#. FVkxy
+#: menuassignpage.ui
+msgctxt "menuassignpage|deletebtn"
+msgid "Remove"
+msgstr "Entfernen"
+
+#. CrB8c
+#: menuassignpage.ui
+msgctxt "menuassignpage|add"
+msgid "Add Command"
+msgstr "Befehl hinzufügen"
+
+#. LtzLZ
+#: menuassignpage.ui
+msgctxt "menuassignpage|addseparatorbtn"
+msgid "Add Separator"
+msgstr "Trenner hinzufügen"
+
+#. YAH8N
+#: menuassignpage.ui
+msgctxt "menuassignpage|addsubmenubtn"
+msgid "Add Submenu"
+msgstr "Untermenü hinzufügen"
+
+#. sh72n
+#: menuassignpage.ui
+msgctxt "menuassignpage|label27"
+msgid "Menu Content"
+msgstr "Menüinhalt"
+
+#. hKQfV
+#: menuassignpage.ui
+msgctxt "menuassignpage|label28"
+msgid "_Description"
+msgstr "_Beschreibung"
+
+#. LHBZC
+#: menuassignpage.ui
+msgctxt "menuassignpage|move"
+msgid "Move..."
+msgstr "Verschieben..."
+
+#. RF75c
+#: menuassignpage.ui
+msgctxt "menuassignpage|rename"
+msgid "Rename..."
+msgstr "Umbenennen..."
+
+#. W3EKj
+#: menuassignpage.ui
+msgctxt "menuassignpage|delete"
+msgid "Delete..."
+msgstr "Löschen..."
+
+#. nSKjF
+#: menuassignpage.ui
+msgctxt "menuassignpage|modtoolrename"
+msgid "Rename..."
+msgstr "Umbenennen..."
+
+#. 2eAC7
+#: menuassignpage.ui
+msgctxt "menuassignpage|modtooldelete"
+msgid "Delete"
+msgstr "Löschen"
+
+#. x2Bby
+#: menuassignpage.ui
+msgctxt "menuassignpage|modrename"
+msgid "Rename..."
+msgstr "Umbenennen..."
+
+#. Mcir5
+#: mosaicdialog.ui
+msgctxt "mosaicdialog|MosaicDialog"
+msgid "Mosaic"
+msgstr "Mosaik"
+
+#. yVvs9
+#: mosaicdialog.ui
+msgctxt "mosaicdialog|label2"
+msgid "_Width:"
+msgstr "_Breite:"
+
+#. TsqoC
+#: mosaicdialog.ui
+msgctxt "mosaicdialog|height"
+msgid "2"
+msgstr "2"
+
+#. Ca8nA
+#: mosaicdialog.ui
+msgctxt "mosaicdialog|label3"
+msgid "_Height:"
+msgstr "Höh_e:"
+
+#. HPBw2
+#: mosaicdialog.ui
+msgctxt "mosaicdialog|edges"
+msgid "E_nhance edges"
+msgstr "_Kanten hervorheben"
+
+#. LKQEa
+#: mosaicdialog.ui
+msgctxt "mosaicdialog|label1"
+msgid "Parameters"
+msgstr "Parameter"
+
+#. NcNCG
+#: movemenu.ui
+msgctxt "movemenu|MoveMenuDialog"
+msgid "New Menu"
+msgstr "Neues Menü"
+
+#. kJERC
+#: movemenu.ui
+msgctxt "movemenu|menunameft"
+msgid "Menu name:"
+msgstr "Menüname:"
+
+#. YV2LE
+#: movemenu.ui
+msgctxt "movemenu|label1"
+msgid "Menu _position:"
+msgstr "Menü_position:"
+
+#. HZFF5
+#: movemenu.ui
+msgctxt "movemenu|up-atkobject"
+msgid "Up"
+msgstr "Nach oben"
+
+#. nRLog
+#: movemenu.ui
+msgctxt "movemenu|down-atkobject"
+msgid "Down"
+msgstr "Nach unten"
+
+#. qoE4K
+#: multipathdialog.ui
+msgctxt "multipathdialog|MultiPathDialog"
+msgid "Select Paths"
+msgstr "Pfad auswählen"
+
+#. yfGYp
+#: multipathdialog.ui
+msgctxt "multipathdialog|add"
+msgid "_Add..."
+msgstr "_Hinzufügen..."
+
+#. BdYBz
+#: multipathdialog.ui
+msgctxt "multipathdialog|pathlist"
+msgid "Path list:"
+msgstr "Pfadliste:"
+
+#. AsnM3
+#: multipathdialog.ui
+msgctxt "multipathdialog|label1"
+msgid "Mark the Default Path for New Files"
+msgstr "Wählen Sie den Standardpfad für neue Dateien."
+
+#. pB3Yj
+#: namedialog.ui
+msgctxt "namedialog|NameDialog"
+msgid "Name"
+msgstr "Name"
+
+#. ZQHDc
+#: newlibdialog.ui
+msgctxt "newlibdialog|NewLibDialog"
+msgid "Create Library"
+msgstr "Bibliothek erstellen"
+
+#. Kza8K
+#: newlibdialog.ui
+msgctxt "newlibdialog|newlibft"
+msgid "Enter the name for the new library."
+msgstr "Geben Sie den Namen für die neue Bibliothek ein."
+
+#. 8D4QY
+#: newlibdialog.ui
+msgctxt "newlibdialog|newmacroft"
+msgid "Enter the name for the new macro."
+msgstr "Geben Sie den Namen für das neue Makro ein."
+
+#. xZRVY
+#: newlibdialog.ui
+msgctxt "newlibdialog|renameft"
+msgid "Enter the new name for the selected object."
+msgstr "Geben Sie den Namen für das ausgewählte Objekt ein."
+
+#. awAso
+#: newlibdialog.ui
+msgctxt "newlibdialog|altmacrotitle"
+msgid "Create Macro"
+msgstr "Makro erstellen"
+
+#. 3WDAH
+#: newlibdialog.ui
+msgctxt "newlibdialog|altrenametitle"
+msgid "Rename"
+msgstr "Umbenennen"
+
+#. 77zVE
+#: newtabledialog.ui
+msgctxt "newtabledialog|NewTableDialog"
+msgid "Insert Table"
+msgstr "Tabelle einfügen"
+
+#. CJfAC
+#: newtabledialog.ui
+msgctxt "newtabledialog|columns_label"
+msgid "_Number of columns:"
+msgstr "_Spaltenanzahl:"
+
+#. DGNLv
+#: newtabledialog.ui
+msgctxt "newtabledialog|rows_label"
+msgid "_Number of rows:"
+msgstr "_Zeilenanzahl:"
+
+#. VWxkk
+#: newtoolbardialog.ui
+msgctxt "newtoolbardialog|NewToolbarDialog"
+msgid "Name"
+msgstr "Name"
+
+#. KyP6r
+#: newtoolbardialog.ui
+msgctxt "newtoolbardialog|label1"
+msgid "_Toolbar name:"
+msgstr "_Name der Symbolleiste:"
+
+#. keChx
+#: newtoolbardialog.ui
+msgctxt "newtoolbardialog|label2"
+msgid "_Save in:"
+msgstr "_Speichern in:"
+
+#. 5ATKM
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|add|tooltip_text"
+msgid "Add"
+msgstr "Hinzufügen"
+
+#. Sjx7f
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|edit|tooltip_text"
+msgid "Edit Comment"
+msgstr "Kommentar bearbeiten"
+
+#. YidmA
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|delete|tooltip_text"
+msgid "Remove"
+msgstr "Entfernen"
+
+#. uz2qX
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|formatf"
+msgid "_Format code"
+msgstr "Format-_Code"
+
+#. ZiPyf
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|decimalsft"
+msgid "_Decimal places:"
+msgstr "N_achkommastellen:"
+
+#. jQQZk
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|denominatorft"
+msgid "Den_ominator places:"
+msgstr "Stellen für Nen_ner:"
+
+#. EXEbk
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|leadzerosft"
+msgid "Leading _zeroes:"
+msgstr "Führende _Nullen:"
+
+#. BRPVs
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|negnumred"
+msgid "_Negative numbers red"
+msgstr "Negativ in _Rot"
+
+#. rrDFo
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|thousands"
+msgid "_Thousands separator"
+msgstr "_Tausendertrennzeichen"
+
+#. 9DhkC
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|engineering"
+msgid "_Engineering notation"
+msgstr "T_echnische Schreibweise"
+
+#. rsmBU
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|optionsft"
+msgid "Options"
+msgstr "Optionen"
+
+#. NTAb6
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|categoryft"
+msgid "C_ategory"
+msgstr "_Kategorie"
+
+#. Wxkzd
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|formatft"
+msgid "Fo_rmat"
+msgstr "_Format"
+
+#. hx9FX
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|sourceformat"
+msgid "So_urce format"
+msgstr "_Quellformat"
+
+#. iCX4U
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|languageft"
+msgid "_Language"
+msgstr "_Sprache"
+
+#. GyY9M
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|liststore1"
+msgid "All"
+msgstr "Alle"
+
+#. 8AwDu
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|liststore1"
+msgid "User-defined"
+msgstr "Benutzerdefiniert"
+
+#. YPFu3
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|liststore1"
+msgid "Number"
+msgstr "Dezimalzahl"
+
+#. sCP8R
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|liststore1"
+msgid "Percent"
+msgstr "Prozent"
+
+#. 6C4cy
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|liststore1"
+msgid "Currency"
+msgstr "Währung"
+
+#. NgzCi
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|liststore1"
+msgid "Date"
+msgstr "Datum"
+
+#. 4kcAo
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|liststore1"
+msgid "Time"
+msgstr "Uhrzeit"
+
+#. xnmxf
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|liststore1"
+msgid "Scientific"
+msgstr "Wissenschaftlich"
+
+#. vMka9
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|liststore1"
+msgid "Fraction"
+msgstr "Bruch"
+
+#. M8AFf
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|liststore1"
+msgid "Boolean Value"
+msgstr "Wahrheitswert"
+
+#. 2esH2
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|liststore1"
+msgid "Text"
+msgstr "Text"
+
+#. zCSmH
+#: numberingformatpage.ui
+msgctxt "numberingformatpage|liststore2"
+msgid "Automatically"
+msgstr "Automatisch"
+
+#. iHsAJ
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|label1"
+msgid "Level"
+msgstr "Ebene"
+
+#. AxmSa
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|label4"
+msgid "Number:"
+msgstr "Art:"
+
+#. xWX3x
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|startatft"
+msgid "Start at:"
+msgstr "Beginn bei:"
+
+#. EDSiA
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|bitmapft"
+msgid "Graphics:"
+msgstr "Bilder:"
+
+#. Hooqo
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|widthft"
+msgid "Width:"
+msgstr "Breite:"
+
+#. PBvy6
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|heightft"
+msgid "Height:"
+msgstr "Höhe:"
+
+#. bRHQn
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|keepratio"
+msgid "Keep ratio"
+msgstr "Seitenverhältnis beibehalten"
+
+#. 7Wuu8
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|orientft"
+msgid "Alignment:"
+msgstr "Ausrichtung:"
+
+#. BJjDU
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|orientlb"
+msgid "Top of baseline"
+msgstr "Basis oben"
+
+#. YgzFa
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|orientlb"
+msgid "Center of baseline"
+msgstr "Basis zentriert"
+
+#. rRWyY
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|orientlb"
+msgid "Bottom of baseline"
+msgstr "Basis unten"
+
+#. GRqAC
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|orientlb"
+msgid "Top of character"
+msgstr "Zeichen oben"
+
+#. 5z7jX
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|orientlb"
+msgid "Center of character"
+msgstr "Zeichen zentriert"
+
+#. MsKwk
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|orientlb"
+msgid "Bottom of character"
+msgstr "Zeichen unten"
+
+#. JJEdP
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|orientlb"
+msgid "Top of line"
+msgstr "Zeile oben"
+
+#. UoEug
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|orientlb"
+msgid "Center of line"
+msgstr "Zeile zentriert"
+
+#. 7dPkC
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|orientlb"
+msgid "Bottom of line"
+msgstr "Zeile unten"
+
+#. CoAAt
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|bitmap"
+msgid "Select..."
+msgstr "Auswahl..."
+
+#. 4mxm2
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|numalign"
+msgid "Left"
+msgstr "Links"
+
+#. RKz4v
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|numalign"
+msgid "Centered"
+msgstr "Zentriert"
+
+#. ZdPHV
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|numalign"
+msgid "Right"
+msgstr "Rechts"
+
+#. M4aPS
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|bullet"
+msgid "Select..."
+msgstr "Auswahl..."
+
+#. RJa39
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|prefixft"
+msgid "Before:"
+msgstr "Vor:"
+
+#. EzDC5
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|separator"
+msgid "Separator"
+msgstr "Trenner"
+
+#. FLJWG
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|suffixft"
+msgid "After:"
+msgstr "Hinter:"
+
+#. TZVTJ
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|sublevelsft"
+msgid "Show sublevels:"
+msgstr "Vollständig:"
+
+#. FaDZX
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|bulletft"
+msgid "Character:"
+msgstr "Zeichen:"
+
+#. 6jTGa
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|relsizeft"
+msgid "_Relative size:"
+msgstr "_Relative Größe:"
+
+#. 6r484
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|colorft"
+msgid "Color:"
+msgstr "Farbe:"
+
+#. ksG2M
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|charstyleft"
+msgid "Character style:"
+msgstr "Zeichenvorlage:"
+
+#. Xv5DR
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|numalignft"
+msgid "_Alignment:"
+msgstr "Ausri_chtung:"
+
+#. S9jNu
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|label2"
+msgid "Numbering"
+msgstr "Liste"
+
+#. kcgWM
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|allsame"
+msgid "_Consecutive numbering"
+msgstr "_Fortlaufende Nummerierung"
+
+#. 9VSpp
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|label3"
+msgid "All Levels"
+msgstr "Alle Ebenen"
+
+#. XxX2T
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|fromfile"
+msgid "From file..."
+msgstr "Aus Datei..."
+
+#. qMFqF
+#: numberingoptionspage.ui
+msgctxt "numberingoptionspage|gallery"
+msgid "Gallery"
+msgstr "Gallery"
+
+#. jRE6s
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|1"
+msgid "Level"
+msgstr "Ebene"
+
+#. Azcrg
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|numfollowedby"
+msgid "Numbering followed by:"
+msgstr "Nummerierung wird gefolgt von:"
+
+#. Ef8hG
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|num2align"
+msgid "N_umbering alignment:"
+msgstr "Ausri_chtung der Nummerierung:"
+
+#. xFfvt
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|alignedat"
+msgid "Aligned at:"
+msgstr "Ausgerichtet bei:"
+
+#. XGzNx
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|indentat"
+msgid "Indent at:"
+msgstr "Einzug bei:"
+
+#. FW9wv
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|at"
+msgid "Tab stop at:"
+msgstr "Tabulator bei:"
+
+#. fXRT2
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|indent"
+msgid "Indent:"
+msgstr "Einzug:"
+
+#. YCZDg
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|relative"
+msgid "Relati_ve"
+msgstr "Relati_v"
+
+#. bt7Fj
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|numberingwidth"
+msgid "Width of numbering:"
+msgstr "Breite der Nummerierung:"
+
+#. EJUm3
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|numdist"
+msgid ""
+"Minimum space between\n"
+"numbering and text:"
+msgstr ""
+"Minimaler Abstand zwischen\n"
+"Nummerierung und Text:"
+
+#. 8FbxK
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|numalign"
+msgid "N_umbering alignment:"
+msgstr "Ausri_chtung der Nummerierung:"
+
+#. 6DLtp
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|label10"
+msgid "Position and Spacing"
+msgstr "Position und Abstand"
+
+#. x2AGL
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|standard"
+msgid "Default"
+msgstr "Standard"
+
+#. Bu2uC
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|liststore1"
+msgid "Left"
+msgstr "Links"
+
+#. FzFuR
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|liststore1"
+msgid "Centered"
+msgstr "Zentriert"
+
+#. BF5Nt
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|liststore1"
+msgid "Right"
+msgstr "Rechts"
+
+#. tsTNP
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|liststore2"
+msgid "Tab stop"
+msgstr "Tabulator"
+
+#. 3EFaG
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|liststore2"
+msgid "Space"
+msgstr "Leerzeichen"
+
+#. GviqT
+#: numberingpositionpage.ui
+msgctxt "numberingpositionpage|liststore2"
+msgid "Nothing"
+msgstr "Keins"
+
+#. tGB4m
+#: objectnamedialog.ui
+msgctxt "objectnamedialog|ObjectNameDialog"
+msgid "Name"
+msgstr "Name"
+
+#. CEx5r
+#: objectnamedialog.ui
+msgctxt "objectnamedialog|object_name_label"
+msgid "_Name:"
+msgstr "_Name:"
+
+#. 4TRWw
+#: objecttitledescdialog.ui
+msgctxt "objecttitledescdialog|ObjectTitleDescDialog"
+msgid "Description"
+msgstr "Beschreibung"
+
+#. FYqhw
+#: objecttitledescdialog.ui
+msgctxt "objecttitledescdialog|object_title_label"
+msgid "_Title:"
+msgstr "_Titel:"
+
+#. kDbQ9
+#: objecttitledescdialog.ui
+msgctxt "objecttitledescdialog|desc_label"
+msgid "_Description:"
+msgstr "_Beschreibung:"
+
+#. s8E7z
+#: optaccessibilitypage.ui
+msgctxt "optaccessibilitypage|acctool"
+msgid "Support _assistive technology tools (program restart required)"
+msgstr ""
+"Unterstützung _behindertengerechter Zugangsprogramme (Programmneustart "
+"erforderlich)"
+
+#. EZqPM
+#: optaccessibilitypage.ui
+msgctxt "optaccessibilitypage|textselinreadonly"
+msgid "Use te_xt selection cursor in read-only text documents"
+msgstr "Te_xtauswahlcursor in schreibgeschützten Textdokumenten verwenden"
+
+#. APEfF
+#: optaccessibilitypage.ui
+msgctxt "optaccessibilitypage|animatedgraphics"
+msgid "Allow animated _images"
+msgstr "Animierte _Bilder zulassen"
+
+#. 3Q66x
+#: optaccessibilitypage.ui
+msgctxt "optaccessibilitypage|animatedtext"
+msgid "Allow animated _text"
+msgstr "Animierten _Text zulassen"
+
+#. 2A83C
+#: optaccessibilitypage.ui
+msgctxt "optaccessibilitypage|label1"
+msgid "Miscellaneous Options"
+msgstr "Sonstige Optionen"
+
+#. pLAWF
+#: optaccessibilitypage.ui
+msgctxt "optaccessibilitypage|autodetecthc"
+msgid "Automatically _detect high contrast mode of operating system"
+msgstr "_Kontrastdarstellungsmodus des Betriebssystems automatisch erkennen"
+
+#. Sc8Cq
+#: optaccessibilitypage.ui
+msgctxt "optaccessibilitypage|autofontcolor"
+msgid "Use automatic font _color for screen display"
+msgstr "Systemschrift_farbe für Bildschirmdarstellung nutzen"
+
+#. n24Cd
+#: optaccessibilitypage.ui
+msgctxt "optaccessibilitypage|systempagepreviewcolor"
+msgid "_Use system colors for page previews"
+msgstr "Systemfarben für Druckvorschau _verwenden"
+
+#. hGpaw
+#: optaccessibilitypage.ui
+msgctxt "optaccessibilitypage|label2"
+msgid "Options for High Contrast Appearance"
+msgstr "Optionen für die Kontrastdarstellung"
+
+#. kishx
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|javaenabled"
+msgid "_Use a Java runtime environment"
+msgstr "_Eine Java-Laufzeitumgebung verwenden"
+
+#. DFVFw
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|label2"
+msgid "_Java runtime environments (JRE) already installed:"
+msgstr "_Bereits installierte Java-Laufzeitumgebungen (JRE):"
+
+#. mBYfC
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|add"
+msgid "_Add..."
+msgstr "_Hinzufügen..."
+
+#. YtgBL
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|parameters"
+msgid "_Parameters..."
+msgstr "_Parameter..."
+
+#. dhf5G
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|classpath"
+msgid "_Class Path..."
+msgstr "_Class-Pfad..."
+
+#. MxHGu
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|vendor"
+msgid "Vendor"
+msgstr "Hersteller"
+
+#. e6xHG
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|version"
+msgid "Version"
+msgstr "Version"
+
+#. w4K9y
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|features"
+msgid "Features"
+msgstr "Besondere Merkmale"
+
+#. eBrhe
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|a11y"
+msgid "with accessibility support"
+msgstr "Mit Barrierefreiheits-Unterstützung"
+
+#. GkBzK
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|selectruntime"
+msgid "Select a Java Runtime Environment"
+msgstr "Java-Laufzeitumgebung auswählen"
+
+#. erNBk
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|javapath"
+msgid "Location: "
+msgstr "Speicherort: "
+
+#. 7QUQp
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|label1"
+msgid "Java Options"
+msgstr "Java Optionen"
+
+#. rEtsc
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|experimental"
+msgid "Enable experimental features (may be unstable)"
+msgstr "Experimentelle Funktionen aktivieren (kann instabil sein)"
+
+#. rMVcA
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|macrorecording"
+msgid "Enable macro recording (may be limited)"
+msgstr "Makroaufzeichnung ermöglichen (eingeschränkt)"
+
+#. NgRXw
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|expertconfig"
+msgid "Open Expert Configuration"
+msgstr "Experteneinstellungen öffnen"
+
+#. ZLtrh
+#: optadvancedpage.ui
+msgctxt "optadvancedpage|label12"
+msgid "Optional Features"
+msgstr "Optionale Funktionen"
+
+#. dmvLE
+#: optappearancepage.ui
+msgctxt "optappearancepage|label3"
+msgid "_Scheme:"
+msgstr "_Schema:"
+
+#. jzELX
+#: optappearancepage.ui
+msgctxt "optappearancepage|label1"
+msgid "Color Scheme"
+msgstr "Farbschema"
+
+#. BtFUJ
+#: optappearancepage.ui
+msgctxt "optappearancepage|uielements"
+msgid "User interface elements"
+msgstr "Elemente der Benutzeroberfläche"
+
+#. nrHHF
+#: optappearancepage.ui
+msgctxt "optappearancepage|colorsetting"
+msgid "Color setting"
+msgstr "Farbeinstellung"
+
+#. n5BWe
+#: optappearancepage.ui
+msgctxt "optappearancepage|preview"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. Jms9Q
+#: optappearancepage.ui
+msgctxt "optappearancepage|on"
+msgid "On"
+msgstr "Ein"
+
+#. HFLPF
+#: optappearancepage.ui
+msgctxt "optappearancepage|label2"
+msgid "Custom Colors"
+msgstr "Benutzerdefinierte Farben"
+
+#. nRFne
+#: optasianpage.ui
+msgctxt "optasianpage|charkerning"
+msgid "_Western text only"
+msgstr "Nur _westliche Zeichen"
+
+#. WEFrz
+#: optasianpage.ui
+msgctxt "optasianpage|charpunctkerning"
+msgid "Western _text and Asian punctuation"
+msgstr "_Westliche Zeichen und asiatische Interpunktion"
+
+#. 4wTpB
+#: optasianpage.ui
+msgctxt "optasianpage|label1"
+msgid "Kerning"
+msgstr "Unterschneidung"
+
+#. mboKG
+#: optasianpage.ui
+msgctxt "optasianpage|nocompression"
+msgid "_No compression"
+msgstr "_Keine Kompression"
+
+#. GvJuV
+#: optasianpage.ui
+msgctxt "optasianpage|punctcompression"
+msgid "_Compress punctuation only"
+msgstr "Nur _Interpunktion komprimieren"
+
+#. aGY7H
+#: optasianpage.ui
+msgctxt "optasianpage|punctkanacompression"
+msgid "Compress punctuation and Japanese Kana"
+msgstr "Interpunktion und japanische Kana komprimieren"
+
+#. DAgwH
+#: optasianpage.ui
+msgctxt "optasianpage|label2"
+msgid "Character Spacing"
+msgstr "Zeichenabstand"
+
+#. CeSy8
+#: optasianpage.ui
+msgctxt "optasianpage|standard"
+msgid "_Default"
+msgstr "Standar_d"
+
+#. WmjE9
+#: optasianpage.ui
+msgctxt "optasianpage|languageft"
+msgid "_Language:"
+msgstr "_Sprache:"
+
+#. 3Airv
+#: optasianpage.ui
+msgctxt "optasianpage|startft"
+msgid "Not _at start of line:"
+msgstr "Kein Zeilen_beginn:"
+
+#. TiFfn
+#: optasianpage.ui
+msgctxt "optasianpage|endft"
+msgid "Not at _end of line:"
+msgstr "Kein Zeilene_nde:"
+
+#. dSvmP
+#: optasianpage.ui
+msgctxt "optasianpage|hintft"
+msgid "Without user-defined line break symbols"
+msgstr "Ohne benutzerdefinierte Zeilenwechselzeichen"
+
+#. BCwCp
+#: optasianpage.ui
+msgctxt "optasianpage|label3"
+msgid "First and Last Characters"
+msgstr "Anfangs- und Endzeichen"
+
+#. DpgnD
+#: optbasicidepage.ui
+msgctxt "optbasicidepage|codecomplete_enable"
+msgid "Enable code completion"
+msgstr "Code-Vervollständigung einschalten"
+
+#. B8fvE
+#: optbasicidepage.ui
+msgctxt "optbasicidepage|label1"
+msgid "Code Completion"
+msgstr "Code-Vervollständigung"
+
+#. kaYLZ
+#: optbasicidepage.ui
+msgctxt "optbasicidepage|autoclose_proc"
+msgid "Autoclose procedures"
+msgstr "Prozeduren automatisch schließen"
+
+#. qKTPa
+#: optbasicidepage.ui
+msgctxt "optbasicidepage|autoclose_paren"
+msgid "Autoclose parenthesis"
+msgstr "Klammer automatisch schließen"
+
+#. EExBY
+#: optbasicidepage.ui
+msgctxt "optbasicidepage|autoclose_quotes"
+msgid "Autoclose quotes"
+msgstr "Anführungszeichen automatisch schließen"
+
+#. CCtUM
+#: optbasicidepage.ui
+msgctxt "optbasicidepage|autocorrect"
+msgid "Autocorrection"
+msgstr "AutoKorrektur"
+
+#. dJWhM
+#: optbasicidepage.ui
+msgctxt "optbasicidepage|label2"
+msgid "Code Suggestion"
+msgstr "Code-Vorschlag"
+
+#. iUBCy
+#: optbasicidepage.ui
+msgctxt "optbasicidepage|extendedtypes_enable"
+msgid "Use extended types"
+msgstr "Erweiterte Typen benutzen"
+
+#. rG8Fi
+#: optbasicidepage.ui
+msgctxt "optbasicidepage|label3"
+msgid "Language Features"
+msgstr "Sprachfunktionen"
+
+#. vTZjC
+#: optchartcolorspage.ui
+msgctxt "optchartcolorspage|label20"
+msgid "Chart Colors"
+msgstr "Diagrammfarben"
+
+#. WA57y
+#: optchartcolorspage.ui
+msgctxt "optchartcolorspage|default"
+msgid "_Default"
+msgstr "Standar_d"
+
+#. KoHHw
+#: optchartcolorspage.ui
+msgctxt "optchartcolorspage|label1"
+msgid "Color Table"
+msgstr "Farbtabelle"
+
+#. fVDQp
+#: optctlpage.ui
+msgctxt "optctlpage|sequencechecking"
+msgid "Use se_quence checking"
+msgstr "Se_quenzüberprüfung anwenden"
+
+#. DTWHd
+#: optctlpage.ui
+msgctxt "optctlpage|restricted"
+msgid "Restricted"
+msgstr "Beschränkt"
+
+#. wkSPW
+#: optctlpage.ui
+msgctxt "optctlpage|typeandreplace"
+msgid "_Type and replace"
+msgstr "A_utomatisches Ersetzen"
+
+#. 4fM2r
+#: optctlpage.ui
+msgctxt "optctlpage|label1"
+msgid "Sequence Checking"
+msgstr "Sequenzüberprüfung"
+
+#. oBBi6
+#: optctlpage.ui
+msgctxt "optctlpage|label3"
+msgid "Movement:"
+msgstr "Bewegung:"
+
+#. R7YUB
+#: optctlpage.ui
+msgctxt "optctlpage|movementlogical"
+msgid "Lo_gical"
+msgstr "_Logisch"
+
+#. aEwYW
+#: optctlpage.ui
+msgctxt "optctlpage|movementvisual"
+msgid "_Visual"
+msgstr "_Visuell"
+
+#. 78DkF
+#: optctlpage.ui
+msgctxt "optctlpage|label2"
+msgid "Cursor Control"
+msgstr "Cursorsteuerung"
+
+#. LcTwD
+#: optctlpage.ui
+msgctxt "optctlpage|label5"
+msgid "_Numerals:"
+msgstr "Z_iffern:"
+
+#. BdfCk
+#: optctlpage.ui
+msgctxt "optctlpage|numerals"
+msgid "Arabic (1, 2, 3…)"
+msgstr "Arabisch (1, 2, 3…)"
+
+#. 2n6dr
+#: optctlpage.ui
+msgctxt "optctlpage|numerals"
+msgid "Eastern Arabic (٣ ,٢ ,١…)"
+msgstr "Ostarabisch (٣ ,٢ ,١…)"
+
+#. uFBEA
+#: optctlpage.ui
+msgctxt "optctlpage|numerals"
+msgid "System"
+msgstr "System"
+
+#. 93jgb
+#: optctlpage.ui
+msgctxt "optctlpage|numerals"
+msgid "Context"
+msgstr "Inhalt"
+
+#. kWczF
+#: optctlpage.ui
+msgctxt "optctlpage|label4"
+msgid "General Options"
+msgstr "Allgemeine Optionen"
+
+#. DhS5b
+#: optemailpage.ui
+msgctxt "optemailpage|label2"
+msgid "_E-mail program:"
+msgstr "_E-Mail-Programm:"
+
+#. ACQCM
+#: optemailpage.ui
+msgctxt "optemailpage|browse"
+msgid "Browse..."
+msgstr "Durchsuchen..."
+
+#. EHBa5
+#: optemailpage.ui
+msgctxt "optemailpage|browsetitle"
+msgid "All files"
+msgstr "Alle Dateien"
+
+#. scEyS
+#: optemailpage.ui
+msgctxt "optemailpage|suppress"
+msgid "Suppress hidden elements of documents"
+msgstr "Versteckte Elemente von Dokumenten unterdrücken"
+
+#. L8Vpv
+#: optemailpage.ui
+msgctxt "optemailpage|label1"
+msgid "Sending Documents as E-mail Attachments"
+msgstr "Versenden von Dokumenten als E-Mail-Anhang"
+
+#. x5kfq
+#: optfltrembedpage.ui
+msgctxt "optfltrembedpage|label2"
+msgid "[L]: Load and convert the object"
+msgstr "[L]: Objekt laden und konvertieren"
+
+#. PiDB7
+#: optfltrembedpage.ui
+msgctxt "optfltrembedpage|label3"
+msgid "[S]: Convert and save the object"
+msgstr "[S]: Objekt konvertieren und speichern"
+
+#. f2hGQ
+#: optfltrembedpage.ui
+msgctxt "optfltrembedpage|label1"
+msgid "Embedded Objects"
+msgstr "Eingebettete Objekte"
+
+#. nvE89
+#: optfltrembedpage.ui
+msgctxt "optfltrembedpage|label5"
+msgid "Export as:"
+msgstr "Exportieren als:"
+
+#. FEeH6
+#: optfltrembedpage.ui
+msgctxt "optfltrembedpage|highlighting"
+msgid "Highlighting"
+msgstr "Hervorhebung"
+
+#. Dnrx7
+#: optfltrembedpage.ui
+msgctxt "optfltrembedpage|shading"
+msgid "Shading"
+msgstr "Schattierung"
+
+#. gKwdG
+#: optfltrembedpage.ui
+msgctxt "optfltrembedpage|label4"
+msgid "Character Highlighting"
+msgstr "Zeichenhervorhebung"
+
+#. ttAk5
+#: optfltrpage.ui
+msgctxt "optfltrpage|wo_basic"
+msgid "Load Basic _code"
+msgstr "Basic _Code laden"
+
+#. AChYC
+#: optfltrpage.ui
+msgctxt "optfltrpage|wo_exec"
+msgid "E_xecutable code"
+msgstr "Aus_führbarer Code"
+
+#. avyQV
+#: optfltrpage.ui
+msgctxt "optfltrpage|wo_saveorig"
+msgid "Save _original Basic code"
+msgstr "Original _Basic Code speichern"
+
+#. QEZED
+#: optfltrpage.ui
+msgctxt "optfltrpage|label1"
+msgid "Microsoft Word 97/2000/XP"
+msgstr "Microsoft Word 97/2000/XP"
+
+#. Z88Ms
+#: optfltrpage.ui
+msgctxt "optfltrpage|ex_basic"
+msgid "Lo_ad Basic code"
+msgstr "Basic Code _laden"
+
+#. S6ozV
+#: optfltrpage.ui
+msgctxt "optfltrpage|ex_exec"
+msgid "E_xecutable code"
+msgstr "Aus_führbarer Code"
+
+#. K6YYX
+#: optfltrpage.ui
+msgctxt "optfltrpage|ex_saveorig"
+msgid "Sa_ve original Basic code"
+msgstr "Or_iginal Basic Code speichern"
+
+#. EiCAN
+#: optfltrpage.ui
+msgctxt "optfltrpage|label2"
+msgid "Microsoft Excel 97/2000/XP"
+msgstr "Microsoft Excel 97/2000/XP"
+
+#. z9TKA
+#: optfltrpage.ui
+msgctxt "optfltrpage|pp_basic"
+msgid "Load Ba_sic code"
+msgstr "Ba_sic Code laden"
+
+#. VSdyY
+#: optfltrpage.ui
+msgctxt "optfltrpage|pp_saveorig"
+msgid "Sav_e original Basic code"
+msgstr "Ori_ginal Basic Code speichern"
+
+#. csr26
+#: optfltrpage.ui
+msgctxt "optfltrpage|label3"
+msgid "Microsoft PowerPoint 97/2000/XP"
+msgstr "Microsoft PowerPoint 97/2000/XP"
+
+#. Q8yvt
+#: optfontspage.ui
+msgctxt "optfontspage|label2"
+msgid "_Font:"
+msgstr "Sc_hrift:"
+
+#. TAig5
+#: optfontspage.ui
+msgctxt "optfontspage|label3"
+msgid "Re_place with:"
+msgstr "Ersetzen _durch:"
+
+#. ctZBz
+#: optfontspage.ui
+msgctxt "optfontspage|always"
+msgid "Always"
+msgstr "Immer"
+
+#. pyVz3
+#: optfontspage.ui
+msgctxt "optfontspage|screenonly"
+msgid "Screen only"
+msgstr "Nur Bildschirm"
+
+#. bMguF
+#: optfontspage.ui
+msgctxt "optfontspage|font"
+msgid "Font"
+msgstr "Schriftart"
+
+#. FELgv
+#: optfontspage.ui
+msgctxt "optfontspage|replacewith"
+msgid "Replace with"
+msgstr "Ersetzen durch"
+
+#. 7ECDC
+#: optfontspage.ui
+msgctxt "optfontspage|usetable"
+msgid "_Apply replacement table"
+msgstr "_Ersetzungstabelle anwenden"
+
+#. wDa4A
+#: optfontspage.ui
+msgctxt "optfontspage|label4"
+msgid "Replacement Table"
+msgstr "Ersetzungstabelle"
+
+#. z93yC
+#: optfontspage.ui
+msgctxt "optfontspage|label8"
+msgid "Fon_ts:"
+msgstr "S_chriftarten:"
+
+#. L9aT3
+#: optfontspage.ui
+msgctxt "optfontspage|label9"
+msgid "_Size:"
+msgstr "_Größe:"
+
+#. KXCQg
+#: optfontspage.ui
+msgctxt "optfontspage|fontname"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. Cc5tn
+#: optfontspage.ui
+msgctxt "optfontspage|nonpropfontonly"
+msgid "_Non-proportional fonts only"
+msgstr "_Nur nicht-proportionale Schriftarten"
+
+#. AafuA
+#: optfontspage.ui
+msgctxt "optfontspage|label1"
+msgid "Font Settings for HTML, Basic and SQL Sources"
+msgstr "Schrifteinstellungen für HTML-, Basic- und SQL-Quelltexte"
+
+#. AFEDo
+#: optgeneralpage.ui
+msgctxt "optgeneralpage|exthelp"
+msgid "_Extended tips"
+msgstr "Er_weiterte Tipps"
+
+#. BR6gf
+#: optgeneralpage.ui
+msgctxt "optgeneralpage|label1"
+msgid "Help"
+msgstr "Hilfe"
+
+#. aqdMJ
+#: optgeneralpage.ui
+msgctxt "optgeneralpage|filedlg"
+msgid "_Use %PRODUCTNAME dialogs"
+msgstr "%PRODUCTNAME-Dialoge _verwenden"
+
+#. ySSsA
+#: optgeneralpage.ui
+msgctxt "optgeneralpage|label2"
+msgid "Open/Save Dialogs"
+msgstr "Dialoge zum Öffnen/Speichern"
+
+#. JAW5C
+#: optgeneralpage.ui
+msgctxt "optgeneralpage|printdlg"
+msgid "Use %PRODUCTNAME _dialogs"
+msgstr "%PRODUCTNAME-Dialoge verwende_n"
+
+#. F6nzA
+#: optgeneralpage.ui
+msgctxt "optgeneralpage|label3"
+msgid "Print Dialogs"
+msgstr "Dialoge zum Drucken"
+
+#. SFLLC
+#: optgeneralpage.ui
+msgctxt "optgeneralpage|docstatus"
+msgid "_Printing sets \"document modified\" status"
+msgstr "_Drucken setzt Status \"Dokument geändert\""
+
+#. 4yo9c
+#: optgeneralpage.ui
+msgctxt "optgeneralpage|label4"
+msgid "Document Status"
+msgstr "Dokumentstatus"
+
+#. zEUCi
+#: optgeneralpage.ui
+msgctxt "optgeneralpage|label6"
+msgid "_Interpret as years between "
+msgstr "_Interpretieren als Jahre zwischen"
+
+#. AhF6m
+#: optgeneralpage.ui
+msgctxt "optgeneralpage|toyear"
+msgid "and "
+msgstr "und "
+
+#. 7r6RF
+#: optgeneralpage.ui
+msgctxt "optgeneralpage|label5"
+msgid "Year (Two Digits)"
+msgstr "Jahr (zweistellig)"
+
+#. FqdXe
+#: optgeneralpage.ui
+msgctxt "optgeneralpage|collectusageinfo"
+msgid "Collect usage data and send it to The Document Foundation"
+msgstr "Nutzungsdaten sammeln und an die The Document Foundation senden"
+
+#. rS3dG
+#: optgeneralpage.ui
+msgctxt "optgeneralpage|label7"
+msgid "Help Improve %PRODUCTNAME"
+msgstr "Mithelfen, %PRODUCTNAME zu verbessern"
+
+#. FsiDE
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|size7FT"
+msgid "Size _7:"
+msgstr "Größe _7:"
+
+#. SfHVG
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|size6FT"
+msgid "Size _6:"
+msgstr "Größe _6:"
+
+#. mbGGc
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|size5FT"
+msgid "Size _5:"
+msgstr "Größe _5:"
+
+#. PwaSa
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|size4FT"
+msgid "Size _4:"
+msgstr "Größe _4:"
+
+#. FSRpm
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|size3FT"
+msgid "Size _3:"
+msgstr "Größe _3:"
+
+#. unrKj
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|size2FT"
+msgid "Size _2:"
+msgstr "Größe _2:"
+
+#. aiSoE
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|size1FT"
+msgid "Size _1:"
+msgstr "Größe _1:"
+
+#. rRkQd
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|label1"
+msgid "Font Sizes"
+msgstr "Schriftgrößen"
+
+#. JRQrk
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|ignorefontnames"
+msgid "Ignore _font settings"
+msgstr "_Schriftart-Einstellungen ignorieren"
+
+#. 7bZSP
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|unknowntag"
+msgid "_Import unknown HTML tags as fields"
+msgstr "_Unbekannte HTML-Tags als Felder importieren"
+
+#. VFTrU
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|numbersenglishus"
+msgid "_Use '%ENGLISHUSLOCALE' locale for numbers"
+msgstr "_Gebietsschema '%ENGLISHUSLOCALE' für Zahlen"
+
+#. Fnsdh
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|label2"
+msgid "Import"
+msgstr "Importieren"
+
+#. UajLE
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|charsetFT"
+msgid "Character _set:"
+msgstr "_Zeichensatz:"
+
+#. nJtoS
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|savegrflocal"
+msgid "_Copy local images to Internet"
+msgstr "_Lokale Bilder in das Internet kopieren"
+
+#. Xc4iM
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|printextension"
+msgid "_Print layout"
+msgstr "_Drucklayout"
+
+#. Wwuvt
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|starbasicwarning"
+msgid "Display _warning"
+msgstr "_Warnung anzeigen"
+
+#. puyKW
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|starbasic"
+msgid "LibreOffice _Basic"
+msgstr "LibreOffice _Basic"
+
+#. sEnBN
+#: opthtmlpage.ui
+msgctxt "opthtmlpage|label3"
+msgid "Export"
+msgstr "Exportieren"
+
+#. ecN5A
+#: optionsdialog.ui
+msgctxt "optionsdialog|OptionsDialog"
+msgid "Options"
+msgstr "Optionen"
+
+#. CgiEq
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchcase"
+msgid "_uppercase/lowercase"
+msgstr "_Groß- und Kleinschreibung"
+
+#. MkLv3
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchfullhalfwidth"
+msgid "_full-width/half-width forms"
+msgstr "_Normale/halbbreite Formen"
+
+#. FPFmB
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchhiraganakatakana"
+msgid "_hiragana/katakana"
+msgstr "H_iragana/Katakana"
+
+#. vx6x8
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchcontractions"
+msgid "_contractions (yo-on, sokuon)"
+msgstr "_Kontraktionen (yo-on, sokuon)"
+
+#. DLxj9
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchminusdashchoon"
+msgid "_minus/dash/cho-on"
+msgstr "_Minus/Bindestrich/cho-on"
+
+#. hYq5H
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchrepeatcharmarks"
+msgid "'re_peat character' marks"
+msgstr "_Wiederholungszeichen"
+
+#. 62963
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchvariantformkanji"
+msgid "_variant-form kanji (itaiji)"
+msgstr "Kan_ji Variante (itaiji)"
+
+#. ghXPH
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matcholdkanaforms"
+msgid "_old Kana forms"
+msgstr "A_lte Kana-Formen"
+
+#. Wxc7u
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchdiziduzu"
+msgid "_di/zi, du/zu"
+msgstr "_di/zi, du/zu"
+
+#. mAzGZ
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchbavahafa"
+msgid "_ba/va, ha/fa"
+msgstr "_ba/va, ha/fa"
+
+#. MJAYD
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchtsithichidhizi"
+msgid "_tsi/thi/chi, dhi/zi"
+msgstr "_tsi/thi/chi, dhi/zi"
+
+#. CDA8F
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchhyuiyubyuvyu"
+msgid "h_yu/fyu, byu/vyu"
+msgstr "h_yu/fyu, byu/vyu"
+
+#. MsCme
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchseshezeje"
+msgid "_se/she, ze/je"
+msgstr "_se/she, ze/je"
+
+#. nRKqj
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchiaiya"
+msgid "_ia/iya (piano/piyano)"
+msgstr "Ia/iya (_piano/piyano)"
+
+#. 4i3uv
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchkiku"
+msgid "_ki/ku (tekisuto/tekusuto)"
+msgstr "Ki/k_u (tekisuto/tekusuto)"
+
+#. eEXX5
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|matchprolongedsoundmark"
+msgid "Prolon_ged vowels (ka-/kaa)"
+msgstr "_Verlängerte Vokale (ka-/kaa)"
+
+#. rPGGZ
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|label1"
+msgid "Treat as Equal"
+msgstr "Gleichwertig behandeln"
+
+#. wT3mJ
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|ignorepunctuation"
+msgid "Pu_nctuation characters"
+msgstr "Satz_zeichen"
+
+#. 5JD7N
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|ignorewhitespace"
+msgid "_Whitespace characters"
+msgstr "Leerraumzei_chen"
+
+#. W92kS
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|ignoremiddledot"
+msgid "Midd_le dots"
+msgstr "_Mittige Punkte"
+
+#. nZXcM
+#: optjsearchpage.ui
+msgctxt "optjsearchpage|label2"
+msgid "Ignore"
+msgstr "Ignorieren"
+
+#. DJWap
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|label4"
+msgid "_User interface:"
+msgstr "_Benutzeroberfläche:"
+
+#. XqCkq
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|localesettingFT"
+msgid "Locale setting:"
+msgstr "Gebietsschema:"
+
+#. Zyao3
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|label6"
+msgid "Decimal separator key:"
+msgstr "Dezimaltrennzeichen:"
+
+#. cuqUB
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|defaultcurrency"
+msgid "_Default currency:"
+msgstr "_Standardwährung:"
+
+#. XmgPh
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|dataaccpatterns"
+msgid "Date acceptance _patterns:"
+msgstr "_Datumserkennungsmuster:"
+
+#. WoNAA
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|decimalseparator"
+msgid "_Same as locale setting ( %1 )"
+msgstr "_Entsprechend Gebietsschema ( %1 )"
+
+#. e8VE3
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|label1"
+msgid "Language Of"
+msgstr "Sprache für"
+
+#. 3JLVm
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|currentdoc"
+msgid "For the current document only"
+msgstr "Nur für das aktuelle Dokument"
+
+#. zeaKX
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|ctlsupport"
+msgid "Complex _text layout:"
+msgstr "Complex _Text Layout:"
+
+#. mpLF7
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|asiansupport"
+msgid "Asian:"
+msgstr "Asiatisch:"
+
+#. QwDAK
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|western"
+msgid "Western:"
+msgstr "Westlich:"
+
+#. K62Ex
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|label2"
+msgid "Default Languages for Documents"
+msgstr "Standardsprachen der Dokumente"
+
+#. 25J4E
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|ignorelanguagechange"
+msgid "Ignore s_ystem input language"
+msgstr "Systemsprache _ignorieren"
+
+#. 83eTv
+#: optlanguagespage.ui
+msgctxt "optlanguagespage|label3"
+msgid "Enhanced Language Support"
+msgstr "Erweiterte Sprachunterstützung"
+
+#. qGqtr
+#: optlingupage.ui
+msgctxt "optlingupage|lingumodulesft"
+msgid "_Available language modules:"
+msgstr "_Verfügbare Sprachmodule:"
+
+#. 8kxYC
+#: optlingupage.ui
+msgctxt "optlingupage|lingumodulesedit"
+msgid "_Edit..."
+msgstr "_Bearbeiten..."
+
+#. va3tH
+#: optlingupage.ui
+msgctxt "optlingupage|lingumodulesedit-atkobject"
+msgid "Edit Available language modules"
+msgstr "Verfügbare Sprachmodule bearbeiten"
+
+#. QfwG5
+#: optlingupage.ui
+msgctxt "optlingupage|lingudictsft"
+msgid "_User-defined dictionaries:"
+msgstr "Benut_zerwörterbücher:"
+
+#. qBrCR
+#: optlingupage.ui
+msgctxt "optlingupage|lingudictsnew"
+msgid "_New..."
+msgstr "_Neu..."
+
+#. mCu3q
+#: optlingupage.ui
+msgctxt "optlingupage|lingudictsedit"
+msgid "Ed_it..."
+msgstr "B_earbeiten..."
+
+#. B7nKn
+#: optlingupage.ui
+msgctxt "optlingupage|lingudictsedit-atkobject"
+msgid "Edit User-defined dictionaries"
+msgstr "Benutzerwörterbücher bearbeiten"
+
+#. WCFD5
+#: optlingupage.ui
+msgctxt "optlingupage|lingudictsdelete"
+msgid "_Delete"
+msgstr "_Löschen"
+
+#. cZpBx
+#: optlingupage.ui
+msgctxt "optlingupage|label4"
+msgid "_Options:"
+msgstr "O_ptionen:"
+
+#. XCpcE
+#: optlingupage.ui
+msgctxt "optlingupage|moredictslink"
+msgid "Get more dictionaries online..."
+msgstr "Hier erhalten Sie online weitere Wörterbücher..."
+
+#. 58e5v
+#: optlingupage.ui
+msgctxt "optlingupage|linguoptionsedit"
+msgid "Edi_t..."
+msgstr "Bea_rbeiten..."
+
+#. 5MSSC
+#: optlingupage.ui
+msgctxt "optlingupage|linguoptionsedit-atkobject"
+msgid "Edit Options"
+msgstr "Optionen bearbeiten"
+
+#. ZEoNA
+#: optlingupage.ui
+msgctxt "optlingupage|label1"
+msgid "Writing Aids"
+msgstr "Linguistik"
+
+#. 4iwQz
+#: optmemorypage.ui
+msgctxt "optmemorypage|label6"
+msgid "_Use for %PRODUCTNAME:"
+msgstr "_Verwenden für %PRODUCTNAME:"
+
+#. yFp2Z
+#: optmemorypage.ui
+msgctxt "optmemorypage|label7"
+msgid "_Memory per object:"
+msgstr "_Speicher pro Objekt:"
+
+#. 8Zaiv
+#: optmemorypage.ui
+msgctxt "optmemorypage|label8"
+msgid "Remove _from memory after:"
+msgstr "Aus Arbeitsspeicher _entfernen nach:"
+
+#. UDpHN
+#: optmemorypage.ui
+msgctxt "optmemorypage|label9"
+msgid "MB"
+msgstr "MB"
+
+#. F7oAj
+#: optmemorypage.ui
+msgctxt "optmemorypage|label10"
+msgid "MB"
+msgstr "MB"
+
+#. mTfQk
+#: optmemorypage.ui
+msgctxt "optmemorypage|label12"
+msgid "hh:mm"
+msgstr "hh:mm"
+
+#. sNsf3
+#: optmemorypage.ui
+msgctxt "optmemorypage|label2"
+msgid "Image Cache"
+msgstr "Bildspeicher"
+
+#. ggBYE
+#: optmemorypage.ui
+msgctxt "optmemorypage|label11"
+msgid "Number of objects:"
+msgstr "Anzahl der Objekte:"
+
+#. EjEAq
+#: optmemorypage.ui
+msgctxt "optmemorypage|label3"
+msgid "Cache for Inserted Objects"
+msgstr "Speicher für eingefügte Objekte"
+
+#. 8UgGC
+#: optmemorypage.ui
+msgctxt "optmemorypage|quicklaunch"
+msgid "Load %PRODUCTNAME during system start-up"
+msgstr "%PRODUCTNAME beim Systemstart laden"
+
+#. H87Ci
+#: optmemorypage.ui
+msgctxt "optmemorypage|systray"
+msgid "Enable systray Quickstarter"
+msgstr "Schnellstarter aktivieren"
+
+#. MUCSE
+#: optmemorypage.ui
+msgctxt "optmemorypage|label4"
+msgid "%PRODUCTNAME Quickstarter"
+msgstr "%PRODUCTNAME Schnellstarter"
+
+#. ADZ8E
+#: optnewdictionarydialog.ui
+msgctxt "optnewdictionarydialog|OptNewDictionaryDialog"
+msgid "New Dictionary"
+msgstr "Benutzerwörterbuch anlegen"
+
+#. XucrZ
+#: optnewdictionarydialog.ui
+msgctxt "optnewdictionarydialog|name_label"
+msgid "_Name:"
+msgstr "_Name:"
+
+#. ypeEr
+#: optnewdictionarydialog.ui
+msgctxt "optnewdictionarydialog|language_label"
+msgid "_Language:"
+msgstr "_Sprache:"
+
+#. SmQV7
+#: optnewdictionarydialog.ui
+msgctxt "optnewdictionarydialog|except"
+msgid "_Exception (-)"
+msgstr "A_usnahme (-)"
+
+#. CpgB2
+#: optnewdictionarydialog.ui
+msgctxt "optnewdictionarydialog|label1"
+msgid "Dictionary"
+msgstr "Wörterbuch"
+
+#. n6vQH
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|autocheck"
+msgid "_Check for updates automatically"
+msgstr "_Automatisch nach Updates suchen"
+
+#. Hbe2C
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|everyday"
+msgid "Every da_y"
+msgstr "Jeden _Tag"
+
+#. 3zd7m
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|everyweek"
+msgid "Every _week"
+msgstr "Jede _Woche"
+
+#. 29exv
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|everymonth"
+msgid "Every _month"
+msgstr "Jeden _Monat"
+
+#. UvuAC
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|lastchecked"
+msgid "Last checked: %DATE%, %TIME%"
+msgstr "Zuletzt gesucht: %DATE%, %TIME%"
+
+#. pGuvH
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|checknow"
+msgid "Check _Now"
+msgstr "Jetzt _suchen"
+
+#. DWDdu
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|autodownload"
+msgid "_Download updates automatically"
+msgstr "_Updates automatisch herunterladen"
+
+#. iCVFj
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|destpathlabel"
+msgid "Download destination:"
+msgstr "Herunterladen nach:"
+
+#. AmVMh
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|changepath"
+msgid "Ch_ange..."
+msgstr "Ä_ndern..."
+
+#. JqAh4
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|extrabits"
+msgid "_Send OS version and basic hardware information"
+msgstr ""
+"_Betriebssystemversion und grundlegende Hardware-Informationen übermitteln"
+
+#. b95Sc
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|extrabits|tooltip_text"
+msgid ""
+"This information lets us make optimizations for your hardware and operating "
+"system."
+msgstr ""
+"Diese Informationen lassen uns Optimierungen für Ihre Hardware und Ihr "
+"Betriebssystem vornehmen."
+
+#. f2Wtr
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|useragent_label"
+msgid "User Agent:"
+msgstr "Konfiguration:"
+
+#. agWbu
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|useragent_changed"
+msgid "Hit apply to update"
+msgstr "Klicken Sie auf Übernehmen, um zu aktualisieren"
+
+#. rw57A
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|neverchecked"
+msgid "Last checked: Not yet"
+msgstr "Zuletzt gesucht: Bisher noch nicht"
+
+#. 3J5As
+#: optonlineupdatepage.ui
+msgctxt "optonlineupdatepage|label1"
+msgid "Online Update Options"
+msgstr "Online Update Optionen"
+
+#. UNoeu
+#: optopenclpage.ui
+msgctxt "optopenclpage|useswinterpreter"
+msgid "Allow use of Software Interpreter (even when OpenCL is not available)"
+msgstr ""
+"Verwendung eines Software-Interpreters erlauben (auch wenn OpenCL nicht "
+"verfügbar)"
+
+#. QYxCN
+#: optopenclpage.ui
+msgctxt "optopenclpage|useopencl"
+msgid "Allow use of OpenCL"
+msgstr "Das Verwenden von OpenCL zulassen"
+
+#. MAc4P
+#: optopenclpage.ui
+msgctxt "optopenclpage|openclused"
+msgid "OpenCL is available for use."
+msgstr "OpenCL steht bereit."
+
+#. fAEQH
+#: optopenclpage.ui
+msgctxt "optopenclpage|openclnotused"
+msgid "OpenCL is not used."
+msgstr "OpenCL wird nicht verwendet."
+
+#. xWE5i
+#: optopenclpage.ui
+msgctxt "optopenclpage|label1"
+msgid "OpenCL Options"
+msgstr "OpenCL-Optionen"
+
+#. 7AXsY
+#: optpathspage.ui
+msgctxt "optpathspage|type"
+msgid "Type"
+msgstr "Art"
+
+#. RBNVu
+#: optpathspage.ui
+msgctxt "optpathspage|path"
+msgid "Path"
+msgstr "Pfad"
+
+#. 3vXzF
+#: optpathspage.ui
+msgctxt "optpathspage|editpaths"
+msgid "Edit Paths: %1"
+msgstr "Pfade Bearbeiten: %1"
+
+#. rfDum
+#: optpathspage.ui
+msgctxt "optpathspage|label1"
+msgid "Paths used by %PRODUCTNAME"
+msgstr "Von %PRODUCTNAME verwendete Pfade"
+
+#. k8MmB
+#: optpathspage.ui
+msgctxt "optpathspage|default"
+msgid "_Default"
+msgstr "Standar_d"
+
+#. q8JFc
+#: optpathspage.ui
+msgctxt "optpathspage|edit"
+msgid "_Edit..."
+msgstr "_Bearbeiten..."
+
+#. pQEWv
+#: optproxypage.ui
+msgctxt "optproxypage|label2"
+msgid "Proxy s_erver:"
+msgstr "Pro_xy-Server:"
+
+#. LBWG4
+#: optproxypage.ui
+msgctxt "optproxypage|proxymode"
+msgid "None"
+msgstr "Keine"
+
+#. 9BdbA
+#: optproxypage.ui
+msgctxt "optproxypage|proxymode"
+msgid "System"
+msgstr "System"
+
+#. 8D2Di
+#: optproxypage.ui
+msgctxt "optproxypage|proxymode"
+msgid "Manual"
+msgstr "Manuell"
+
+#. pkdvs
+#: optproxypage.ui
+msgctxt "optproxypage|httpft"
+msgid "HT_TP proxy:"
+msgstr "HTTP-Prox_y:"
+
+#. dGMMs
+#: optproxypage.ui
+msgctxt "optproxypage|httpportft"
+msgid "_Port:"
+msgstr "_Port:"
+
+#. 5tuq7
+#: optproxypage.ui
+msgctxt "optproxypage|httpsft"
+msgid "HTTP_S proxy:"
+msgstr "HTTP_S-Proxy:"
+
+#. egcgL
+#: optproxypage.ui
+msgctxt "optproxypage|ftpft"
+msgid "_FTP proxy:"
+msgstr "_FTP-Proxy:"
+
+#. ZaUmG
+#: optproxypage.ui
+msgctxt "optproxypage|noproxyft"
+msgid "_No proxy for:"
+msgstr "_Kein Proxy für:"
+
+#. UynC6
+#: optproxypage.ui
+msgctxt "optproxypage|httpsportft"
+msgid "P_ort:"
+msgstr "P_ort:"
+
+#. kmBDu
+#: optproxypage.ui
+msgctxt "optproxypage|ftpportft"
+msgid "P_ort:"
+msgstr "P_ort:"
+
+#. RW6E4
+#: optproxypage.ui
+msgctxt "optproxypage|noproxydesc"
+msgid "Separator ;"
+msgstr "Trennzeichen ;"
+
+#. FzAg6
+#: optproxypage.ui
+msgctxt "optproxypage|label1"
+msgid "Settings"
+msgstr "Einstellungen"
+
+#. Cdbvg
+#: optsavepage.ui
+msgctxt "optsavepage|load_docprinter"
+msgid "Load printer settings with the document"
+msgstr "Druckereinstellungen mit dem Dokument laden"
+
+#. VdFnA
+#: optsavepage.ui
+msgctxt "optsavepage|load_settings"
+msgid "Load user-specific settings with the document"
+msgstr "Benutzerspezifische Einstellungen mit dem Dokument laden"
+
+#. js6Gn
+#: optsavepage.ui
+msgctxt "optsavepage|label1"
+msgid "Load"
+msgstr "Laden"
+
+#. bLvCX
+#: optsavepage.ui
+msgctxt "optsavepage|autosave"
+msgid "Save _AutoRecovery information every:"
+msgstr "S_peichern von Autowiederherstellungsinfos alle:"
+
+#. BN5Js
+#: optsavepage.ui
+msgctxt "optsavepage|autosave_mins"
+msgid "minutes"
+msgstr "Minuten"
+
+#. UKeCt
+#: optsavepage.ui
+msgctxt "optsavepage|userautosave"
+msgid "Automatically save the document too"
+msgstr "Auch das Dokument automatisch speichern"
+
+#. kwFtx
+#: optsavepage.ui
+msgctxt "optsavepage|relative_fsys"
+msgid "Save URLs relative to file system"
+msgstr "URLs relativ zum Dateisystem speichern"
+
+#. 8xmX3
+#: optsavepage.ui
+msgctxt "optsavepage|docinfo"
+msgid "_Edit document properties before saving"
+msgstr "_Eigenschaften vorher bearbeiten"
+
+#. ctAxA
+#: optsavepage.ui
+msgctxt "optsavepage|relative_inet"
+msgid "Save URLs relative to internet"
+msgstr "URLs relativ zum Internet speichern"
+
+#. YsjVX
+#: optsavepage.ui
+msgctxt "optsavepage|backup"
+msgid "Al_ways create backup copy"
+msgstr "_Sicherungskopie immer erstellen"
+
+#. NaGCU
+#: optsavepage.ui
+msgctxt "optsavepage|label2"
+msgid "Save"
+msgstr "Speichern"
+
+#. TDBAs
+#: optsavepage.ui
+msgctxt "optsavepage|warnalienformat"
+msgid "Warn when not saving in ODF or default format"
+msgstr "Immer warnen, wenn nicht im ODF- oder Standardformat gespeichert wird"
+
+#. YjRps
+#: optsavepage.ui
+msgctxt "optsavepage|odfwarning_label"
+msgid "Not using ODF 1.2 Extended may cause information to be lost."
+msgstr "Benutzen Sie ODF 1.2 Erweitert, um Informationsverlust zu vermeiden."
+
+#. 6Tfns
+#: optsavepage.ui
+msgctxt "optsavepage|odfversion"
+msgid "1.0/1.1"
+msgstr "1.0/1.1"
+
+#. BJSfi
+#: optsavepage.ui
+msgctxt "optsavepage|odfversion"
+msgid "1.2"
+msgstr "1.2"
+
+#. k3jkA
+#: optsavepage.ui
+msgctxt "optsavepage|odfversion"
+msgid "1.2 Extended (compatibility mode)"
+msgstr "1.2 Erweitert (Kompatibilitätsmodus)"
+
+#. CjUEz
+#: optsavepage.ui
+msgctxt "optsavepage|odfversion"
+msgid "1.2 Extended (recommended)"
+msgstr "1.2 Erweitert (empfohlen)"
+
+#. cxPqV
+#: optsavepage.ui
+msgctxt "optsavepage|label5"
+msgid "ODF format version:"
+msgstr "ODF-Formatversion:"
+
+#. bF5dA
+#: optsavepage.ui
+msgctxt "optsavepage|saveas_label"
+msgid "Always sa_ve as:"
+msgstr "_Immer speichern als:"
+
+#. p3xHz
+#: optsavepage.ui
+msgctxt "optsavepage|doctype"
+msgid "Text document"
+msgstr "Textdokument"
+
+#. F2tP4
+#: optsavepage.ui
+msgctxt "optsavepage|doctype"
+msgid "HTML document"
+msgstr "HTML-Dokument"
+
+#. hA5Di
+#: optsavepage.ui
+msgctxt "optsavepage|doctype"
+msgid "Master document"
+msgstr "Globaldokument"
+
+#. Dfgxy
+#: optsavepage.ui
+msgctxt "optsavepage|doctype"
+msgid "Spreadsheet"
+msgstr "Tabellendokument"
+
+#. EEvDc
+#: optsavepage.ui
+msgctxt "optsavepage|doctype"
+msgid "Presentation"
+msgstr "Präsentation"
+
+#. XgyzS
+#: optsavepage.ui
+msgctxt "optsavepage|doctype"
+msgid "Drawing"
+msgstr "Zeichnung"
+
+#. 4DDpx
+#: optsavepage.ui
+msgctxt "optsavepage|doctype"
+msgid "Formula"
+msgstr "Formel"
+
+#. 29FUf
+#: optsavepage.ui
+msgctxt "optsavepage|label6"
+msgid "D_ocument type:"
+msgstr "Dokument_typ:"
+
+#. CgCxr
+#: optsavepage.ui
+msgctxt "optsavepage|label3"
+msgid "Default File Format and ODF Settings"
+msgstr "Einstellungen für Standard-Dateiformat und ODF"
+
+#. ArEZy
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|label9"
+msgid ""
+"Maintain a list of Time Stamping Authority (TSA) URLs to be used for digital"
+" signatures in PDF export."
+msgstr ""
+"Verwalten Sie eine Liste mit URLs von TSAs (Time Stamp Authorities), die Sie"
+" beim PDF-Export als digitale Signaturen verwenden können."
+
+#. nXJ6o
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|tsas"
+msgid "_TSAs..."
+msgstr "_TSAs..."
+
+#. vrbum
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|label10"
+msgid "TSAs"
+msgstr "TSAs"
+
+#. dgPTb
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|label7"
+msgid ""
+"Select the Network Security Services certificate directory to use for "
+"digital signatures."
+msgstr ""
+"Wählen Sie das Verzeichnis für das Network-Security-Services-Zertifikat aus,"
+" das für die digitalen Signaturen benutzt werden soll."
+
+#. DPGqn
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|cert"
+msgid "_Certificate..."
+msgstr "_Zertifikat..."
+
+#. UCYi2
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|label8"
+msgid "Certificate Path"
+msgstr "Zertifizierungspfad"
+
+#. pDQrj
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|label5"
+msgid ""
+"Adjust the security level for executing macros and specify trusted macro "
+"developers."
+msgstr ""
+"Anpassen der Sicherheitsstufe für das Ausführen von Makros und Definieren "
+"der vertrauenswürdigen Makro-Entwickler."
+
+#. wBcDQ
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|macro"
+msgid "Macro Securit_y..."
+msgstr "Makrosi_cherheit..."
+
+#. rDJXk
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|label3"
+msgid "Macro Security"
+msgstr "Makrosicherheit"
+
+#. UGTda
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|savepassword"
+msgid "Persistently _save passwords for web connections"
+msgstr "Kennwörter für _Web-Verbindungen dauerhaft speichern"
+
+#. Gyqwf
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|usemasterpassword"
+msgid "Protected _by a master password (recommended)"
+msgstr "Mit Master-Kennwort _schützen (empfohlen)"
+
+#. ipcrn
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|masterpasswordtext"
+msgid ""
+"Passwords are protected by a master password. You will be asked to enter it "
+"once per session, if %PRODUCTNAME retrieves a password from the protected "
+"password list."
+msgstr ""
+"Kennwörter werden durch ein Master-Kennwort geschützt. Sie werden einmal pro"
+" Sitzung zur Eingabe des Master-Kennworts aufgefordert, wenn %PRODUCTNAME "
+"ein Kennwort aus der Liste benutzt."
+
+#. 7gzb7
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|nopasswordsave"
+msgid ""
+"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
+"\n"
+"Do you want to delete password list and reset master password?"
+msgstr ""
+"Wenn Sie die Funktion zum dauerhaften Speichern von Kennwörtern abschalten, wird die Liste der Kennwörter gelöscht und das Master-Kennwort zurückgesetzt.\n"
+"\n"
+"Möchten Sie die Liste der Kennwörter löschen und das Master-Kennwort zurücksetzen?"
+
+#. hwg3F
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|connections"
+msgid "Connect_ions..."
+msgstr "_Verbindungen..."
+
+#. SWrMn
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|masterpassword"
+msgid "_Master Password..."
+msgstr "_Master-Kennwort..."
+
+#. UtNEn
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|label2"
+msgid "Passwords for Web Connections"
+msgstr "Kennwörter für Internet-Verbindungen"
+
+#. EYFvA
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|label4"
+msgid ""
+"Adjust security related options and define warnings for hidden information "
+"in documents. "
+msgstr ""
+"Hier stellen Sie sicherheitsrelevante Optionen ein und legen Warnungen "
+"bezüglich versteckter Informationen in Dokumenten fest."
+
+#. CBnzU
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|options"
+msgid "O_ptions..."
+msgstr "O_ptionen..."
+
+#. GqVkJ
+#: optsecuritypage.ui
+msgctxt "optsecuritypage|label1"
+msgid "Security Options and Warnings"
+msgstr "Sicherheitsoptionen und -warnungen"
+
+#. FPuvb
+#: optuserpage.ui
+msgctxt "optuserpage|companyft"
+msgid "_Company:"
+msgstr "_Firma:"
+
+#. 33C7p
+#: optuserpage.ui
+msgctxt "optuserpage|nameft"
+msgid "First/last _name/initials:"
+msgstr "_Vor-/Name/Kürzel:"
+
+#. Rgktm
+#: optuserpage.ui
+msgctxt "optuserpage|streetft"
+msgid "_Street:"
+msgstr "_Straße:"
+
+#. 3P3Eq
+#: optuserpage.ui
+msgctxt "optuserpage|cityft"
+msgid "City/state/_zip:"
+msgstr "Stadt/Bundesland/_PLZ:"
+
+#. 63aAc
+#: optuserpage.ui
+msgctxt "optuserpage|countryft"
+msgid "Country/re_gion:"
+msgstr "_Land/Region:"
+
+#. bBdEE
+#: optuserpage.ui
+msgctxt "optuserpage|titleft"
+msgid "_Title/position:"
+msgstr "_Titel/Position:"
+
+#. AmX9k
+#: optuserpage.ui
+msgctxt "optuserpage|phoneft"
+msgid "Telephone (home/_work):"
+msgstr "Telefon (privat/_geschäftlich):"
+
+#. SaoaM
+#: optuserpage.ui
+msgctxt "optuserpage|phoneft-atkobject"
+msgid "Home telephone number"
+msgstr "Private Telefonnummer"
+
+#. wFe6B
+#: optuserpage.ui
+msgctxt "optuserpage|faxft"
+msgid "Fa_x/e-mail:"
+msgstr "Fa_x/E-Mail:"
+
+#. ZYaYQ
+#: optuserpage.ui
+msgctxt "optuserpage|firstname-atkobject"
+msgid "First name"
+msgstr "Vorname"
+
+#. JTuZi
+#: optuserpage.ui
+msgctxt "optuserpage|lastname-atkobject"
+msgid "Last name"
+msgstr "Name"
+
+#. Yxa9C
+#: optuserpage.ui
+msgctxt "optuserpage|shortname-atkobject"
+msgid "Initials"
+msgstr "Kürzel"
+
+#. r3vzi
+#: optuserpage.ui
+msgctxt "optuserpage|city-atkobject"
+msgid "City"
+msgstr "Stadt"
+
+#. mtqYc
+#: optuserpage.ui
+msgctxt "optuserpage|state-atkobject"
+msgid "State"
+msgstr "Bundesland"
+
+#. 5BGCZ
+#: optuserpage.ui
+msgctxt "optuserpage|zip-atkobject"
+msgid "Zip code"
+msgstr "PLZ"
+
+#. HEdwA
+#: optuserpage.ui
+msgctxt "optuserpage|title-atkobject"
+msgid "Title"
+msgstr "Titel"
+
+#. HrEay
+#: optuserpage.ui
+msgctxt "optuserpage|position-atkobject"
+msgid "Position"
+msgstr "Position"
+
+#. NubaL
+#: optuserpage.ui
+msgctxt "optuserpage|home-atkobject"
+msgid "Home telephone number"
+msgstr "Private Telefonnummer"
+
+#. Csar7
+#: optuserpage.ui
+msgctxt "optuserpage|work-atkobject"
+msgid "Work telephone number"
+msgstr "Telefonnummer (Arbeit)"
+
+#. 5iGzz
+#: optuserpage.ui
+msgctxt "optuserpage|fax-atkobject"
+msgid "FAX number"
+msgstr "Faxnummer"
+
+#. ivjYN
+#: optuserpage.ui
+msgctxt "optuserpage|email-atkobject"
+msgid "email address"
+msgstr "E-Mail-Adresse"
+
+#. eygE2
+#: optuserpage.ui
+msgctxt "optuserpage|usefordocprop"
+msgid "Use data for document properties"
+msgstr "Daten für Dokumenteigenschaften verwenden"
+
+#. 9GAjr
+#: optuserpage.ui
+msgctxt "optuserpage|rusnameft"
+msgid "Last name/first _name/father’s name/initials:"
+msgstr "_Name/Vorname/Vatersname/Kürzel:"
+
+#. evFFG
+#: optuserpage.ui
+msgctxt "optuserpage|ruslastname-atkobject"
+msgid "Last name"
+msgstr "Name"
+
+#. TofG2
+#: optuserpage.ui
+msgctxt "optuserpage|rusfathersname-atkobject"
+msgid "Father's name"
+msgstr "Vatersname"
+
+#. CVPtf
+#: optuserpage.ui
+msgctxt "optuserpage|russhortname-atkobject"
+msgid "Initials"
+msgstr "Kürzel"
+
+#. uhqYu
+#: optuserpage.ui
+msgctxt "optuserpage|rusfirstname-atkobject"
+msgid "First name"
+msgstr "Vorname"
+
+#. 4qdC2
+#: optuserpage.ui
+msgctxt "optuserpage|eastnameft"
+msgid "Last/first _name/initials:"
+msgstr "_Name/Vorname/Kürzel:"
+
+#. rGFEG
+#: optuserpage.ui
+msgctxt "optuserpage|eastlastname-atkobject"
+msgid "Last name"
+msgstr "Name"
+
+#. sYqKM
+#: optuserpage.ui
+msgctxt "optuserpage|eastfirstname-atkobject"
+msgid "First name"
+msgstr "Vorname"
+
+#. 7APUf
+#: optuserpage.ui
+msgctxt "optuserpage|eastshortname-atkobject"
+msgid "Initials"
+msgstr "Kürzel"
+
+#. NGEU9
+#: optuserpage.ui
+msgctxt "optuserpage|russtreetft"
+msgid "_Street/apartment number:"
+msgstr "_Straße/Wohnungsnummer:"
+
+#. JBC8S
+#: optuserpage.ui
+msgctxt "optuserpage|russtreet-atkobject"
+msgid "Street"
+msgstr "Straße"
+
+#. AU5Aj
+#: optuserpage.ui
+msgctxt "optuserpage|apartnum-atkobject"
+msgid "Apartment number"
+msgstr "Wohnungsnummer"
+
+#. 8kEFB
+#: optuserpage.ui
+msgctxt "optuserpage|icityft"
+msgid "_Zip/city:"
+msgstr "_PLZ/Ort:"
+
+#. r7D6o
+#: optuserpage.ui
+msgctxt "optuserpage|icity-atkobject"
+msgid "City"
+msgstr "Stadt"
+
+#. dwuLm
+#: optuserpage.ui
+msgctxt "optuserpage|izip-atkobject"
+msgid "Zip code"
+msgstr "PLZ"
+
+#. 9v6o6
+#: optuserpage.ui
+msgctxt "optuserpage|label1"
+msgid "Address"
+msgstr "Adresse"
+
+#. stYtM
+#: optviewpage.ui
+msgctxt "optviewpage|grid3|tooltip_text"
+msgid "Requires restart"
+msgstr "Erfordert Neustart"
+
+#. R2ZAF
+#: optviewpage.ui
+msgctxt "optviewpage|useaccel"
+msgid "Use hard_ware acceleration"
+msgstr "Hard_warebeschleunigung verwenden"
+
+#. 2MWvd
+#: optviewpage.ui
+msgctxt "optviewpage|useaa"
+msgid "Use anti-a_liasing"
+msgstr "_Kantenglättung verwenden"
+
+#. XDTwA
+#: optviewpage.ui
+msgctxt "optviewpage|useopengl"
+msgid "Use OpenGL for all rendering"
+msgstr "OpenGL für das Rendern verwenden"
+
+#. u3QCS
+#: optviewpage.ui
+msgctxt "optviewpage|forceopengl"
+msgid "Ignore OpenGL blacklist"
+msgstr "OpenGL-Negativliste ignorieren"
+
+#. 5ty3F
+#: optviewpage.ui
+msgctxt "optviewpage|forceopengl|tooltip_text"
+msgid "Requires restart. Enabling this may expose driver bugs"
+msgstr "Erfordert Neustart. Eine Aktivierung kann Treiberfehler verursachen."
+
+#. tP52B
+#: optviewpage.ui
+msgctxt "optviewpage|openglenabled"
+msgid "GL is currently enabled."
+msgstr "OpenGL ist gegenwärtig aktiviert."
+
+#. zyf37
+#: optviewpage.ui
+msgctxt "optviewpage|opengldisabled"
+msgid "GL is currently disabled."
+msgstr "OpenGL ist gegenwärtig deaktiviert."
+
+#. sy9iz
+#: optviewpage.ui
+msgctxt "optviewpage|label2"
+msgid "Graphics Output"
+msgstr "Grafikausgabe"
+
+#. MkBGP
+#: optviewpage.ui
+msgctxt "optviewpage|label13"
+msgid "Icons in men_us:"
+msgstr "Symbole _in Menüs:"
+
+#. evVAC
+#: optviewpage.ui
+msgctxt "optviewpage|contextmenushortcuts"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. 36Dg2
+#: optviewpage.ui
+msgctxt "optviewpage|contextmenushortcuts"
+msgid "Hide"
+msgstr "Verbergen"
+
+#. aE3Cq
+#: optviewpage.ui
+msgctxt "optviewpage|contextmenushortcuts"
+msgid "Show"
+msgstr "Anzeigen"
+
+#. MmGQL
+#: optviewpage.ui
+msgctxt "optviewpage|label10"
+msgid "Shortcuts in context menus:"
+msgstr "Kurzbefehle in Kontextmenüs:"
+
+#. XKRM7
+#: optviewpage.ui
+msgctxt "optviewpage|menuicons"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. Fbyi9
+#: optviewpage.ui
+msgctxt "optviewpage|menuicons"
+msgid "Hide"
+msgstr "Ausblenden"
+
+#. WTgFx
+#: optviewpage.ui
+msgctxt "optviewpage|menuicons"
+msgid "Show"
+msgstr "Anzeigen"
+
+#. FC7XW
+#: optviewpage.ui
+msgctxt "optviewpage|label3"
+msgid "Menu"
+msgstr "Menü"
+
+#. B6DLD
+#: optviewpage.ui
+msgctxt "optviewpage|showfontpreview"
+msgid "Show p_review of fonts"
+msgstr "Schriftarten_vorschau aktivieren"
+
+#. uZALs
+#: optviewpage.ui
+msgctxt "optviewpage|label5"
+msgid "Font Lists"
+msgstr "Liste der Schriftarten"
+
+#. mjFDT
+#: optviewpage.ui
+msgctxt "optviewpage|label8"
+msgid "Toolbar icon _size:"
+msgstr "Symbolgröße der _Symbolleiste:"
+
+#. 8CiB5
+#: optviewpage.ui
+msgctxt "optviewpage|iconstyle"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. HEZbQ
+#: optviewpage.ui
+msgctxt "optviewpage|iconstyle"
+msgid "Galaxy"
+msgstr "Galaxy"
+
+#. RNRKB
+#: optviewpage.ui
+msgctxt "optviewpage|iconstyle"
+msgid "High Contrast"
+msgstr "Hoher Kontrast"
+
+#. RFNMY
+#: optviewpage.ui
+msgctxt "optviewpage|iconstyle"
+msgid "Crystal"
+msgstr "Crystal"
+
+#. GYEwo
+#: optviewpage.ui
+msgctxt "optviewpage|iconstyle"
+msgid "Tango"
+msgstr "Tango"
+
+#. fr4NS
+#: optviewpage.ui
+msgctxt "optviewpage|iconstyle"
+msgid "Oxygen"
+msgstr "Oxygen"
+
+#. CGhUk
+#: optviewpage.ui
+msgctxt "optviewpage|iconstyle"
+msgid "Classic"
+msgstr "Klassisch"
+
+#. biYuj
+#: optviewpage.ui
+msgctxt "optviewpage|iconstyle"
+msgid "Sifr"
+msgstr "Sifr"
+
+#. Erw8o
+#: optviewpage.ui
+msgctxt "optviewpage|iconstyle"
+msgid "Breeze"
+msgstr "Breeze"
+
+#. MtYwg
+#: optviewpage.ui
+msgctxt "optviewpage|iconstyle"
+msgid "Tango Testing"
+msgstr "Tango-Test"
+
+#. R5bS2
+#: optviewpage.ui
+msgctxt "optviewpage|iconsize"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. LEpgg
+#: optviewpage.ui
+msgctxt "optviewpage|iconsize"
+msgid "Small"
+msgstr "Klein"
+
+#. q4LX3
+#: optviewpage.ui
+msgctxt "optviewpage|iconsize"
+msgid "Large"
+msgstr "Groß"
+
+#. oYDs8
+#: optviewpage.ui
+msgctxt "optviewpage|iconsize"
+msgid "Extra Large"
+msgstr "Sehr groß"
+
+#. anMTd
+#: optviewpage.ui
+msgctxt "optviewpage|label6"
+msgid "Icon s_tyle:"
+msgstr "Sy_mbolstil:"
+
+#. 2FKuk
+#: optviewpage.ui
+msgctxt "optviewpage|aafont"
+msgid "Screen font antialiasin_g"
+msgstr "Bildschirmschriftarten _glätten"
+
+#. dZtx2
+#: optviewpage.ui
+msgctxt "optviewpage|label9"
+msgid "Sidebar _icon size:"
+msgstr "Symbolgröße _der Seitenleiste:"
+
+#. CsRM4
+#: optviewpage.ui
+msgctxt "optviewpage|sidebariconsize"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. wMYTk
+#: optviewpage.ui
+msgctxt "optviewpage|sidebariconsize"
+msgid "Small"
+msgstr "Klein"
+
+#. AFBcQ
+#: optviewpage.ui
+msgctxt "optviewpage|sidebariconsize"
+msgid "Large"
+msgstr "Groß"
+
+#. 7VF5A
+#: optviewpage.ui
+msgctxt "optviewpage|label7"
+msgid "_Notebookbar icon size:"
+msgstr "Symbolgröße im Symbolband:"
+
+#. LxFLY
+#: optviewpage.ui
+msgctxt "optviewpage|notebookbariconsize"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. oKQEA
+#: optviewpage.ui
+msgctxt "optviewpage|notebookbariconsize"
+msgid "Small"
+msgstr "Klein"
+
+#. JHk7X
+#: optviewpage.ui
+msgctxt "optviewpage|notebookbariconsize"
+msgid "Large"
+msgstr "Groß"
+
+#. 7dYGb
+#: optviewpage.ui
+msgctxt "optviewpage|aafrom"
+msgid "fro_m:"
+msgstr "a_b:"
+
+#. sdcEk
+#: optviewpage.ui
+msgctxt "optviewpage|label1"
+msgid "User Interface"
+msgstr "Benutzeroberfläche"
+
+#. gCyzZ
+#: optviewpage.ui
+msgctxt "optviewpage|label11"
+msgid "Mouse _positioning:"
+msgstr "_Mauspositionierung:"
+
+#. aiFQd
+#: optviewpage.ui
+msgctxt "optviewpage|label12"
+msgid "Middle mouse _button:"
+msgstr "Mitt_lere Maustaste:"
+
+#. 3rdJa
+#: optviewpage.ui
+msgctxt "optviewpage|mousepos"
+msgid "Default button"
+msgstr "Standardschaltfläche"
+
+#. 6UedG
+#: optviewpage.ui
+msgctxt "optviewpage|mousepos"
+msgid "Dialog center"
+msgstr "Dialog Mitte"
+
+#. UHeFm
+#: optviewpage.ui
+msgctxt "optviewpage|mousepos"
+msgid "No automatic positioning"
+msgstr "Keine automatische Positionierung"
+
+#. GCAp5
+#: optviewpage.ui
+msgctxt "optviewpage|mousemiddle"
+msgid "No function"
+msgstr "Keine Funktion"
+
+#. 2b59y
+#: optviewpage.ui
+msgctxt "optviewpage|mousemiddle"
+msgid "Automatic scrolling"
+msgstr "Automatischer Bildlauf"
+
+#. 8ELrc
+#: optviewpage.ui
+msgctxt "optviewpage|mousemiddle"
+msgid "Paste clipboard"
+msgstr "Zwischenablage einfügen"
+
+#. NbJKy
+#: optviewpage.ui
+msgctxt "optviewpage|label4"
+msgid "Mouse"
+msgstr "Maus"
+
+#. 872fQ
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelFormat"
+msgid "_Format:"
+msgstr "_Format:"
+
+#. WTZ5A
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelWidth"
+msgid "_Width:"
+msgstr "_Breite:"
+
+#. HY4h6
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelHeight"
+msgid "_Height:"
+msgstr "Höh_e:"
+
+#. VjuAf
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelOrientation"
+msgid "_Orientation:"
+msgstr "_Ausrichtung:"
+
+#. mtFWf
+#: pageformatpage.ui
+msgctxt "pageformatpage|radiobuttonPortrait"
+msgid "_Portrait"
+msgstr "Ho_chformat"
+
+#. LGkU8
+#: pageformatpage.ui
+msgctxt "pageformatpage|radiobuttonLandscape"
+msgid "L_andscape"
+msgstr "_Querformat"
+
+#. PTwDK
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelTextFlow"
+msgid "_Text direction:"
+msgstr "Te_xtrichtung:"
+
+#. FmMdc
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelPaperTray"
+msgid "Paper _tray:"
+msgstr "_Papierschacht:"
+
+#. u8DFb
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelPaperFormat"
+msgid "Paper Format"
+msgstr "Papierformat"
+
+#. tGMLA
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelTopMargin"
+msgid "Top:"
+msgstr "Oben:"
+
+#. eaqBS
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelBottomMargin"
+msgid "Bottom:"
+msgstr "Unten:"
+
+#. 7FFiR
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelRightMargin"
+msgid "Right:"
+msgstr "Rechts:"
+
+#. RfnGu
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelOuter"
+msgid "O_uter:"
+msgstr "Au_ßen:"
+
+#. 479hs
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelLeftMargin"
+msgid "Left:"
+msgstr "Links:"
+
+#. EoGm2
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelInner"
+msgid "I_nner:"
+msgstr "I_nnen:"
+
+#. Tvwu6
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelMargins"
+msgid "Margins"
+msgstr "Seitenränder"
+
+#. WcuCU
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelPageLayout"
+msgid "_Page layout:"
+msgstr "_Seitenlayout:"
+
+#. TfDx2
+#: pageformatpage.ui
+msgctxt "pageformatpage|label4"
+msgid "Page numbers:"
+msgstr "Seitennummern:"
+
+#. RNDFy
+#: pageformatpage.ui
+msgctxt "pageformatpage|checkRegisterTrue"
+msgid "Register-tr_ue"
+msgstr "Registerhaltig_keit"
+
+#. Fhvzk
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelTblAlign"
+msgid "Table alignment:"
+msgstr "Tabellenausrichtung:"
+
+#. 79BH9
+#: pageformatpage.ui
+msgctxt "pageformatpage|checkbuttonHorz"
+msgid "Hori_zontal"
+msgstr "_Horizontal"
+
+#. krxQZ
+#: pageformatpage.ui
+msgctxt "pageformatpage|checkbuttonVert"
+msgid "_Vertical"
+msgstr "_Vertikal"
+
+#. FPLFK
+#: pageformatpage.ui
+msgctxt "pageformatpage|checkAdaptBox"
+msgid "_Fit object to paper format"
+msgstr "Objekt _an Papierformat anpassen"
+
+#. bqcXW
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelRegisterStyle"
+msgid "Reference _Style:"
+msgstr "Absa_tzvorlage Verweis:"
+
+#. xdECe
+#: pageformatpage.ui
+msgctxt "pageformatpage|label5"
+msgid "Layout Settings"
+msgstr "Layouteinstellungen"
+
+#. eBMbb
+#: pageformatpage.ui
+msgctxt "pageformatpage|labelMsg"
+msgid ""
+"The margin settings are out of print range.\n"
+"\n"
+"Do you still want to apply these settings?"
+msgstr ""
+"Ihre Einstellungen für die Ränder liegen außerhalb des Druckbereichs.\n"
+"\n"
+"Möchten Sie diese Einstellungen trotzdem übernehmen?"
+
+#. 46djR
+#: pageformatpage.ui
+msgctxt "pageformatpage|liststorePageLayout"
+msgid "Right and left"
+msgstr "Rechts und Links"
+
+#. xetCH
+#: pageformatpage.ui
+msgctxt "pageformatpage|liststorePageLayout"
+msgid "Mirrored"
+msgstr "Gespiegelt"
+
+#. 47EHF
+#: pageformatpage.ui
+msgctxt "pageformatpage|liststorePageLayout"
+msgid "Only right"
+msgstr "Nur Rechts"
+
+#. ALSy9
+#: pageformatpage.ui
+msgctxt "pageformatpage|liststorePageLayout"
+msgid "Only left"
+msgstr "Nur Links"
+
+#. s5bTT
+#: paragalignpage.ui
+msgctxt "paragalignpage|drawingareaWN_EXAMPLE-atkobject"
+msgid "Example"
+msgstr "Beispiel"
+
+#. DBsFP
+#: paragalignpage.ui
+msgctxt "paragalignpage|radioBTN_LEFTALIGN"
+msgid "_Left"
+msgstr "_Links"
+
+#. uuHyT
+#: paragalignpage.ui
+msgctxt "paragalignpage|radioBTN_RIGHTALIGN"
+msgid "_Right"
+msgstr "_Rechts"
+
+#. anEQu
+#: paragalignpage.ui
+msgctxt "paragalignpage|radioBTN_CENTERALIGN"
+msgid "_Center"
+msgstr "Z_entriert"
+
+#. DRzV5
+#: paragalignpage.ui
+msgctxt "paragalignpage|radioBTN_JUSTIFYALIGN"
+msgid "_Justified"
+msgstr "_Blocksatz"
+
+#. 84xvZ
+#: paragalignpage.ui
+msgctxt "paragalignpage|checkCB_EXPAND"
+msgid "_Expand single word"
+msgstr "Einzelnes _Wort austreiben"
+
+#. rWghT
+#: paragalignpage.ui
+msgctxt "paragalignpage|checkCB_SNAP"
+msgid "_Snap to text grid (if active)"
+msgstr "Am Textgitter _fangen (wenn aktiviert)"
+
+#. tRWTe
+#: paragalignpage.ui
+msgctxt "paragalignpage|labelLB_LASTLINE"
+msgid "_Last line:"
+msgstr "Letzte Ze_ile:"
+
+#. CNoLa
+#: paragalignpage.ui
+msgctxt "paragalignpage|labelST_RIGHTALIGN_ASIAN"
+msgid "Righ_t/Bottom"
+msgstr "_Rechts/Unten"
+
+#. hpARG
+#: paragalignpage.ui
+msgctxt "paragalignpage|labelST_LEFTALIGN_ASIAN"
+msgid "_Left/Top"
+msgstr "Lin_ks/Oben"
+
+#. nFwD6
+#: paragalignpage.ui
+msgctxt "paragalignpage|label1"
+msgid "Options"
+msgstr "Optionen"
+
+#. 4gLpc
+#: paragalignpage.ui
+msgctxt "paragalignpage|labelFT_VERTALIGN"
+msgid "_Alignment:"
+msgstr "Ausri_chtung:"
+
+#. JPEFz
+#: paragalignpage.ui
+msgctxt "paragalignpage|labelFL_VERTALIGN"
+msgid "Text-to-text"
+msgstr "Text-an-Text"
+
+#. wcho5
+#: paragalignpage.ui
+msgctxt "paragalignpage|label2"
+msgid "_Text direction:"
+msgstr "Te_xtrichtung:"
+
+#. pfaYp
+#: paragalignpage.ui
+msgctxt "paragalignpage|labelFL_PROPERTIES"
+msgid "Properties"
+msgstr "Eigenschaften"
+
+#. VtT4c
+#: paragalignpage.ui
+msgctxt "paragalignpage|liststoreLB_LASTLINE"
+msgid "Default"
+msgstr "Standard"
+
+#. 87t7F
+#: paragalignpage.ui
+msgctxt "paragalignpage|liststoreLB_LASTLINE"
+msgid "Left"
+msgstr "Links"
+
+#. d23Ct
+#: paragalignpage.ui
+msgctxt "paragalignpage|liststoreLB_LASTLINE"
+msgid "Centered"
+msgstr "Zentriert"
+
+#. QJdX9
+#: paragalignpage.ui
+msgctxt "paragalignpage|liststoreLB_LASTLINE"
+msgid "Justified"
+msgstr "Blocksatz"
+
+#. XsDLG
+#: paragalignpage.ui
+msgctxt "paragalignpage|liststoreLB_VERTALIGN"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. fPsyD
+#: paragalignpage.ui
+msgctxt "paragalignpage|liststoreLB_VERTALIGN"
+msgid "Base line"
+msgstr "Grundlinie"
+
+#. 34jBi
+#: paragalignpage.ui
+msgctxt "paragalignpage|liststoreLB_VERTALIGN"
+msgid "Top"
+msgstr "Oben"
+
+#. hKVxK
+#: paragalignpage.ui
+msgctxt "paragalignpage|liststoreLB_VERTALIGN"
+msgid "Middle"
+msgstr "Mitte"
+
+#. 5robg
+#: paragalignpage.ui
+msgctxt "paragalignpage|liststoreLB_VERTALIGN"
+msgid "Bottom"
+msgstr "Unten"
+
+#. FTBKZ
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|drawingareaWN_EXAMPLE-atkobject"
+msgid "Example"
+msgstr "Beispiel"
+
+#. saei7
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|labelFT_LEFTINDENT"
+msgid "_Before text:"
+msgstr "_Vor Text:"
+
+#. iV7A5
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|labelFT_RIGHTINDENT"
+msgid "After _text:"
+msgstr "Hinter _Text:"
+
+#. 396YJ
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|labelFT_FLINEINDENT"
+msgid "_First line:"
+msgstr "Erste _Zeile:"
+
+#. jwo9n
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|checkCB_AUTO"
+msgid "_Automatic"
+msgstr "A_utomatisch"
+
+#. L9iw7
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|labelST_LINEDIST_ABS"
+msgid "Fixed"
+msgstr "Fest"
+
+#. qwSsb
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|label1"
+msgid "Indent"
+msgstr "Einzug"
+
+#. RMdgy
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|labelFT_TOPDIST"
+msgid "Ab_ove paragraph:"
+msgstr "Ü_ber Absatz:"
+
+#. mTi8C
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|labelFT_BOTTOMDIST"
+msgid "Below _paragraph:"
+msgstr "_Unter Absatz:"
+
+#. ZobLB
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING"
+msgid "Don't add space between paragraphs of the same style"
+msgstr "Keine Abstände zwischen Absätzen derselben Vorlage"
+
+#. hWQWQ
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|labelFL_VERTALIGN"
+msgid "Spacing"
+msgstr "Abstand"
+
+#. 9fdqy
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|labelFT_LINEDIST"
+msgid "of"
+msgstr "von"
+
+#. GxJB6
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|labelFL_PROPERTIES"
+msgid "Line Spacing"
+msgstr "Zeilenabstand"
+
+#. pkKMg
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|checkCB_REGISTER"
+msgid "A_ctivate"
+msgstr "Berü_cksichtigen"
+
+#. CZshb
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|label3"
+msgid "Register-true"
+msgstr "Registerhaltigkeit"
+
+#. vuFhh
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "Single"
+msgstr "Einzeilig"
+
+#. 5qPNL
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "1.15 Lines"
+msgstr "1,15-zeilig"
+
+#. GxLCB
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "1.5 Lines"
+msgstr "1,5-zeilig"
+
+#. cD4RR
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "Double"
+msgstr "Zweizeilig"
+
+#. 98csB
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "Proportional"
+msgstr "Proportional"
+
+#. XN6ri
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "At least"
+msgstr "Mindestens"
+
+#. NYeFC
+#: paraindentspacing.ui
+msgctxt "paraindentspacing|liststoreLB_LINEDIST"
+msgid "Leading"
+msgstr "Durchschuss"
+
+#. pbs4W
+#: paratabspage.ui
+msgctxt "paratabspage|label1"
+msgid "Position"
+msgstr "Position"
+
+#. 7wy7e
+#: paratabspage.ui
+msgctxt "paratabspage|radiobuttonBTN_TABTYPE_DECIMAL"
+msgid "Deci_mal"
+msgstr "_Dezimal"
+
+#. JHWqh
+#: paratabspage.ui
+msgctxt "paratabspage|radiobuttonBTN_TABTYPE_LEFT"
+msgid "_Left"
+msgstr "_Links"
+
+#. tBrC5
+#: paratabspage.ui
+msgctxt "paratabspage|radiobuttonST_LEFTTAB_ASIAN"
+msgid "_Left/Top"
+msgstr "Lin_ks/Oben"
+
+#. dtaBp
+#: paratabspage.ui
+msgctxt "paratabspage|radiobuttonBTN_TABTYPE_RIGHT"
+msgid "Righ_t"
+msgstr "_Rechts"
+
+#. tGgBU
+#: paratabspage.ui
+msgctxt "paratabspage|radiobuttonST_RIGHTTAB_ASIAN"
+msgid "Righ_t/Bottom"
+msgstr "Rechts/_Unten"
+
+#. fDVEt
+#: paratabspage.ui
+msgctxt "paratabspage|radiobuttonBTN_TABTYPE_CENTER"
+msgid "C_entered"
+msgstr "_Zentriert"
+
+#. SaPSF
+#: paratabspage.ui
+msgctxt "paratabspage|labelFT_TABTYPE_DECCHAR"
+msgid "_Character"
+msgstr "Z_eichen"
+
+#. ACYhN
+#: paratabspage.ui
+msgctxt "paratabspage|label2"
+msgid "Type"
+msgstr "Art"
+
+#. vFnHY
+#: paratabspage.ui
+msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_NO"
+msgid "N_one"
+msgstr "Ke_ine"
+
+#. T8EVM
+#: paratabspage.ui
+msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_POINTS"
+msgid "_........"
+msgstr "_........"
+
+#. 4ZZVM
+#: paratabspage.ui
+msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_DASHLINE"
+msgid "_--------"
+msgstr "_--------"
+
+#. nZDbY
+#: paratabspage.ui
+msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_UNDERSCORE"
+msgid "______"
+msgstr "______"
+
+#. v5JLo
+#: paratabspage.ui
+msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_OTHER"
+msgid "C_haracter"
+msgstr "Zei_chen"
+
+#. EsqLF
+#: paratabspage.ui
+msgctxt "paratabspage|label3"
+msgid "Fill Character"
+msgstr "Füllzeichen"
+
+#. uG6Rn
+#: paratabspage.ui
+msgctxt "paratabspage|buttonBTN_DELALL"
+msgid "Delete _all"
+msgstr "Alle _löschen"
+
+#. WCcAj
+#: paratabspage.ui
+msgctxt "paratabspage|label4"
+msgid "points"
+msgstr "Punkte"
+
+#. GcMMk
+#: paratabspage.ui
+msgctxt "paratabspage|label5"
+msgid "dashes"
+msgstr "Striche"
+
+#. CYnkr
+#: paratabspage.ui
+msgctxt "paratabspage|label6"
+msgid "underscores"
+msgstr "Unterstriche"
+
+#. qAMT2
+#: password.ui
+msgctxt "password|PasswordDialog"
+msgid "Set Password"
+msgstr "Kennwort setzen"
+
+#. ujTNz
+#: password.ui
+msgctxt "password|label5"
+msgid "Confirm password"
+msgstr "Kennwort bestätigen"
+
+#. wqXmU
+#: password.ui
+msgctxt "password|label4"
+msgid "_Enter password to open"
+msgstr "_Kennwort zum Öffnen eingeben"
+
+#. vMhFF
+#: password.ui
+msgctxt "password|label1"
+msgid ""
+"Note: After a password has been set, the document will only open with the "
+"password. Should you lose the password, there will be no way to recover the "
+"document. Please also note that this password is case-sensitive."
+msgstr ""
+"Hinweis: Wenn ein Kennwort angegeben wurde, lässt sich die Datei nur mit "
+"diesem öffnen. Falls Sie das Kennwort verlieren sollten, besteht keine "
+"Möglichkeit, das Dokument wiederherzustellen. Beachten Sie zudem, dass das "
+"Kennwort Groß- und Kleinschreibung berücksichtigt."
+
+#. scLkF
+#: password.ui
+msgctxt "password|readonly"
+msgid "Open file read-only"
+msgstr "Datei schreibgeschützt öffnen"
+
+#. f5Ydx
+#: password.ui
+msgctxt "password|label7"
+msgid "Enter password to allow editing"
+msgstr "Bearbeiten-Kennwort eingeben"
+
+#. AgwpD
+#: password.ui
+msgctxt "password|label8"
+msgid "Confirm password"
+msgstr "Kennwort bestätigen"
+
+#. SEgNR
+#: password.ui
+msgctxt "password|label6"
+msgid "File Sharing Password"
+msgstr "Kennwort für Dokumentfreigabe"
+
+#. Sjh3k
+#: password.ui
+msgctxt "password|label3"
+msgid "_Options"
+msgstr "O_ptionen"
+
+#. FfyCu
+#: password.ui
+msgctxt "password|label2"
+msgid "File Encryption Password"
+msgstr "Kennwort zur Dateiverschlüsselung"
+
+#. oGoKp
+#: pastespecial.ui
+msgctxt "pastespecial|PasteSpecialDialog"
+msgid "Paste Special"
+msgstr "Inhalt einfügen"
+
+#. F4wjw
+#: pastespecial.ui
+msgctxt "pastespecial|label2"
+msgid "Source:"
+msgstr "Quelle:"
+
+#. gjnwU
+#: pastespecial.ui
+msgctxt "pastespecial|label1"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. 68KjX
+#: patterntabpage.ui
+msgctxt "patterntabpage|BTN_MODIFY"
+msgid "_Modify"
+msgstr "Än_dern"
+
+#. SnESZ
+#: patterntabpage.ui
+msgctxt "patterntabpage|label3"
+msgid "Pattern"
+msgstr "Muster"
+
+#. qr5PS
+#: patterntabpage.ui
+msgctxt "patterntabpage|label4"
+msgid "Pattern Editor:"
+msgstr "Mustereditor:"
+
+#. 7nWqN
+#: patterntabpage.ui
+msgctxt "patterntabpage|CTL_PIXEL-atkobject"
+msgid "Pattern Editor"
+msgstr "Mustereditor"
+
+#. BvHTn
+#: patterntabpage.ui
+msgctxt "patterntabpage|label5"
+msgid "Foreground Color:"
+msgstr "Vordergrundfarbe:"
+
+#. S8mpk
+#: patterntabpage.ui
+msgctxt "patterntabpage|label6"
+msgid "Background Color:"
+msgstr "Hintergrundfarbe:"
+
+#. hg7RL
+#: patterntabpage.ui
+msgctxt "patterntabpage|label1"
+msgid "Options"
+msgstr "Optionen"
+
+#. 2U7Pc
+#: patterntabpage.ui
+msgctxt "patterntabpage|CTL_PREVIEW-atkobject"
+msgid "Example"
+msgstr "Beispiel"
+
+#. wCrAc
+#: patterntabpage.ui
+msgctxt "patterntabpage|label2"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. WCjNN
+#: percentdialog.ui
+msgctxt "percentdialog|PercentDialog"
+msgid "Combine"
+msgstr "Kombinieren"
+
+#. ane2B
+#: percentdialog.ui
+msgctxt "percentdialog|label1"
+msgid "Minimum Size"
+msgstr "Mindestgröße"
+
+#. 9RySH
+#: personalization_tab.ui
+msgctxt "personalization_tab|no_persona"
+msgid "Default look, do not use Themes"
+msgstr "Normale Ansicht ohne Themes"
+
+#. GvMbV
+#: personalization_tab.ui
+msgctxt "personalization_tab|default_persona"
+msgid "Pre-installed Theme (if available)"
+msgstr "Vorinstalliertes Theme (falls vorhanden)"
+
+#. jmrRF
+#: personalization_tab.ui
+msgctxt "personalization_tab|own_persona"
+msgid "Own Theme"
+msgstr "Eigenes Theme"
+
+#. ACbUC
+#: personalization_tab.ui
+msgctxt "personalization_tab|select_persona"
+msgid "Select Theme"
+msgstr "Theme auswählen..."
+
+#. iMCDC
+#: personalization_tab.ui
+msgctxt "personalization_tab|extensions_label"
+msgid "Or, select from the Themes installed via extensions:"
+msgstr "Oder aus via Extensions installierten Themes wählen:"
+
+#. 8w4A7
+#: personalization_tab.ui
+msgctxt "personalization_tab|personas_label"
+msgid "Firefox Themes"
+msgstr "Firefox Themes"
+
+#. K4D8E
+#: pickbulletpage.ui
+msgctxt "pickbulletpage|label25"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. GkQdm
+#: pickgraphicpage.ui
+msgctxt "pickgraphicpage|errorft"
+msgid "The Gallery theme 'Bullets' is empty (no images)."
+msgstr "Das Gallery-Thema 'Aufzählungszeichen' ist leer (keine Bilder)."
+
+#. NrrxW
+#: pickgraphicpage.ui
+msgctxt "pickgraphicpage|browseBtn"
+msgid "Add and Resize"
+msgstr "Hinzufügen und Größe ändern"
+
+#. bX3Eo
+#: pickgraphicpage.ui
+msgctxt "pickgraphicpage|label25"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. 9JnpQ
+#: picknumberingpage.ui
+msgctxt "picknumberingpage|label25"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. i8h33
+#: pickoutlinepage.ui
+msgctxt "pickoutlinepage|label25"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. WubdZ
+#: positionpage.ui
+msgctxt "positionpage|superscript"
+msgid "Superscript"
+msgstr "Hochgestellt"
+
+#. hRP6U
+#: positionpage.ui
+msgctxt "positionpage|normal"
+msgid "Normal"
+msgstr "Normal"
+
+#. wJ2MC
+#: positionpage.ui
+msgctxt "positionpage|subscript"
+msgid "Subscript"
+msgstr "Tiefgestellt"
+
+#. GAG3d
+#: positionpage.ui
+msgctxt "positionpage|raiselower"
+msgid "Raise/lower by"
+msgstr "Hoch/Tief um"
+
+#. Ac85F
+#: positionpage.ui
+msgctxt "positionpage|automatic"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. wV5kS
+#: positionpage.ui
+msgctxt "positionpage|relativefontsize"
+msgid "Relative font size"
+msgstr "Schriftgröße relativ"
+
+#. iG3EE
+#: positionpage.ui
+msgctxt "positionpage|label20"
+msgid "Position"
+msgstr "Position"
+
+#. EAyZn
+#: positionpage.ui
+msgctxt "positionpage|0deg"
+msgid "0 degrees"
+msgstr "0 Grad"
+
+#. pZMQA
+#: positionpage.ui
+msgctxt "positionpage|90deg"
+msgid "90 degrees"
+msgstr "90 Grad"
+
+#. KfSjU
+#: positionpage.ui
+msgctxt "positionpage|270deg"
+msgid "270 degrees"
+msgstr "270 Grad"
+
+#. vAV4A
+#: positionpage.ui
+msgctxt "positionpage|fittoline"
+msgid "Fit to line"
+msgstr "An Zeile anpassen"
+
+#. bA7nm
+#: positionpage.ui
+msgctxt "positionpage|label24"
+msgid "Scale width"
+msgstr "Breite skalieren"
+
+#. oVZ7s
+#: positionpage.ui
+msgctxt "positionpage|rotateandscale"
+msgid "Rotation / Scaling"
+msgstr "Rotation / Skalierung"
+
+#. k8oBH
+#: positionpage.ui
+msgctxt "positionpage|scale"
+msgid "Scaling"
+msgstr "Skalierung"
+
+#. CChzM
+#: positionpage.ui
+msgctxt "positionpage|pairkerning"
+msgid "Pair kerning"
+msgstr "Paarweises Kerning"
+
+#. ZKU6Z
+#: positionpage.ui
+msgctxt "positionpage|label22"
+msgid "Spacing"
+msgstr "Abstand"
+
+#. zBm7n
+#: positionpage.ui
+msgctxt "positionpage|preview"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. dckjJ
+#: positionsizedialog.ui
+msgctxt "positionsizedialog|PositionAndSizeDialog"
+msgid "Position and Size"
+msgstr "Position und Größe"
+
+#. K8BFJ
+#: positionsizedialog.ui
+msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
+msgid "Position and Size"
+msgstr "Position und Größe"
+
+#. WZtUp
+#: positionsizedialog.ui
+msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
+msgid "Position and Size"
+msgstr "Position und Größe"
+
+#. p8FjL
+#: positionsizedialog.ui
+msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
+msgid "Rotation"
+msgstr "Drehung"
+
+#. F5Xuj
+#: positionsizedialog.ui
+msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
+msgid "Slant & Corner Radius"
+msgstr "Schräg stellen / Eckenradius"
+
+#. kSZwJ
+#: possizetabpage.ui
+msgctxt "possizetabpage|FT_POS_X"
+msgid "Position _X:"
+msgstr "Position _X:"
+
+#. XScrN
+#: possizetabpage.ui
+msgctxt "possizetabpage|FT_POS_Y"
+msgid "Position _Y:"
+msgstr "Position _Y:"
+
+#. 35vDU
+#: possizetabpage.ui
+msgctxt "possizetabpage|FT_POSREFERENCE"
+msgid "_Base point:"
+msgstr "_Basispunkt:"
+
+#. Vxpqo
+#: possizetabpage.ui
+msgctxt "possizetabpage|label1"
+msgid "Position"
+msgstr "Position"
+
+#. pFULX
+#: possizetabpage.ui
+msgctxt "possizetabpage|FT_WIDTH"
+msgid "Wi_dth:"
+msgstr "B_reite:"
+
+#. jGiQW
+#: possizetabpage.ui
+msgctxt "possizetabpage|FT_HEIGHT"
+msgid "H_eight:"
+msgstr "Höh_e:"
+
+#. VTzYW
+#: possizetabpage.ui
+msgctxt "possizetabpage|CBX_SCALE"
+msgid "_Keep ratio"
+msgstr "Seite_nverhältnis beibehalten"
+
+#. 4A7Le
+#: possizetabpage.ui
+msgctxt "possizetabpage|FT_SIZEREFERENCE"
+msgid "Base _point:"
+msgstr "Basispun_kt:"
+
+#. C2Xds
+#: possizetabpage.ui
+msgctxt "possizetabpage|label2"
+msgid "Size"
+msgstr "Größe"
+
+#. 2mfBD
+#: possizetabpage.ui
+msgctxt "possizetabpage|TSB_POSPROTECT"
+msgid "Positio_n"
+msgstr "_Position"
+
+#. qD3T7
+#: possizetabpage.ui
+msgctxt "possizetabpage|TSB_SIZEPROTECT"
+msgid "_Size"
+msgstr "_Größe"
+
+#. 4Ezcc
+#: possizetabpage.ui
+msgctxt "possizetabpage|label3"
+msgid "Protect"
+msgstr "Schützen"
+
+#. vpzXL
+#: possizetabpage.ui
+msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
+msgid "_Fit width to text"
+msgstr "Br_eite an Text anpassen"
+
+#. XPXA3
+#: possizetabpage.ui
+msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
+msgid "Fit _height to text"
+msgstr "Höhe a_n Text anpassen"
+
+#. A4B3x
+#: possizetabpage.ui
+msgctxt "possizetabpage|label4"
+msgid "Adapt"
+msgstr "Anpassen"
+
+#. BydCX
+#: posterdialog.ui
+msgctxt "posterdialog|PosterDialog"
+msgid "Posterize"
+msgstr "Poster"
+
+#. 2ncug
+#: posterdialog.ui
+msgctxt "posterdialog|label2"
+msgid "Poster colors:"
+msgstr "Posterfarben:"
+
+#. 3iZDQ
+#: posterdialog.ui
+msgctxt "posterdialog|label1"
+msgid "Parameters"
+msgstr "Parameter"
+
+#. 3HNDZ
+#: querychangelineenddialog.ui
+msgctxt "querychangelineenddialog|AskChangeLineEndDialog"
+msgid "Save Arrowhead?"
+msgstr "Linienspitze sichern?"
+
+#. Lr2rh
+#: querychangelineenddialog.ui
+msgctxt "querychangelineenddialog|AskChangeLineEndDialog"
+msgid "The arrowhead was modified without saving."
+msgstr "Die Linienspitze wurde geändert aber noch nicht gesichert."
+
+#. KbgCe
+#: querychangelineenddialog.ui
+msgctxt "querychangelineenddialog|AskChangeLineEndDialog"
+msgid "Would you like to save the arrowhead now?"
+msgstr "Möchten Sie die Linienspitze jetzt sichern?"
+
+#. cew2A
+#: querydeletebitmapdialog.ui
+msgctxt "querydeletebitmapdialog|AskDelBitmapDialog"
+msgid "Delete Bitmap?"
+msgstr "Bitmap löschen?"
+
+#. 9EZrV
+#: querydeletebitmapdialog.ui
+msgctxt "querydeletebitmapdialog|AskDelBitmapDialog"
+msgid "Are you sure you want to delete the bitmap?"
+msgstr "Soll die Bitmap wirklich gelöscht werden?"
+
+#. 3eai8
+#: querydeletechartcolordialog.ui
+msgctxt "querydeletechartcolordialog|QueryDeleteChartColorDialog"
+msgid "Delete Color?"
+msgstr "Farbe löschen?"
+
+#. RUXnG
+#: querydeletechartcolordialog.ui
+msgctxt "querydeletechartcolordialog|QueryDeleteChartColorDialog"
+msgid "Do you really want to delete the chart color?"
+msgstr "Soll das Farbschema wirklich gelöscht werden?"
+
+#. XyDCV
+#: querydeletechartcolordialog.ui
+msgctxt "querydeletechartcolordialog|QueryDeleteChartColorDialog"
+msgid "This action cannot be undone."
+msgstr "Diese Aktion kann nicht rückgängig gemacht werden."
+
+#. tDhhU
+#: querydeletecolordialog.ui
+msgctxt "querydeletecolordialog|AskDelColorDialog"
+msgid "Delete color?"
+msgstr "Farbe löschen?"
+
+#. mULEd
+#: querydeletecolordialog.ui
+msgctxt "querydeletecolordialog|AskDelColorDialog"
+msgid "Do you want to delete the color?"
+msgstr "Soll die Farbe wirklich gelöscht werden?"
+
+#. CJz4E
+#: querydeletedictionarydialog.ui
+msgctxt "querydeletedictionarydialog|QueryDeleteDictionaryDialog"
+msgid "Delete Dictionary?"
+msgstr "Wörterbuch löschen?"
+
+#. eTBd6
+#: querydeletedictionarydialog.ui
+msgctxt "querydeletedictionarydialog|QueryDeleteDictionaryDialog"
+msgid "Do you really want to delete the dictionary?"
+msgstr "Soll das Wörterbuch wirklich gelöscht werden?"
+
+#. C5Jn9
+#: querydeletedictionarydialog.ui
+msgctxt "querydeletedictionarydialog|QueryDeleteDictionaryDialog"
+msgid "This action cannot be undone."
+msgstr "Diese Aktion kann nicht rückgängig gemacht werden."
+
+#. 5qG4Z
+#: querydeletegradientdialog.ui
+msgctxt "querydeletegradientdialog|AskDelGradientDialog"
+msgid "Delete gradient?"
+msgstr "Farbverlauf löschen?"
+
+#. GNRDb
+#: querydeletegradientdialog.ui
+msgctxt "querydeletegradientdialog|AskDelGradientDialog"
+msgid "Do you want to delete the gradient?"
+msgstr "Soll der Farbverlauf wirklich gelöscht werden?"
+
+#. ct8Th
+#: querydeletehatchdialog.ui
+msgctxt "querydeletehatchdialog|AskDelHatchDialog"
+msgid "Delete Hatching?"
+msgstr "Schraffur löschen?"
+
+#. xsuqB
+#: querydeletehatchdialog.ui
+msgctxt "querydeletehatchdialog|AskDelHatchDialog"
+msgid "Do you want to delete the hatching?"
+msgstr "Soll die Schraffur wirklich gelöscht werden?"
+
+#. Yu6Ve
+#: querydeletelineenddialog.ui
+msgctxt "querydeletelineenddialog|AskDelLineEndDialog"
+msgid "Delete Arrowhead?"
+msgstr "Linienspitze löschen?"
+
+#. r73GB
+#: querydeletelineenddialog.ui
+msgctxt "querydeletelineenddialog|AskDelLineEndDialog"
+msgid "Do you really want to delete the arrowhead?"
+msgstr "Soll die Linienspitze wirklich gelöscht werden?"
+
+#. 4AubG
+#: querydeletelineenddialog.ui
+msgctxt "querydeletelineenddialog|AskDelLineEndDialog"
+msgid "This action cannot be undone."
+msgstr "Diese Aktion kann nicht rückgängig gemacht werden."
+
+#. J4bz4
+#: querydeletelinestyledialog.ui
+msgctxt "querydeletelinestyledialog|AskDelLineStyleDialog"
+msgid "Delete Line Style?"
+msgstr "Linienstil löschen?"
+
+#. qLsV8
+#: querydeletelinestyledialog.ui
+msgctxt "querydeletelinestyledialog|AskDelLineStyleDialog"
+msgid "Do you want to delete the line style?"
+msgstr "Soll der Linienstil wirklich gelöscht werden?"
+
+#. E8Wsm
+#: queryduplicatedialog.ui
+msgctxt "queryduplicatedialog|DuplicateNameDialog"
+msgid "Duplicate Name"
+msgstr "Doppelter Name"
+
+#. 22ALm
+#: queryduplicatedialog.ui
+msgctxt "queryduplicatedialog|DuplicateNameDialog"
+msgid "The name you have entered already exists."
+msgstr "Der von Ihnen eingegebene Name existiert bereits."
+
+#. 2DhPe
+#: queryduplicatedialog.ui
+msgctxt "queryduplicatedialog|DuplicateNameDialog"
+msgid "Please choose another name."
+msgstr "Bitte wählen Sie einen anderen Namen."
+
+#. W5Kgo
+#: querynoloadedfiledialog.ui
+msgctxt "querynoloadedfiledialog|NoLoadedFileDialog"
+msgid "No Loaded File"
+msgstr "Keine Datei geladen"
+
+#. xEMFi
+#: querynoloadedfiledialog.ui
+msgctxt "querynoloadedfiledialog|NoLoadedFileDialog"
+msgid "The file could not be loaded!"
+msgstr "Die Datei konnte nicht geladen werden!"
+
+#. ahnt9
+#: querynosavefiledialog.ui
+msgctxt "querynosavefiledialog|NoSaveFileDialog"
+msgid "No Saved File"
+msgstr "Datei nicht gespeichert"
+
+#. DEBtQ
+#: querynosavefiledialog.ui
+msgctxt "querynosavefiledialog|NoSaveFileDialog"
+msgid "The file could not be saved!"
+msgstr "Die Datei kann nicht gespeichert werden!"
+
+#. BqCPM
+#: querysavelistdialog.ui
+msgctxt "querysavelistdialog|AskSaveList"
+msgid "Save List?"
+msgstr "Liste speichern?"
+
+#. Jxvdx
+#: querysavelistdialog.ui
+msgctxt "querysavelistdialog|AskSaveList"
+msgid "The list was modified without saving."
+msgstr "Die Liste wurde geändert aber noch nicht gespeichert."
+
+#. PFBCG
+#: querysavelistdialog.ui
+msgctxt "querysavelistdialog|AskSaveList"
+msgid "Would you like to save the list now?"
+msgstr "Soll die Liste jetzt gespeichert werden?"
+
+#. aGFC7
+#: queryupdategalleryfilelistdialog.ui
+msgctxt "queryupdategalleryfilelistdialog|QueryUpdateFileListDialog"
+msgid "Update File List?"
+msgstr "Dateiliste aktualisieren?"
+
+#. oZ4ni
+#: queryupdategalleryfilelistdialog.ui
+msgctxt "queryupdategalleryfilelistdialog|QueryUpdateFileListDialog"
+msgid "Do you want to update the file list?"
+msgstr "Möchten Sie die Dateiliste aktualisieren?"
+
+#. YmYUq
+#: recordnumberdialog.ui
+msgctxt "recordnumberdialog|RecordNumberDialog"
+msgid "Record Number"
+msgstr "Datensatznummer"
+
+#. EPb8D
+#: recordnumberdialog.ui
+msgctxt "recordnumberdialog|label2"
+msgid "go to record"
+msgstr "gehe zu Datensatz"
+
+#. aEKBj
+#: rotationtabpage.ui
+msgctxt "rotationtabpage|FT_POS_X"
+msgid "Position _X:"
+msgstr "Position _X:"
+
+#. yEEEo
+#: rotationtabpage.ui
+msgctxt "rotationtabpage|FT_POS_Y"
+msgid "Position _Y:"
+msgstr "Position _Y:"
+
+#. GpHXD
+#: rotationtabpage.ui
+msgctxt "rotationtabpage|FT_POSPRESETS"
+msgid "_Default settings:"
+msgstr "_Standardeinstellungen:"
+
+#. 6tTrN
+#: rotationtabpage.ui
+msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
+msgid "Rotation point"
+msgstr "Rotationspunkt"
+
+#. mNM6u
+#: rotationtabpage.ui
+msgctxt "rotationtabpage|label1"
+msgid "Pivot Point"
+msgstr "Drehpunkt"
+
+#. w4tmF
+#: rotationtabpage.ui
+msgctxt "rotationtabpage|FT_ANGLE"
+msgid "_Angle:"
+msgstr "_Winkel:"
+
+#. LrED9
+#: rotationtabpage.ui
+msgctxt "rotationtabpage|FT_ANGLEPRESETS"
+msgid "Default _settings:"
+msgstr "Standard_einstellungen:"
+
+#. G7xCD
+#: rotationtabpage.ui
+msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
+msgid "Rotation Angle"
+msgstr "Drehwinkel"
+
+#. Hg259
+#: rotationtabpage.ui
+msgctxt "rotationtabpage|label2"
+msgid "Rotation Angle"
+msgstr "Drehwinkel"
+
+#. r67NG
+#: screenshotannotationdialog.ui
+msgctxt "screenshotannotationdialog|ScreenshotAnnotationDialog"
+msgid "Interactive Screenshot Annotation"
+msgstr "Anmerkung zu interaktivem Bildschirmfoto"
+
+#. Qu2bh
+#: screenshotannotationdialog.ui
+msgctxt "screenshotannotationdialog|save"
+msgid "Save Screenshot..."
+msgstr "Bildschirmfoto speichern..."
+
+#. BsP7f
+#: screenshotannotationdialog.ui
+msgctxt "screenshotannotationdialog|label2"
+msgid "Click the widgets to add annotation:"
+msgstr ""
+"Klicken Sie auf die grafischen Objekte, um eine Anmerkung hinzuzufügen:"
+
+#. F4dCG
+#: screenshotannotationdialog.ui
+msgctxt "screenshotannotationdialog|label1"
+msgid "Paste the following markup into the help file:"
+msgstr "Fügen Sie das folgende Markup in die Hilfedatei ein:"
+
+#. 4bEGu
+#: scriptorganizer.ui
+msgctxt "scriptorganizer|ScriptOrganizerDialog"
+msgid "%MACROLANG Macros"
+msgstr "%MACROLANG Makros"
+
+#. FrF4C
+#: scriptorganizer.ui
+msgctxt "scriptorganizer|run"
+msgid "Run"
+msgstr "Ausführen"
+
+#. nVYFP
+#: scriptorganizer.ui
+msgctxt "scriptorganizer|create"
+msgid "Create..."
+msgstr "Erstellen..."
+
+#. 8iqip
+#: scriptorganizer.ui
+msgctxt "scriptorganizer|rename"
+msgid "Rename..."
+msgstr "Umbenennen..."
+
+#. vvvff
+#: scriptorganizer.ui
+msgctxt "scriptorganizer|delete"
+msgid "Delete..."
+msgstr "Löschen..."
+
+#. fQdom
+#: scriptorganizer.ui
+msgctxt "scriptorganizer|macrosft"
+msgid "Macros"
+msgstr "Makros"
+
+#. U3sDy
+#: searchattrdialog.ui
+msgctxt "searchattrdialog|SearchAttrDialog"
+msgid "Attributes"
+msgstr "Attribute"
+
+#. tKm8C
+#: searchformatdialog.ui
+msgctxt "searchformatdialog|SearchFormatDialog"
+msgid "Text Format"
+msgstr "Textformatierungen"
+
+#. Ndgf2
+#: searchformatdialog.ui
+msgctxt "searchformatdialog|font"
+msgid "Font"
+msgstr "Schriftart"
+
+#. KE2vY
+#: searchformatdialog.ui
+msgctxt "searchformatdialog|fonteffects"
+msgid "Font Effects"
+msgstr "Schrifteffekt"
+
+#. Wk2sQ
+#: searchformatdialog.ui
+msgctxt "searchformatdialog|position"
+msgid "Position"
+msgstr "Position"
+
+#. UFYCm
+#: searchformatdialog.ui
+msgctxt "searchformatdialog|asianlayout"
+msgid "Asian Layout"
+msgstr "Asiatisches Layout"
+
+#. iWUYD
+#: searchformatdialog.ui
+msgctxt "searchformatdialog|labelTP_PARA_STD"
+msgid "Indents & Spacing"
+msgstr "Einzüge & Abstände"
+
+#. jSB7P
+#: searchformatdialog.ui
+msgctxt "searchformatdialog|labelTP_PARA_ALIGN"
+msgid "Alignment"
+msgstr "Ausrichtung"
+
+#. bEqdf
+#: searchformatdialog.ui
+msgctxt "searchformatdialog|labelTP_PARA_EXT"
+msgid "Text Flow"
+msgstr "Textfluss"
+
+#. TChw9
+#: searchformatdialog.ui
+msgctxt "searchformatdialog|labelTP_PARA_ASIAN"
+msgid "Asian Typography"
+msgstr "Asiatische Typografie"
+
+#. CjCNz
+#: searchformatdialog.ui
+msgctxt "searchformatdialog|background"
+msgid "Highlighting"
+msgstr "Hervorhebung"
+
+#. nVjsf
+#: securityoptionsdialog.ui
+msgctxt "securityoptionsdialog|SecurityOptionsDialog"
+msgid "Security Options and Warnings"
+msgstr "Sicherheitsoptionen und -warnungen"
+
+#. yGPGa
+#: securityoptionsdialog.ui
+msgctxt "securityoptionsdialog|savesenddocs"
+msgid "_When saving or sending"
+msgstr "_Speichern oder Senden"
+
+#. 6f6yg
+#: securityoptionsdialog.ui
+msgctxt "securityoptionsdialog|whensigning"
+msgid "When _signing"
+msgstr "Si_gnieren"
+
+#. D6Lsv
+#: securityoptionsdialog.ui
+msgctxt "securityoptionsdialog|whenprinting"
+msgid "When _printing"
+msgstr "_Drucken"
+
+#. 8BnPF
+#: securityoptionsdialog.ui
+msgctxt "securityoptionsdialog|whenpdf"
+msgid "When creating PDF _files"
+msgstr "_PDF-Dateien erzeugen"
+
+#. pfCsh
+#: securityoptionsdialog.ui
+msgctxt "securityoptionsdialog|label3"
+msgid ""
+"Warn if document contains recorded changes, versions, hidden information or "
+"notes:"
+msgstr ""
+"Wenn ein Dokument aufgezeichnete Änderungen, Versionen, versteckte "
+"Informationen oder Notizen enthält, warnen beim:"
+
+#. 3yxBp
+#: securityoptionsdialog.ui
+msgctxt "securityoptionsdialog|label1"
+msgid "Security Warnings"
+msgstr "Sicherheitswarnungen"
+
+#. 8Vywd
+#: securityoptionsdialog.ui
+msgctxt "securityoptionsdialog|removepersonal"
+msgid "_Remove personal information on saving"
+msgstr "Persönliche _Informationen beim Speichern entfernen"
+
+#. y5FFs
+#: securityoptionsdialog.ui
+msgctxt "securityoptionsdialog|password"
+msgid "Recommend password protection on sa_ving"
+msgstr "_Kennwortschutz beim Speichern empfehlen"
+
+#. 63XEG
+#: securityoptionsdialog.ui
+msgctxt "securityoptionsdialog|ctrlclick"
+msgid "Ctrl-click required _to follow hyperlinks"
+msgstr "Strg _beim Klicken halten, um Hyperlinks zu folgen"
+
+#. Ubb9Q
+#: securityoptionsdialog.ui
+msgctxt "securityoptionsdialog|blockuntrusted"
+msgid ""
+"Block any links from documents not among the trusted locations (see Macro "
+"Security)"
+msgstr ""
+"Jede Verknüpfung aus Dokumenten blockieren, die nicht als vertrauenswürdige "
+"Quelle gilt (siehe Makrosicherheit)"
+
+#. vQGT6
+#: securityoptionsdialog.ui
+msgctxt "securityoptionsdialog|label2"
+msgid "Security Options"
+msgstr "Sicherheitsoptionen"
+
+#. xDUeg
+#: select_persona_dialog.ui
+msgctxt "select_persona_dialog|SelectPersonaDialog"
+msgid "Select Firefox Theme"
+msgstr "Firefox-Themes auswählen"
+
+#. vebf3
+#: select_persona_dialog.ui
+msgctxt "select_persona_dialog|search_personas"
+msgid "_Go"
+msgstr "_Gehe zu"
+
+#. bLEuc
+#: select_persona_dialog.ui
+msgctxt "select_persona_dialog|label1"
+msgid "Search Term or Firefox Theme URL"
+msgstr "Suchbegriff oder URL des Firefox-Themes"
+
+#. SosPh
+#: select_persona_dialog.ui
+msgctxt "select_persona_dialog|label6"
+msgid "Categories"
+msgstr "Kategorien"
+
+#. md3EB
+#: selectpathdialog.ui
+msgctxt "selectpathdialog|SelectPathDialog"
+msgid "Select Paths"
+msgstr "Pfade auswählen"
+
+#. oN39A
+#: selectpathdialog.ui
+msgctxt "selectpathdialog|add"
+msgid "_Add..."
+msgstr "_Hinzufügen..."
+
+#. oADTt
+#: selectpathdialog.ui
+msgctxt "selectpathdialog|label1"
+msgid "Paths"
+msgstr "Pfade"
+
+#. UzFeh
+#: shadowtabpage.ui
+msgctxt "shadowtabpage|TSB_SHOW_SHADOW"
+msgid "_Use shadow"
+msgstr "_Schatten anwenden"
+
+#. 4BFuT
+#: shadowtabpage.ui
+msgctxt "shadowtabpage|FT_DISTANCE"
+msgid "_Distance:"
+msgstr "_Distanz:"
+
+#. DMAGP
+#: shadowtabpage.ui
+msgctxt "shadowtabpage|FT_TRANSPARENT"
+msgid "_Transparency:"
+msgstr "_Transparenz:"
+
+#. 5ZBde
+#: shadowtabpage.ui
+msgctxt "shadowtabpage|FT_SHADOW_COLOR"
+msgid "_Color:"
+msgstr "_Farbe:"
+
+#. SYFAn
+#: shadowtabpage.ui
+msgctxt "shadowtabpage|CTL_COLOR_PREVIEW-atkobject"
+msgid "Example"
+msgstr "Beispiel"
+
+#. JsPjd
+#: shadowtabpage.ui
+msgctxt "shadowtabpage|label"
+msgid "Properties"
+msgstr "Eigenschaften"
+
+#. C7Ct3
+#: showcoldialog.ui
+msgctxt "showcoldialog|ShowColDialog"
+msgid "Show Columns"
+msgstr "Spalten anzeigen"
+
+#. AcDS7
+#: showcoldialog.ui
+msgctxt "showcoldialog|label1"
+msgid ""
+"The following columns are currently hidden. Please mark the fields you want "
+"to show and choose OK."
+msgstr ""
+"Folgende Spalten sind augenblicklich versteckt. Markieren Sie bitte die "
+"wieder einzublendenden und wählen Sie OK."
+
+#. 2LCZd
+#: similaritysearchdialog.ui
+msgctxt "similaritysearchdialog|SimilaritySearchDialog"
+msgid "Similarity Search"
+msgstr "Ähnlichkeitssuche"
+
+#. rtS5w
+#: similaritysearchdialog.ui
+msgctxt "similaritysearchdialog|label2"
+msgid "_Exchange characters:"
+msgstr "_Zeichen tauschen:"
+
+#. MDhTd
+#: similaritysearchdialog.ui
+msgctxt "similaritysearchdialog|label3"
+msgid "_Add characters:"
+msgstr "Z_eichen hinzufügen:"
+
+#. LZcB3
+#: similaritysearchdialog.ui
+msgctxt "similaritysearchdialog|label4"
+msgid "_Remove characters:"
+msgstr "Ze_ichen entfernen:"
+
+#. 22YmN
+#: similaritysearchdialog.ui
+msgctxt "similaritysearchdialog|relaxbox"
+msgid "_Combine"
+msgstr "_Kombinieren"
+
+#. VNDAt
+#: slantcornertabpage.ui
+msgctxt "slantcornertabpage|label5"
+msgid "_X:"
+msgstr "_X:"
+
+#. CkJx5
+#: slantcornertabpage.ui
+msgctxt "slantcornertabpage|label6"
+msgid "_Y:"
+msgstr "_Y:"
+
+#. gpixF
+#: slantcornertabpage.ui
+msgctxt "slantcornertabpage|label3"
+msgid "Control Point 1"
+msgstr "Kontrollpunkt 1"
+
+#. krHiw
+#: slantcornertabpage.ui
+msgctxt "slantcornertabpage|FT_RADIUS"
+msgid "_Radius:"
+msgstr "_Radius:"
+
+#. WVN9Y
+#: slantcornertabpage.ui
+msgctxt "slantcornertabpage|label1"
+msgid "Corner Radius"
+msgstr "Eckenradius"
+
+#. oVtU3
+#: slantcornertabpage.ui
+msgctxt "slantcornertabpage|FT_ANGLE"
+msgid "_Angle:"
+msgstr "_Winkel:"
+
+#. ATpxT
+#: slantcornertabpage.ui
+msgctxt "slantcornertabpage|label2"
+msgid "Slant"
+msgstr "Schräg stellen"
+
+#. mtFaZ
+#: slantcornertabpage.ui
+msgctxt "slantcornertabpage|label4"
+msgid "_X:"
+msgstr "_X:"
+
+#. 3EL7K
+#: slantcornertabpage.ui
+msgctxt "slantcornertabpage|label7"
+msgid "_Y:"
+msgstr "_Y:"
+
+#. FzWQs
+#: slantcornertabpage.ui
+msgctxt "slantcornertabpage|label8"
+msgid "Control Point 2"
+msgstr "Kontrollpunkt 2"
+
+#. 6HGgg
+#: smarttagoptionspage.ui
+msgctxt "smarttagoptionspage|main"
+msgid "Label text with smart tags"
+msgstr "Text mit Smart Tags versehen"
+
+#. vfc7b
+#: smarttagoptionspage.ui
+msgctxt "smarttagoptionspage|properties"
+msgid "Properties..."
+msgstr "Eigenschaften..."
+
+#. 4xp5D
+#: smarttagoptionspage.ui
+msgctxt "smarttagoptionspage|label1"
+msgid "Currently Installed Smart Tags"
+msgstr "Aktuell installierte Smart Tags"
+
+#. y7D3W
+#: smoothdialog.ui
+msgctxt "smoothdialog|SmoothDialog"
+msgid "Smooth"
+msgstr "Weichzeichnen"
+
+#. BwUut
+#: smoothdialog.ui
+msgctxt "smoothdialog|label2"
+msgid "_Smooth radius:"
+msgstr "_Weichzeichnungsradius:"
+
+#. b62Mc
+#: smoothdialog.ui
+msgctxt "smoothdialog|label1"
+msgid "Parameters"
+msgstr "Parameter"
+
+#. xAH4y
+#: solarizedialog.ui
+msgctxt "solarizedialog|SolarizeDialog"
+msgid "Solarization"
+msgstr "Solarisation"
+
+#. Cjvhw
+#: solarizedialog.ui
+msgctxt "solarizedialog|label2"
+msgid "Threshold _value:"
+msgstr "_Schwellenwert:"
+
+#. zN2jC
+#: solarizedialog.ui
+msgctxt "solarizedialog|invert"
+msgid "_Invert"
+msgstr "_Invertieren"
+
+#. vd8sF
+#: solarizedialog.ui
+msgctxt "solarizedialog|label1"
+msgid "Parameters"
+msgstr "Parameter"
+
+#. JpXVy
+#: specialcharacters.ui
+msgctxt "specialcharacters|SpecialCharactersDialog"
+msgid "Special Characters"
+msgstr "Sonderzeichen"
+
+#. 5Aw7x
+#: specialcharacters.ui
+msgctxt "specialcharacters|ok"
+msgid "_Insert"
+msgstr "_Einfügen"
+
+#. mPCRR
+#: specialcharacters.ui
+msgctxt "specialcharacters|fontft"
+msgid "Font:"
+msgstr "Schriftart:"
+
+#. CLtzq
+#: specialcharacters.ui
+msgctxt "specialcharacters|subsetft"
+msgid "Subset:"
+msgstr "Teilmenge:"
+
+#. b7UEJ
+#: specialcharacters.ui
+msgctxt "specialcharacters|symboltext"
+msgid "Characters:"
+msgstr "Zeichen:"
+
+#. LxRMr
+#: specialcharacters.ui
+msgctxt "specialcharacters|hexlabel"
+msgid "Hexadecimal:"
+msgstr "Hexadezimal:"
+
+#. XFFYD
+#: specialcharacters.ui
+msgctxt "specialcharacters|decimallabel"
+msgid "Decimal:"
+msgstr "Dezimal:"
+
+#. 3Bpmn
+#: spellingdialog.ui
+msgctxt "spellingdialog|SpellingDialog"
+msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)"
+msgstr "Rechtschreibung und Grammatik: $LANGUAGE ($LOCATION)"
+
+#. FcbQv
+#: spellingdialog.ui
+msgctxt "spellingdialog|options"
+msgid "_Options..."
+msgstr "O_ptionen..."
+
+#. DoqLo
+#: spellingdialog.ui
+msgctxt "spellingdialog|ignore"
+msgid "_Ignore Once"
+msgstr "_Einmal ignorieren"
+
+#. 5LDdh
+#: spellingdialog.ui
+msgctxt "spellingdialog|change"
+msgid "Co_rrect"
+msgstr "Ä_ndern"
+
+#. dZvFo
+#: spellingdialog.ui
+msgctxt "spellingdialog|changeall"
+msgid "Correct A_ll"
+msgstr "A_lle ändern"
+
+#. GYcSJ
+#: spellingdialog.ui
+msgctxt "spellingdialog|autocorrect"
+msgid "Alwa_ys Correct"
+msgstr "Auto_Korrektur"
+
+#. 7Lgq7
+#: spellingdialog.ui
+msgctxt "spellingdialog|checkgrammar"
+msgid "Chec_k grammar"
+msgstr "_Grammatik prüfen"
+
+#. 32F96
+#: spellingdialog.ui
+msgctxt "spellingdialog|ignoreall"
+msgid "I_gnore All"
+msgstr "_Alle ignorieren"
+
+#. ZZNQM
+#: spellingdialog.ui
+msgctxt "spellingdialog|ignorerule"
+msgid "I_gnore Rule"
+msgstr "Regel _ignorieren"
+
+#. qLx9c
+#: spellingdialog.ui
+msgctxt "spellingdialog|languageft"
+msgid "Text languag_e:"
+msgstr "_Textsprache:"
+
+#. XESAQ
+#: spellingdialog.ui
+msgctxt "spellingdialog|explainlink"
+msgid "More..."
+msgstr "Mehr..."
+
+#. bxC8G
+#: spellingdialog.ui
+msgctxt "spellingdialog|resumeft"
+msgid "Res_ume"
+msgstr "_Fortsetzen"
+
+#. D2E4f
+#: spellingdialog.ui
+msgctxt "spellingdialog|nosuggestionsft"
+msgid "(no suggestions)"
+msgstr "(keine Vorschläge)"
+
+#. dCCnN
+#: spellingdialog.ui
+msgctxt "spellingdialog|alttitleft"
+msgid "Spelling: $LANGUAGE ($LOCATION)"
+msgstr "Rechtschreibung: $LANGUAGE ($LOCATION)"
+
+#. evAcz
+#: spellingdialog.ui
+msgctxt "spellingdialog|add"
+msgid "_Add to Dictionary"
+msgstr "_Zum Wörterbuch hinzufügen"
+
+#. CEWcz
+#: spellingdialog.ui
+msgctxt "spellingdialog|addmb"
+msgid "_Add to Dictionary"
+msgstr "_Zum Wörterbuch hinzufügen"
+
+#. 4E4ES
+#: spellingdialog.ui
+msgctxt "spellingdialog|suggestionsft"
+msgid "_Suggestions"
+msgstr "_Vorschläge"
+
+#. gPGys
+#: spellingdialog.ui
+msgctxt "spellingdialog|notindictft"
+msgid "_Not in dictionary"
+msgstr "_Nicht im Wörterbuch"
+
+#. R7k8J
+#: spellingdialog.ui
+msgctxt "spellingdialog|paste"
+msgid "Paste"
+msgstr "Einfügen"
+
+#. vTAkA
+#: spellingdialog.ui
+msgctxt "spellingdialog|insert"
+msgid "Special Character"
+msgstr "Sonderzeichen"
+
+#. fM6Vt
+#: spelloptionsdialog.ui
+msgctxt "spelloptionsdialog|SpellOptionsDialog"
+msgid "Options"
+msgstr "Optionen"
+
+#. mEDem
+#: splitcellsdialog.ui
+msgctxt "splitcellsdialog|SplitCellsDialog"
+msgid "Split Cells"
+msgstr "Zellen teilen"
+
+#. PaQvp
+#: splitcellsdialog.ui
+msgctxt "splitcellsdialog|label3"
+msgid "_Split cell into:"
+msgstr "_Zelle teilen in:"
+
+#. FwTkG
+#: splitcellsdialog.ui
+msgctxt "splitcellsdialog|label1"
+msgid "Split"
+msgstr "Teilen"
+
+#. gYiR4
+#: splitcellsdialog.ui
+msgctxt "splitcellsdialog|hori"
+msgid "H_orizontally"
+msgstr "_Horizontal"
+
+#. MADh2
+#: splitcellsdialog.ui
+msgctxt "splitcellsdialog|vert"
+msgid "_Vertically"
+msgstr "_Vertikal"
+
+#. Qev7K
+#: splitcellsdialog.ui
+msgctxt "splitcellsdialog|prop"
+msgid "_Into equal proportions"
+msgstr "_Gleichmäßig teilen"
+
+#. wtDLA
+#: splitcellsdialog.ui
+msgctxt "splitcellsdialog|label2"
+msgid "Direction"
+msgstr "Richtung"
+
+#. hbDka
+#: storedwebconnectiondialog.ui
+msgctxt "storedwebconnectiondialog|StoredWebConnectionDialog"
+msgid "Stored Web Connection Information"
+msgstr "Gespeicherte Informationen zu Internet-Verbindungen"
+
+#. EtCBG
+#: storedwebconnectiondialog.ui
+msgctxt "storedwebconnectiondialog|label1"
+msgid "Web login information (passwords are never shown)"
+msgstr "Internet Login-Informationen (Kennwörter werden nie angezeigt)"
+
+#. U5Eus
+#: storedwebconnectiondialog.ui
+msgctxt "storedwebconnectiondialog|website"
+msgid "Website"
+msgstr "Webseite"
+
+#. zmCQx
+#: storedwebconnectiondialog.ui
+msgctxt "storedwebconnectiondialog|username"
+msgid "User name"
+msgstr "Benutzername"
+
+#. QZk9A
+#: storedwebconnectiondialog.ui
+msgctxt "storedwebconnectiondialog|removeall"
+msgid "Remove _All"
+msgstr "_Alle entfernen"
+
+#. 37PzL
+#: storedwebconnectiondialog.ui
+msgctxt "storedwebconnectiondialog|change"
+msgid "_Change Password..."
+msgstr "_Kennwort ändern..."
+
+#. ADAyE
+#: swpossizepage.ui
+msgctxt "swpossizepage|widthft"
+msgid "_Width:"
+msgstr "_Breite:"
+
+#. D2QY9
+#: swpossizepage.ui
+msgctxt "swpossizepage|heightft"
+msgid "H_eight:"
+msgstr "Höh_e:"
+
+#. UpdQN
+#: swpossizepage.ui
+msgctxt "swpossizepage|ratio"
+msgid "_Keep ratio"
+msgstr "Seiten_verhältnis beibehalten"
+
+#. Dhk9o
+#: swpossizepage.ui
+msgctxt "swpossizepage|label2"
+msgid "Size"
+msgstr "Größe"
+
+#. okeh5
+#: swpossizepage.ui
+msgctxt "swpossizepage|topage"
+msgid "To _page"
+msgstr "An der _Seite"
+
+#. 7GtoG
+#: swpossizepage.ui
+msgctxt "swpossizepage|topara"
+msgid "To paragrap_h"
+msgstr "Am A_bsatz"
+
+#. Uj9Pu
+#: swpossizepage.ui
+msgctxt "swpossizepage|tochar"
+msgid "To cha_racter"
+msgstr "Am Zei_chen"
+
+#. GNmu5
+#: swpossizepage.ui
+msgctxt "swpossizepage|aschar"
+msgid "_As character"
+msgstr "A_ls Zeichen"
+
+#. e4F9d
+#: swpossizepage.ui
+msgctxt "swpossizepage|toframe"
+msgid "To _frame"
+msgstr "Am Rahme_n"
+
+#. ckR4Z
+#: swpossizepage.ui
+msgctxt "swpossizepage|label1"
+msgid "Anchor"
+msgstr "Verankerung"
+
+#. 7XWqU
+#: swpossizepage.ui
+msgctxt "swpossizepage|horiposft"
+msgid "Hori_zontal:"
+msgstr "_Horizontal:"
+
+#. nCjCJ
+#: swpossizepage.ui
+msgctxt "swpossizepage|horibyft"
+msgid "b_y:"
+msgstr "u_m:"
+
+#. JAihS
+#: swpossizepage.ui
+msgctxt "swpossizepage|vertbyft"
+msgid "_by:"
+msgstr "u_m:"
+
+#. bEU2H
+#: swpossizepage.ui
+msgctxt "swpossizepage|horitoft"
+msgid "_to:"
+msgstr "z_u:"
+
+#. NKeEB
+#: swpossizepage.ui
+msgctxt "swpossizepage|vertposft"
+msgid "_Vertical:"
+msgstr "_Vertikal:"
+
+#. 5jQc3
+#: swpossizepage.ui
+msgctxt "swpossizepage|verttoft"
+msgid "t_o:"
+msgstr "z_u:"
+
+#. ZFE5p
+#: swpossizepage.ui
+msgctxt "swpossizepage|mirror"
+msgid "_Mirror on even pages"
+msgstr "Au_f geraden Seiten spiegeln"
+
+#. iTRvh
+#: swpossizepage.ui
+msgctxt "swpossizepage|followtextflow"
+msgid "Follow te_xt flow"
+msgstr "_Textfluss folgen"
+
+#. hKBGx
+#: swpossizepage.ui
+msgctxt "swpossizepage|label11"
+msgid "Position"
+msgstr "Position"
+
+#. 3PMgB
+#: swpossizepage.ui
+msgctxt "swpossizepage|pos"
+msgid "Positio_n"
+msgstr "_Position"
+
+#. YuVkA
+#: swpossizepage.ui
+msgctxt "swpossizepage|size"
+msgid "_Size"
+msgstr "_Größe"
+
+#. 7MV8R
+#: swpossizepage.ui
+msgctxt "swpossizepage|label3"
+msgid "Protect"
+msgstr "Schützen"
+
+#. gGV4j
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|FT_EFFECTS"
+msgid "E_ffect:"
+msgstr "_Effekte:"
+
+#. FpCUy
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|FT_DIRECTION"
+msgid "Direction:"
+msgstr "Richtung:"
+
+#. XD5iJ
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|BTN_UP|tooltip_text"
+msgid "To top"
+msgstr "Nach oben"
+
+#. bz7eu
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|BTN_UP-atkobject"
+msgid "Up"
+msgstr "Oben"
+
+#. xD7QC
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|BTN_RIGHT|tooltip_text"
+msgid "To right"
+msgstr "Nach rechts"
+
+#. VN5hz
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|BTN_RIGHT-atkobject"
+msgid "Right"
+msgstr "Rechts"
+
+#. qufE7
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|BTN_LEFT|tooltip_text"
+msgid "To left"
+msgstr "Nach links"
+
+#. XGbGL
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|BTN_LEFT-atkobject"
+msgid "Left"
+msgstr "Links"
+
+#. Y9HDp
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|BTN_DOWN|tooltip_text"
+msgid "To bottom"
+msgstr "Nach unten"
+
+#. AaxJ6
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|BTN_DOWN-atkobject"
+msgid "Down"
+msgstr "Unten"
+
+#. yTfAi
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|TSB_START_INSIDE"
+msgid "S_tart inside"
+msgstr "_Innerhalb starten"
+
+#. AojvU
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|TSB_STOP_INSIDE"
+msgid "Text _visible when exiting"
+msgstr "_Text sichtbar beim Beenden"
+
+#. mH7ec
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|FT_COUNT"
+msgid "Animation cycles:"
+msgstr "Animationsdurchläufe:"
+
+#. r33uA
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|TSB_ENDLESS"
+msgid "_Continuous"
+msgstr "_Fortlaufend"
+
+#. FGuFE
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|FT_AMOUNT"
+msgid "Increment:"
+msgstr "Schrittweite:"
+
+#. D2oYy
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|TSB_PIXEL"
+msgid "_Pixels"
+msgstr "_Pixel"
+
+#. n9msn
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|FT_DELAY"
+msgid "Delay:"
+msgstr "Verzögerung:"
+
+#. cKvSH
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|TSB_AUTO"
+msgid "_Automatic"
+msgstr "A_utomatisch"
+
+#. pbjT5
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|label2"
+msgid "Properties"
+msgstr "Eigenschaften"
+
+#. C7DcB
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|liststoreEFFECT"
+msgid "No Effect"
+msgstr "Kein Effekt"
+
+#. AQTEq
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|liststoreEFFECT"
+msgid "Blink"
+msgstr "Blinken"
+
+#. kPDEP
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|liststoreEFFECT"
+msgid "Scroll Through"
+msgstr "Durchlaufen"
+
+#. hhrPE
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|liststoreEFFECT"
+msgid "Scroll Back and Forth"
+msgstr "Hin- und zurücklaufen"
+
+#. bG3am
+#: textanimtabpage.ui
+msgctxt "textanimtabpage|liststoreEFFECT"
+msgid "Scroll In"
+msgstr "Reinlaufen"
+
+#. 4iDya
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|TSB_AUTOGROW_WIDTH"
+msgid "Fit wi_dth to text"
+msgstr "_Breite an Text anpassen"
+
+#. AFJcc
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|TSB_AUTOGROW_HEIGHT"
+msgid "Fit h_eight to text"
+msgstr "Höh_e an Text anpassen"
+
+#. gKSp5
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|TSB_FIT_TO_SIZE"
+msgid "_Fit to frame"
+msgstr "An Rah_men anpassen"
+
+#. HNhqB
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|TSB_CONTOUR"
+msgid "_Adjust to contour"
+msgstr "_Konturfluss"
+
+#. ZxFbp
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|label1"
+msgid "Drawing Object Text"
+msgstr "Zeichenobjekt Text"
+
+#. E7JrK
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|TSB_WORDWRAP_TEXT"
+msgid "_Word wrap text in shape"
+msgstr "_Text in Form umbrechen"
+
+#. T4kEz
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|TSB_AUTOGROW_SIZE"
+msgid "_Resize shape to fit text"
+msgstr "_Größe der Form dem Text anpassen"
+
+#. CWdDn
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|label8"
+msgid "Custom Shape Text"
+msgstr "Text der benutzerdefinierten Form"
+
+#. 7Ad2Q
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|label4"
+msgid "_Left:"
+msgstr "_Links:"
+
+#. dMFkF
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|label5"
+msgid "_Right:"
+msgstr "_Rechts:"
+
+#. nxccs
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|label6"
+msgid "_Top:"
+msgstr "_Oben:"
+
+#. avsGr
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|label7"
+msgid "_Bottom:"
+msgstr "_Unten:"
+
+#. aYFEA
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|label2"
+msgid "Spacing to Borders"
+msgstr "Abstand zum Rahmen"
+
+#. PUoRb
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|TSB_FULL_WIDTH"
+msgid "Full _width"
+msgstr "_Ganze Breite"
+
+#. BP2Vk
+#: textattrtabpage.ui
+msgctxt "textattrtabpage|label3"
+msgid "Text Anchor"
+msgstr "Textverankerung"
+
+#. 3Huae
+#: textdialog.ui
+msgctxt "textdialog|TextDialog"
+msgid "Text"
+msgstr "Text"
+
+#. X6YuB
+#: textdialog.ui
+msgctxt "textdialog|RID_SVXPAGE_TEXTATTR"
+msgid "Text"
+msgstr "Text"
+
+#. 7UaHg
+#: textdialog.ui
+msgctxt "textdialog|RID_SVXPAGE_TEXTANIMATION"
+msgid "Text Animation"
+msgstr "Lauftext"
+
+#. N89ek
+#: textflowpage.ui
+msgctxt "textflowpage|checkAuto"
+msgid "A_utomatically"
+msgstr "Auto_matisch"
+
+#. c6KN2
+#: textflowpage.ui
+msgctxt "textflowpage|labelLineEnd"
+msgid "C_haracters at line end"
+msgstr "Zeichen am Zeilene_nde"
+
+#. AGfNV
+#: textflowpage.ui
+msgctxt "textflowpage|labelLineBegin"
+msgid "Cha_racters at line begin"
+msgstr "Zeichen am Zeilenan_fang"
+
+#. FTX7o
+#: textflowpage.ui
+msgctxt "textflowpage|labelMaxNum"
+msgid "_Maximum number of consecutive hyphens"
+msgstr "Ma_ximal aufeinander folgende Trennstellen"
+
+#. stYh3
+#: textflowpage.ui
+msgctxt "textflowpage|LabelHyphenation"
+msgid "Hyphenation"
+msgstr "Silbentrennung"
+
+#. ZLB8K
+#: textflowpage.ui
+msgctxt "textflowpage|checkInsert"
+msgid "_Insert"
+msgstr "_Einfügen"
+
+#. JiDat
+#: textflowpage.ui
+msgctxt "textflowpage|checkPageStyle"
+msgid "With page st_yle:"
+msgstr "Mit Seitenvor_lage:"
+
+#. fMeRA
+#: textflowpage.ui
+msgctxt "textflowpage|labelType"
+msgid "_Type:"
+msgstr "_Typ:"
+
+#. nrtWo
+#: textflowpage.ui
+msgctxt "textflowpage|labelPageNum"
+msgid "Page _number:"
+msgstr "Se_itennummer:"
+
+#. xNBLd
+#: textflowpage.ui
+msgctxt "textflowpage|labelPosition"
+msgid "Position:"
+msgstr "Position:"
+
+#. bFKWE
+#: textflowpage.ui
+msgctxt "textflowpage|comboPageStyle-atkobject"
+msgid "Page Style"
+msgstr "Seitenvorlage"
+
+#. aziF3
+#: textflowpage.ui
+msgctxt "textflowpage|comboBreakType"
+msgid "Page"
+msgstr "Seite"
+
+#. MeAgB
+#: textflowpage.ui
+msgctxt "textflowpage|comboBreakType"
+msgid "Column"
+msgstr "Spalte"
+
+#. 8RF2z
+#: textflowpage.ui
+msgctxt "textflowpage|comboBreakPosition"
+msgid "Before"
+msgstr "Vor"
+
+#. vMWKU
+#: textflowpage.ui
+msgctxt "textflowpage|comboBreakPosition"
+msgid "After"
+msgstr "Hinter"
+
+#. B657G
+#: textflowpage.ui
+msgctxt "textflowpage|label3"
+msgid "Breaks"
+msgstr "Umbrüche"
+
+#. MEpn4
+#: textflowpage.ui
+msgctxt "textflowpage|checkSplitPara"
+msgid "_Do not split paragraph"
+msgstr "Absatz ni_cht trennen"
+
+#. vWpZR
+#: textflowpage.ui
+msgctxt "textflowpage|checkKeepPara"
+msgid "_Keep with next paragraph"
+msgstr "Mit folgendem Absatz z_usammenhalten"
+
+#. dQZQ7
+#: textflowpage.ui
+msgctxt "textflowpage|checkOrphan"
+msgid "_Orphan control"
+msgstr "Schuster_jungenregelung"
+
+#. pnW52
+#: textflowpage.ui
+msgctxt "textflowpage|checkWidow"
+msgid "_Widow control"
+msgstr "Hu_renkinderregelung"
+
+#. dcEiB
+#: textflowpage.ui
+msgctxt "textflowpage|labelOrphan"
+msgid "lines"
+msgstr "Zeilen"
+
+#. 6swWD
+#: textflowpage.ui
+msgctxt "textflowpage|labelWidow"
+msgid "lines"
+msgstr "Zeilen"
+
+#. nXryi
+#: textflowpage.ui
+msgctxt "textflowpage|labelOptions"
+msgid "Options"
+msgstr "Optionen"
+
+#. 5BskL
+#: thesaurus.ui
+msgctxt "thesaurus|ThesaurusDialog"
+msgid "Thesaurus"
+msgstr "Thesaurus"
+
+#. BBvLD
+#: thesaurus.ui
+msgctxt "thesaurus|replace"
+msgid "_Replace"
+msgstr "_Ersetzen"
+
+#. x792E
+#: thesaurus.ui
+msgctxt "thesaurus|label1"
+msgid "Current word:"
+msgstr "Aktuelles Wort:"
+
+#. GQz9P
+#: thesaurus.ui
+msgctxt "thesaurus|label2"
+msgid "Alternatives:"
+msgstr "Alternativen:"
+
+#. DqB5k
+#: thesaurus.ui
+msgctxt "thesaurus|label3"
+msgid "Replace with:"
+msgstr "Ersetzen durch:"
+
+#. WChLB
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|RBT_TRANS_OFF"
+msgid "_No transparency"
+msgstr "_Keine Transparenz"
+
+#. DEU8f
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|RBT_TRANS_LINEAR"
+msgid "_Transparency:"
+msgstr "_Transparenz:"
+
+#. mHokD
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|RBT_TRANS_GRADIENT"
+msgid "_Gradient"
+msgstr "_Verlauf"
+
+#. EmYEU
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|FT_TRGR_TYPE"
+msgid "Ty_pe:"
+msgstr "T_yp:"
+
+#. kfKen
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|FT_TRGR_CENTER_X"
+msgid "Center _X:"
+msgstr "Zentrum _X:"
+
+#. Nsx4p
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|FT_TRGR_CENTER_Y"
+msgid "Center _Y:"
+msgstr "Zentrum _Y:"
+
+#. RWNkA
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|FT_TRGR_ANGLE"
+msgid "_Angle:"
+msgstr "_Winkel:"
+
+#. uRCB3
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|FT_TRGR_BORDER"
+msgid "_Border:"
+msgstr "_Umrandung:"
+
+#. JBFw6
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|FT_TRGR_START_VALUE"
+msgid "_Start value:"
+msgstr "S_tartwert:"
+
+#. opX8T
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|FT_TRGR_END_VALUE"
+msgid "_End value:"
+msgstr "_Endwert:"
+
+#. vFPGU
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|CTL_BITMAP_PREVIEW-atkobject"
+msgid "Example"
+msgstr "Beispiel"
+
+#. AiQzg
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|CTL_TRANS_PREVIEW-atkobject"
+msgid "Example"
+msgstr "Beispiel"
+
+#. UMCGy
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|FL_PROP"
+msgid "Area Transparency Mode"
+msgstr "Bereich des Transparenzmodus"
+
+#. YgMd8
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|liststoreTYPE"
+msgid "Linear"
+msgstr "Linear"
+
+#. 8CgMQ
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|liststoreTYPE"
+msgid "Axial"
+msgstr "Axial"
+
+#. hyMck
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|liststoreTYPE"
+msgid "Radial"
+msgstr "Radial"
+
+#. mEnF6
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|liststoreTYPE"
+msgid "Ellipsoid"
+msgstr "Ellipsoid"
+
+#. GDBS5
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|liststoreTYPE"
+msgid "Quadratic"
+msgstr "Quadratisch"
+
+#. NgYW8
+#: transparencytabpage.ui
+msgctxt "transparencytabpage|liststoreTYPE"
+msgid "Square"
+msgstr "Rechteckig"
+
+#. vUHk9
+#: tsaurldialog.ui
+msgctxt "tsaurldialog|TSAURLDialog"
+msgid "Time Stamping Authority URLs"
+msgstr "URLs von Time Stamp Authorities"
+
+#. A6Jbf
+#: tsaurldialog.ui
+msgctxt "tsaurldialog|delete"
+msgid "_Delete..."
+msgstr "_Löschen..."
+
+#. osDWc
+#: tsaurldialog.ui
+msgctxt "tsaurldialog|add"
+msgid "_Add..."
+msgstr "_Hinzufügen..."
+
+#. px3EH
+#: tsaurldialog.ui
+msgctxt "tsaurldialog|label2"
+msgid "Add or delete Time Stamp Authority URLs"
+msgstr ""
+"Fügen Sie URLs von „Time Stamp Authorities“ hinzu oder löschen Sie diese."
+
+#. fUEE7
+#: tsaurldialog.ui
+msgctxt "tsaurldialog|enteraurl"
+msgid "Enter a Time Stamp Authority URL"
+msgstr "Geben Sie die URL einer „Time Stamp Authority“ ein."
+
+#. NEFBL
+#: tsaurldialog.ui
+msgctxt "tsaurldialog|label1"
+msgid "TSA URL"
+msgstr "URL der TSA"
+
+#. esrrh
+#: twolinespage.ui
+msgctxt "twolinespage|twolines"
+msgid "Write in double lines"
+msgstr "Doppelzeilig schreiben"
+
+#. 9PsoZ
+#: twolinespage.ui
+msgctxt "twolinespage|label2"
+msgid "Double-lined"
+msgstr "Doppelzeilig"
+
+#. nwAhC
+#: twolinespage.ui
+msgctxt "twolinespage|label29"
+msgid "Initial character"
+msgstr "Anfangszeichen"
+
+#. mgaQM
+#: twolinespage.ui
+msgctxt "twolinespage|label30"
+msgid "Final character"
+msgstr "Endzeichen"
+
+#. Zf7C6
+#: twolinespage.ui
+msgctxt "twolinespage|label28"
+msgid "Enclosing Character"
+msgstr "Einschließende Zeichen"
+
+#. gBPF3
+#: twolinespage.ui
+msgctxt "twolinespage|preview"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. NFYmd
+#: twolinespage.ui
+msgctxt "twolinespage|liststore1"
+msgid "(None)"
+msgstr "(Keines)"
+
+#. oUwW4
+#: twolinespage.ui
+msgctxt "twolinespage|liststore1"
+msgid "("
+msgstr "("
+
+#. mSyZB
+#: twolinespage.ui
+msgctxt "twolinespage|liststore1"
+msgid "["
+msgstr "["
+
+#. aDAks
+#: twolinespage.ui
+msgctxt "twolinespage|liststore1"
+msgid "<"
+msgstr "<"
+
+#. uVPNB
+#: twolinespage.ui
+msgctxt "twolinespage|liststore1"
+msgid "{"
+msgstr "{"
+
+#. 6TmK5
+#: twolinespage.ui
+msgctxt "twolinespage|liststore1"
+msgid "Other Characters..."
+msgstr "Weitere Zeichen..."
+
+#. ycpAX
+#: twolinespage.ui
+msgctxt "twolinespage|liststore2"
+msgid "(None)"
+msgstr "(Keines)"
+
+#. ts6EG
+#: twolinespage.ui
+msgctxt "twolinespage|liststore2"
+msgid ")"
+msgstr ")"
+
+#. REFgT
+#: twolinespage.ui
+msgctxt "twolinespage|liststore2"
+msgid "]"
+msgstr "]"
+
+#. wFPzF
+#: twolinespage.ui
+msgctxt "twolinespage|liststore2"
+msgid ">"
+msgstr ">"
+
+#. HFeFt
+#: twolinespage.ui
+msgctxt "twolinespage|liststore2"
+msgid "}"
+msgstr "}"
+
+#. YcMQR
+#: twolinespage.ui
+msgctxt "twolinespage|liststore2"
+msgid "Other Characters..."
+msgstr "Weitere Zeichen..."
+
+#. VFi7o
+#: wordcompletionpage.ui
+msgctxt "wordcompletionpage|delete"
+msgid "_Delete Entry"
+msgstr "_Eintrag löschen"
+
+#. YAb3D
+#: wordcompletionpage.ui
+msgctxt "wordcompletionpage|label1"
+msgid "_Max. entries:"
+msgstr "Ma_x. Einträge:"
+
+#. RJa2G
+#: wordcompletionpage.ui
+msgctxt "wordcompletionpage|label2"
+msgid "Mi_n. word length:"
+msgstr "_Min. Wortlänge:"
+
+#. F6ECQ
+#: wordcompletionpage.ui
+msgctxt "wordcompletionpage|appendspace"
+msgid "_Append space"
+msgstr "_Leerzeichen anhängen"
+
+#. YyYGC
+#: wordcompletionpage.ui
+msgctxt "wordcompletionpage|showastip"
+msgid "_Show as tip"
+msgstr "Als _Tipphilfe anzeigen"
+
+#. WFeum
+#: wordcompletionpage.ui
+msgctxt "wordcompletionpage|enablewordcomplete"
+msgid "Enable word _completion"
+msgstr "_Wortergänzung aktivieren"
+
+#. Akygd
+#: wordcompletionpage.ui
+msgctxt "wordcompletionpage|whenclosing"
+msgid ""
+"_When closing a document, remove the words collected from it from the list"
+msgstr "_Gesammelte Wörter beim Schließen eines Dokuments entfernen."
+
+#. f7oAK
+#: wordcompletionpage.ui
+msgctxt "wordcompletionpage|collectwords"
+msgid "C_ollect words"
+msgstr "Wö_rter sammeln"
+
+#. SzABn
+#: wordcompletionpage.ui
+msgctxt "wordcompletionpage|label3"
+msgid "Acc_ept with:"
+msgstr "A_nnehmen mit:"
+
+#. gzUCC
+#: zoomdialog.ui
+msgctxt "zoomdialog|ZoomDialog"
+msgid "Zoom & View Layout"
+msgstr "Maßstab & Ansichtslayout"
+
+#. JSuui
+#: zoomdialog.ui
+msgctxt "zoomdialog|optimal"
+msgid "Optimal"
+msgstr "Optimal"
+
+#. RfuDU
+#: zoomdialog.ui
+msgctxt "zoomdialog|fitwandh"
+msgid "Fit width and height"
+msgstr "Breite/Höhe anpassen"
+
+#. P9XGA
+#: zoomdialog.ui
+msgctxt "zoomdialog|fitw"
+msgid "Fit width"
+msgstr "Breite anpassen"
+
+#. qeWB6
+#: zoomdialog.ui
+msgctxt "zoomdialog|100pc"
+msgid "100%"
+msgstr "100%"
+
+#. DE7hS
+#: zoomdialog.ui
+msgctxt "zoomdialog|variable"
+msgid "Variable:"
+msgstr "Variabel:"
+
+#. 4BE2v
+#: zoomdialog.ui
+msgctxt "zoomdialog|zoomsb"
+msgid "Variable"
+msgstr "Variabel"
+
+#. 8iPB6
+#: zoomdialog.ui
+msgctxt "zoomdialog|label2"
+msgid "Zoom Factor"
+msgstr "Zoomfaktor"
+
+#. CzsKr
+#: zoomdialog.ui
+msgctxt "zoomdialog|automatic"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. DBVGM
+#: zoomdialog.ui
+msgctxt "zoomdialog|singlepage"
+msgid "Single page"
+msgstr "Einzelne Seite"
+
+#. FdNqb
+#: zoomdialog.ui
+msgctxt "zoomdialog|columns"
+msgid "Columns:"
+msgstr "Spalten:"
+
+#. opsyv
+#: zoomdialog.ui
+msgctxt "zoomdialog|columnssb-atkobject"
+msgid "Columns"
+msgstr "Spalten"
+
+#. rhLet
+#: zoomdialog.ui
+msgctxt "zoomdialog|bookmode"
+msgid "Book mode"
+msgstr "Buchmodus"
+
+#. pdZqi
+#: zoomdialog.ui
+msgctxt "zoomdialog|label1"
+msgid "View Layout"
+msgstr "Ansichtslayout"
diff --git a/source/de/cui/source/customize.po b/source/de/cui/source/customize.po
deleted file mode 100644
index 30791c7be0e..00000000000
--- a/source/de/cui/source/customize.po
+++ /dev/null
@@ -1,765 +0,0 @@
-#. extracted from cui/source/customize
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-11-18 09:43+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1447839793.000000\n"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_NEW_MENU\n"
-"string.text"
-msgid "New Menu %n"
-msgstr "Neues Menü %n"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_NEW_TOOLBAR\n"
-"string.text"
-msgid "New Toolbar %n"
-msgstr "Neue Symbolleiste %n"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_MOVE_MENU\n"
-"string.text"
-msgid "Move Menu"
-msgstr "Menü verschieben"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_ADD_SUBMENU\n"
-"string.text"
-msgid "Add Submenu"
-msgstr "Untermenü hinzufügen"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_SUBMENU_NAME\n"
-"string.text"
-msgid "Submenu name"
-msgstr "Name des Untermenüs"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_MENU_ADDCOMMANDS_DESCRIPTION\n"
-"string.text"
-msgid "To add a command to a menu, select the category and then the command. You can also drag the command to the Commands list of the Menus tab page in the Customize dialog."
-msgstr "Um einen Befehl zu einem Menü hinzuzufügen, wählen Sie zuerst eine Kategorie und dann den Befehl. Alternativ ziehen Sie den Befehl in die Liste Befehle des Registers Menüs im Dialog Anpassen."
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_DELETE_ICON_CONFIRM\n"
-"string.text"
-msgid "Are you sure to delete the image?"
-msgstr "Sind Sie sicher, dass Sie das Symbol löschen möchten?"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_REPLACE_ICON_WARNING\n"
-"string.text"
-msgid ""
-"The icon %ICONNAME is already contained in the image list.\n"
-"Would you like to replace the existing icon?"
-msgstr ""
-"Das Symbol %ICONNAME befindet sich bereits in der Symbolleiste.\n"
-"Möchten Sie das vorhandene Symbol ersetzen?"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_REPLACE_ICON_CONFIRM\n"
-"string.text"
-msgid "Confirm Icon Replacement"
-msgstr "Symbolersetzung bestätigen"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_YESTOALL\n"
-"string.text"
-msgid "Yes to All"
-msgstr "Ja alle"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_PRODUCTNAME_TOOLBARS\n"
-"string.text"
-msgid "%PRODUCTNAME %MODULENAME Toolbars"
-msgstr "%PRODUCTNAME %MODULENAME Symbolleisten"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_PRODUCTNAME_CONTEXTMENUS\n"
-"string.text"
-msgid "%PRODUCTNAME %MODULENAME Context Menus"
-msgstr "%PRODUCTNAME %MODULENAME Kontextmenüs"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_TOOLBAR\n"
-"string.text"
-msgid "Toolbar"
-msgstr "Symbolleiste"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_TOOLBAR_CONTENT\n"
-"string.text"
-msgid "Toolbar Content"
-msgstr "Symbolleisteninhalt"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_COMMANDS\n"
-"string.text"
-msgid "Commands"
-msgstr "Befehle"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SXVSTR_CONFIRM_DELETE_TOOLBAR\n"
-"string.text"
-msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
-msgstr "Die Symbolleiste beinhaltet keine Befehle mehr. Soll die Symbolleiste gelöscht werden?"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_CONFIRM_MENU_RESET\n"
-"string.text"
-msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
-msgstr "Die Menükonfiguration für %SAVE IN SELECTION% wird auf die Standardeinstellung zurückgesetzt. Möchten Sie fortfahren?"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_CONFIRM_TOOLBAR_RESET\n"
-"string.text"
-msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
-msgstr "Die Symbolleistenkonfiguration für %SAVE IN SELECTION% wird auf die Standardeinstellung zurückgesetzt. Möchten Sie fortfahren?"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_CONFIRM_RESTORE_DEFAULT\n"
-"string.text"
-msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
-msgstr "Alle Anpassungen, die an dieser Symbolleiste vorgenommen wurden, werden gelöscht. Möchten Sie diese Symbolleiste wirklich zurücksetzen?"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_MNUCFG_ALREADY_INCLUDED\n"
-"string.text"
-msgid "Function is already included in this popup."
-msgstr "Die Funktion ist bereits in diesem Popup enthalten."
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_LABEL_NEW_NAME\n"
-"string.text"
-msgid "~New name"
-msgstr "~Neuer Name"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_RENAME_MENU\n"
-"string.text"
-msgid "Rename Menu"
-msgstr "Menü umbenennen"
-
-#: cfg.src
-msgctxt ""
-"cfg.src\n"
-"RID_SVXSTR_RENAME_TOOLBAR\n"
-"string.text"
-msgid "Rename Toolbar"
-msgstr "Symbolleiste umbenennen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_STARTAPP\n"
-"string.text"
-msgid "Start Application"
-msgstr "Programmstart"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_CLOSEAPP\n"
-"string.text"
-msgid "Close Application"
-msgstr "Programmende"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_NEWDOC\n"
-"string.text"
-msgid "New Document"
-msgstr "Neues Dokument"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_CLOSEDOC\n"
-"string.text"
-msgid "Document closed"
-msgstr "Dokument geschlossen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_PREPARECLOSEDOC\n"
-"string.text"
-msgid "Document is going to be closed"
-msgstr "Dokument wird geschlossen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_OPENDOC\n"
-"string.text"
-msgid "Open Document"
-msgstr "Dokument öffnen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_SAVEDOC\n"
-"string.text"
-msgid "Save Document"
-msgstr "Dokument speichern"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_SAVEASDOC\n"
-"string.text"
-msgid "Save Document As"
-msgstr "Dokument speichern unter"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_SAVEDOCDONE\n"
-"string.text"
-msgid "Document has been saved"
-msgstr "Dokument wurde gespeichert"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_SAVEASDOCDONE\n"
-"string.text"
-msgid "Document has been saved as"
-msgstr "Dokument wurde gespeichert unter"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_ACTIVATEDOC\n"
-"string.text"
-msgid "Activate Document"
-msgstr "Dokument aktivieren"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_DEACTIVATEDOC\n"
-"string.text"
-msgid "Deactivate Document"
-msgstr "Dokument deaktivieren"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_PRINTDOC\n"
-"string.text"
-msgid "Print Document"
-msgstr "Dokument drucken"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_MODIFYCHANGED\n"
-"string.text"
-msgid "'Modified' status was changed"
-msgstr "Der Status 'Geändert' wurde geändert"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_MAILMERGE\n"
-"string.text"
-msgid "Printing of form letters started"
-msgstr "Serienbriefdruck gestartet"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_MAILMERGE_END\n"
-"string.text"
-msgid "Printing of form letters finished"
-msgstr "Serienbriefdruck abgeschlossen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_FIELDMERGE\n"
-"string.text"
-msgid "Merging of form fields started"
-msgstr "Zusammenführen der Formularfelder gestartet"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_FIELDMERGE_FINISHED\n"
-"string.text"
-msgid "Merging of form fields finished"
-msgstr "Zusammenführen der Formularfelder beendet"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_PAGECOUNTCHANGE\n"
-"string.text"
-msgid "Changing the page count"
-msgstr "Änderung der Seitenanzahl"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED\n"
-"string.text"
-msgid "Loaded a sub component"
-msgstr "Unterdokument wurde geladen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED\n"
-"string.text"
-msgid "Closed a sub component"
-msgstr "Unterdokument wurde geschlossen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_APPROVEPARAMETER\n"
-"string.text"
-msgid "Fill parameters"
-msgstr "Parameter füllen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_ACTIONPERFORMED\n"
-"string.text"
-msgid "Execute action"
-msgstr "Aktion ausführen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_AFTERUPDATE\n"
-"string.text"
-msgid "After updating"
-msgstr "Nach dem Aktualisieren"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_BEFOREUPDATE\n"
-"string.text"
-msgid "Before updating"
-msgstr "Vor dem Aktualisieren"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_APPROVEROWCHANGE\n"
-"string.text"
-msgid "Before record action"
-msgstr "Vor der Datensatzaktion"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_ROWCHANGE\n"
-"string.text"
-msgid "After record action"
-msgstr "Nach der Datensatzaktion"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_CONFIRMDELETE\n"
-"string.text"
-msgid "Confirm deletion"
-msgstr "Löschen bestätigen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_ERROROCCURRED\n"
-"string.text"
-msgid "Error occurred"
-msgstr "Fehler aufgetreten"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED\n"
-"string.text"
-msgid "While adjusting"
-msgstr "Beim Justieren"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_FOCUSGAINED\n"
-"string.text"
-msgid "When receiving focus"
-msgstr "Bei Fokuserhalt"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_FOCUSLOST\n"
-"string.text"
-msgid "When losing focus"
-msgstr "Bei Fokusverlust"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_ITEMSTATECHANGED\n"
-"string.text"
-msgid "Item status changed"
-msgstr "Status geändert"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_KEYTYPED\n"
-"string.text"
-msgid "Key pressed"
-msgstr "Taste gedrückt"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_KEYUP\n"
-"string.text"
-msgid "Key released"
-msgstr "Taste losgelassen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_LOADED\n"
-"string.text"
-msgid "When loading"
-msgstr "Beim Laden"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_RELOADING\n"
-"string.text"
-msgid "Before reloading"
-msgstr "Vor dem erneuten Laden"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_RELOADED\n"
-"string.text"
-msgid "When reloading"
-msgstr "Beim erneuten Laden"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_MOUSEDRAGGED\n"
-"string.text"
-msgid "Mouse moved while key pressed"
-msgstr "Mausbewegung bei Tastendruck"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_MOUSEENTERED\n"
-"string.text"
-msgid "Mouse inside"
-msgstr "Maus innerhalb"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_MOUSEEXITED\n"
-"string.text"
-msgid "Mouse outside"
-msgstr "Maus außerhalb"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_MOUSEMOVED\n"
-"string.text"
-msgid "Mouse moved"
-msgstr "Mausbewegung"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_MOUSEPRESSED\n"
-"string.text"
-msgid "Mouse button pressed"
-msgstr "Maustaste gedrückt"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_MOUSERELEASED\n"
-"string.text"
-msgid "Mouse button released"
-msgstr "Maustaste losgelassen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_POSITIONING\n"
-"string.text"
-msgid "Before record change"
-msgstr "Vor dem Datensatzwechsel"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_POSITIONED\n"
-"string.text"
-msgid "After record change"
-msgstr "Nach dem Datensatzwechsel"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_RESETTED\n"
-"string.text"
-msgid "After resetting"
-msgstr "Nach dem Zurücksetzen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_APPROVERESETTED\n"
-"string.text"
-msgid "Prior to reset"
-msgstr "Vor dem Zurücksetzen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED\n"
-"string.text"
-msgid "Approve action"
-msgstr "Aktion bestätigen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_SUBMITTED\n"
-"string.text"
-msgid "Before submitting"
-msgstr "Vor dem Absenden"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_TEXTCHANGED\n"
-"string.text"
-msgid "Text modified"
-msgstr "Text modifiziert"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_UNLOADING\n"
-"string.text"
-msgid "Before unloading"
-msgstr "Vor dem Entladen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_UNLOADED\n"
-"string.text"
-msgid "When unloading"
-msgstr "Beim Entladen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_CHANGED\n"
-"string.text"
-msgid "Changed"
-msgstr "Modifiziert"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_CREATEDOC\n"
-"string.text"
-msgid "Document created"
-msgstr "Dokument erzeugt"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_LOADDOCFINISHED\n"
-"string.text"
-msgid "Document loading finished"
-msgstr "Laden des Dokuments beendet"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_SAVEDOCFAILED\n"
-"string.text"
-msgid "Saving of document failed"
-msgstr "Speichern des Dokuments fehlgeschlagen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_SAVEASDOCFAILED\n"
-"string.text"
-msgid "'Save as' has failed"
-msgstr "'Speichern unter' fehlgeschlagen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_COPYTODOC\n"
-"string.text"
-msgid "Storing or exporting copy of document"
-msgstr "Dokumentkopie speichern oder exportieren"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_COPYTODOCDONE\n"
-"string.text"
-msgid "Document copy has been created"
-msgstr "Dokumentkopie wurde erzeugt"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_COPYTODOCFAILED\n"
-"string.text"
-msgid "Creating of document copy failed"
-msgstr "Erzeugen der Dokumentkopie fehlgeschlagen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_VIEWCREATED\n"
-"string.text"
-msgid "View created"
-msgstr "Ansicht wurde erzeugt"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_PREPARECLOSEVIEW\n"
-"string.text"
-msgid "View is going to be closed"
-msgstr "Ansicht wird geschlossen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_CLOSEVIEW\n"
-"string.text"
-msgid "View closed"
-msgstr "Ansicht geschlossen"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_TITLECHANGED\n"
-"string.text"
-msgid "Document title changed"
-msgstr "Dokumenttitel wurde geändert"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_SELECTIONCHANGED\n"
-"string.text"
-msgid "Selection changed"
-msgstr "Auswahl geändert"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_DOUBLECLICK\n"
-"string.text"
-msgid "Double click"
-msgstr "Doppelklick"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_RIGHTCLICK\n"
-"string.text"
-msgid "Right click"
-msgstr "Rechtsklick"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_CALCULATE\n"
-"string.text"
-msgid "Formulas calculated"
-msgstr "Formeln geändert"
-
-#: macropg.src
-msgctxt ""
-"macropg.src\n"
-"RID_SVXSTR_EVENT_CONTENTCHANGED\n"
-"string.text"
-msgid "Content changed"
-msgstr "Inhalt geändert"
diff --git a/source/de/cui/source/dialogs.po b/source/de/cui/source/dialogs.po
deleted file mode 100644
index 9b770bcb5b2..00000000000
--- a/source/de/cui/source/dialogs.po
+++ /dev/null
@@ -1,722 +0,0 @@
-#. extracted from cui/source/dialogs
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-06-09 04:45+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496983535.000000\n"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_ERR_TEXTNOTFOUND\n"
-"string.text"
-msgid "No alternatives found."
-msgstr "Keine Alternativen gefunden."
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_SELECT_FILE_IFRAME\n"
-"string.text"
-msgid "Select File for Floating Frame"
-msgstr "Datei für schwebenden Rahmen auswählen"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_ALLFUNCTIONS\n"
-"string.text"
-msgid "All categories"
-msgstr "Alle Kategorien"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_MYMACROS\n"
-"string.text"
-msgid "My Macros"
-msgstr "Meine Makros"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_PRODMACROS\n"
-"string.text"
-msgid "%PRODUCTNAME Macros"
-msgstr "%PRODUCTNAME Makros"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_SELECTOR_ADD_COMMANDS\n"
-"string.text"
-msgid "Add Commands"
-msgstr "Befehle hinzufügen"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_SELECTOR_RUN\n"
-"string.text"
-msgid "Run"
-msgstr "Ausführen"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_ROW\n"
-"string.text"
-msgid "Insert Rows"
-msgstr "Zeilen einfügen"
-
-#. PPI is pixel per inch, %1 is a number
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_PPI\n"
-"string.text"
-msgid "(%1 PPI)"
-msgstr "(%1 PPI)"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_COL\n"
-"string.text"
-msgid "Insert Columns"
-msgstr "Spalten einfügen"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_AUTO_ENTRY\n"
-"string.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_EDIT_GRAPHIC\n"
-"string.text"
-msgid "Link"
-msgstr "Verknüpfung"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_LOADACCELCONFIG\n"
-"string.text"
-msgid "Load Keyboard Configuration"
-msgstr "Tastaturkonfiguration laden"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_SAVEACCELCONFIG\n"
-"string.text"
-msgid "Save Keyboard Configuration"
-msgstr "Tastaturkonfiguration speichern"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_FILTERNAME_CFG\n"
-"string.text"
-msgid "Configuration (*.cfg)"
-msgstr "Konfiguration (*.cfg)"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES\n"
-"string.text"
-msgid "Targets do not exist in the document."
-msgstr "Keine Sprungziele im Dokument vorhanden."
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN\n"
-"string.text"
-msgid "Couldn't open the document."
-msgstr "Das Dokument konnte nicht geöffnet werden."
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_EDITHINT\n"
-"string.text"
-msgid "[Enter text here]"
-msgstr "[Text hier eingeben]"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_HANGUL\n"
-"string.text"
-msgid "Hangul"
-msgstr "Hangul"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_HANJA\n"
-"string.text"
-msgid "Hanja"
-msgstr "Hanja"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_BASICMACROS\n"
-"string.text"
-msgid "BASIC Macros"
-msgstr "BASIC-Makros"
-
-#: cuires.src
-msgctxt ""
-"cuires.src\n"
-"RID_SVXSTR_GROUP_STYLES\n"
-"string.text"
-msgid "Styles"
-msgstr "Stile"
-
-#: fmsearch.src
-msgctxt ""
-"fmsearch.src\n"
-"RID_STR_SEARCH_ANYWHERE\n"
-"string.text"
-msgid "anywhere in the field"
-msgstr "irgendwo im Feld"
-
-#: fmsearch.src
-msgctxt ""
-"fmsearch.src\n"
-"RID_STR_SEARCH_BEGINNING\n"
-"string.text"
-msgid "beginning of field"
-msgstr "am Anfang des Feldes"
-
-#: fmsearch.src
-msgctxt ""
-"fmsearch.src\n"
-"RID_STR_SEARCH_END\n"
-"string.text"
-msgid "end of field"
-msgstr "am Ende des Feldes"
-
-#: fmsearch.src
-msgctxt ""
-"fmsearch.src\n"
-"RID_STR_SEARCH_WHOLE\n"
-"string.text"
-msgid "entire field"
-msgstr "gesamtes Feld"
-
-#: fmsearch.src
-msgctxt ""
-"fmsearch.src\n"
-"RID_STR_FROM_TOP\n"
-"string.text"
-msgid "From top"
-msgstr "Von oben"
-
-#: fmsearch.src
-msgctxt ""
-"fmsearch.src\n"
-"RID_STR_FROM_BOTTOM\n"
-"string.text"
-msgid "From bottom"
-msgstr "Von unten"
-
-#: fmsearch.src
-msgctxt ""
-"fmsearch.src\n"
-"RID_STR_SEARCH_NORECORD\n"
-"string.text"
-msgid "No records corresponding to your data found."
-msgstr "Es wurden keine Datensätze, die zu Ihren Angaben passen, gefunden."
-
-#: fmsearch.src
-msgctxt ""
-"fmsearch.src\n"
-"RID_STR_SEARCH_GENERAL_ERROR\n"
-"string.text"
-msgid "An unknown error occurred. The search could not be finished."
-msgstr "Es trat ein nicht näher bekannter Fehler auf. Die Suche konnte nicht beendet werden."
-
-#: fmsearch.src
-msgctxt ""
-"fmsearch.src\n"
-"RID_STR_OVERFLOW_FORWARD\n"
-"string.text"
-msgid "Overflow, search continued at the beginning"
-msgstr "Suche wurde am Anfang fortgesetzt"
-
-#: fmsearch.src
-msgctxt ""
-"fmsearch.src\n"
-"RID_STR_OVERFLOW_BACKWARD\n"
-"string.text"
-msgid "Overflow, search continued at the end"
-msgstr "Suche wurde am Ende fortgesetzt"
-
-#: fmsearch.src
-msgctxt ""
-"fmsearch.src\n"
-"RID_STR_SEARCH_COUNTING\n"
-"string.text"
-msgid "counting records"
-msgstr "zähle Datensätze"
-
-#: gallery.src
-msgctxt ""
-"gallery.src\n"
-"RID_SVXSTR_GALLERY_NOFILES\n"
-"string.text"
-msgid "<No Files>"
-msgstr "<Keine Dateien>"
-
-#: gallery.src
-msgctxt ""
-"gallery.src\n"
-"RID_SVXSTR_GALLERYPROPS_OBJECT\n"
-"string.text"
-msgid "Object;Objects"
-msgstr "Objekt;Objekte"
-
-#: gallery.src
-msgctxt ""
-"gallery.src\n"
-"RID_SVXSTR_GALLERY_READONLY\n"
-"string.text"
-msgid "(read-only)"
-msgstr "(schreibgeschützt)"
-
-#: gallery.src
-msgctxt ""
-"gallery.src\n"
-"RID_SVXSTR_GALLERY_ALLFILES\n"
-"string.text"
-msgid "<All Files>"
-msgstr "<Alle Dateien>"
-
-#: gallery.src
-msgctxt ""
-"gallery.src\n"
-"RID_SVXSTR_GALLERY_ID_EXISTS\n"
-"string.text"
-msgid "This ID already exists..."
-msgstr "Diese ID existiert bereits..."
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPDLG_CLOSEBUT\n"
-"string.text"
-msgid "Close"
-msgstr "Schließen"
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPDLG_MACROACT1\n"
-"string.text"
-msgid "Mouse over object"
-msgstr "Maus über Objekt"
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPDLG_MACROACT2\n"
-"string.text"
-msgid "Trigger hyperlink"
-msgstr "Hyperlink auslösen"
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPDLG_MACROACT3\n"
-"string.text"
-msgid "Mouse leaves object"
-msgstr "Maus verlässt Objekt"
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPDLG_NOVALIDFILENAME\n"
-"string.text"
-msgid "Please type in a valid file name."
-msgstr "Geben Sie bitte einen gültigen Dateinamen ein."
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPERDLG_HLINETTP\n"
-"string.text"
-msgid "Internet"
-msgstr "Internet"
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPERDLG_HLINETTP_HELP\n"
-"string.text"
-msgid "This is where you create a hyperlink to a Web page or FTP server connection."
-msgstr "Hier können Sie einen Hyperlink zu einer Webseite oder einem FTP Server erstellen."
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPERDLG_HLMAILTP\n"
-"string.text"
-msgid "Mail"
-msgstr "E-Mail"
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPERDLG_HLMAILTP_HELP\n"
-"string.text"
-msgid "This is where you create a hyperlink to an e-mail address."
-msgstr "Hier können Sie einen Hyperlink zu einer E-Mail-Adresse erstellen."
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPERDLG_HLDOCTP\n"
-"string.text"
-msgid "Document"
-msgstr "Dokument"
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPERDLG_HLDOCTP_HELP\n"
-"string.text"
-msgid "This is where you create a hyperlink to an existing document or a target within a document."
-msgstr "Erstellen Sie einen Hyperlink zu einem bestehenden Dokument oder ein Ziel innerhalb eines Dokumentes."
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPERDLG_HLDOCNTP\n"
-"string.text"
-msgid "New Document"
-msgstr "Neues Dokument"
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPERDLG_HLDOCNTP_HELP\n"
-"string.text"
-msgid "This is where you create a new document to which the new link points."
-msgstr "Erstellen Sie ein neues Dokument, auf das dann der neue Hyperlink verweist."
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPERDLG_FORM_BUTTON\n"
-"string.text"
-msgid "Button"
-msgstr "Schaltfläche"
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPERDLG_FROM_TEXT\n"
-"string.text"
-msgid "Text"
-msgstr "Text"
-
-#: hyperdlg.src
-msgctxt ""
-"hyperdlg.src\n"
-"RID_SVXSTR_HYPERDLG_QUERYOVERWRITE\n"
-"string.text"
-msgid "The file already exists. Overwrite?"
-msgstr "Die Datei existiert bereits. Soll sie überschrieben werden?"
-
-#: multipat.src
-msgctxt ""
-"multipat.src\n"
-"RID_MULTIPATH_DBL_ERR\n"
-"string.text"
-msgid "The path %1 already exists."
-msgstr "Der Pfad %1 ist bereits vorhanden."
-
-#: multipat.src
-msgctxt ""
-"multipat.src\n"
-"RID_SVXSTR_ARCHIVE_TITLE\n"
-"string.text"
-msgid "Select Archives"
-msgstr "Archive auswählen"
-
-#: multipat.src
-msgctxt ""
-"multipat.src\n"
-"RID_SVXSTR_ARCHIVE_HEADLINE\n"
-"string.text"
-msgid "Archives"
-msgstr "Archive"
-
-#: multipat.src
-msgctxt ""
-"multipat.src\n"
-"RID_SVXSTR_MULTIFILE_DBL_ERR\n"
-"string.text"
-msgid "The file %1 already exists."
-msgstr "Die Datei %1 ist bereits vorhanden."
-
-#: multipat.src
-msgctxt ""
-"multipat.src\n"
-"RID_SVXSTR_ADD_IMAGE\n"
-"string.text"
-msgid "Add Image"
-msgstr "Bild hinzufügen"
-
-#: passwdomdlg.src
-msgctxt ""
-"passwdomdlg.src\n"
-"RID_SVXSTR_ONE_PASSWORD_MISMATCH\n"
-"string.text"
-msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
-msgstr "Die Bestätigung stimmt nicht mit dem Kennwort überein. Setzen Sie das Kennwort erneut, indem Sie das gleiche Kennwort in beiden Feldern eingeben."
-
-#: passwdomdlg.src
-msgctxt ""
-"passwdomdlg.src\n"
-"RID_SVXSTR_TWO_PASSWORDS_MISMATCH\n"
-"string.text"
-msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
-msgstr "Die Bestätigung stimmt nicht mit dem Originalkennwort überein. Setzen Sie das Kennwort erneut."
-
-#: passwdomdlg.src
-msgctxt ""
-"passwdomdlg.src\n"
-"RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON\n"
-"string.text"
-msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
-msgstr "Geben Sie ein Kennwort zum Öffnen oder Bearbeiten ein oder aktivieren Sie die Option Schreibgeschützt, um fortzufahren."
-
-#: passwdomdlg.src
-msgctxt ""
-"passwdomdlg.src\n"
-"RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2\n"
-"string.text"
-msgid "Set the password by entering the same password in both boxes."
-msgstr "Setzen Sie das Kennwort, indem Sie das gleiche Kennwort in beiden Feldern eingeben."
-
-#: screenshotannotationdlg.src
-msgctxt ""
-"screenshotannotationdlg.src\n"
-"RID_SVXSTR_SAVE_SCREENSHOT_AS\n"
-"string.text"
-msgid "Save Screenshot As..."
-msgstr "Bildschirmfoto speichern als..."
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_DELQUERY\n"
-"string.text"
-msgid "Do you want to delete the following object?"
-msgstr "Möchten Sie das folgende Objekt löschen?"
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_DELQUERY_TITLE\n"
-"string.text"
-msgid "Confirm Deletion"
-msgstr "Löschen bestätigen"
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_DELFAILED\n"
-"string.text"
-msgid "The selected object could not be deleted."
-msgstr "Das ausgewählte Objekt konnte nicht gelöscht werden."
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_DELFAILED_TITLE\n"
-"string.text"
-msgid "Error Deleting Object"
-msgstr "Fehler beim Löschen"
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_CREATEFAILED\n"
-"string.text"
-msgid "The object could not be created."
-msgstr "Das Objekt konnte nicht erstellt werden."
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_CREATEFAILEDDUP\n"
-"string.text"
-msgid " Object with the same name already exists."
-msgstr " Ein Objekt mit demselben Namen existiert bereits."
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_CREATEFAILED_TITLE\n"
-"string.text"
-msgid "Error Creating Object"
-msgstr "Fehler beim Erstellen"
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_RENAMEFAILED\n"
-"string.text"
-msgid "The object could not be renamed."
-msgstr "Das Objekt konnte nicht umbenannt werden."
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_RENAMEFAILED_TITLE\n"
-"string.text"
-msgid "Error Renaming Object"
-msgstr "Fehler beim Umbenennen"
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_ERROR_TITLE\n"
-"string.text"
-msgid "%PRODUCTNAME Error"
-msgstr "%PRODUCTNAME Fehler"
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED\n"
-"string.text"
-msgid "The scripting language %LANGUAGENAME is not supported."
-msgstr "Die Skriptsprache %LANGUAGENAME wird nicht unterstützt."
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_ERROR_RUNNING\n"
-"string.text"
-msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
-msgstr "Ein Fehler trat während der Ausführung vom %LANGUAGENAME-Skript %SCRIPTNAME auf."
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_EXCEPTION_RUNNING\n"
-"string.text"
-msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
-msgstr "Ein Ausnahmefehler trat während der Ausführung vom %LANGUAGENAME-Skript %SCRIPTNAME auf."
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_ERROR_AT_LINE\n"
-"string.text"
-msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
-msgstr "Ein Fehler trat während der Ausführung vom %LANGUAGENAME-Skript %SCRIPTNAME in Zeile %LINENUMBER auf."
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_EXCEPTION_AT_LINE\n"
-"string.text"
-msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
-msgstr "Ein Ausnahmefehler trat während der Ausführung vom %LANGUAGENAME-Skript %SCRIPTNAME in Zeile %LINENUMBER auf."
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_FRAMEWORK_ERROR_RUNNING\n"
-"string.text"
-msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
-msgstr "Ein Scripting Framework Fehler trat während der Ausführung vom %LANGUAGENAME-Skript %SCRIPTNAME auf."
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_ERROR_TYPE_LABEL\n"
-"string.text"
-msgid "Type:"
-msgstr "Typ:"
-
-#: scriptdlg.src
-msgctxt ""
-"scriptdlg.src\n"
-"RID_SVXSTR_ERROR_MESSAGE_LABEL\n"
-"string.text"
-msgid "Message:"
-msgstr "Meldung:"
-
-#: svuidlg.src
-msgctxt ""
-"svuidlg.src\n"
-"STR_AUTOLINK\n"
-"string.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: svuidlg.src
-msgctxt ""
-"svuidlg.src\n"
-"STR_MANUALLINK\n"
-"string.text"
-msgid "Manual"
-msgstr "Manuell"
-
-#: svuidlg.src
-msgctxt ""
-"svuidlg.src\n"
-"STR_BROKENLINK\n"
-"string.text"
-msgid "Not available"
-msgstr "Nicht verfügbar"
-
-#: svuidlg.src
-msgctxt ""
-"svuidlg.src\n"
-"STR_CLOSELINKMSG\n"
-"string.text"
-msgid "Are you sure you want to remove the selected link?"
-msgstr "Soll die gewählte Verknüpfung wirklich gelöscht werden?"
-
-#: svuidlg.src
-msgctxt ""
-"svuidlg.src\n"
-"STR_CLOSELINKMSG_MULTI\n"
-"string.text"
-msgid "Are you sure you want to remove the selected link?"
-msgstr "Soll die gewählte Verknüpfung wirklich gelöscht werden?"
-
-#: svuidlg.src
-msgctxt ""
-"svuidlg.src\n"
-"STR_WAITINGLINK\n"
-"string.text"
-msgid "Waiting"
-msgstr "Warten"
diff --git a/source/de/cui/source/options.po b/source/de/cui/source/options.po
deleted file mode 100644
index d557e7822dd..00000000000
--- a/source/de/cui/source/options.po
+++ /dev/null
@@ -1,1409 +0,0 @@
-#. extracted from cui/source/options
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-03-05 12:54+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1488718464.000000\n"
-
-#: connpooloptions.src
-msgctxt ""
-"connpooloptions.src\n"
-"RID_SVXSTR_DRIVER_NAME\n"
-"string.text"
-msgid "Driver name"
-msgstr "Treibername"
-
-#: connpooloptions.src
-msgctxt ""
-"connpooloptions.src\n"
-"RID_SVXSTR_POOLED_FLAG\n"
-"string.text"
-msgid "Pool"
-msgstr "Aufbewahren"
-
-#: connpooloptions.src
-msgctxt ""
-"connpooloptions.src\n"
-"RID_SVXSTR_POOL_TIMEOUT\n"
-"string.text"
-msgid "Timeout"
-msgstr "Verfallszeit"
-
-#: connpooloptions.src
-msgctxt ""
-"connpooloptions.src\n"
-"RID_SVXSTR_YES\n"
-"string.text"
-msgid "Yes"
-msgstr "Ja"
-
-#: connpooloptions.src
-msgctxt ""
-"connpooloptions.src\n"
-"RID_SVXSTR_NO\n"
-"string.text"
-msgid "No"
-msgstr "Nein"
-
-#: dbregister.src
-msgctxt ""
-"dbregister.src\n"
-"RID_SVXSTR_TYPE\n"
-"string.text"
-msgid "Registered name"
-msgstr "Registrierter Name"
-
-#: dbregister.src
-msgctxt ""
-"dbregister.src\n"
-"RID_SVXSTR_PATH\n"
-"string.text"
-msgid "Database file"
-msgstr "Datenbankdatei"
-
-#: doclinkdialog.src
-msgctxt ""
-"doclinkdialog.src\n"
-"STR_LINKEDDOC_DOESNOTEXIST\n"
-"string.text"
-msgid ""
-"The file\n"
-"$file$\n"
-"does not exist."
-msgstr ""
-"Die Datei\n"
-"$file$\n"
-"existiert nicht."
-
-#: doclinkdialog.src
-msgctxt ""
-"doclinkdialog.src\n"
-"STR_LINKEDDOC_NO_SYSTEM_FILE\n"
-"string.text"
-msgid ""
-"The file\n"
-"$file$\n"
-"does not exist in the local file system."
-msgstr ""
-"Die Datei\n"
-"$file$\n"
-"existiert im lokalen Dateisystem nicht."
-
-#: doclinkdialog.src
-msgctxt ""
-"doclinkdialog.src\n"
-"STR_NAME_CONFLICT\n"
-"string.text"
-msgid ""
-"The name '$file$' is already used for another database.\n"
-"Please choose a different name."
-msgstr ""
-"Der Name '$file$' wird bereits für eine andere Datenbank verwendet.\n"
-"Bitte wählen Sie einen anderen Namen."
-
-#: doclinkdialog.src
-msgctxt ""
-"doclinkdialog.src\n"
-"RID_SVXSTR_QUERY_DELETE_CONFIRM\n"
-"string.text"
-msgid "Do you want to delete the entry?"
-msgstr "Soll der Eintrag gelöscht werden?"
-
-#: optchart.src
-msgctxt ""
-"optchart.src\n"
-"RID_SVXSTR_DIAGRAM_ROW\n"
-"string.text"
-msgid "Data Series $(ROW)"
-msgstr "Datenreihe $(ROW)"
-
-#: optcolor.src
-msgctxt ""
-"optcolor.src\n"
-"RID_SVXSTR_COLOR_CONFIG_DELETE\n"
-"string.text"
-msgid "Do you really want to delete the color scheme?"
-msgstr "Soll das Farbschema wirklich gelöscht werden?"
-
-#: optcolor.src
-msgctxt ""
-"optcolor.src\n"
-"RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE\n"
-"string.text"
-msgid "Color Scheme Deletion"
-msgstr "Löschen des Schemas bestätigen"
-
-#: optcolor.src
-msgctxt ""
-"optcolor.src\n"
-"RID_SVXSTR_COLOR_CONFIG_SAVE1\n"
-"string.text"
-msgid "Save scheme"
-msgstr "Schema speichern"
-
-#: optcolor.src
-msgctxt ""
-"optcolor.src\n"
-"RID_SVXSTR_COLOR_CONFIG_SAVE2\n"
-"string.text"
-msgid "Name of color scheme"
-msgstr "Name des Farbschemas"
-
-#: optdict.src
-msgctxt ""
-"optdict.src\n"
-"RID_SVXSTR_OPT_DOUBLE_DICTS\n"
-"string.text"
-msgid ""
-"The specified name already exists.\n"
-"Please enter a new name."
-msgstr ""
-"Der angegebene Name ist schon vorhanden.\n"
-"Bitte geben Sie einen neuen Namen ein."
-
-#: optdict.src
-msgctxt ""
-"optdict.src\n"
-"STR_MODIFY\n"
-"string.text"
-msgid "~Replace"
-msgstr "~Ersetzen"
-
-#: optdict.src
-msgctxt ""
-"optdict.src\n"
-"RID_SVXSTR_CONFIRM_SET_LANGUAGE\n"
-"string.text"
-msgid "Do you want to change the '%1' dictionary language?"
-msgstr "Möchten Sie die Sprache des Wörterbuches '%1' ändern?"
-
-#: optfltr.src
-msgctxt ""
-"optfltr.src\n"
-"RID_SVXSTR_HEADER1\n"
-"string.text"
-msgid "[L]"
-msgstr "[L]"
-
-#: optfltr.src
-msgctxt ""
-"optfltr.src\n"
-"RID_SVXSTR_HEADER2\n"
-"string.text"
-msgid "[S]"
-msgstr "[S]"
-
-#: optfltr.src
-msgctxt ""
-"optfltr.src\n"
-"RID_SVXSTR_CHG_MATH\n"
-"string.text"
-msgid "MathType to %PRODUCTNAME Math or reverse"
-msgstr "MathType nach %PRODUCTNAME Math oder umgekehrt"
-
-#: optfltr.src
-msgctxt ""
-"optfltr.src\n"
-"RID_SVXSTR_CHG_WRITER\n"
-"string.text"
-msgid "WinWord to %PRODUCTNAME Writer or reverse"
-msgstr "WinWord nach %PRODUCTNAME Writer oder umgekehrt"
-
-#: optfltr.src
-msgctxt ""
-"optfltr.src\n"
-"RID_SVXSTR_CHG_CALC\n"
-"string.text"
-msgid "Excel to %PRODUCTNAME Calc or reverse"
-msgstr "Excel nach %PRODUCTNAME Calc oder umgekehrt"
-
-#: optfltr.src
-msgctxt ""
-"optfltr.src\n"
-"RID_SVXSTR_CHG_IMPRESS\n"
-"string.text"
-msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
-msgstr "PowerPoint nach %PRODUCTNAME Impress oder umgekehrt"
-
-#: optfltr.src
-msgctxt ""
-"optfltr.src\n"
-"RID_SVXSTR_CHG_SMARTART\n"
-"string.text"
-msgid "SmartArt to %PRODUCTNAME shapes or reverse"
-msgstr "SmartArt in %PRODUCTNAME-Formen oder umgekehrt"
-
-#: optinet2.src
-msgctxt ""
-"optinet2.src\n"
-"RID_SVXSTR_OPT_PROXYPORTS\n"
-"string.text"
-msgid ""
-"Invalid value!\n"
-"\n"
-"The maximum value for a port number is 65535."
-msgstr ""
-"Ungültiger Wert!\n"
-"\n"
-"Der Höchstwert einer Portnummer ist 65535."
-
-#: optjava.src
-msgctxt ""
-"optjava.src\n"
-"RID_SVXSTR_JRE_NOT_RECOGNIZED\n"
-"string.text"
-msgid ""
-"The folder you selected does not contain a Java runtime environment.\n"
-"Please select a different folder."
-msgstr ""
-"Der von Ihnen ausgewählte Order enthält keine Java-Laufzeitumgebung.\n"
-"Bitte wählen Sie einen anderen Ordner."
-
-#: optjava.src
-msgctxt ""
-"optjava.src\n"
-"RID_SVXSTR_JRE_FAILED_VERSION\n"
-"string.text"
-msgid ""
-"The Java runtime environment you selected is not the required version.\n"
-"Please select a different folder."
-msgstr ""
-"Die ausgewählte Java-Laufzeitumgebung hat nicht die erforderliche Version.\n"
-"Bitte wählen Sie einen anderen Ordner."
-
-#: optjava.src
-msgctxt ""
-"optjava.src\n"
-"RID_SVXSTR_OPTIONS_RESTART\n"
-"string.text"
-msgid "Please restart %PRODUCTNAME now so the new or modified values can take effect."
-msgstr "Bitte starten Sie %PRODUCTNAME jetzt neu, damit die neuen oder geänderten Werte wirksam werden können."
-
-#: optjava.src
-msgctxt ""
-"optjava.src\n"
-"RID_SVXSTR_JAVA_START_PARAM\n"
-"string.text"
-msgid "Edit Parameter"
-msgstr "Parameter bearbeiten"
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_SPELL\n"
-"string.text"
-msgid "Spelling"
-msgstr "Rechtschreibung"
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_HYPH\n"
-"string.text"
-msgid "Hyphenation"
-msgstr "Silbentrennung"
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_THES\n"
-"string.text"
-msgid "Thesaurus"
-msgstr "Thesaurus"
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_GRAMMAR\n"
-"string.text"
-msgid "Grammar"
-msgstr "Grammatik"
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_CAPITAL_WORDS\n"
-"string.text"
-msgid "Check uppercase words"
-msgstr "Großgeschriebene Wörter prüfen"
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_WORDS_WITH_DIGITS\n"
-"string.text"
-msgid "Check words with numbers "
-msgstr "Wörter mit Ziffern prüfen "
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_SPELL_SPECIAL\n"
-"string.text"
-msgid "Check special regions"
-msgstr "Sonderbereiche prüfen"
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_SPELL_AUTO\n"
-"string.text"
-msgid "Check spelling as you type"
-msgstr "Rechtschreibung während der Eingabe prüfen"
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_GRAMMAR_AUTO\n"
-"string.text"
-msgid "Check grammar as you type"
-msgstr "Grammatik während der Eingabe prüfen"
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_NUM_MIN_WORDLEN\n"
-"string.text"
-msgid "Minimal number of characters for hyphenation: "
-msgstr "Minimale Wortlänge für Silbentrennung: "
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_NUM_PRE_BREAK\n"
-"string.text"
-msgid "Characters before line break: "
-msgstr "Zeichen vor dem Zeilenumbruch: "
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_NUM_POST_BREAK\n"
-"string.text"
-msgid "Characters after line break: "
-msgstr "Zeichen nach dem Zeilenumbruch: "
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_HYPH_AUTO\n"
-"string.text"
-msgid "Hyphenate without inquiry"
-msgstr "Trennen ohne Nachfrage"
-
-#: optlingu.src
-msgctxt ""
-"optlingu.src\n"
-"RID_SVXSTR_HYPH_SPECIAL\n"
-"string.text"
-msgid "Hyphenate special regions"
-msgstr "Sonderbereiche trennen"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_CONFIG_DIR\n"
-"string.text"
-msgid "Configuration"
-msgstr "Konfiguration"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_WORK_PATH\n"
-"string.text"
-msgid "My Documents"
-msgstr "Arbeitsverzeichnis"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_GRAPHICS_PATH\n"
-"string.text"
-msgid "Images"
-msgstr "Bilder"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_BITMAP_PATH\n"
-"string.text"
-msgid "Icons"
-msgstr "Symbole"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_PALETTE_PATH\n"
-"string.text"
-msgid "Palettes"
-msgstr "Paletten"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_BACKUP_PATH\n"
-"string.text"
-msgid "Backups"
-msgstr "Sicherungskopien"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_MODULES_PATH\n"
-"string.text"
-msgid "Modules"
-msgstr "Module"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_TEMPLATE_PATH\n"
-"string.text"
-msgid "Templates"
-msgstr "Dokumentvorlagen"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_GLOSSARY_PATH\n"
-"string.text"
-msgid "AutoText"
-msgstr "AutoText"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_DICTIONARY_PATH\n"
-"string.text"
-msgid "Dictionaries"
-msgstr "Wörterbücher"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_HELP_DIR\n"
-"string.text"
-msgid "Help"
-msgstr "Hilfedateien"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_GALLERY_DIR\n"
-"string.text"
-msgid "Gallery"
-msgstr "Gallery"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_STORAGE_DIR\n"
-"string.text"
-msgid "Message Storage"
-msgstr "Nachrichtenspeicher"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_TEMP_PATH\n"
-"string.text"
-msgid "Temporary files"
-msgstr "Temporäre Dateien"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_PLUGINS_PATH\n"
-"string.text"
-msgid "Plug-ins"
-msgstr "Plugins-Verzeichnis"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_FAVORITES_DIR\n"
-"string.text"
-msgid "Folder Bookmarks"
-msgstr "Ordner-Lesezeichen"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_FILTER_PATH\n"
-"string.text"
-msgid "Filters"
-msgstr "Filter"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_ADDINS_PATH\n"
-"string.text"
-msgid "Add-ins"
-msgstr "Add-ins"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_USERCONFIG_PATH\n"
-"string.text"
-msgid "User Configuration"
-msgstr "Benutzerkonfiguration"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_USERDICTIONARY_DIR\n"
-"string.text"
-msgid "User-defined dictionaries"
-msgstr "Benutzerwörterbücher"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_CLASSIFICATION_PATH\n"
-"string.text"
-msgid "Classification"
-msgstr "Klassifikation"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_AUTOCORRECT_DIR\n"
-"string.text"
-msgid "AutoCorrect"
-msgstr "AutoKorrektur"
-
-#: optpath.src
-msgctxt ""
-"optpath.src\n"
-"RID_SVXSTR_KEY_LINGUISTIC_DIR\n"
-"string.text"
-msgid "Writing aids"
-msgstr "Linguistik"
-
-#: personalization.src
-msgctxt ""
-"personalization.src\n"
-"RID_SVXSTR_SELECTEDPERSONA\n"
-"string.text"
-msgid "Selected Theme: "
-msgstr "Gewähltes Theme: "
-
-#: personalization.src
-msgctxt ""
-"personalization.src\n"
-"RID_SVXSTR_SEARCHING\n"
-"string.text"
-msgid "Searching, please wait..."
-msgstr "Suchvorgang, bitte warten..."
-
-#: personalization.src
-msgctxt ""
-"personalization.src\n"
-"RID_SVXSTR_SEARCHERROR\n"
-"string.text"
-msgid "Cannot open %1, please try again later."
-msgstr "%1 kann nicht geöffnet werden, bitte versuchen Sie es später erneut."
-
-#: personalization.src
-msgctxt ""
-"personalization.src\n"
-"RID_SVXSTR_NORESULTS\n"
-"string.text"
-msgid "No results found."
-msgstr "Keine Suchergebnisse."
-
-#: personalization.src
-msgctxt ""
-"personalization.src\n"
-"RID_SVXSTR_APPLYPERSONA\n"
-"string.text"
-msgid "Applying Theme..."
-msgstr "Theme zuweisen..."
-
-#: personalization.src
-msgctxt ""
-"personalization.src\n"
-"RID_SVXSTR_PERSONA_CATEGORIES\n"
-"LibreOffice\n"
-"itemlist.text"
-msgid "LibreOffice"
-msgstr "LibreOffice"
-
-#: personalization.src
-msgctxt ""
-"personalization.src\n"
-"RID_SVXSTR_PERSONA_CATEGORIES\n"
-"Abstract\n"
-"itemlist.text"
-msgid "Abstract"
-msgstr "Zusammenfassung"
-
-#: personalization.src
-msgctxt ""
-"personalization.src\n"
-"RID_SVXSTR_PERSONA_CATEGORIES\n"
-"Color\n"
-"itemlist.text"
-msgid "Color"
-msgstr "Farbe"
-
-#: personalization.src
-msgctxt ""
-"personalization.src\n"
-"RID_SVXSTR_PERSONA_CATEGORIES\n"
-"Music\n"
-"itemlist.text"
-msgid "Music"
-msgstr "Musik"
-
-#: personalization.src
-msgctxt ""
-"personalization.src\n"
-"RID_SVXSTR_PERSONA_CATEGORIES\n"
-"Nature\n"
-"itemlist.text"
-msgid "Nature"
-msgstr "Natur"
-
-#: personalization.src
-msgctxt ""
-"personalization.src\n"
-"RID_SVXSTR_PERSONA_CATEGORIES\n"
-"Solid\n"
-"itemlist.text"
-msgid "Solid"
-msgstr "Einfarbig"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"%PRODUCTNAME\n"
-"itemlist.text"
-msgid "%PRODUCTNAME"
-msgstr "%PRODUCTNAME"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"User Data\n"
-"itemlist.text"
-msgid "User Data"
-msgstr "Benutzerdaten"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"General\n"
-"itemlist.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"Memory\n"
-"itemlist.text"
-msgid "Memory"
-msgstr "Speicher"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"View\n"
-"itemlist.text"
-msgid "View"
-msgstr "Ansicht"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"Print\n"
-"itemlist.text"
-msgid "Print"
-msgstr "Drucken"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"Paths\n"
-"itemlist.text"
-msgid "Paths"
-msgstr "Pfade"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"Fonts\n"
-"itemlist.text"
-msgid "Fonts"
-msgstr "Schriftarten"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"Security\n"
-"itemlist.text"
-msgid "Security"
-msgstr "Sicherheit"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"Personalization\n"
-"itemlist.text"
-msgid "Personalization"
-msgstr "Personalisierung"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"Application Colors\n"
-"itemlist.text"
-msgid "Application Colors"
-msgstr "Anwendungsfarben"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"Accessibility\n"
-"itemlist.text"
-msgid "Accessibility"
-msgstr "Barrierefreiheit"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"Advanced\n"
-"itemlist.text"
-msgid "Advanced"
-msgstr "Erweitert"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"Basic IDE Options\n"
-"itemlist.text"
-msgid "Basic IDE Options"
-msgstr "Basic-IDE-Optionen"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"Online Update\n"
-"itemlist.text"
-msgid "Online Update"
-msgstr "Online-Update"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_GENERAL_OPTIONS\n"
-"OpenCL\n"
-"itemlist.text"
-msgid "OpenCL"
-msgstr "OpenCL"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_LANGUAGE_OPTIONS\n"
-"Language Settings\n"
-"itemlist.text"
-msgid "Language Settings"
-msgstr "Spracheinstellungen"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_LANGUAGE_OPTIONS\n"
-"Languages\n"
-"itemlist.text"
-msgid "Languages"
-msgstr "Sprachen"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_LANGUAGE_OPTIONS\n"
-"Writing Aids\n"
-"itemlist.text"
-msgid "Writing Aids"
-msgstr "Linguistik"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_LANGUAGE_OPTIONS\n"
-"Searching in Japanese\n"
-"itemlist.text"
-msgid "Searching in Japanese"
-msgstr "Suchoptionen für Japanisch"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_LANGUAGE_OPTIONS\n"
-"Asian Layout\n"
-"itemlist.text"
-msgid "Asian Layout"
-msgstr "Asiatisches Layout"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_LANGUAGE_OPTIONS\n"
-"Complex Text Layout\n"
-"itemlist.text"
-msgid "Complex Text Layout"
-msgstr "Complex Text Layout"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_INET_DLG\n"
-"Internet\n"
-"itemlist.text"
-msgid "Internet"
-msgstr "Internet"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_INET_DLG\n"
-"Proxy\n"
-"itemlist.text"
-msgid "Proxy"
-msgstr "Proxy"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_INET_DLG\n"
-"E-mail\n"
-"itemlist.text"
-msgid "E-mail"
-msgstr "E-Mail"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"%PRODUCTNAME Writer\n"
-"itemlist.text"
-msgid "%PRODUCTNAME Writer"
-msgstr "%PRODUCTNAME Writer"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"General\n"
-"itemlist.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"View\n"
-"itemlist.text"
-msgid "View"
-msgstr "Ansicht"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"Formatting Aids\n"
-"itemlist.text"
-msgid "Formatting Aids"
-msgstr "Formatierungshilfen"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"Grid\n"
-"itemlist.text"
-msgid "Grid"
-msgstr "Raster"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"Basic Fonts (Western)\n"
-"itemlist.text"
-msgid "Basic Fonts (Western)"
-msgstr "Grundschriftarten (westlich)"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"Basic Fonts (Asian)\n"
-"itemlist.text"
-msgid "Basic Fonts (Asian)"
-msgstr "Grundschriftarten (asiatisch)"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"Basic Fonts (CTL)\n"
-"itemlist.text"
-msgid "Basic Fonts (CTL)"
-msgstr "Grundschriftarten (CTL)"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"Print\n"
-"itemlist.text"
-msgid "Print"
-msgstr "Drucken"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"Table\n"
-"itemlist.text"
-msgid "Table"
-msgstr "Tabelle"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"Changes\n"
-"itemlist.text"
-msgid "Changes"
-msgstr "Änderungen"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"Comparison\n"
-"itemlist.text"
-msgid "Comparison"
-msgstr "Vergleich"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"Compatibility\n"
-"itemlist.text"
-msgid "Compatibility"
-msgstr "Kompatibilität"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"AutoCaption\n"
-"itemlist.text"
-msgid "AutoCaption"
-msgstr "Automatische Beschriftung"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_EDITOPTIONS\n"
-"Mail Merge E-mail\n"
-"itemlist.text"
-msgid "Mail Merge E-mail"
-msgstr "Serien-E-Mail"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_ONLINEOPTIONS\n"
-"%PRODUCTNAME Writer/Web\n"
-"itemlist.text"
-msgid "%PRODUCTNAME Writer/Web"
-msgstr "%PRODUCTNAME Writer/Web"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_ONLINEOPTIONS\n"
-"View\n"
-"itemlist.text"
-msgid "View"
-msgstr "Ansicht"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_ONLINEOPTIONS\n"
-"Formatting Aids\n"
-"itemlist.text"
-msgid "Formatting Aids"
-msgstr "Formatierungshilfen"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_ONLINEOPTIONS\n"
-"Grid\n"
-"itemlist.text"
-msgid "Grid"
-msgstr "Gitter"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_ONLINEOPTIONS\n"
-"Print\n"
-"itemlist.text"
-msgid "Print"
-msgstr "Drucken"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_ONLINEOPTIONS\n"
-"Table\n"
-"itemlist.text"
-msgid "Table"
-msgstr "Tabelle"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SW_ONLINEOPTIONS\n"
-"Background\n"
-"itemlist.text"
-msgid "Background"
-msgstr "Hintergrund"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SM_EDITOPTIONS\n"
-"%PRODUCTNAME Math\n"
-"itemlist.text"
-msgid "%PRODUCTNAME Math"
-msgstr "%PRODUCTNAME Math"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SM_EDITOPTIONS\n"
-"Settings\n"
-"itemlist.text"
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SC_EDITOPTIONS\n"
-"%PRODUCTNAME Calc\n"
-"itemlist.text"
-msgid "%PRODUCTNAME Calc"
-msgstr "%PRODUCTNAME Calc"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SC_EDITOPTIONS\n"
-"General\n"
-"itemlist.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SC_EDITOPTIONS\n"
-"Defaults\n"
-"itemlist.text"
-msgid "Defaults"
-msgstr "Standards"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SC_EDITOPTIONS\n"
-"View\n"
-"itemlist.text"
-msgid "View"
-msgstr "Ansicht"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SC_EDITOPTIONS\n"
-"Calculate\n"
-"itemlist.text"
-msgid "Calculate"
-msgstr "Berechnen"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SC_EDITOPTIONS\n"
-"Formula\n"
-"itemlist.text"
-msgid "Formula"
-msgstr "Formel"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SC_EDITOPTIONS\n"
-"Sort Lists\n"
-"itemlist.text"
-msgid "Sort Lists"
-msgstr "Sortierlisten"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SC_EDITOPTIONS\n"
-"Changes\n"
-"itemlist.text"
-msgid "Changes"
-msgstr "Änderungen"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SC_EDITOPTIONS\n"
-"Compatibility\n"
-"itemlist.text"
-msgid "Compatibility"
-msgstr "Kompatibilität"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SC_EDITOPTIONS\n"
-"Grid\n"
-"itemlist.text"
-msgid "Grid"
-msgstr "Raster"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SC_EDITOPTIONS\n"
-"Print\n"
-"itemlist.text"
-msgid "Print"
-msgstr "Drucken"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SD_EDITOPTIONS\n"
-"%PRODUCTNAME Impress\n"
-"itemlist.text"
-msgid "%PRODUCTNAME Impress"
-msgstr "%PRODUCTNAME Impress"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SD_EDITOPTIONS\n"
-"General\n"
-"itemlist.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SD_EDITOPTIONS\n"
-"View\n"
-"itemlist.text"
-msgid "View"
-msgstr "Ansicht"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SD_EDITOPTIONS\n"
-"Grid\n"
-"itemlist.text"
-msgid "Grid"
-msgstr "Raster"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SD_EDITOPTIONS\n"
-"Print\n"
-"itemlist.text"
-msgid "Print"
-msgstr "Drucken"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SD_GRAPHIC_OPTIONS\n"
-"%PRODUCTNAME Draw\n"
-"itemlist.text"
-msgid "%PRODUCTNAME Draw"
-msgstr "%PRODUCTNAME Draw"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SD_GRAPHIC_OPTIONS\n"
-"General\n"
-"itemlist.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SD_GRAPHIC_OPTIONS\n"
-"View\n"
-"itemlist.text"
-msgid "View"
-msgstr "Ansicht"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SD_GRAPHIC_OPTIONS\n"
-"Grid\n"
-"itemlist.text"
-msgid "Grid"
-msgstr "Raster"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SD_GRAPHIC_OPTIONS\n"
-"Print\n"
-"itemlist.text"
-msgid "Print"
-msgstr "Drucken"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SCH_EDITOPTIONS\n"
-"Charts\n"
-"itemlist.text"
-msgid "Charts"
-msgstr "Diagramme"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SCH_EDITOPTIONS\n"
-"Default Colors\n"
-"itemlist.text"
-msgid "Default Colors"
-msgstr "Grundfarben"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_FILTER_DLG\n"
-"Load/Save\n"
-"itemlist.text"
-msgid "Load/Save"
-msgstr "Laden/Speichern"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_FILTER_DLG\n"
-"General\n"
-"itemlist.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_FILTER_DLG\n"
-"VBA Properties\n"
-"itemlist.text"
-msgid "VBA Properties"
-msgstr "VBA-Eigenschaften"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_FILTER_DLG\n"
-"Microsoft Office\n"
-"itemlist.text"
-msgid "Microsoft Office"
-msgstr "Microsoft Office"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_FILTER_DLG\n"
-"HTML Compatibility\n"
-"itemlist.text"
-msgid "HTML Compatibility"
-msgstr "HTML-Kompatibilität"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SB_STARBASEOPTIONS\n"
-"%PRODUCTNAME Base\n"
-"itemlist.text"
-msgid "%PRODUCTNAME Base"
-msgstr "%PRODUCTNAME Base"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SB_STARBASEOPTIONS\n"
-"Connections\n"
-"itemlist.text"
-msgid "Connections"
-msgstr "Verbindungen"
-
-#: treeopt.src
-msgctxt ""
-"treeopt.src\n"
-"SID_SB_STARBASEOPTIONS\n"
-"Databases\n"
-"itemlist.text"
-msgid "Databases"
-msgstr "Datenbanken"
diff --git a/source/de/cui/source/tabpages.po b/source/de/cui/source/tabpages.po
deleted file mode 100644
index a2424a957ac..00000000000
--- a/source/de/cui/source/tabpages.po
+++ /dev/null
@@ -1,557 +0,0 @@
-#. extracted from cui/source/tabpages
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-20 05:46+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495259196.000000\n"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_TABLE_PRESET_NONE\n"
-"string.text"
-msgid "Set No Borders"
-msgstr "Keine Umrandung zeichnen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_TABLE_PRESET_ONLYOUTER\n"
-"string.text"
-msgid "Set Outer Border Only"
-msgstr "Nur äußere Umrandung zeichnen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_TABLE_PRESET_OUTERHORI\n"
-"string.text"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr "Äußere Umrandung und horizontale Linien zeichnen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_TABLE_PRESET_OUTERALL\n"
-"string.text"
-msgid "Set Outer Border and All Inner Lines"
-msgstr "Äußere Umrandung und alle inneren Linien zeichnen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_TABLE_PRESET_OUTERINNER\n"
-"string.text"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr "Äußere Umrandung zeichnen, ohne innere Linien zu verändern"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_PARA_PRESET_DIAGONAL\n"
-"string.text"
-msgid "Set Diagonal Lines Only"
-msgstr "Nur diagonale Linien zeichnen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_PARA_PRESET_ALL\n"
-"string.text"
-msgid "Set All Four Borders"
-msgstr "Komplette Umrandung zeichnen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_PARA_PRESET_LEFTRIGHT\n"
-"string.text"
-msgid "Set Left and Right Borders Only"
-msgstr "Nur linken und rechten Rand zeichnen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_PARA_PRESET_TOPBOTTOM\n"
-"string.text"
-msgid "Set Top and Bottom Borders Only"
-msgstr "Nur oberen und unteren Rand zeichnen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_PARA_PRESET_ONLYLEFT\n"
-"string.text"
-msgid "Set Left Border Only"
-msgstr "Nur linken Rand zeichnen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_HOR_PRESET_ONLYHOR\n"
-"string.text"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr "Oberen und unteren Rand und alle inneren Linien zeichnen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_VER_PRESET_ONLYVER\n"
-"string.text"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr "Linken und rechten Rand und alle inneren Linien zeichnen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_SHADOW_STYLE_NONE\n"
-"string.text"
-msgid "No Shadow"
-msgstr "Kein Schatten"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT\n"
-"string.text"
-msgid "Cast Shadow to Bottom Right"
-msgstr "Schatten nach rechts unten werfen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_SHADOW_STYLE_TOPRIGHT\n"
-"string.text"
-msgid "Cast Shadow to Top Right"
-msgstr "Schatten nach rechts oben werfen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT\n"
-"string.text"
-msgid "Cast Shadow to Bottom Left"
-msgstr "Schatten nach links unten werfen"
-
-#: border.src
-msgctxt ""
-"border.src\n"
-"RID_SVXSTR_SHADOW_STYLE_TOPLEFT\n"
-"string.text"
-msgid "Cast Shadow to Top Left"
-msgstr "Schatten nach links oben werfen"
-
-#: frmdirlbox.src
-msgctxt ""
-"frmdirlbox.src\n"
-"RID_SVXSTR_FRAMEDIR_LTR\n"
-"string.text"
-msgid "Left-to-right (LTR)"
-msgstr "Links-nach-rechts (LTR)"
-
-#: frmdirlbox.src
-msgctxt ""
-"frmdirlbox.src\n"
-"RID_SVXSTR_FRAMEDIR_RTL\n"
-"string.text"
-msgid "Right-to-left (RTL)"
-msgstr "Rechts-nach-links (RTL)"
-
-#: frmdirlbox.src
-msgctxt ""
-"frmdirlbox.src\n"
-"RID_SVXSTR_FRAMEDIR_SUPER\n"
-"string.text"
-msgid "Use superordinate object settings"
-msgstr "Einstellungen des Objektes verwenden"
-
-#: frmdirlbox.src
-msgctxt ""
-"frmdirlbox.src\n"
-"RID_SVXSTR_PAGEDIR_LTR_HORI\n"
-"string.text"
-msgid "Left-to-right (horizontal)"
-msgstr "Links-nach-rechts (horizontal)"
-
-#: frmdirlbox.src
-msgctxt ""
-"frmdirlbox.src\n"
-"RID_SVXSTR_PAGEDIR_RTL_HORI\n"
-"string.text"
-msgid "Right-to-left (horizontal)"
-msgstr "Rechts-nach-links (horizontal)"
-
-#: frmdirlbox.src
-msgctxt ""
-"frmdirlbox.src\n"
-"RID_SVXSTR_PAGEDIR_RTL_VERT\n"
-"string.text"
-msgid "Right-to-left (vertical)"
-msgstr "Rechts-nach-links (vertikal)"
-
-#: frmdirlbox.src
-msgctxt ""
-"frmdirlbox.src\n"
-"RID_SVXSTR_PAGEDIR_LTR_VERT\n"
-"string.text"
-msgid "Left-to-right (vertical)"
-msgstr "Links-nach-rechts (vertikal)"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DESC_GRADIENT\n"
-"string.text"
-msgid "Please enter a name for the gradient:"
-msgstr "Geben Sie hier bitte den Namen für den Farbverlauf ein:"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DESC_NEW_BITMAP\n"
-"string.text"
-msgid "Please enter a name for the bitmap:"
-msgstr "Geben Sie hier bitte den Namen für die Bitmap ein:"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DESC_EXT_BITMAP\n"
-"string.text"
-msgid "Please enter a name for the external bitmap:"
-msgstr "Geben Sie hier bitte den Namen für die externe Bitmap ein:"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DESC_NEW_PATTERN\n"
-"string.text"
-msgid "Please enter a name for the pattern:"
-msgstr "Geben Sie hier bitte den Namen für das Muster ein:"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DESC_LINESTYLE\n"
-"string.text"
-msgid "Please enter a name for the line style:"
-msgstr "Geben Sie hier bitte den Namen für den Linienstil ein:"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_ASK_CHANGE_LINESTYLE\n"
-"string.text"
-msgid ""
-"The line style was modified without saving. \n"
-"Modify the selected line style or add a new line style."
-msgstr ""
-"Der Linienstil wurde geändert und nicht gesichert.\n"
-"Sie können den ausgewählten Linienstil ändern oder einen neuen Linienstil hinzufügen."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DESC_HATCH\n"
-"string.text"
-msgid "Please enter a name for the hatching:"
-msgstr "Geben Sie hier bitte den Namen für die Schraffur ein:"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_CHANGE\n"
-"string.text"
-msgid "Modify"
-msgstr "Ändern"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_ADD\n"
-"string.text"
-msgid "Add"
-msgstr "Hinzufügen"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DESC_COLOR\n"
-"string.text"
-msgid "Please enter a name for the new color:"
-msgstr "Geben Sie hier bitte den Namen für die neue Farbe ein:"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_TABLE\n"
-"string.text"
-msgid "Table"
-msgstr "Tabelle"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DESC_LINEEND\n"
-"string.text"
-msgid "Please enter a name for the new arrowhead:"
-msgstr "Geben Sie hier bitte den Namen für die neue Linienspitze ein:"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_CHARNAME_NOSTYLE\n"
-"string.text"
-msgid "No %1"
-msgstr "Kein %1"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_CHARNAME_FAMILY\n"
-"string.text"
-msgid "Family"
-msgstr "Familie"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_CHARNAME_FONT\n"
-"string.text"
-msgid "Font"
-msgstr "Schrift"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_CHARNAME_STYLE\n"
-"string.text"
-msgid "Style"
-msgstr "Stil"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_CHARNAME_TYPEFACE\n"
-"string.text"
-msgid "Typeface"
-msgstr "Schriftschnitt"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_CHARNAME_HIGHLIGHTING\n"
-"string.text"
-msgid "Highlight Color"
-msgstr "Farbe für Hervorhebungen"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_USE_REPLACE\n"
-"string.text"
-msgid "Use replacement table"
-msgstr "Ersetzungstabelle anwenden"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_CPTL_STT_WORD\n"
-"string.text"
-msgid "Correct TWo INitial CApitals"
-msgstr "ZWei GRoßbuchstaben am WOrtanfang korrigieren"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_CPTL_STT_SENT\n"
-"string.text"
-msgid "Capitalize first letter of every sentence"
-msgstr "Jeden Satz mit einem Großbuchstaben beginnen"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_BOLD_UNDER\n"
-"string.text"
-msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
-msgstr "Automatisch *fett*, /kursiv/, -durchstreichen- und _unterstreichen_"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_NO_DBL_SPACES\n"
-"string.text"
-msgid "Ignore double spaces"
-msgstr "Doppelte Leerzeichen ignorieren"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DETECT_URL\n"
-"string.text"
-msgid "URL Recognition"
-msgstr "URL erkennen"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DASH\n"
-"string.text"
-msgid "Replace dashes"
-msgstr "Gedankenstriche ersetzen"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK\n"
-"string.text"
-msgid "Correct accidental use of cAPS LOCK key"
-msgstr "Unbeabsichtigten Gebrauch der fESTSTELL-tASTE korrigieren"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_NON_BREAK_SPACE\n"
-"string.text"
-msgid "Add non-breaking space before specific punctuation marks in French text"
-msgstr "Fügt ein geschütztes Leerzeichen vor bestimmten Satzzeichen in französischen Text ein"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_ORDINAL\n"
-"string.text"
-msgid "Format ordinal numbers suffixes (1st -> 1^st)"
-msgstr "Suffixe von Ordnungszahlen formatieren (1st -> 1^st)"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DEL_EMPTY_PARA\n"
-"string.text"
-msgid "Remove blank paragraphs"
-msgstr "Leere Absätze entfernen"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_USER_STYLE\n"
-"string.text"
-msgid "Replace Custom Styles"
-msgstr "Benutzervorlagen ersetzen"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_BULLET\n"
-"string.text"
-msgid "Replace bullets with: "
-msgstr "Aufzählungszeichen ersetzen durch: "
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_RIGHT_MARGIN\n"
-"string.text"
-msgid "Combine single line paragraphs if length greater than"
-msgstr "Zusammenfassen von einzeiligen Absätzen ab"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_NUM\n"
-"string.text"
-msgid "Bulleted and numbered lists. Bullet symbol: "
-msgstr "Aufzählungszeichen und Nummerierung. Aufzählungszeichen: "
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_BORDER\n"
-"string.text"
-msgid "Apply border"
-msgstr "Umrandung zuweisen"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_CREATE_TABLE\n"
-"string.text"
-msgid "Create table"
-msgstr "Tabelle erzeugen"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_REPLACE_TEMPLATES\n"
-"string.text"
-msgid "Apply Styles"
-msgstr "Vorlagen zuweisen"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DEL_SPACES_AT_STT_END\n"
-"string.text"
-msgid "Delete spaces and tabs at beginning and end of paragraph"
-msgstr "Lösche Leerzeichen und Tabulatoren am Absatzanfang und -ende"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DEL_SPACES_BETWEEN_LINES\n"
-"string.text"
-msgid "Delete spaces and tabs at end and start of line"
-msgstr "Lösche Leerzeichen und Tabulatoren zwischen Zeilenende und -anfang"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_CONNECTOR\n"
-"string.text"
-msgid "Connector"
-msgstr "Verbinder"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_DIMENSION_LINE\n"
-"string.text"
-msgid "Dimension line"
-msgstr "Bemaßungslinie"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_LOAD_ERROR\n"
-"string.text"
-msgid "The selected module could not be loaded."
-msgstr "Das ausgewählte Modul konnte nicht geladen werden."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_STARTQUOTE\n"
-"string.text"
-msgid "Start Quote"
-msgstr "Am Wortanfang"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_SVXSTR_ENDQUOTE\n"
-"string.text"
-msgid "End Quote"
-msgstr "Am Wortende"
diff --git a/source/de/cui/uiconfig/ui.po b/source/de/cui/uiconfig/ui.po
deleted file mode 100644
index a82f29fb14d..00000000000
--- a/source/de/cui/uiconfig/ui.po
+++ /dev/null
@@ -1,17134 +0,0 @@
-#. extracted from cui/uiconfig/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: LibO 40l10n\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-26 09:49+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
-"Language-Team: none\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1498470541.000000\n"
-
-#: aboutconfigdialog.ui
-msgctxt ""
-"aboutconfigdialog.ui\n"
-"AboutConfig\n"
-"title\n"
-"string.text"
-msgid "Expert Configuration"
-msgstr "Experteneinstellungen"
-
-#: aboutconfigdialog.ui
-msgctxt ""
-"aboutconfigdialog.ui\n"
-"searchButton\n"
-"label\n"
-"string.text"
-msgid "_Search"
-msgstr "_Suchen"
-
-#: aboutconfigdialog.ui
-msgctxt ""
-"aboutconfigdialog.ui\n"
-"preference\n"
-"label\n"
-"string.text"
-msgid "Preference Name"
-msgstr "Einstellungsname"
-
-#: aboutconfigdialog.ui
-msgctxt ""
-"aboutconfigdialog.ui\n"
-"property\n"
-"label\n"
-"string.text"
-msgid "Property"
-msgstr "Eigenschaft"
-
-#: aboutconfigdialog.ui
-msgctxt ""
-"aboutconfigdialog.ui\n"
-"type\n"
-"label\n"
-"string.text"
-msgid "Type"
-msgstr "Art"
-
-#: aboutconfigdialog.ui
-msgctxt ""
-"aboutconfigdialog.ui\n"
-"value\n"
-"label\n"
-"string.text"
-msgid "Value"
-msgstr "Wert"
-
-#: aboutconfigdialog.ui
-msgctxt ""
-"aboutconfigdialog.ui\n"
-"edit\n"
-"label\n"
-"string.text"
-msgid "Edit"
-msgstr "Bearbeiten"
-
-#: aboutconfigdialog.ui
-msgctxt ""
-"aboutconfigdialog.ui\n"
-"reset\n"
-"label\n"
-"string.text"
-msgid "Reset"
-msgstr "Zurücksetzen"
-
-#: aboutconfigvaluedialog.ui
-msgctxt ""
-"aboutconfigvaluedialog.ui\n"
-"AboutConfigValueDialog\n"
-"title\n"
-"string.text"
-msgid "Name"
-msgstr "Name"
-
-#: aboutconfigvaluedialog.ui
-msgctxt ""
-"aboutconfigvaluedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Value:"
-msgstr "Wert:"
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"textbuffer1\n"
-"text\n"
-"string.text"
-msgid "Version: %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX"
-msgstr "Version: %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX"
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"AboutDialog\n"
-"title\n"
-"string.text"
-msgid "About %PRODUCTNAME"
-msgstr "Info zu %PRODUCTNAME"
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"credits\n"
-"label\n"
-"string.text"
-msgid "Cre_dits"
-msgstr "_Beiträge"
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"website\n"
-"label\n"
-"string.text"
-msgid "_Website"
-msgstr "_Webseite"
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"logoreplacement\n"
-"label\n"
-"string.text"
-msgid "%PRODUCTNAME"
-msgstr "%PRODUCTNAME"
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"buildid\n"
-"label\n"
-"string.text"
-msgid "Build ID: $BUILDID"
-msgstr "Build-ID: $BUILDID"
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"locale\n"
-"label\n"
-"string.text"
-msgid "Locale: $LOCALE"
-msgstr "Gebietsschema: $LOCALE"
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"buildIdLink\n"
-"label\n"
-"string.text"
-msgid "See Log: $GITHASH"
-msgstr "Siehe Logdatei: $GITHASH"
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"description\n"
-"label\n"
-"string.text"
-msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
-msgstr "%PRODUCTNAME ist ein modernes und einfach zu nutzendes Open-Source-Programm für Textverarbeitung, Tabellenkalkulation, Präsentationen und mehr."
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"copyright\n"
-"label\n"
-"string.text"
-msgid "Copyright © 2000–2017 LibreOffice contributors."
-msgstr "Copyright © 2000–2017 LibreOffice-Beitragende."
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"libreoffice\n"
-"label\n"
-"string.text"
-msgid "LibreOffice was based on OpenOffice.org."
-msgstr "LibreOffice basiert auf OpenOffice.org."
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"derived\n"
-"label\n"
-"string.text"
-msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
-msgstr "%PRODUCTNAME ist von LibreOffice abgeleitet, das auf OpenOffice.org basiert."
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"vendor\n"
-"label\n"
-"string.text"
-msgid "This release was supplied by %OOOVENDOR."
-msgstr "Dieses Produkt wurde von %OOOVENDOR zur Verfügung gestellt."
-
-#: aboutdialog.ui
-msgctxt ""
-"aboutdialog.ui\n"
-"link\n"
-"label\n"
-"string.text"
-msgid "https://www.libreoffice.org/about-us/credits/"
-msgstr "http://de.libreoffice.org/about-us/credits/"
-
-#: accelconfigpage.ui
-msgctxt ""
-"accelconfigpage.ui\n"
-"label21\n"
-"label\n"
-"string.text"
-msgid "Shortcut Keys"
-msgstr "Tastenkombinationen"
-
-#: accelconfigpage.ui
-msgctxt ""
-"accelconfigpage.ui\n"
-"office\n"
-"label\n"
-"string.text"
-msgid "%PRODUCTNAME"
-msgstr "%PRODUCTNAME"
-
-#: accelconfigpage.ui
-msgctxt ""
-"accelconfigpage.ui\n"
-"module\n"
-"label\n"
-"string.text"
-msgid "$(MODULE)"
-msgstr "$(MODULE)"
-
-#: accelconfigpage.ui
-msgctxt ""
-"accelconfigpage.ui\n"
-"change\n"
-"label\n"
-"string.text"
-msgid "_Modify"
-msgstr "Än_dern"
-
-#: accelconfigpage.ui
-msgctxt ""
-"accelconfigpage.ui\n"
-"load\n"
-"label\n"
-"string.text"
-msgid "_Load..."
-msgstr "_Laden..."
-
-#: accelconfigpage.ui
-msgctxt ""
-"accelconfigpage.ui\n"
-"save\n"
-"label\n"
-"string.text"
-msgid "_Save..."
-msgstr "_Speichern..."
-
-#: accelconfigpage.ui
-msgctxt ""
-"accelconfigpage.ui\n"
-"label23\n"
-"label\n"
-"string.text"
-msgid "_Category"
-msgstr "_Bereich"
-
-#: accelconfigpage.ui
-msgctxt ""
-"accelconfigpage.ui\n"
-"label24\n"
-"label\n"
-"string.text"
-msgid "_Function"
-msgstr "_Funktion"
-
-#: accelconfigpage.ui
-msgctxt ""
-"accelconfigpage.ui\n"
-"label25\n"
-"label\n"
-"string.text"
-msgid "_Keys"
-msgstr "_Tasten"
-
-#: accelconfigpage.ui
-msgctxt ""
-"accelconfigpage.ui\n"
-"label22\n"
-"label\n"
-"string.text"
-msgid "Functions"
-msgstr "Funktionen"
-
-#: acorexceptpage.ui
-msgctxt ""
-"acorexceptpage.ui\n"
-"autoabbrev\n"
-"label\n"
-"string.text"
-msgid "_AutoInclude"
-msgstr "Au_tomatisch aufnehmen"
-
-#: acorexceptpage.ui
-msgctxt ""
-"acorexceptpage.ui\n"
-"newabbrev-atkobject\n"
-"AtkObject::accessible-description\n"
-"string.text"
-msgid "New abbreviations"
-msgstr "Abkürzungen hinzufügen"
-
-#: acorexceptpage.ui
-msgctxt ""
-"acorexceptpage.ui\n"
-"replace\n"
-"label\n"
-"string.text"
-msgid "_Replace"
-msgstr "_Ersetzen"
-
-#: acorexceptpage.ui
-msgctxt ""
-"acorexceptpage.ui\n"
-"delabbrev-atkobject\n"
-"AtkObject::accessible-description\n"
-"string.text"
-msgid "Delete abbreviations"
-msgstr "Abkürzungen löschen"
-
-#: acorexceptpage.ui
-msgctxt ""
-"acorexceptpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Abbreviations (no Subsequent Capital)"
-msgstr "Abkürzungen (nach denen kein Großbuchstabe folgt)"
-
-#: acorexceptpage.ui
-msgctxt ""
-"acorexceptpage.ui\n"
-"autodouble\n"
-"label\n"
-"string.text"
-msgid "A_utoInclude"
-msgstr "A_utomatisch aufnehmen"
-
-#: acorexceptpage.ui
-msgctxt ""
-"acorexceptpage.ui\n"
-"newdouble-atkobject\n"
-"AtkObject::accessible-description\n"
-"string.text"
-msgid "New words with two initial capitals"
-msgstr "Neue Wörter, die mit zwei Großbuchstaben beginnen"
-
-#: acorexceptpage.ui
-msgctxt ""
-"acorexceptpage.ui\n"
-"replace1\n"
-"label\n"
-"string.text"
-msgid "_Replace"
-msgstr "_Ersetzen"
-
-#: acorexceptpage.ui
-msgctxt ""
-"acorexceptpage.ui\n"
-"deldouble-atkobject\n"
-"AtkObject::accessible-description\n"
-"string.text"
-msgid "Delete words with two initial capitals"
-msgstr "Wörter, die mit zwei Großbuchstaben beginnen, löschen"
-
-#: acorexceptpage.ui
-msgctxt ""
-"acorexceptpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Words With TWo INitial CApitals"
-msgstr "WÖrter, die mit zwei GRoßbuchstaben beginnen"
-
-#: acorreplacepage.ui
-msgctxt ""
-"acorreplacepage.ui\n"
-"replace\n"
-"label\n"
-"string.text"
-msgid "_Replace"
-msgstr "_Ersetzen"
-
-#: acorreplacepage.ui
-msgctxt ""
-"acorreplacepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Repla_ce"
-msgstr "_Ersetzen"
-
-#: acorreplacepage.ui
-msgctxt ""
-"acorreplacepage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_With:"
-msgstr "_Durch:"
-
-#: acorreplacepage.ui
-msgctxt ""
-"acorreplacepage.ui\n"
-"textonly\n"
-"label\n"
-"string.text"
-msgid "_Text only"
-msgstr "Nur _Text"
-
-#: agingdialog.ui
-msgctxt ""
-"agingdialog.ui\n"
-"AgingDialog\n"
-"title\n"
-"string.text"
-msgid "Aging"
-msgstr "Alterung"
-
-#: agingdialog.ui
-msgctxt ""
-"agingdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Aging degree:"
-msgstr "Alterungsgrad:"
-
-#: agingdialog.ui
-msgctxt ""
-"agingdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Parameters"
-msgstr "Parameter"
-
-#: applyautofmtpage.ui
-msgctxt ""
-"applyautofmtpage.ui\n"
-"edit\n"
-"label\n"
-"string.text"
-msgid "_Edit..."
-msgstr "_Bearbeiten..."
-
-#: applyautofmtpage.ui
-msgctxt ""
-"applyautofmtpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "[M]: Replace while modifying existing text"
-msgstr "[N]: AutoFormat während der Nachbearbeitung"
-
-#: applyautofmtpage.ui
-msgctxt ""
-"applyautofmtpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "[T]: AutoCorrect while typing"
-msgstr "[E]: AutoKorrektur während der Eingabe"
-
-#: applyautofmtpage.ui
-msgctxt ""
-"applyautofmtpage.ui\n"
-"m\n"
-"label\n"
-"string.text"
-msgid "[M]"
-msgstr "[N]"
-
-#: applyautofmtpage.ui
-msgctxt ""
-"applyautofmtpage.ui\n"
-"t\n"
-"label\n"
-"string.text"
-msgid "[T]"
-msgstr "[E]"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"m\n"
-"label\n"
-"string.text"
-msgid "[M]"
-msgstr "[N]"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"t\n"
-"label\n"
-"string.text"
-msgid "[T]"
-msgstr "[E]"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"singlereplace\n"
-"label\n"
-"string.text"
-msgid "Repla_ce"
-msgstr "E_rsetzen"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"startquoteft\n"
-"label\n"
-"string.text"
-msgid "_Start quote:"
-msgstr "Am Wortan_fang:"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"startsingle-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Start quote of single quotes"
-msgstr "Beginn: einfache Anführungszeichen"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"singlestartex\n"
-"label\n"
-"string.text"
-msgid "Default"
-msgstr "Standard"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"defaultsingle\n"
-"label\n"
-"string.text"
-msgid "_Default"
-msgstr "Standar_d"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"defaultsingle-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Single quotes default"
-msgstr "Einfache Anführungszeichen"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"endquoteft\n"
-"label\n"
-"string.text"
-msgid "_End quote:"
-msgstr "Am Worten_de:"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"endsingle-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "End quote of single quotes"
-msgstr "Ende: einfache Anführungszeichen"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"singleendex\n"
-"label\n"
-"string.text"
-msgid "Default"
-msgstr "Standard"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Single Quotes"
-msgstr "Einfache Anführungszeichen"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"doublereplace\n"
-"label\n"
-"string.text"
-msgid "Repla_ce"
-msgstr "_Ersetzen"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "_Start quote:"
-msgstr "A_m Wortanfang:"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"startdouble-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Start quote of double quotes"
-msgstr "Beginn: doppelte Anführungszeichen"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"doublestartex\n"
-"label\n"
-"string.text"
-msgid "Default"
-msgstr "Standard"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"defaultdouble\n"
-"label\n"
-"string.text"
-msgid "_Default"
-msgstr "Standar_d"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"defaultdouble-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Double quotes default"
-msgstr "Doppelte Anführungszeichen"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "_End quote:"
-msgstr "Am _Wortende:"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"enddouble-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "End quote of double quotes"
-msgstr "Ende: doppelte Anführungszeichen"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"doubleendex\n"
-"label\n"
-"string.text"
-msgid "Default"
-msgstr "Standard"
-
-#: applylocalizedpage.ui
-msgctxt ""
-"applylocalizedpage.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "Double Quotes"
-msgstr "Doppelte Anführungszeichen"
-
-#: areadialog.ui
-msgctxt ""
-"areadialog.ui\n"
-"AreaDialog\n"
-"title\n"
-"string.text"
-msgid "Area"
-msgstr "Fläche"
-
-#: areadialog.ui
-msgctxt ""
-"areadialog.ui\n"
-"RID_SVXPAGE_AREA\n"
-"label\n"
-"string.text"
-msgid "Area"
-msgstr "Fläche"
-
-#: areadialog.ui
-msgctxt ""
-"areadialog.ui\n"
-"RID_SVXPAGE_SHADOW\n"
-"label\n"
-"string.text"
-msgid "Shadow"
-msgstr "Schatten"
-
-#: areadialog.ui
-msgctxt ""
-"areadialog.ui\n"
-"RID_SVXPAGE_TRANSPARENCE\n"
-"label\n"
-"string.text"
-msgid "Transparency"
-msgstr "Transparenz"
-
-#: areatabpage.ui
-msgctxt ""
-"areatabpage.ui\n"
-"btnnone\n"
-"label\n"
-"string.text"
-msgid "None"
-msgstr "Keine"
-
-#: areatabpage.ui
-msgctxt ""
-"areatabpage.ui\n"
-"btncolor\n"
-"label\n"
-"string.text"
-msgid "Color"
-msgstr "Farbe"
-
-#: areatabpage.ui
-msgctxt ""
-"areatabpage.ui\n"
-"btngradient\n"
-"label\n"
-"string.text"
-msgid "Gradient"
-msgstr "Farbverlauf"
-
-#: areatabpage.ui
-msgctxt ""
-"areatabpage.ui\n"
-"btnhatch\n"
-"label\n"
-"string.text"
-msgid "Hatch"
-msgstr "Schraffur"
-
-#: areatabpage.ui
-msgctxt ""
-"areatabpage.ui\n"
-"btnbitmap\n"
-"label\n"
-"string.text"
-msgid "Bitmap"
-msgstr "Bild"
-
-#: areatabpage.ui
-msgctxt ""
-"areatabpage.ui\n"
-"btnpattern\n"
-"label\n"
-"string.text"
-msgid "Pattern"
-msgstr "Muster"
-
-#: asiantypography.ui
-msgctxt ""
-"asiantypography.ui\n"
-"checkForbidList\n"
-"label\n"
-"string.text"
-msgid "Apply list of forbidden characters to the beginning and end of lines"
-msgstr "Liste der verbotenen Zeichen am Zeilenanfang und -ende berücksichtigen"
-
-#: asiantypography.ui
-msgctxt ""
-"asiantypography.ui\n"
-"checkHangPunct\n"
-"label\n"
-"string.text"
-msgid "Allow hanging punctuation"
-msgstr "Hängende Interpunktion zulassen"
-
-#: asiantypography.ui
-msgctxt ""
-"asiantypography.ui\n"
-"checkApplySpacing\n"
-"label\n"
-"string.text"
-msgid "Apply spacing between Asian, Latin and complex text"
-msgstr "Abstand zwischen asiatischem, lateinischem und komplexem Text anwenden"
-
-#: asiantypography.ui
-msgctxt ""
-"asiantypography.ui\n"
-"labelLineChange\n"
-"label\n"
-"string.text"
-msgid "Line Change"
-msgstr "Zeilenwechsel"
-
-#: assigncomponentdialog.ui
-msgctxt ""
-"assigncomponentdialog.ui\n"
-"AssignComponent\n"
-"title\n"
-"string.text"
-msgid "Assign Component"
-msgstr "Komponente zuweisen"
-
-#: assigncomponentdialog.ui
-msgctxt ""
-"assigncomponentdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Component method name:"
-msgstr "Komponentenmethode-Name:"
-
-#: autocorrectdialog.ui
-msgctxt ""
-"autocorrectdialog.ui\n"
-"AutoCorrectDialog\n"
-"title\n"
-"string.text"
-msgid "AutoCorrect"
-msgstr "AutoKorrektur"
-
-#: autocorrectdialog.ui
-msgctxt ""
-"autocorrectdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Replacements and exceptions for language:"
-msgstr "Ersetzungen und Ausnahmen für Sprache:"
-
-#: autocorrectdialog.ui
-msgctxt ""
-"autocorrectdialog.ui\n"
-"replace\n"
-"label\n"
-"string.text"
-msgid "Replace"
-msgstr "Ersetzungen"
-
-#: autocorrectdialog.ui
-msgctxt ""
-"autocorrectdialog.ui\n"
-"exceptions\n"
-"label\n"
-"string.text"
-msgid "Exceptions"
-msgstr "Ausnahmen"
-
-#: autocorrectdialog.ui
-msgctxt ""
-"autocorrectdialog.ui\n"
-"options\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: autocorrectdialog.ui
-msgctxt ""
-"autocorrectdialog.ui\n"
-"apply\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: autocorrectdialog.ui
-msgctxt ""
-"autocorrectdialog.ui\n"
-"localized\n"
-"label\n"
-"string.text"
-msgid "Localized Options"
-msgstr "Gebietsschemaabhängige Optionen"
-
-#: autocorrectdialog.ui
-msgctxt ""
-"autocorrectdialog.ui\n"
-"wordcompletion\n"
-"label\n"
-"string.text"
-msgid "Word Completion"
-msgstr "Wortergänzung"
-
-#: autocorrectdialog.ui
-msgctxt ""
-"autocorrectdialog.ui\n"
-"smarttags\n"
-"label\n"
-"string.text"
-msgid "Smart Tags"
-msgstr "Geeignete Schlagwörter"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"asft\n"
-"label\n"
-"string.text"
-msgid "A_s:"
-msgstr "A_ls:"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"forft\n"
-"label\n"
-"string.text"
-msgid "F_or:"
-msgstr "Fü_r:"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"tablelb\n"
-"0\n"
-"stringlist.text"
-msgid "Cell"
-msgstr "Zelle"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"tablelb\n"
-"1\n"
-"stringlist.text"
-msgid "Row"
-msgstr "Zeile"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"tablelb\n"
-"2\n"
-"stringlist.text"
-msgid "Table"
-msgstr "Tabelle"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"background_label\n"
-"label\n"
-"string.text"
-msgid "Background Color"
-msgstr "Hintergrundfarbe"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"unlinkedft\n"
-"label\n"
-"string.text"
-msgid "Unlinked image"
-msgstr "Unverknüpftes Bild"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"findgraphicsft\n"
-"label\n"
-"string.text"
-msgid "Find images"
-msgstr "Bilder suchen"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "_Browse..."
-msgstr "Durch_suchen..."
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"link\n"
-"label\n"
-"string.text"
-msgid "_Link"
-msgstr "_Verknüpfung"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "File"
-msgstr "Datei"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"positionrb\n"
-"label\n"
-"string.text"
-msgid "_Position"
-msgstr "_Position"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"arearb\n"
-"label\n"
-"string.text"
-msgid "Ar_ea"
-msgstr "_Fläche"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"tilerb\n"
-"label\n"
-"string.text"
-msgid "_Tile"
-msgstr "_Nebeneinander"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Type"
-msgstr "Art"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"showpreview\n"
-"label\n"
-"string.text"
-msgid "Pre_view"
-msgstr "Vor_schau"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"liststore1\n"
-"0\n"
-"stringlist.text"
-msgid "Color"
-msgstr "Farbe"
-
-#: backgroundpage.ui
-msgctxt ""
-"backgroundpage.ui\n"
-"liststore1\n"
-"1\n"
-"stringlist.text"
-msgid "Image"
-msgstr "Bild"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"BaseLinksDialog\n"
-"title\n"
-"string.text"
-msgid "Edit Links"
-msgstr "Verknüpfungen bearbeiten"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"UPDATE_NOW\n"
-"label\n"
-"string.text"
-msgid "_Update"
-msgstr "Akt_ualisieren"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"OPEN\n"
-"label\n"
-"string.text"
-msgid "_Open"
-msgstr "Ö_ffnen"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"CHANGE_SOURCE\n"
-"label\n"
-"string.text"
-msgid "_Modify..."
-msgstr "Ä_ndern..."
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"BREAK_LINK\n"
-"label\n"
-"string.text"
-msgid "_Break Link"
-msgstr "_Lösen"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"FILES\n"
-"label\n"
-"string.text"
-msgid "Source file"
-msgstr "Quelldatei"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"LINKS\n"
-"label\n"
-"string.text"
-msgid "Element:"
-msgstr "Element:"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"TYPE\n"
-"label\n"
-"string.text"
-msgid "Type"
-msgstr "Art"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"STATUS\n"
-"label\n"
-"string.text"
-msgid "Status"
-msgstr "Status"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"TB_LINKS\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Edit Links"
-msgstr "Verknüpfungen bearbeiten"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"FILES2\n"
-"label\n"
-"string.text"
-msgid "Source file"
-msgstr "Quelldatei"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"SOURCE2\n"
-"label\n"
-"string.text"
-msgid "Element:"
-msgstr "Element:"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"TYPE2\n"
-"label\n"
-"string.text"
-msgid "Type:"
-msgstr "Typ:"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"UPDATE\n"
-"label\n"
-"string.text"
-msgid "Update:"
-msgstr "Aktualisieren:"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"AUTOMATIC\n"
-"label\n"
-"string.text"
-msgid "_Automatic"
-msgstr "A_utomatisch"
-
-#: baselinksdialog.ui
-msgctxt ""
-"baselinksdialog.ui\n"
-"MANUAL\n"
-"label\n"
-"string.text"
-msgid "Ma_nual"
-msgstr "Ma_nuell"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"BTN_IMPORT\n"
-"label\n"
-"string.text"
-msgid "Add / Import"
-msgstr "Importieren"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Bitmap"
-msgstr "Bild"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Style:"
-msgstr "Stil:"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"bitmapstyle\n"
-"0\n"
-"stringlist.text"
-msgid "Original"
-msgstr "Original"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"bitmapstyle\n"
-"1\n"
-"stringlist.text"
-msgid "Filled"
-msgstr "Füllend"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"bitmapstyle\n"
-"2\n"
-"stringlist.text"
-msgid "Stretched"
-msgstr "Gestreckt"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"bitmapstyle\n"
-"3\n"
-"stringlist.text"
-msgid "Zoomed"
-msgstr "Vergrößert"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"bitmapstyle\n"
-"4\n"
-"stringlist.text"
-msgid "Custom"
-msgstr "Angepasst"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"bitmapstyle\n"
-"5\n"
-"stringlist.text"
-msgid "Tiled"
-msgstr "Gekachelt"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Size:"
-msgstr "Größe:"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "W:"
-msgstr "B:"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "H:"
-msgstr "H:"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"scaletsb\n"
-"label\n"
-"string.text"
-msgid "Scale"
-msgstr "Skalierung"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Position:"
-msgstr "Position:"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"positionlb\n"
-"0\n"
-"stringlist.text"
-msgid "Top Left"
-msgstr "Oben links"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"positionlb\n"
-"1\n"
-"stringlist.text"
-msgid "Top Center"
-msgstr "Oben zentriert"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"positionlb\n"
-"2\n"
-"stringlist.text"
-msgid "Top Right"
-msgstr "Oben rechts"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"positionlb\n"
-"3\n"
-"stringlist.text"
-msgid "Center Left"
-msgstr "Mitte links"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"positionlb\n"
-"4\n"
-"stringlist.text"
-msgid "Center"
-msgstr "Mitte zentriert"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"positionlb\n"
-"5\n"
-"stringlist.text"
-msgid "Center Right"
-msgstr "Mitte rechts"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"positionlb\n"
-"6\n"
-"stringlist.text"
-msgid "Bottom Left"
-msgstr "Unten links"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"positionlb\n"
-"7\n"
-"stringlist.text"
-msgid "Bottom Center"
-msgstr "Unten zentriert"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"positionlb\n"
-"8\n"
-"stringlist.text"
-msgid "Bottom Right"
-msgstr "Unten rechts"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "Tiling Position:"
-msgstr "Kachelposition:"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "X:"
-msgstr "X:"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"label11\n"
-"label\n"
-"string.text"
-msgid "Y:"
-msgstr "Y:"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"label15\n"
-"label\n"
-"string.text"
-msgid "Tiling Offset:"
-msgstr "Kachelversatz:"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"tileofflb\n"
-"0\n"
-"stringlist.text"
-msgid "Row"
-msgstr "Zeile"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"tileofflb\n"
-"1\n"
-"stringlist.text"
-msgid "Column"
-msgstr "Spalte"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"CTL_BITMAP_PREVIEW-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Example"
-msgstr "Beispiel"
-
-#: bitmaptabpage.ui
-msgctxt ""
-"bitmaptabpage.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: blackorwhitelistentrydialog.ui
-msgctxt ""
-"blackorwhitelistentrydialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Operating system:"
-msgstr "Betriebssystem:"
-
-#: blackorwhitelistentrydialog.ui
-msgctxt ""
-"blackorwhitelistentrydialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Version:"
-msgstr "Version:"
-
-#: blackorwhitelistentrydialog.ui
-msgctxt ""
-"blackorwhitelistentrydialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "OpenCL vendor:"
-msgstr "OpenCL-Anbieter:"
-
-#: blackorwhitelistentrydialog.ui
-msgctxt ""
-"blackorwhitelistentrydialog.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Device:"
-msgstr "Gerät:"
-
-#: blackorwhitelistentrydialog.ui
-msgctxt ""
-"blackorwhitelistentrydialog.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Driver version:"
-msgstr "Treiberversion:"
-
-#: blackorwhitelistentrydialog.ui
-msgctxt ""
-"blackorwhitelistentrydialog.ui\n"
-"bledittitle\n"
-"label\n"
-"string.text"
-msgid "Edit OpenCL Blacklist Entry"
-msgstr "OpenCL-Negativlisteneintrag bearbeiten"
-
-#: blackorwhitelistentrydialog.ui
-msgctxt ""
-"blackorwhitelistentrydialog.ui\n"
-"bladdtitle\n"
-"label\n"
-"string.text"
-msgid "Create OpenCL Blacklist Entry"
-msgstr "OpenCL-Negativlisteneintrag erstellen"
-
-#: blackorwhitelistentrydialog.ui
-msgctxt ""
-"blackorwhitelistentrydialog.ui\n"
-"wledittitle\n"
-"label\n"
-"string.text"
-msgid "Edit OpenCL Whitelist Entry"
-msgstr "OpenCL-Positivlisteneintrag bearbeiten"
-
-#: blackorwhitelistentrydialog.ui
-msgctxt ""
-"blackorwhitelistentrydialog.ui\n"
-"wladdtitle\n"
-"label\n"
-"string.text"
-msgid "Create OpenCL Whitelist Entry"
-msgstr "OpenCL-Positivlisteneintrag erstellen"
-
-#: blackorwhitelistentrydialog.ui
-msgctxt ""
-"blackorwhitelistentrydialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "OpenCL Information"
-msgstr "OpenCL-Information"
-
-#: blackorwhitelistentrydialog.ui
-msgctxt ""
-"blackorwhitelistentrydialog.ui\n"
-"os-liststore\n"
-"0\n"
-"stringlist.text"
-msgid "Any"
-msgstr "Alle"
-
-#: borderareatransparencydialog.ui
-msgctxt ""
-"borderareatransparencydialog.ui\n"
-"BorderAreaTransparencyDialog\n"
-"title\n"
-"string.text"
-msgid "Border / Background"
-msgstr "Umrandung / Hintergrund"
-
-#: borderareatransparencydialog.ui
-msgctxt ""
-"borderareatransparencydialog.ui\n"
-"borders\n"
-"label\n"
-"string.text"
-msgid "Borders"
-msgstr "Umrandung"
-
-#: borderareatransparencydialog.ui
-msgctxt ""
-"borderareatransparencydialog.ui\n"
-"area\n"
-"label\n"
-"string.text"
-msgid "Area"
-msgstr "Fläche"
-
-#: borderareatransparencydialog.ui
-msgctxt ""
-"borderareatransparencydialog.ui\n"
-"transparence\n"
-"label\n"
-"string.text"
-msgid "Transparency"
-msgstr "Transparenz"
-
-#: borderbackgrounddialog.ui
-msgctxt ""
-"borderbackgrounddialog.ui\n"
-"BorderBackgroundDialog\n"
-"title\n"
-"string.text"
-msgid "Border / Background"
-msgstr "Umrandung / Hintergrund"
-
-#: borderbackgrounddialog.ui
-msgctxt ""
-"borderbackgrounddialog.ui\n"
-"borders\n"
-"label\n"
-"string.text"
-msgid "Borders"
-msgstr "Umrandung"
-
-#: borderbackgrounddialog.ui
-msgctxt ""
-"borderbackgrounddialog.ui\n"
-"background\n"
-"label\n"
-"string.text"
-msgid "Background"
-msgstr "Hintergrund"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"userdefft\n"
-"label\n"
-"string.text"
-msgid "_User-defined:"
-msgstr "_Benutzerdefiniert:"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"label14\n"
-"label\n"
-"string.text"
-msgid "Pr_esets:"
-msgstr "Vor_einstellungen:"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"rmadjcellbordersft\n"
-"label\n"
-"string.text"
-msgid "_Adjacent Cells:"
-msgstr "An_grenzende Zellen:"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"rmadjcellborders\n"
-"label\n"
-"string.text"
-msgid "Remove border"
-msgstr "Umrandung entfernen"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Line Arrangement"
-msgstr "Linienanordnung"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"label15\n"
-"label\n"
-"string.text"
-msgid "St_yle:"
-msgstr "Sti_l:"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"label16\n"
-"label\n"
-"string.text"
-msgid "_Width:"
-msgstr "_Breite:"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"label17\n"
-"label\n"
-"string.text"
-msgid "_Color:"
-msgstr "_Farbe:"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "Line"
-msgstr "Linie"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"leftft\n"
-"label\n"
-"string.text"
-msgid "_Left:"
-msgstr "_Links:"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"rightft\n"
-"label\n"
-"string.text"
-msgid "Right:"
-msgstr "Rechts:"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"topft\n"
-"label\n"
-"string.text"
-msgid "_Top:"
-msgstr "_Oben:"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"bottomft\n"
-"label\n"
-"string.text"
-msgid "_Bottom:"
-msgstr "_Unten:"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"sync\n"
-"label\n"
-"string.text"
-msgid "Synchronize"
-msgstr "Synchronisieren"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "Spacing to Contents"
-msgstr "Abstand zum Inhalt"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"label22\n"
-"label\n"
-"string.text"
-msgid "_Position:"
-msgstr "_Position:"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"distanceft\n"
-"label\n"
-"string.text"
-msgid "Distan_ce:"
-msgstr "_Distanz:"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"shadowcolorft\n"
-"label\n"
-"string.text"
-msgid "C_olor:"
-msgstr "_Farbe:"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"label11\n"
-"label\n"
-"string.text"
-msgid "Shadow Style"
-msgstr "Schatten"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"mergewithnext\n"
-"label\n"
-"string.text"
-msgid "_Merge with next paragraph"
-msgstr "_Mit dem nächsten Absatz verschmelzen"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"mergeadjacent\n"
-"label\n"
-"string.text"
-msgid "_Merge adjacent line styles"
-msgstr "Be_nachbarte Linienstile zusammenführen"
-
-#: borderpage.ui
-msgctxt ""
-"borderpage.ui\n"
-"label12\n"
-"label\n"
-"string.text"
-msgid "Properties"
-msgstr "Eigenschaften"
-
-#: breaknumberoption.ui
-msgctxt ""
-"breaknumberoption.ui\n"
-"BreakNumberOption\n"
-"title\n"
-"string.text"
-msgid "Hyphenation"
-msgstr "Silbentrennung"
-
-#: breaknumberoption.ui
-msgctxt ""
-"breaknumberoption.ui\n"
-"beforelabel\n"
-"label\n"
-"string.text"
-msgid "Characters Before Break"
-msgstr "Zeichen vor Umbruch"
-
-#: breaknumberoption.ui
-msgctxt ""
-"breaknumberoption.ui\n"
-"afterlabel\n"
-"label\n"
-"string.text"
-msgid "Characters After Break"
-msgstr "Zeichen nach Umbruch"
-
-#: breaknumberoption.ui
-msgctxt ""
-"breaknumberoption.ui\n"
-"minimallabel\n"
-"label\n"
-"string.text"
-msgid "Minimal Word Length"
-msgstr "Minimale Wortlänge"
-
-#: calloutdialog.ui
-msgctxt ""
-"calloutdialog.ui\n"
-"CalloutDialog\n"
-"title\n"
-"string.text"
-msgid "Position and Size"
-msgstr "Position und Größe"
-
-#: calloutdialog.ui
-msgctxt ""
-"calloutdialog.ui\n"
-"RID_SVXPAGE_POSITION_SIZE\n"
-"label\n"
-"string.text"
-msgid "Position and Size"
-msgstr "Position und Größe"
-
-#: calloutdialog.ui
-msgctxt ""
-"calloutdialog.ui\n"
-"RID_SVXPAGE_SWPOSSIZE\n"
-"label\n"
-"string.text"
-msgid "Position and Size"
-msgstr "Position und Größe"
-
-#: calloutdialog.ui
-msgctxt ""
-"calloutdialog.ui\n"
-"RID_SVXPAGE_CAPTION\n"
-"label\n"
-"string.text"
-msgid "Callout"
-msgstr "Legende"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Extension:"
-msgstr "A_nsatz:"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"lengthft\n"
-"label\n"
-"string.text"
-msgid "_Length:"
-msgstr "_Länge:"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"optimal\n"
-"label\n"
-"string.text"
-msgid "_Optimal"
-msgstr "_Optimal"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"positionft\n"
-"label\n"
-"string.text"
-msgid "_Position:"
-msgstr "_Position:"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"byft\n"
-"label\n"
-"string.text"
-msgid "_By:"
-msgstr "_Um:"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"position\n"
-"0\n"
-"stringlist.text"
-msgid "Top"
-msgstr "Oben"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"position\n"
-"1\n"
-"stringlist.text"
-msgid "Middle"
-msgstr "Mitte"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"position\n"
-"2\n"
-"stringlist.text"
-msgid "Bottom"
-msgstr "Unten"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"position\n"
-"3\n"
-"stringlist.text"
-msgid "Left"
-msgstr "Links"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"position\n"
-"4\n"
-"stringlist.text"
-msgid "Middle"
-msgstr "Mitte"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"position\n"
-"5\n"
-"stringlist.text"
-msgid "Right"
-msgstr "Rechts"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Spacing:"
-msgstr "A_bstand:"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"linetypes\n"
-"0\n"
-"stringlist.text"
-msgid "Straight Line"
-msgstr "Gerade Linie"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"linetypes\n"
-"1\n"
-"stringlist.text"
-msgid "Angled Line"
-msgstr "Abgewinkelte Linie"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"linetypes\n"
-"2\n"
-"stringlist.text"
-msgid "Angled Connector Line"
-msgstr "Abgewinkelte Linie einfach geknickt"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"liststore1\n"
-"0\n"
-"stringlist.text"
-msgid "Optimal"
-msgstr "Optimal"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"liststore1\n"
-"1\n"
-"stringlist.text"
-msgid "From top"
-msgstr "Von oben"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"liststore1\n"
-"2\n"
-"stringlist.text"
-msgid "From left"
-msgstr "Von links"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"liststore1\n"
-"3\n"
-"stringlist.text"
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: calloutpage.ui
-msgctxt ""
-"calloutpage.ui\n"
-"liststore1\n"
-"4\n"
-"stringlist.text"
-msgid "Vertical"
-msgstr "Vertikal"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"labelDegrees\n"
-"label\n"
-"string.text"
-msgid "_Degrees:"
-msgstr "_Winkel:"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"labelRefEdge\n"
-"label\n"
-"string.text"
-msgid "_Reference edge:"
-msgstr "_Bezugskante:"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"checkVertStack\n"
-"label\n"
-"string.text"
-msgid "Vertically s_tacked"
-msgstr "Senkrecht g_estapelt"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"checkAsianMode\n"
-"label\n"
-"string.text"
-msgid "Asian layout _mode"
-msgstr "Asiatischer _Layoutmodus"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"labelTextOrient\n"
-"label\n"
-"string.text"
-msgid "Text Orientation"
-msgstr "Schreibrichtung"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"checkWrapTextAuto\n"
-"label\n"
-"string.text"
-msgid "_Wrap text automatically"
-msgstr "Automatischer Zeilenumbru_ch"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"checkShrinkFitCellSize\n"
-"label\n"
-"string.text"
-msgid "_Shrink to fit cell size"
-msgstr "_An Zellgröße anpassen"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"checkHyphActive\n"
-"label\n"
-"string.text"
-msgid "Hyphenation _active"
-msgstr "Silben_trennung aktiv"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"LabelTxtDir\n"
-"label\n"
-"string.text"
-msgid "Te_xt direction:"
-msgstr "Te_xtfluss:"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"labelProperties\n"
-"label\n"
-"string.text"
-msgid "Properties"
-msgstr "Eigenschaften"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"labelHorzAlign\n"
-"label\n"
-"string.text"
-msgid "Hori_zontal"
-msgstr "_Horizontal"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"labelVertAlign\n"
-"label\n"
-"string.text"
-msgid "_Vertical"
-msgstr "_Vertikal"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"labelIndent\n"
-"label\n"
-"string.text"
-msgid "I_ndent"
-msgstr "Einzu_g"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"LabelTextAlig\n"
-"label\n"
-"string.text"
-msgid "Text Alignment"
-msgstr "Textausrichtung"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"labelSTR_BOTTOMLOCK\n"
-"label\n"
-"string.text"
-msgid "Text Extension From Lower Cell Border"
-msgstr "Textausdehnung von unterer Zellkante aus."
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"labelSTR_TOPLOCK\n"
-"label\n"
-"string.text"
-msgid "Text Extension From Upper Cell Border"
-msgstr "Textausdehnung von oberer Zellkante aus."
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"labelSTR_CELLLOCK\n"
-"label\n"
-"string.text"
-msgid "Text Extension Inside Cell"
-msgstr "Textausdehnung nur innerhalb der Zelle."
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"labelABCD\n"
-"label\n"
-"string.text"
-msgid "ABCD"
-msgstr "ABCD"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"liststoreHorzAlign\n"
-"0\n"
-"stringlist.text"
-msgid "Default"
-msgstr "Standard"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"liststoreHorzAlign\n"
-"1\n"
-"stringlist.text"
-msgid "Left"
-msgstr "Links"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"liststoreHorzAlign\n"
-"2\n"
-"stringlist.text"
-msgid "Center"
-msgstr "Zentriert"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"liststoreHorzAlign\n"
-"3\n"
-"stringlist.text"
-msgid "Right"
-msgstr "Rechts"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"liststoreHorzAlign\n"
-"4\n"
-"stringlist.text"
-msgid "Justified"
-msgstr "Blocksatz"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"liststoreHorzAlign\n"
-"5\n"
-"stringlist.text"
-msgid "Filled"
-msgstr "Ausgefüllt"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"liststoreHorzAlign\n"
-"6\n"
-"stringlist.text"
-msgid "Distributed"
-msgstr "Verteilt"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"liststoreVertAlign\n"
-"0\n"
-"stringlist.text"
-msgid "Default"
-msgstr "Standard"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"liststoreVertAlign\n"
-"1\n"
-"stringlist.text"
-msgid "Top"
-msgstr "Oben"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"liststoreVertAlign\n"
-"2\n"
-"stringlist.text"
-msgid "Middle"
-msgstr "Mitte"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"liststoreVertAlign\n"
-"3\n"
-"stringlist.text"
-msgid "Bottom"
-msgstr "Unten"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"liststoreVertAlign\n"
-"4\n"
-"stringlist.text"
-msgid "Justified"
-msgstr "Blocksatz"
-
-#: cellalignment.ui
-msgctxt ""
-"cellalignment.ui\n"
-"liststoreVertAlign\n"
-"5\n"
-"stringlist.text"
-msgid "Distributed"
-msgstr "Verteilt"
-
-#: certdialog.ui
-msgctxt ""
-"certdialog.ui\n"
-"CertDialog\n"
-"title\n"
-"string.text"
-msgid "Certificate Path"
-msgstr "Zertifizierungspfad"
-
-#: certdialog.ui
-msgctxt ""
-"certdialog.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "_Add..."
-msgstr "_Hinzufügen..."
-
-#: certdialog.ui
-msgctxt ""
-"certdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:"
-msgstr "Wählen Sie aus oder erstellen Sie das korrekte Verzeichnis für das Network-Security-Services-Zertifikat, das für die digitalen Signaturen benutzt werden soll:"
-
-#: certdialog.ui
-msgctxt ""
-"certdialog.ui\n"
-"manual\n"
-"label\n"
-"string.text"
-msgid "manual"
-msgstr "Manuell"
-
-#: certdialog.ui
-msgctxt ""
-"certdialog.ui\n"
-"profile\n"
-"label\n"
-"string.text"
-msgid "Profile"
-msgstr "Profil"
-
-#: certdialog.ui
-msgctxt ""
-"certdialog.ui\n"
-"dir\n"
-"label\n"
-"string.text"
-msgid "Directory"
-msgstr "Verzeichnis"
-
-#: certdialog.ui
-msgctxt ""
-"certdialog.ui\n"
-"certdir\n"
-"label\n"
-"string.text"
-msgid "Select a Certificate directory"
-msgstr "Wählen Sie ein Zertifizierungsverzeichnis aus"
-
-#: certdialog.ui
-msgctxt ""
-"certdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Certificate Path"
-msgstr "Zertifizierungspfad"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"westlangft-nocjk\n"
-"label\n"
-"string.text"
-msgid "Language:"
-msgstr "Sprache:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"westfontnameft-nocjk\n"
-"label\n"
-"string.text"
-msgid "Family:"
-msgstr "Familie:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"weststyleft-nocjk\n"
-"label\n"
-"string.text"
-msgid "Style:"
-msgstr "Stil:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"westsizeft-nocjk\n"
-"label\n"
-"string.text"
-msgid "Size:"
-msgstr "Größe:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"westfontnameft-cjk\n"
-"label\n"
-"string.text"
-msgid "Family:"
-msgstr "Familie:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"weststyleft-cjk\n"
-"label\n"
-"string.text"
-msgid "Style:"
-msgstr "Stil:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"westsizeft-cjk\n"
-"label\n"
-"string.text"
-msgid "Size:"
-msgstr "Größe:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"westlangft-cjk\n"
-"label\n"
-"string.text"
-msgid "Language:"
-msgstr "Sprache:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Western Text Font"
-msgstr "Schriftart für westlichen Text"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"eastfontnameft\n"
-"label\n"
-"string.text"
-msgid "Family:"
-msgstr "Familie:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"eaststyleft\n"
-"label\n"
-"string.text"
-msgid "Style:"
-msgstr "Stil:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"eastsizeft\n"
-"label\n"
-"string.text"
-msgid "Size:"
-msgstr "Größe:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"eastlangft\n"
-"label\n"
-"string.text"
-msgid "Language:"
-msgstr "Sprache:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Asian Text Font"
-msgstr "Schriftart für asiatischen Text"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"ctlfontnameft\n"
-"label\n"
-"string.text"
-msgid "Family:"
-msgstr "Familie:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"ctlstyleft\n"
-"label\n"
-"string.text"
-msgid "Style:"
-msgstr "Stil:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"ctlsizeft\n"
-"label\n"
-"string.text"
-msgid "Size:"
-msgstr "Größe:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"ctllangft\n"
-"label\n"
-"string.text"
-msgid "Language:"
-msgstr "Sprache:"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "CTL Font"
-msgstr "Schriftart für CTL"
-
-#: charnamepage.ui
-msgctxt ""
-"charnamepage.ui\n"
-"preview\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"docboundaries\n"
-"label\n"
-"string.text"
-msgid "Text boundaries"
-msgstr "Textbegrenzungen"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"doccolor\n"
-"label\n"
-"string.text"
-msgid "Document background"
-msgstr "Dokumenthintergrund"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"general\n"
-"label\n"
-"string.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"appback\n"
-"label\n"
-"string.text"
-msgid "Application background"
-msgstr "Hintergrund der Anwendung"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"objboundaries\n"
-"label\n"
-"string.text"
-msgid "Object boundaries"
-msgstr "Objektumrandungen"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"tblboundaries\n"
-"label\n"
-"string.text"
-msgid "Table boundaries"
-msgstr "Tabellenbegrenzungen"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"font\n"
-"label\n"
-"string.text"
-msgid "Font color"
-msgstr "Schriftfarbe"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"unvisitedlinks\n"
-"label\n"
-"string.text"
-msgid "Unvisited links"
-msgstr "Unbesuchte Verknüpfungen"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"visitedlinks\n"
-"label\n"
-"string.text"
-msgid "Visited links"
-msgstr "Besuchte Verknüpfungen"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"autospellcheck\n"
-"label\n"
-"string.text"
-msgid "AutoSpellcheck"
-msgstr "AutoRechtschreibprüfung"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"smarttags\n"
-"label\n"
-"string.text"
-msgid "Smart Tags"
-msgstr "Geeignete Schlagwörter"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"writer\n"
-"label\n"
-"string.text"
-msgid "Text Document"
-msgstr "Textdokument"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"writergrid\n"
-"label\n"
-"string.text"
-msgid "Grid"
-msgstr "Gitter"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"script\n"
-"label\n"
-"string.text"
-msgid "Script Indicator"
-msgstr "Skriptanzeiger"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"field\n"
-"label\n"
-"string.text"
-msgid "Field shadings"
-msgstr "Feldhinterlegungen"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"index\n"
-"label\n"
-"string.text"
-msgid "Index and table shadings"
-msgstr "Verzeichnishinterlegungen"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"section\n"
-"label\n"
-"string.text"
-msgid "Section boundaries"
-msgstr "Bereichsumrandungen"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"hdft\n"
-"label\n"
-"string.text"
-msgid "Headers and Footer delimiter"
-msgstr "Kopf- und Fußzeilen Trennzeichen"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"pagebreak\n"
-"label\n"
-"string.text"
-msgid "Page and column breaks"
-msgstr "Seiten- und Spaltenumbrüche"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"direct\n"
-"label\n"
-"string.text"
-msgid "Direct Cursor"
-msgstr "Direkt-Cursor"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"html\n"
-"label\n"
-"string.text"
-msgid "HTML Document"
-msgstr "HTML-Dokument"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"sgml\n"
-"label\n"
-"string.text"
-msgid "SGML syntax highlighting"
-msgstr "SGML Syntax-Hervorhebung"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"htmlcomment\n"
-"label\n"
-"string.text"
-msgid "Comment highlighting"
-msgstr "Kommentar-Hervorhebung"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"htmlkeyword\n"
-"label\n"
-"string.text"
-msgid "Keyword highlighting"
-msgstr "Schlüsselwort-Hervorhebung"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"unknown\n"
-"label\n"
-"string.text"
-msgid "Text"
-msgstr "Text"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"calc\n"
-"label\n"
-"string.text"
-msgid "Spreadsheet"
-msgstr "Tabellendokument"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"calcgrid\n"
-"label\n"
-"string.text"
-msgid "Grid lines"
-msgstr "Gitterlinien"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"brk\n"
-"label\n"
-"string.text"
-msgid "Page breaks"
-msgstr "Seitenumbrüche"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"brkmanual\n"
-"label\n"
-"string.text"
-msgid "Manual page breaks"
-msgstr "Manuelle Seitenumbrüche"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"brkauto\n"
-"label\n"
-"string.text"
-msgid "Automatic page breaks"
-msgstr "Automatische Seitenumbrüche"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"det\n"
-"label\n"
-"string.text"
-msgid "Detective"
-msgstr "Detektiv"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"deterror\n"
-"label\n"
-"string.text"
-msgid "Detective error"
-msgstr "Detektiv-Fehler"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"ref\n"
-"label\n"
-"string.text"
-msgid "References"
-msgstr "Bezüge"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"notes\n"
-"label\n"
-"string.text"
-msgid "Notes background"
-msgstr "Notizhintergrund"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"draw\n"
-"label\n"
-"string.text"
-msgid "Drawing / Presentation"
-msgstr "Zeichnung / Präsentation"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"drawgrid\n"
-"label\n"
-"string.text"
-msgid "Grid"
-msgstr "Gitter"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"basic\n"
-"label\n"
-"string.text"
-msgid "Basic Syntax Highlighting"
-msgstr "Basic Syntaxhervorhebung"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"basicid\n"
-"label\n"
-"string.text"
-msgid "Identifier"
-msgstr "Bezeichner"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"basiccomment\n"
-"label\n"
-"string.text"
-msgid "Comment"
-msgstr "Kommentar"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"basicnumber\n"
-"label\n"
-"string.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"basicstring\n"
-"label\n"
-"string.text"
-msgid "String"
-msgstr "Text"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"basicop\n"
-"label\n"
-"string.text"
-msgid "Operator"
-msgstr "Operator"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"basickeyword\n"
-"label\n"
-"string.text"
-msgid "Reserved expression"
-msgstr "Reservierter Ausdruck"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"error\n"
-"label\n"
-"string.text"
-msgid "Error"
-msgstr "Fehler"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"sql\n"
-"label\n"
-"string.text"
-msgid "SQL Syntax Highlighting"
-msgstr "SQL Syntax-Hervorhebung"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"sqlid\n"
-"label\n"
-"string.text"
-msgid "Identifier"
-msgstr "Bezeichner"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"sqlnumber\n"
-"label\n"
-"string.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"sqlstring\n"
-"label\n"
-"string.text"
-msgid "String"
-msgstr "Text"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"sqlop\n"
-"label\n"
-"string.text"
-msgid "Operator"
-msgstr "Operator"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"sqlkeyword\n"
-"label\n"
-"string.text"
-msgid "Keyword"
-msgstr "Schlüsselwort"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"sqlparam\n"
-"label\n"
-"string.text"
-msgid "Parameter"
-msgstr "Parameter"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"sqlcomment\n"
-"label\n"
-"string.text"
-msgid "Comment"
-msgstr "Kommentar"
-
-#: colorconfigwin.ui
-msgctxt ""
-"colorconfigwin.ui\n"
-"shadows\n"
-"label\n"
-"string.text"
-msgid "Shadows"
-msgstr "Schatten"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label21\n"
-"label\n"
-"string.text"
-msgid "Palette:"
-msgstr "Palette:"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label20\n"
-"label\n"
-"string.text"
-msgid "Recent Colors"
-msgstr "Zuletzt benutzte Farben"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"RGB\n"
-"label\n"
-"string.text"
-msgid "RGB"
-msgstr "RGB"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"CMYK\n"
-"label\n"
-"string.text"
-msgid "CMYK"
-msgstr "CMYK"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "Delete"
-msgstr "Löschen"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label22\n"
-"label\n"
-"string.text"
-msgid "Custom Palette"
-msgstr "Palette anpassen"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Colors"
-msgstr "Farben"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"oldpreview-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Old Color"
-msgstr "Alte Farbe"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "B"
-msgstr "B"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "G"
-msgstr "G"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "R"
-msgstr "R"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label18\n"
-"label\n"
-"string.text"
-msgid "Hex"
-msgstr "Hex"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "_C"
-msgstr "_C"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label16\n"
-"label\n"
-"string.text"
-msgid "_K"
-msgstr "_K"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label17\n"
-"label\n"
-"string.text"
-msgid "_Y"
-msgstr "_Y"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label15\n"
-"label\n"
-"string.text"
-msgid "_M"
-msgstr "_M"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Active"
-msgstr "Aktive"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"newpreview-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "New Color"
-msgstr "Neue Farbe"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"B_custom\n"
-"primary_icon_tooltip_text\n"
-"string.text"
-msgid "Blue"
-msgstr "Blau"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"R_custom\n"
-"primary_icon_tooltip_text\n"
-"string.text"
-msgid "Red"
-msgstr "Rot"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_B"
-msgstr "_B"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_G"
-msgstr "_G"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_R"
-msgstr "_R"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"G_custom\n"
-"primary_icon_tooltip_text\n"
-"string.text"
-msgid "Green"
-msgstr "Grün"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label19\n"
-"label\n"
-"string.text"
-msgid "_Hex"
-msgstr "_Hex"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label11\n"
-"label\n"
-"string.text"
-msgid "_C"
-msgstr "_C"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label12\n"
-"label\n"
-"string.text"
-msgid "_M"
-msgstr "_M"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label13\n"
-"label\n"
-"string.text"
-msgid "_K"
-msgstr "_K"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label14\n"
-"label\n"
-"string.text"
-msgid "_Y"
-msgstr "_Y"
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"edit\n"
-"label\n"
-"string.text"
-msgid "Pick"
-msgstr "Auswählen..."
-
-#: colorpage.ui
-msgctxt ""
-"colorpage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "New"
-msgstr "Neu"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"ColorPicker\n"
-"title\n"
-"string.text"
-msgid "Pick a Color"
-msgstr "Farbauswahl"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"redRadiobutton\n"
-"label\n"
-"string.text"
-msgid "_Red:"
-msgstr "_Rot:"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"greenRadiobutton\n"
-"label\n"
-"string.text"
-msgid "_Green:"
-msgstr "_Grün:"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"blueRadiobutton\n"
-"label\n"
-"string.text"
-msgid "_Blue:"
-msgstr "_Blau:"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Hex _#:"
-msgstr "Hex _#:"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "RGB"
-msgstr "RGB"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"hueRadiobutton\n"
-"label\n"
-"string.text"
-msgid "H_ue:"
-msgstr "_Farbton:"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"satRadiobutton\n"
-"label\n"
-"string.text"
-msgid "_Saturation:"
-msgstr "_Sättigung:"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"brightRadiobutton\n"
-"label\n"
-"string.text"
-msgid "Bright_ness:"
-msgstr "H_elligkeit:"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "HSB"
-msgstr "HSB"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "_Cyan:"
-msgstr "_Cyan:"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "_Magenta:"
-msgstr "_Magenta:"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "_Yellow:"
-msgstr "_Gelb (Yellow):"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "_Key:"
-msgstr "_Key:"
-
-#: colorpickerdialog.ui
-msgctxt ""
-"colorpickerdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "CMYK"
-msgstr "CMYK"
-
-#: comment.ui
-msgctxt ""
-"comment.ui\n"
-"CommentDialog\n"
-"title\n"
-"string.text"
-msgid "Insert Comment"
-msgstr "Kommentar einfügen"
-
-#: comment.ui
-msgctxt ""
-"comment.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Author"
-msgstr "Autor"
-
-#: comment.ui
-msgctxt ""
-"comment.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Text"
-msgstr "Initialen_text"
-
-#: comment.ui
-msgctxt ""
-"comment.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "_Insert"
-msgstr "_Einfügen"
-
-#: comment.ui
-msgctxt ""
-"comment.ui\n"
-"author\n"
-"label\n"
-"string.text"
-msgid "Author"
-msgstr "Autor"
-
-#: comment.ui
-msgctxt ""
-"comment.ui\n"
-"alttitle\n"
-"label\n"
-"string.text"
-msgid "Edit Comment"
-msgstr "Kommentar bearbeiten"
-
-#: comment.ui
-msgctxt ""
-"comment.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Contents"
-msgstr "Inhalt"
-
-#: connectortabpage.ui
-msgctxt ""
-"connectortabpage.ui\n"
-"FT_TYPE\n"
-"label\n"
-"string.text"
-msgid "_Type:"
-msgstr "_Typ:"
-
-#: connectortabpage.ui
-msgctxt ""
-"connectortabpage.ui\n"
-"FT_LINE_1\n"
-"label\n"
-"string.text"
-msgid "Line _1:"
-msgstr "Linie _1:"
-
-#: connectortabpage.ui
-msgctxt ""
-"connectortabpage.ui\n"
-"FT_LINE_2\n"
-"label\n"
-"string.text"
-msgid "Line _2:"
-msgstr "Linie _2:"
-
-#: connectortabpage.ui
-msgctxt ""
-"connectortabpage.ui\n"
-"FT_LINE_3\n"
-"label\n"
-"string.text"
-msgid "Line _3:"
-msgstr "Linie _3:"
-
-#: connectortabpage.ui
-msgctxt ""
-"connectortabpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Line Skew"
-msgstr "Linienversatz"
-
-#: connectortabpage.ui
-msgctxt ""
-"connectortabpage.ui\n"
-"FT_HORZ_1\n"
-"label\n"
-"string.text"
-msgid "_Begin horizontal:"
-msgstr "Anfang h_orizontal:"
-
-#: connectortabpage.ui
-msgctxt ""
-"connectortabpage.ui\n"
-"FT_HORZ_2\n"
-"label\n"
-"string.text"
-msgid "End _horizontal:"
-msgstr "Ende ho_rizontal:"
-
-#: connectortabpage.ui
-msgctxt ""
-"connectortabpage.ui\n"
-"FT_VERT_1\n"
-"label\n"
-"string.text"
-msgid "Begin _vertical:"
-msgstr "Anfang _vertikal:"
-
-#: connectortabpage.ui
-msgctxt ""
-"connectortabpage.ui\n"
-"FT_VERT_2\n"
-"label\n"
-"string.text"
-msgid "_End vertical:"
-msgstr "Ende v_ertikal:"
-
-#: connectortabpage.ui
-msgctxt ""
-"connectortabpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Line Spacing"
-msgstr "Linienabstand"
-
-#: connectortabpage.ui
-msgctxt ""
-"connectortabpage.ui\n"
-"CTL_PREVIEW\n"
-"tooltip_text\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: connectortabpage.ui
-msgctxt ""
-"connectortabpage.ui\n"
-"CTL_PREVIEW\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Example"
-msgstr "Beispiel"
-
-#: connpooloptions.ui
-msgctxt ""
-"connpooloptions.ui\n"
-"connectionpooling\n"
-"label\n"
-"string.text"
-msgid "Connection pooling enabled"
-msgstr "Verbindungen aufbewahren"
-
-#: connpooloptions.ui
-msgctxt ""
-"connpooloptions.ui\n"
-"driverslabel\n"
-"label\n"
-"string.text"
-msgid "Drivers known in %PRODUCTNAME"
-msgstr "In %PRODUCTNAME bekannte Treiber"
-
-#: connpooloptions.ui
-msgctxt ""
-"connpooloptions.ui\n"
-"driverlabel\n"
-"label\n"
-"string.text"
-msgid "Current driver:"
-msgstr "Aktueller Treiber:"
-
-#: connpooloptions.ui
-msgctxt ""
-"connpooloptions.ui\n"
-"enablepooling\n"
-"label\n"
-"string.text"
-msgid "Enable pooling for this driver"
-msgstr "Verbindungen dieses Treibers aufbewahren"
-
-#: connpooloptions.ui
-msgctxt ""
-"connpooloptions.ui\n"
-"timeoutlabel\n"
-"label\n"
-"string.text"
-msgid "_Timeout (seconds)"
-msgstr "_Verfallszeit (Sekunden)"
-
-#: connpooloptions.ui
-msgctxt ""
-"connpooloptions.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Connection Pool"
-msgstr "Verbindungspool"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"keepscale\n"
-"label\n"
-"string.text"
-msgid "Keep _scale"
-msgstr "_Skalierung beibehalten"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"keepsize\n"
-"label\n"
-"string.text"
-msgid "Keep image si_ze"
-msgstr "Bildgröße beibehal_ten"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Left:"
-msgstr "_Links:"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Right:"
-msgstr "_Rechts:"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Top:"
-msgstr "_Oben:"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "_Bottom:"
-msgstr "_Unten:"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Crop"
-msgstr "Zuschneiden"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "_Width:"
-msgstr "_Breite:"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "_Height:"
-msgstr "Höh_e:"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "Scale"
-msgstr "Skalierung"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "_Width:"
-msgstr "_Breite:"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "_Height:"
-msgstr "Höh_e:"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"label11\n"
-"label\n"
-"string.text"
-msgid "Image Size"
-msgstr "Bildgröße"
-
-#: croppage.ui
-msgctxt ""
-"croppage.ui\n"
-"origsize\n"
-"label\n"
-"string.text"
-msgid "_Original Size"
-msgstr "Ori_ginalgröße"
-
-#: cuiimapdlg.ui
-msgctxt ""
-"cuiimapdlg.ui\n"
-"IMapDialog\n"
-"title\n"
-"string.text"
-msgid "Properties"
-msgstr "Eigenschaften"
-
-#: cuiimapdlg.ui
-msgctxt ""
-"cuiimapdlg.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_URL:"
-msgstr "_URL:"
-
-#: cuiimapdlg.ui
-msgctxt ""
-"cuiimapdlg.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "F_rame:"
-msgstr "_Rahmen:"
-
-#: cuiimapdlg.ui
-msgctxt ""
-"cuiimapdlg.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Name:"
-msgstr "_Name:"
-
-#: cuiimapdlg.ui
-msgctxt ""
-"cuiimapdlg.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Alternative _text:"
-msgstr "_Alternativtext:"
-
-#: cuiimapdlg.ui
-msgctxt ""
-"cuiimapdlg.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "_Description:"
-msgstr "_Beschreibung:"
-
-#: customizedialog.ui
-msgctxt ""
-"customizedialog.ui\n"
-"CustomizeDialog\n"
-"title\n"
-"string.text"
-msgid "Customize"
-msgstr "Anpassen"
-
-#: customizedialog.ui
-msgctxt ""
-"customizedialog.ui\n"
-"menus\n"
-"label\n"
-"string.text"
-msgid "Menus"
-msgstr "Menüs"
-
-#: customizedialog.ui
-msgctxt ""
-"customizedialog.ui\n"
-"contextmenus\n"
-"label\n"
-"string.text"
-msgid "Context Menus"
-msgstr "Kontextmenüs"
-
-#: customizedialog.ui
-msgctxt ""
-"customizedialog.ui\n"
-"keyboard\n"
-"label\n"
-"string.text"
-msgid "Keyboard"
-msgstr "Tastatur"
-
-#: customizedialog.ui
-msgctxt ""
-"customizedialog.ui\n"
-"toolbars\n"
-"label\n"
-"string.text"
-msgid "Toolbars"
-msgstr "Symbolleisten"
-
-#: customizedialog.ui
-msgctxt ""
-"customizedialog.ui\n"
-"events\n"
-"label\n"
-"string.text"
-msgid "Events"
-msgstr "Ereignisse"
-
-#: databaselinkdialog.ui
-msgctxt ""
-"databaselinkdialog.ui\n"
-"DatabaseLinkDialog\n"
-"title\n"
-"string.text"
-msgid "Create Database Link"
-msgstr "Neue Datenbankverknüpfung anlegen"
-
-#: databaselinkdialog.ui
-msgctxt ""
-"databaselinkdialog.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "Browse..."
-msgstr "Durchsuchen..."
-
-#: databaselinkdialog.ui
-msgctxt ""
-"databaselinkdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Database file:"
-msgstr "_Datenbankdatei:"
-
-#: databaselinkdialog.ui
-msgctxt ""
-"databaselinkdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Registered _name:"
-msgstr "Re_gistrierter Name:"
-
-#: databaselinkdialog.ui
-msgctxt ""
-"databaselinkdialog.ui\n"
-"alttitle\n"
-"label\n"
-"string.text"
-msgid "Edit Database Link"
-msgstr "Datenbankverknüpfung bearbeiten"
-
-#: dbregisterpage.ui
-msgctxt ""
-"dbregisterpage.ui\n"
-"new\n"
-"label\n"
-"string.text"
-msgid "_New..."
-msgstr "_Neu..."
-
-#: dbregisterpage.ui
-msgctxt ""
-"dbregisterpage.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete"
-msgstr "_Löschen"
-
-#: dbregisterpage.ui
-msgctxt ""
-"dbregisterpage.ui\n"
-"edit\n"
-"label\n"
-"string.text"
-msgid "_Edit..."
-msgstr "_Bearbeiten..."
-
-#: dbregisterpage.ui
-msgctxt ""
-"dbregisterpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Registered Databases"
-msgstr "Registrierte Datenbanken"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"FT_LINE_DIST\n"
-"label\n"
-"string.text"
-msgid "Line _distance:"
-msgstr "L_inienabstand:"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"FT_HELPLINE_OVERHANG\n"
-"label\n"
-"string.text"
-msgid "Guide _overhang:"
-msgstr "Hilfslinienüberhan_g:"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"FT_HELPLINE_DIST\n"
-"label\n"
-"string.text"
-msgid "_Guide distance:"
-msgstr "Hilfslinienabstan_d:"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"FT_HELPLINE1_LEN\n"
-"label\n"
-"string.text"
-msgid "_Left guide:"
-msgstr "_Linke Hilfslinie:"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"FT_HELPLINE2_LEN\n"
-"label\n"
-"string.text"
-msgid "_Right guide:"
-msgstr "_Rechte Hilfslinie:"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"FT_DECIMALPLACES\n"
-"label\n"
-"string.text"
-msgid "Decimal _places:"
-msgstr "Nach_kommastellen:"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"TSB_BELOW_REF_EDGE\n"
-"label\n"
-"string.text"
-msgid "Measure _below object"
-msgstr "Maßlinie unterhal_b des Objekts"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Line"
-msgstr "Linie"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"FT_POSITION\n"
-"label\n"
-"string.text"
-msgid "_Text position"
-msgstr "_Textposition"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"TSB_AUTOPOSV\n"
-"label\n"
-"string.text"
-msgid "_AutoVertical"
-msgstr "Automatisch _Vertikal"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"TSB_AUTOPOSH\n"
-"label\n"
-"string.text"
-msgid "A_utoHorizontal"
-msgstr "Automatisch Hori_zontal"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"TSB_PARALLEL\n"
-"label\n"
-"string.text"
-msgid "_Parallel to line"
-msgstr "_Parallel zur Hilfslinie"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"TSB_SHOW_UNIT\n"
-"label\n"
-"string.text"
-msgid "Show _measurement units"
-msgstr "_Maßeinheiten anzeigen"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Legend"
-msgstr "Beschriftung"
-
-#: dimensionlinestabpage.ui
-msgctxt ""
-"dimensionlinestabpage.ui\n"
-"STR_MEASURE_AUTOMATIC\n"
-"label\n"
-"string.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: distributiondialog.ui
-msgctxt ""
-"distributiondialog.ui\n"
-"DistributionDialog\n"
-"title\n"
-"string.text"
-msgid "Distribution"
-msgstr "Verteilung"
-
-#: distributionpage.ui
-msgctxt ""
-"distributionpage.ui\n"
-"hornone\n"
-"label\n"
-"string.text"
-msgid "_None"
-msgstr "_Keine"
-
-#: distributionpage.ui
-msgctxt ""
-"distributionpage.ui\n"
-"horleft\n"
-"label\n"
-"string.text"
-msgid "_Left"
-msgstr "_Links"
-
-#: distributionpage.ui
-msgctxt ""
-"distributionpage.ui\n"
-"horcenter\n"
-"label\n"
-"string.text"
-msgid "_Center"
-msgstr "Z_entriert"
-
-#: distributionpage.ui
-msgctxt ""
-"distributionpage.ui\n"
-"horright\n"
-"label\n"
-"string.text"
-msgid "_Right"
-msgstr "_Rechts"
-
-#: distributionpage.ui
-msgctxt ""
-"distributionpage.ui\n"
-"hordistance\n"
-"label\n"
-"string.text"
-msgid "_Spacing"
-msgstr "Ab_stand"
-
-#: distributionpage.ui
-msgctxt ""
-"distributionpage.ui\n"
-"label\n"
-"label\n"
-"string.text"
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: distributionpage.ui
-msgctxt ""
-"distributionpage.ui\n"
-"vernone\n"
-"label\n"
-"string.text"
-msgid "N_one"
-msgstr "Ke_ine"
-
-#: distributionpage.ui
-msgctxt ""
-"distributionpage.ui\n"
-"vertop\n"
-"label\n"
-"string.text"
-msgid "_Top"
-msgstr "_Oben"
-
-#: distributionpage.ui
-msgctxt ""
-"distributionpage.ui\n"
-"vercenter\n"
-"label\n"
-"string.text"
-msgid "C_enter"
-msgstr "Ze_ntriert"
-
-#: distributionpage.ui
-msgctxt ""
-"distributionpage.ui\n"
-"verdistance\n"
-"label\n"
-"string.text"
-msgid "S_pacing"
-msgstr "A_bstand"
-
-#: distributionpage.ui
-msgctxt ""
-"distributionpage.ui\n"
-"verbottom\n"
-"label\n"
-"string.text"
-msgid "_Bottom"
-msgstr "_Unten"
-
-#: distributionpage.ui
-msgctxt ""
-"distributionpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Vertical"
-msgstr "Vertikal"
-
-#: editdictionarydialog.ui
-msgctxt ""
-"editdictionarydialog.ui\n"
-"EditDictionaryDialog\n"
-"title\n"
-"string.text"
-msgid "Edit Custom Dictionary"
-msgstr "Benutzerwörterbuch bearbeiten"
-
-#: editdictionarydialog.ui
-msgctxt ""
-"editdictionarydialog.ui\n"
-"book_label\n"
-"label\n"
-"string.text"
-msgid "_Book:"
-msgstr "_Buch:"
-
-#: editdictionarydialog.ui
-msgctxt ""
-"editdictionarydialog.ui\n"
-"lang_label\n"
-"label\n"
-"string.text"
-msgid "_Language:"
-msgstr "_Sprache:"
-
-#: editdictionarydialog.ui
-msgctxt ""
-"editdictionarydialog.ui\n"
-"word_label\n"
-"label\n"
-"string.text"
-msgid "_Word"
-msgstr "_Wort"
-
-#: editdictionarydialog.ui
-msgctxt ""
-"editdictionarydialog.ui\n"
-"replace_label\n"
-"label\n"
-"string.text"
-msgid "_Replace By"
-msgstr "_Ersetzen durch"
-
-#: editdictionarydialog.ui
-msgctxt ""
-"editdictionarydialog.ui\n"
-"newreplace\n"
-"label\n"
-"string.text"
-msgid "_New"
-msgstr "_Neu"
-
-#: editdictionarydialog.ui
-msgctxt ""
-"editdictionarydialog.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete"
-msgstr "_Löschen"
-
-#: editmodulesdialog.ui
-msgctxt ""
-"editmodulesdialog.ui\n"
-"EditModulesDialog\n"
-"title\n"
-"string.text"
-msgid "Edit Modules"
-msgstr "Module bearbeiten"
-
-#: editmodulesdialog.ui
-msgctxt ""
-"editmodulesdialog.ui\n"
-"moredictslink\n"
-"label\n"
-"string.text"
-msgid "Get more dictionaries online..."
-msgstr "Hier erhalten Sie online weitere Wörterbücher..."
-
-#: editmodulesdialog.ui
-msgctxt ""
-"editmodulesdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Language:"
-msgstr "Sprache:"
-
-#: editmodulesdialog.ui
-msgctxt ""
-"editmodulesdialog.ui\n"
-"up\n"
-"label\n"
-"string.text"
-msgid "Move Up"
-msgstr "Nach oben verschieben"
-
-#: editmodulesdialog.ui
-msgctxt ""
-"editmodulesdialog.ui\n"
-"down\n"
-"label\n"
-"string.text"
-msgid "Move Down"
-msgstr "Nach unten verschieben"
-
-#: editmodulesdialog.ui
-msgctxt ""
-"editmodulesdialog.ui\n"
-"back\n"
-"label\n"
-"string.text"
-msgid "_Back"
-msgstr "_Zurück"
-
-#: editmodulesdialog.ui
-msgctxt ""
-"editmodulesdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"fontcolorft\n"
-"label\n"
-"string.text"
-msgid "Font color:"
-msgstr "Schriftfarbe:"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"effectsft\n"
-"label\n"
-"string.text"
-msgid "Effects:"
-msgstr "Effekte:"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"reliefft\n"
-"label\n"
-"string.text"
-msgid "Relief:"
-msgstr "Relief:"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"label46\n"
-"label\n"
-"string.text"
-msgid "Overlining:"
-msgstr "Überstreichung:"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"label47\n"
-"label\n"
-"string.text"
-msgid "Strikethrough:"
-msgstr "Durchstreichung:"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"label48\n"
-"label\n"
-"string.text"
-msgid "Underlining:"
-msgstr "Unterstreichung:"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"overlinecolorft\n"
-"label\n"
-"string.text"
-msgid "Overline color:"
-msgstr "Farbe:"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"underlinecolorft\n"
-"label\n"
-"string.text"
-msgid "Underline color:"
-msgstr "Farbe:"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"outlinecb\n"
-"label\n"
-"string.text"
-msgid "Outline"
-msgstr "Kontur"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"blinkingcb\n"
-"label\n"
-"string.text"
-msgid "Blinking"
-msgstr "Blinkend"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"hiddencb\n"
-"label\n"
-"string.text"
-msgid "Hidden"
-msgstr "Ausgeblendet"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"individualwordscb\n"
-"label\n"
-"string.text"
-msgid "Individual words"
-msgstr "Wortweise"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"positionft\n"
-"label\n"
-"string.text"
-msgid "Position:"
-msgstr "Position:"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"emphasisft\n"
-"label\n"
-"string.text"
-msgid "Emphasis mark:"
-msgstr "Betonungszeichen:"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"shadowcb\n"
-"label\n"
-"string.text"
-msgid "Shadow"
-msgstr "Schatten"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"a11ywarning\n"
-"label\n"
-"string.text"
-msgid "Accessibility option \"Use automatic font color for screen display\" is active. Font color attributes are not currently used to display text."
-msgstr "Die Option \"Systemschriftfarbe für Bildschirmanzeige nutzen\" der Barrierefreiheit ist aktiviert. Schriftfarbattribute werden derzeit zur Anzeige des Textes nicht benutzt."
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"preview\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore1\n"
-"0\n"
-"stringlist.text"
-msgid "(Without)"
-msgstr "(Ohne)"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore1\n"
-"1\n"
-"stringlist.text"
-msgid "Capitals"
-msgstr "Großbuchstaben"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore1\n"
-"2\n"
-"stringlist.text"
-msgid "Lowercase"
-msgstr "Gemeine"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore1\n"
-"3\n"
-"stringlist.text"
-msgid "Title"
-msgstr "Titel"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore1\n"
-"4\n"
-"stringlist.text"
-msgid "Small capitals"
-msgstr "Kapitälchen"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore2\n"
-"0\n"
-"stringlist.text"
-msgid "(Without)"
-msgstr "(Ohne)"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore2\n"
-"1\n"
-"stringlist.text"
-msgid "Embossed"
-msgstr "Erhaben"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore2\n"
-"2\n"
-"stringlist.text"
-msgid "Engraved"
-msgstr "Vertieft"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore3\n"
-"0\n"
-"stringlist.text"
-msgid "(Without)"
-msgstr "(Ohne)"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore3\n"
-"1\n"
-"stringlist.text"
-msgid "Dot"
-msgstr "Punkt"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore3\n"
-"2\n"
-"stringlist.text"
-msgid "Circle"
-msgstr "Kreis"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore3\n"
-"3\n"
-"stringlist.text"
-msgid "Disc"
-msgstr "Scheibe"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore3\n"
-"4\n"
-"stringlist.text"
-msgid "Accent"
-msgstr "Akzent"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore4\n"
-"0\n"
-"stringlist.text"
-msgid "Above text"
-msgstr "Über Text"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore4\n"
-"1\n"
-"stringlist.text"
-msgid "Below text"
-msgstr "Unter Text"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore5\n"
-"0\n"
-"stringlist.text"
-msgid "(Without)"
-msgstr "(Ohne)"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore5\n"
-"1\n"
-"stringlist.text"
-msgid "Single"
-msgstr "Einfach"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore5\n"
-"2\n"
-"stringlist.text"
-msgid "Double"
-msgstr "Doppelt"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore5\n"
-"3\n"
-"stringlist.text"
-msgid "Bold"
-msgstr "Fett"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore5\n"
-"4\n"
-"stringlist.text"
-msgid "With /"
-msgstr "Mit /"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore5\n"
-"5\n"
-"stringlist.text"
-msgid "With X"
-msgstr "Mit X"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"0\n"
-"stringlist.text"
-msgid "(Without)"
-msgstr "(Ohne)"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"1\n"
-"stringlist.text"
-msgid "Single"
-msgstr "Einfach"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"2\n"
-"stringlist.text"
-msgid "Double"
-msgstr "Doppelt"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"3\n"
-"stringlist.text"
-msgid "Bold"
-msgstr "Fett"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"4\n"
-"stringlist.text"
-msgid "Dotted"
-msgstr "Punktiert"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"5\n"
-"stringlist.text"
-msgid "Dotted (Bold)"
-msgstr "Punktiert (fett)"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"6\n"
-"stringlist.text"
-msgid "Dash"
-msgstr "Strich"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"7\n"
-"stringlist.text"
-msgid "Dash (Bold)"
-msgstr "Strich (fett)"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"8\n"
-"stringlist.text"
-msgid "Long Dash"
-msgstr "Strich lang"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"9\n"
-"stringlist.text"
-msgid "Long Dash (Bold)"
-msgstr "Strich lang (fett)"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"10\n"
-"stringlist.text"
-msgid "Dot Dash"
-msgstr "Punkt Strich"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"11\n"
-"stringlist.text"
-msgid "Dot Dash (Bold)"
-msgstr "Punkt Strich (fett)"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"12\n"
-"stringlist.text"
-msgid "Dot Dot Dash"
-msgstr "Punkt Punkt Strich"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"13\n"
-"stringlist.text"
-msgid "Dot Dot Dash (Bold)"
-msgstr "Punkt Punkt Strich fett"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"14\n"
-"stringlist.text"
-msgid "Wave"
-msgstr "Welle"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"15\n"
-"stringlist.text"
-msgid "Wave (Bold)"
-msgstr "Welle (fett)"
-
-#: effectspage.ui
-msgctxt ""
-"effectspage.ui\n"
-"liststore6\n"
-"16\n"
-"stringlist.text"
-msgid "Double Wave"
-msgstr "Welle doppelt"
-
-#: embossdialog.ui
-msgctxt ""
-"embossdialog.ui\n"
-"EmbossDialog\n"
-"title\n"
-"string.text"
-msgid "Emboss"
-msgstr "Erhaben"
-
-#: embossdialog.ui
-msgctxt ""
-"embossdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Light source:"
-msgstr "_Lichtquelle:"
-
-#: embossdialog.ui
-msgctxt ""
-"embossdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Parameters"
-msgstr "Parameter"
-
-#: eventassigndialog.ui
-msgctxt ""
-"eventassigndialog.ui\n"
-"EventAssignDialog\n"
-"title\n"
-"string.text"
-msgid "Assign Macro"
-msgstr "Makro zuweisen"
-
-#: eventassignpage.ui
-msgctxt ""
-"eventassignpage.ui\n"
-"existingmacrosft\n"
-"label\n"
-"string.text"
-msgid "Existing Macros"
-msgstr "Vorhandene Makros"
-
-#: eventassignpage.ui
-msgctxt ""
-"eventassignpage.ui\n"
-"macrotoft\n"
-"label\n"
-"string.text"
-msgid "Macro From"
-msgstr "Makro aus"
-
-#: eventassignpage.ui
-msgctxt ""
-"eventassignpage.ui\n"
-"eventft\n"
-"label\n"
-"string.text"
-msgid "Event"
-msgstr "Ereignis"
-
-#: eventassignpage.ui
-msgctxt ""
-"eventassignpage.ui\n"
-"assignft\n"
-"label\n"
-"string.text"
-msgid "Assigned Action"
-msgstr "Zugewiesene Aktion"
-
-#: eventassignpage.ui
-msgctxt ""
-"eventassignpage.ui\n"
-"libraryft1\n"
-"label\n"
-"string.text"
-msgid "Assignments"
-msgstr "Zuweisungen"
-
-#: eventassignpage.ui
-msgctxt ""
-"eventassignpage.ui\n"
-"assign\n"
-"label\n"
-"string.text"
-msgid "Assign"
-msgstr "Zuweisen"
-
-#: eventassignpage.ui
-msgctxt ""
-"eventassignpage.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "Remove"
-msgstr "Entfernen"
-
-#: eventsconfigpage.ui
-msgctxt ""
-"eventsconfigpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Assign:"
-msgstr "Zuweisen:"
-
-#: eventsconfigpage.ui
-msgctxt ""
-"eventsconfigpage.ui\n"
-"macro\n"
-"label\n"
-"string.text"
-msgid "M_acro..."
-msgstr "M_akro..."
-
-#: eventsconfigpage.ui
-msgctxt ""
-"eventsconfigpage.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Remove"
-msgstr "_Löschen"
-
-#: eventsconfigpage.ui
-msgctxt ""
-"eventsconfigpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Save in:"
-msgstr "Speichern in:"
-
-#: eventsconfigpage.ui
-msgctxt ""
-"eventsconfigpage.ui\n"
-"eventft\n"
-"label\n"
-"string.text"
-msgid "Event"
-msgstr "Ereignis"
-
-#: eventsconfigpage.ui
-msgctxt ""
-"eventsconfigpage.ui\n"
-"actionft\n"
-"label\n"
-"string.text"
-msgid "Assigned Action"
-msgstr "Zugewiesene Aktion"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"RecordSearchDialog\n"
-"title\n"
-"string.text"
-msgid "Record Search"
-msgstr "Datensatzsuche"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"pbSearchAgain\n"
-"label\n"
-"string.text"
-msgid "S_earch"
-msgstr "_Suchen"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"rbSearchForText\n"
-"label\n"
-"string.text"
-msgid "_Text:"
-msgstr "Initialen_text:"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"rbSearchForNull\n"
-"label\n"
-"string.text"
-msgid "Field content is _NULL"
-msgstr "Feldinhalt ist _NULL"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"rbSearchForNotNull\n"
-"label\n"
-"string.text"
-msgid "Field content is not NU_LL"
-msgstr "Feldinhalt ist _ungleich NULL"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"flSearchFor\n"
-"label\n"
-"string.text"
-msgid "_Search for"
-msgstr "_Suchen nach"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"rbSingleField\n"
-"label\n"
-"string.text"
-msgid "_Single field:"
-msgstr "_Einzelnes Feld:"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"rbAllFields\n"
-"label\n"
-"string.text"
-msgid "_All fields"
-msgstr "A_lle Felder"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"ftForm\n"
-"label\n"
-"string.text"
-msgid "Form:"
-msgstr "Formular:"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Where to Search"
-msgstr "Bereich"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"ftPosition\n"
-"label\n"
-"string.text"
-msgid "_Position:"
-msgstr "_Position:"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"HalfFullFormsCJK\n"
-"label\n"
-"string.text"
-msgid "Match character wi_dth"
-msgstr "Zeichenbreite _berücksichtigen"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"SoundsLikeCJK\n"
-"label\n"
-"string.text"
-msgid "Sounds like (_Japanese)"
-msgstr "Ähnliche Schreibweise (_Jap.)"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"SoundsLikeCJKSettings\n"
-"label\n"
-"string.text"
-msgid "Similarities..."
-msgstr "Ähnlichkeiten..."
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"cbApprox\n"
-"label\n"
-"string.text"
-msgid "S_imilarity search"
-msgstr "Äh_nlichkeitssuche"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"pbApproxSettings\n"
-"label\n"
-"string.text"
-msgid "Similarities..."
-msgstr "Ähnlichkeiten..."
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"cbCase\n"
-"label\n"
-"string.text"
-msgid "_Match case"
-msgstr "_Groß- und Kleinschreibung beachten"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"cbStartOver\n"
-"label\n"
-"string.text"
-msgid "Fr_om top"
-msgstr "Von o_ben"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"cbRegular\n"
-"label\n"
-"string.text"
-msgid "_Regular expression"
-msgstr "_Regulärer Ausdruck"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"cbUseFormat\n"
-"label\n"
-"string.text"
-msgid "Appl_y field format"
-msgstr "_Feldformatierung benutzen"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"cbBackwards\n"
-"label\n"
-"string.text"
-msgid "Search _backwards"
-msgstr "_Rückwärts suchen"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"cbWildCard\n"
-"label\n"
-"string.text"
-msgid "_Wildcard expression"
-msgstr "_Platzhalter-Ausdruck"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"flOptions\n"
-"label\n"
-"string.text"
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"ftRecordLabel\n"
-"label\n"
-"string.text"
-msgid "Record:"
-msgstr "Datensatz:"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"ftRecord\n"
-"label\n"
-"string.text"
-msgid "record count"
-msgstr "Datensatz Anzahl"
-
-#: fmsearchdialog.ui
-msgctxt ""
-"fmsearchdialog.ui\n"
-"flState\n"
-"label\n"
-"string.text"
-msgid "State"
-msgstr "Status"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"FormatCellsDialog\n"
-"title\n"
-"string.text"
-msgid "Table Properties"
-msgstr "Tabelleneigenschaften"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"name\n"
-"label\n"
-"string.text"
-msgid "Font"
-msgstr "Schriftart"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"effects\n"
-"label\n"
-"string.text"
-msgid "Font Effects"
-msgstr "Schrifteffekt"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"border\n"
-"label\n"
-"string.text"
-msgid "Borders"
-msgstr "Umrandung"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"area\n"
-"label\n"
-"string.text"
-msgid "Background"
-msgstr "Hintergrund"
-
-#: formatnumberdialog.ui
-msgctxt ""
-"formatnumberdialog.ui\n"
-"FormatNumberDialog\n"
-"title\n"
-"string.text"
-msgid "Format Number"
-msgstr "Zahl formatieren"
-
-#: galleryapplyprogress.ui
-msgctxt ""
-"galleryapplyprogress.ui\n"
-"GalleryApplyProgress\n"
-"title\n"
-"string.text"
-msgid "Apply"
-msgstr "Übernehmen"
-
-#: galleryapplyprogress.ui
-msgctxt ""
-"galleryapplyprogress.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "File"
-msgstr "Datei"
-
-#: galleryfilespage.ui
-msgctxt ""
-"galleryfilespage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_File type:"
-msgstr "_Dateityp:"
-
-#: galleryfilespage.ui
-msgctxt ""
-"galleryfilespage.ui\n"
-"files\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Files Found"
-msgstr "Gefundene Dateien"
-
-#: galleryfilespage.ui
-msgctxt ""
-"galleryfilespage.ui\n"
-"preview\n"
-"label\n"
-"string.text"
-msgid "Pr_eview"
-msgstr "V_orschau"
-
-#: galleryfilespage.ui
-msgctxt ""
-"galleryfilespage.ui\n"
-"image\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: galleryfilespage.ui
-msgctxt ""
-"galleryfilespage.ui\n"
-"findfiles\n"
-"label\n"
-"string.text"
-msgid "_Find Files..."
-msgstr "Dateien su_chen..."
-
-#: galleryfilespage.ui
-msgctxt ""
-"galleryfilespage.ui\n"
-"addall\n"
-"label\n"
-"string.text"
-msgid "A_dd All"
-msgstr "_Alle hinzufügen"
-
-#: gallerygeneralpage.ui
-msgctxt ""
-"gallerygeneralpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Modified:"
-msgstr "Geändert am:"
-
-#: gallerygeneralpage.ui
-msgctxt ""
-"gallerygeneralpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Type:"
-msgstr "Typ:"
-
-#: gallerygeneralpage.ui
-msgctxt ""
-"gallerygeneralpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Location:"
-msgstr "Ort:"
-
-#: gallerygeneralpage.ui
-msgctxt ""
-"gallerygeneralpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Contents:"
-msgstr "Inhalt:"
-
-#: gallerygeneralpage.ui
-msgctxt ""
-"gallerygeneralpage.ui\n"
-"image-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Theme Name"
-msgstr "Themename"
-
-#: gallerysearchprogress.ui
-msgctxt ""
-"gallerysearchprogress.ui\n"
-"GallerySearchProgress\n"
-"title\n"
-"string.text"
-msgid "Find"
-msgstr "Suchen"
-
-#: gallerysearchprogress.ui
-msgctxt ""
-"gallerysearchprogress.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "File Type"
-msgstr "Dateityp"
-
-#: gallerysearchprogress.ui
-msgctxt ""
-"gallerysearchprogress.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Directory"
-msgstr "Verzeichnis"
-
-#: gallerythemedialog.ui
-msgctxt ""
-"gallerythemedialog.ui\n"
-"GalleryThemeDialog\n"
-"title\n"
-"string.text"
-msgid "Properties of "
-msgstr "Eigenschaften von "
-
-#: gallerythemedialog.ui
-msgctxt ""
-"gallerythemedialog.ui\n"
-"general\n"
-"label\n"
-"string.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: gallerythemedialog.ui
-msgctxt ""
-"gallerythemedialog.ui\n"
-"files\n"
-"label\n"
-"string.text"
-msgid "Files"
-msgstr "Dateien"
-
-#: gallerythemeiddialog.ui
-msgctxt ""
-"gallerythemeiddialog.ui\n"
-"GalleryThemeIDDialog\n"
-"title\n"
-"string.text"
-msgid "Theme ID"
-msgstr "Theme-ID"
-
-#: gallerythemeiddialog.ui
-msgctxt ""
-"gallerythemeiddialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "ID:"
-msgstr "ID:"
-
-#: gallerytitledialog.ui
-msgctxt ""
-"gallerytitledialog.ui\n"
-"GalleryTitleDialog\n"
-"title\n"
-"string.text"
-msgid "Enter Title"
-msgstr "Titel eingeben"
-
-#: gallerytitledialog.ui
-msgctxt ""
-"gallerytitledialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Title:"
-msgstr "Titel:"
-
-#: galleryupdateprogress.ui
-msgctxt ""
-"galleryupdateprogress.ui\n"
-"GalleryUpdateProgress\n"
-"title\n"
-"string.text"
-msgid "Update"
-msgstr "Aktualisieren"
-
-#: galleryupdateprogress.ui
-msgctxt ""
-"galleryupdateprogress.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "File"
-msgstr "Datei"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"modify\n"
-"label\n"
-"string.text"
-msgid "_Modify"
-msgstr "Än_dern"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Gradient"
-msgstr "Farbverlauf"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"typeft\n"
-"label\n"
-"string.text"
-msgid "_Type:"
-msgstr "_Typ:"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"gradienttypelb\n"
-"0\n"
-"stringlist.text"
-msgid "Linear"
-msgstr "Linear"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"gradienttypelb\n"
-"1\n"
-"stringlist.text"
-msgid "Axial"
-msgstr "Axial"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"gradienttypelb\n"
-"2\n"
-"stringlist.text"
-msgid "Radial"
-msgstr "Radial"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"gradienttypelb\n"
-"3\n"
-"stringlist.text"
-msgid "Ellipsoid"
-msgstr "Ellipsoid"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"gradienttypelb\n"
-"4\n"
-"stringlist.text"
-msgid "Quadratic"
-msgstr "Quadratisch"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"gradienttypelb\n"
-"5\n"
-"stringlist.text"
-msgid "Square"
-msgstr "Rechteckig"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"incrementft\n"
-"label\n"
-"string.text"
-msgid "Increment:"
-msgstr "Schrittweite:"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"autoincrement\n"
-"label\n"
-"string.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"angleft\n"
-"label\n"
-"string.text"
-msgid "A_ngle:"
-msgstr "_Winkel:"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"centerft\n"
-"label\n"
-"string.text"
-msgid "Center ( X / Y ) :"
-msgstr "Mitte (X/Y):"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"borderft\n"
-"label\n"
-"string.text"
-msgid "_Border:"
-msgstr "_Umrandung:"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"colorfromft\n"
-"label\n"
-"string.text"
-msgid "_From:"
-msgstr "_Von:"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"colortoft\n"
-"label\n"
-"string.text"
-msgid "_To:"
-msgstr "_Bis:"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"propfl\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"previewctl-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Example"
-msgstr "Beispiel"
-
-#: gradientpage.ui
-msgctxt ""
-"gradientpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: hangulhanjaadddialog.ui
-msgctxt ""
-"hangulhanjaadddialog.ui\n"
-"HangulHanjaAddDialog\n"
-"title\n"
-"string.text"
-msgid "New Dictionary"
-msgstr "Benutzerwörterbuch anlegen"
-
-#: hangulhanjaadddialog.ui
-msgctxt ""
-"hangulhanjaadddialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Name:"
-msgstr "_Name:"
-
-#: hangulhanjaadddialog.ui
-msgctxt ""
-"hangulhanjaadddialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Dictionary"
-msgstr "Wörterbuch"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"HangulHanjaConversionDialog\n"
-"title\n"
-"string.text"
-msgid "Hangul/Hanja Conversion"
-msgstr "Hangul/Hanja Konvertierung"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Original"
-msgstr "Original"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Word"
-msgstr "Wörter"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"find\n"
-"label\n"
-"string.text"
-msgid "_Find"
-msgstr "_Suchen"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Suggestions"
-msgstr "Vorschläge"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Format"
-msgstr "Format"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"simpleconversion\n"
-"label\n"
-"string.text"
-msgid "_Hangul/Hanja"
-msgstr "_Hangul/Hanja"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"hangulbracket\n"
-"label\n"
-"string.text"
-msgid "Hanja (Han_gul)"
-msgstr "Hanja (Han_gul)"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"hanjabracket\n"
-"label\n"
-"string.text"
-msgid "Hang_ul (Hanja)"
-msgstr "Hang_ul (Hanja)"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"hanja_above\n"
-"label\n"
-"string.text"
-msgid "Hanja"
-msgstr "Hanja"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"hanja_below\n"
-"label\n"
-"string.text"
-msgid "Hanja"
-msgstr "Hanja"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"hangul_above\n"
-"label\n"
-"string.text"
-msgid "Hangul"
-msgstr "Hangul"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"hangul_below\n"
-"label\n"
-"string.text"
-msgid "Hangul"
-msgstr "Hangul"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Conversion"
-msgstr "Konvertierung"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"hangulonly\n"
-"label\n"
-"string.text"
-msgid "Hangul _only"
-msgstr "Nu_r Hangul"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"hanjaonly\n"
-"label\n"
-"string.text"
-msgid "Hanja onl_y"
-msgstr "Nu_r Hanja"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"ignore\n"
-"label\n"
-"string.text"
-msgid "_Ignore"
-msgstr "_Ignorieren"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"ignoreall\n"
-"label\n"
-"string.text"
-msgid "Always I_gnore"
-msgstr "Immer i_gnorieren"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"replace\n"
-"label\n"
-"string.text"
-msgid "_Replace"
-msgstr "_Ersetzen"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"replaceall\n"
-"label\n"
-"string.text"
-msgid "Always R_eplace"
-msgstr "I_mmer ersetzen"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"replacebychar\n"
-"label\n"
-"string.text"
-msgid "Replace b_y character"
-msgstr "Ein_zelne Zeichen ersetzen"
-
-#: hangulhanjaconversiondialog.ui
-msgctxt ""
-"hangulhanjaconversiondialog.ui\n"
-"options\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: hangulhanjaeditdictdialog.ui
-msgctxt ""
-"hangulhanjaeditdictdialog.ui\n"
-"HangulHanjaEditDictDialog\n"
-"title\n"
-"string.text"
-msgid "Edit Custom Dictionary"
-msgstr "Benutzerwörterbuch bearbeiten"
-
-#: hangulhanjaeditdictdialog.ui
-msgctxt ""
-"hangulhanjaeditdictdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Book"
-msgstr "Buch"
-
-#: hangulhanjaeditdictdialog.ui
-msgctxt ""
-"hangulhanjaeditdictdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Original"
-msgstr "Original"
-
-#: hangulhanjaeditdictdialog.ui
-msgctxt ""
-"hangulhanjaeditdictdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Suggestions"
-msgstr "Vorschläge"
-
-#: hangulhanjaoptdialog.ui
-msgctxt ""
-"hangulhanjaoptdialog.ui\n"
-"HangulHanjaOptDialog\n"
-"title\n"
-"string.text"
-msgid "Hangul/Hanja Options"
-msgstr "Hangul/Hanja-Optionen"
-
-#: hangulhanjaoptdialog.ui
-msgctxt ""
-"hangulhanjaoptdialog.ui\n"
-"new\n"
-"label\n"
-"string.text"
-msgid "New..."
-msgstr "Neu..."
-
-#: hangulhanjaoptdialog.ui
-msgctxt ""
-"hangulhanjaoptdialog.ui\n"
-"edit\n"
-"label\n"
-"string.text"
-msgid "Edit..."
-msgstr "Bearbeiten..."
-
-#: hangulhanjaoptdialog.ui
-msgctxt ""
-"hangulhanjaoptdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "User-defined Dictionaries"
-msgstr "Benutzerwörterbücher"
-
-#: hangulhanjaoptdialog.ui
-msgctxt ""
-"hangulhanjaoptdialog.ui\n"
-"ignorepost\n"
-"label\n"
-"string.text"
-msgid "Ignore post-positional word"
-msgstr "Nachstehendes Wort ignorieren"
-
-#: hangulhanjaoptdialog.ui
-msgctxt ""
-"hangulhanjaoptdialog.ui\n"
-"showrecentfirst\n"
-"label\n"
-"string.text"
-msgid "Show recently used entries first"
-msgstr "Zuletzt benutzte Einträge zuerst zeigen"
-
-#: hangulhanjaoptdialog.ui
-msgctxt ""
-"hangulhanjaoptdialog.ui\n"
-"autoreplaceunique\n"
-"label\n"
-"string.text"
-msgid "Replace all unique entries automatically"
-msgstr "Alle eindeutigen Einträge automatisch ersetzen"
-
-#: hangulhanjaoptdialog.ui
-msgctxt ""
-"hangulhanjaoptdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: hatchpage.ui
-msgctxt ""
-"hatchpage.ui\n"
-"modify\n"
-"label\n"
-"string.text"
-msgid "_Modify"
-msgstr "Än_dern"
-
-#: hatchpage.ui
-msgctxt ""
-"hatchpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Hatch"
-msgstr "Schraffur"
-
-#: hatchpage.ui
-msgctxt ""
-"hatchpage.ui\n"
-"distanceft\n"
-"label\n"
-"string.text"
-msgid "_Spacing:"
-msgstr "A_bstand:"
-
-#: hatchpage.ui
-msgctxt ""
-"hatchpage.ui\n"
-"angleft\n"
-"label\n"
-"string.text"
-msgid "A_ngle:"
-msgstr "_Winkel:"
-
-#: hatchpage.ui
-msgctxt ""
-"hatchpage.ui\n"
-"linetypeft\n"
-"label\n"
-"string.text"
-msgid "_Line type:"
-msgstr "Li_nientyp:"
-
-#: hatchpage.ui
-msgctxt ""
-"hatchpage.ui\n"
-"linetypelb\n"
-"0\n"
-"stringlist.text"
-msgid "Single"
-msgstr "Einfach"
-
-#: hatchpage.ui
-msgctxt ""
-"hatchpage.ui\n"
-"linetypelb\n"
-"1\n"
-"stringlist.text"
-msgid "Crossed"
-msgstr "Gekreuzt"
-
-#: hatchpage.ui
-msgctxt ""
-"hatchpage.ui\n"
-"linetypelb\n"
-"2\n"
-"stringlist.text"
-msgid "Triple"
-msgstr "Dreifach"
-
-#: hatchpage.ui
-msgctxt ""
-"hatchpage.ui\n"
-"linecolorft\n"
-"label\n"
-"string.text"
-msgid "Line _color:"
-msgstr "Linien_farbe:"
-
-#: hatchpage.ui
-msgctxt ""
-"hatchpage.ui\n"
-"backgroundcolor\n"
-"label\n"
-"string.text"
-msgid "Background Color"
-msgstr "Hintergrundfarbe"
-
-#: hatchpage.ui
-msgctxt ""
-"hatchpage.ui\n"
-"propfl\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: hatchpage.ui
-msgctxt ""
-"hatchpage.ui\n"
-"previewctl-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Example"
-msgstr "Beispiel"
-
-#: hatchpage.ui
-msgctxt ""
-"hatchpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: hyperlinkdialog.ui
-msgctxt ""
-"hyperlinkdialog.ui\n"
-"HyperlinkDialog\n"
-"title\n"
-"string.text"
-msgid "Hyperlink"
-msgstr "Hyperlink"
-
-#: hyperlinkdialog.ui
-msgctxt ""
-"hyperlinkdialog.ui\n"
-"apply\n"
-"label\n"
-"string.text"
-msgid "Apply"
-msgstr "Übernehmen"
-
-#: hyperlinkdialog.ui
-msgctxt ""
-"hyperlinkdialog.ui\n"
-"reset\n"
-"label\n"
-"string.text"
-msgid "Reset"
-msgstr "Zurücksetzen"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"path_label\n"
-"label\n"
-"string.text"
-msgid "_Path:"
-msgstr "_Pfad:"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"fileopen\n"
-"label\n"
-"string.text"
-msgid "Open File"
-msgstr "Datei öffnen"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"fileopen\n"
-"tooltip_text\n"
-"string.text"
-msgid "Open File"
-msgstr "Datei öffnen"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Document"
-msgstr "Dokument"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"target_label\n"
-"label\n"
-"string.text"
-msgid "Targ_et:"
-msgstr "Sprungzie_l:"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"url_label\n"
-"label\n"
-"string.text"
-msgid "URL:"
-msgstr "URL:"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "Target in Document"
-msgstr "Sprungziel im Dokument"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"browse\n"
-"tooltip_text\n"
-"string.text"
-msgid "Target in Document"
-msgstr "Sprungziel im Dokument"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"url\n"
-"label\n"
-"string.text"
-msgid "Test text"
-msgstr "Testtext"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Target in Document"
-msgstr "Sprungziel im Dokument"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"frame_label\n"
-"label\n"
-"string.text"
-msgid "F_rame:"
-msgstr "_Rahmen:"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"indication_label\n"
-"label\n"
-"string.text"
-msgid "Te_xt:"
-msgstr "Te_xt:"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"name_label\n"
-"label\n"
-"string.text"
-msgid "N_ame:"
-msgstr "_Name:"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"form_label\n"
-"label\n"
-"string.text"
-msgid "F_orm:"
-msgstr "F_orm:"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"script\n"
-"tooltip_text\n"
-"string.text"
-msgid "Events"
-msgstr "Ereignisse"
-
-#: hyperlinkdocpage.ui
-msgctxt ""
-"hyperlinkdocpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Further Settings"
-msgstr "Weitere Einstellungen"
-
-#: hyperlinkinternetpage.ui
-msgctxt ""
-"hyperlinkinternetpage.ui\n"
-"linktyp_internet\n"
-"label\n"
-"string.text"
-msgid "_Web"
-msgstr "_Web"
-
-#: hyperlinkinternetpage.ui
-msgctxt ""
-"hyperlinkinternetpage.ui\n"
-"linktyp_ftp\n"
-"label\n"
-"string.text"
-msgid "_FTP"
-msgstr "FT_P"
-
-#: hyperlinkinternetpage.ui
-msgctxt ""
-"hyperlinkinternetpage.ui\n"
-"target_label\n"
-"label\n"
-"string.text"
-msgid "_URL:"
-msgstr "_URL:"
-
-#: hyperlinkinternetpage.ui
-msgctxt ""
-"hyperlinkinternetpage.ui\n"
-"login_label\n"
-"label\n"
-"string.text"
-msgid "_Login name:"
-msgstr "Anme_ldename:"
-
-#: hyperlinkinternetpage.ui
-msgctxt ""
-"hyperlinkinternetpage.ui\n"
-"password_label\n"
-"label\n"
-"string.text"
-msgid "_Password:"
-msgstr "_Kennwort:"
-
-#: hyperlinkinternetpage.ui
-msgctxt ""
-"hyperlinkinternetpage.ui\n"
-"anonymous\n"
-"label\n"
-"string.text"
-msgid "Anonymous _user"
-msgstr "Anonymer Ben_utzer"
-
-#: hyperlinkinternetpage.ui
-msgctxt ""
-"hyperlinkinternetpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Hyperlink Type"
-msgstr "Art des Hyperlinks"
-
-#: hyperlinkinternetpage.ui
-msgctxt ""
-"hyperlinkinternetpage.ui\n"
-"frame_label\n"
-"label\n"
-"string.text"
-msgid "F_rame:"
-msgstr "_Rahmen:"
-
-#: hyperlinkinternetpage.ui
-msgctxt ""
-"hyperlinkinternetpage.ui\n"
-"indication_label\n"
-"label\n"
-"string.text"
-msgid "Te_xt:"
-msgstr "Te_xt:"
-
-#: hyperlinkinternetpage.ui
-msgctxt ""
-"hyperlinkinternetpage.ui\n"
-"name_label\n"
-"label\n"
-"string.text"
-msgid "N_ame:"
-msgstr "_Name:"
-
-#: hyperlinkinternetpage.ui
-msgctxt ""
-"hyperlinkinternetpage.ui\n"
-"form_label\n"
-"label\n"
-"string.text"
-msgid "F_orm:"
-msgstr "F_orm:"
-
-#: hyperlinkinternetpage.ui
-msgctxt ""
-"hyperlinkinternetpage.ui\n"
-"script\n"
-"tooltip_text\n"
-"string.text"
-msgid "Events"
-msgstr "Ereignisse"
-
-#: hyperlinkinternetpage.ui
-msgctxt ""
-"hyperlinkinternetpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Further Settings"
-msgstr "Weitere Einstellungen"
-
-#: hyperlinkmailpage.ui
-msgctxt ""
-"hyperlinkmailpage.ui\n"
-"receiver_label\n"
-"label\n"
-"string.text"
-msgid "Re_cipient:"
-msgstr "Em_pfänger:"
-
-#: hyperlinkmailpage.ui
-msgctxt ""
-"hyperlinkmailpage.ui\n"
-"adressbook\n"
-"label\n"
-"string.text"
-msgid "Data Sources…"
-msgstr "Datenquellen…"
-
-#: hyperlinkmailpage.ui
-msgctxt ""
-"hyperlinkmailpage.ui\n"
-"adressbook\n"
-"tooltip_text\n"
-"string.text"
-msgid "Data Sources..."
-msgstr "Datenquellen..."
-
-#: hyperlinkmailpage.ui
-msgctxt ""
-"hyperlinkmailpage.ui\n"
-"subject_label\n"
-"label\n"
-"string.text"
-msgid "_Subject:"
-msgstr "_Betreff:"
-
-#: hyperlinkmailpage.ui
-msgctxt ""
-"hyperlinkmailpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Mail"
-msgstr "E-Mail"
-
-#: hyperlinkmailpage.ui
-msgctxt ""
-"hyperlinkmailpage.ui\n"
-"frame_label\n"
-"label\n"
-"string.text"
-msgid "F_rame:"
-msgstr "_Rahmen:"
-
-#: hyperlinkmailpage.ui
-msgctxt ""
-"hyperlinkmailpage.ui\n"
-"indication_label\n"
-"label\n"
-"string.text"
-msgid "Te_xt:"
-msgstr "Te_xt:"
-
-#: hyperlinkmailpage.ui
-msgctxt ""
-"hyperlinkmailpage.ui\n"
-"name_label\n"
-"label\n"
-"string.text"
-msgid "N_ame:"
-msgstr "_Name:"
-
-#: hyperlinkmailpage.ui
-msgctxt ""
-"hyperlinkmailpage.ui\n"
-"form_label\n"
-"label\n"
-"string.text"
-msgid "F_orm:"
-msgstr "F_orm:"
-
-#: hyperlinkmailpage.ui
-msgctxt ""
-"hyperlinkmailpage.ui\n"
-"script\n"
-"tooltip_text\n"
-"string.text"
-msgid "Events"
-msgstr "Ereignisse"
-
-#: hyperlinkmailpage.ui
-msgctxt ""
-"hyperlinkmailpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Further Settings"
-msgstr "Weitere Einstellungen"
-
-#: hyperlinkmarkdialog.ui
-msgctxt ""
-"hyperlinkmarkdialog.ui\n"
-"HyperlinkMark\n"
-"title\n"
-"string.text"
-msgid "Target in Document"
-msgstr "Sprungziel im Dokument"
-
-#: hyperlinkmarkdialog.ui
-msgctxt ""
-"hyperlinkmarkdialog.ui\n"
-"apply\n"
-"label\n"
-"string.text"
-msgid "_Apply"
-msgstr "Ü_bernehmen"
-
-#: hyperlinkmarkdialog.ui
-msgctxt ""
-"hyperlinkmarkdialog.ui\n"
-"close\n"
-"label\n"
-"string.text"
-msgid "_Close"
-msgstr "S_chließen"
-
-#: hyperlinkmarkdialog.ui
-msgctxt ""
-"hyperlinkmarkdialog.ui\n"
-"TreeListBox\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Mark Tree"
-msgstr "Baum markieren"
-
-#: hyperlinknewdocpage.ui
-msgctxt ""
-"hyperlinknewdocpage.ui\n"
-"editnow\n"
-"label\n"
-"string.text"
-msgid "Edit _now"
-msgstr "Sofort _bearbeiten"
-
-#: hyperlinknewdocpage.ui
-msgctxt ""
-"hyperlinknewdocpage.ui\n"
-"editlater\n"
-"label\n"
-"string.text"
-msgid "Edit _later"
-msgstr "_Später bearbeiten"
-
-#: hyperlinknewdocpage.ui
-msgctxt ""
-"hyperlinknewdocpage.ui\n"
-"file_label\n"
-"label\n"
-"string.text"
-msgid "_File:"
-msgstr "_Datei:"
-
-#: hyperlinknewdocpage.ui
-msgctxt ""
-"hyperlinknewdocpage.ui\n"
-"create\n"
-"label\n"
-"string.text"
-msgid "Select Path"
-msgstr "Pfad auswählen"
-
-#: hyperlinknewdocpage.ui
-msgctxt ""
-"hyperlinknewdocpage.ui\n"
-"create\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select Path"
-msgstr "Pfad auswählen"
-
-#: hyperlinknewdocpage.ui
-msgctxt ""
-"hyperlinknewdocpage.ui\n"
-"types_label\n"
-"label\n"
-"string.text"
-msgid "File _type:"
-msgstr "Dateit_yp:"
-
-#: hyperlinknewdocpage.ui
-msgctxt ""
-"hyperlinknewdocpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "New Document"
-msgstr "Neues Dokument"
-
-#: hyperlinknewdocpage.ui
-msgctxt ""
-"hyperlinknewdocpage.ui\n"
-"frame_label\n"
-"label\n"
-"string.text"
-msgid "F_rame:"
-msgstr "_Rahmen:"
-
-#: hyperlinknewdocpage.ui
-msgctxt ""
-"hyperlinknewdocpage.ui\n"
-"indication_label\n"
-"label\n"
-"string.text"
-msgid "Te_xt:"
-msgstr "Te_xt:"
-
-#: hyperlinknewdocpage.ui
-msgctxt ""
-"hyperlinknewdocpage.ui\n"
-"name_label\n"
-"label\n"
-"string.text"
-msgid "N_ame:"
-msgstr "N_ame:"
-
-#: hyperlinknewdocpage.ui
-msgctxt ""
-"hyperlinknewdocpage.ui\n"
-"form_label\n"
-"label\n"
-"string.text"
-msgid "F_orm:"
-msgstr "F_orm:"
-
-#: hyperlinknewdocpage.ui
-msgctxt ""
-"hyperlinknewdocpage.ui\n"
-"script\n"
-"tooltip_text\n"
-"string.text"
-msgid "Events"
-msgstr "Ereignisse"
-
-#: hyperlinknewdocpage.ui
-msgctxt ""
-"hyperlinknewdocpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Further Settings"
-msgstr "Weitere Einstellungen"
-
-#: hyphenate.ui
-msgctxt ""
-"hyphenate.ui\n"
-"HyphenateDialog\n"
-"title\n"
-"string.text"
-msgid "Hyphenation"
-msgstr "Silbentrennung"
-
-#: hyphenate.ui
-msgctxt ""
-"hyphenate.ui\n"
-"hyphall\n"
-"label\n"
-"string.text"
-msgid "Hyphenate All"
-msgstr "Alle trennen"
-
-#: hyphenate.ui
-msgctxt ""
-"hyphenate.ui\n"
-"ok\n"
-"label\n"
-"string.text"
-msgid "Hyphenate"
-msgstr "Trennen"
-
-#: hyphenate.ui
-msgctxt ""
-"hyphenate.ui\n"
-"continue\n"
-"label\n"
-"string.text"
-msgid "Skip"
-msgstr "Weiter"
-
-#: hyphenate.ui
-msgctxt ""
-"hyphenate.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Word:"
-msgstr "Wort:"
-
-#: iconchangedialog.ui
-msgctxt ""
-"iconchangedialog.ui\n"
-"IconChange\n"
-"title\n"
-"string.text"
-msgid "%PRODUCTNAME %PRODUCTVERSION"
-msgstr "%PRODUCTNAME %PRODUCTVERSION"
-
-#: iconchangedialog.ui
-msgctxt ""
-"iconchangedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid ""
-"The files listed below could not be imported.\n"
-"The file format could not be interpreted."
-msgstr ""
-"Die unten aufgelisteten Dateien konnten nicht importiert werden.\n"
-"Das Dateiformat konnte nicht erkannt werden."
-
-#: iconselectordialog.ui
-msgctxt ""
-"iconselectordialog.ui\n"
-"IconSelector\n"
-"title\n"
-"string.text"
-msgid "Change Icon"
-msgstr "Symbol austauschen"
-
-#: iconselectordialog.ui
-msgctxt ""
-"iconselectordialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Icons"
-msgstr "_Symbole"
-
-#: iconselectordialog.ui
-msgctxt ""
-"iconselectordialog.ui\n"
-"importButton\n"
-"label\n"
-"string.text"
-msgid "I_mport..."
-msgstr "I_mport..."
-
-#: iconselectordialog.ui
-msgctxt ""
-"iconselectordialog.ui\n"
-"deleteButton\n"
-"label\n"
-"string.text"
-msgid "_Delete..."
-msgstr "_Löschen..."
-
-#: iconselectordialog.ui
-msgctxt ""
-"iconselectordialog.ui\n"
-"noteLabel\n"
-"label\n"
-"string.text"
-msgid ""
-"Note:\n"
-"The size of an icon should be 16x16 pixel to achieve best quality.\n"
-"Different sized icons will be scaled automatically."
-msgstr ""
-"Hinweis:\n"
-"Für bestmögliche Qualität sollte die Größe eines Symbols 16x16 Pixel betragen.\n"
-"Symbole anderer Größe werden automatisch skaliert."
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"InsertFloatingFrameDialog\n"
-"title\n"
-"string.text"
-msgid "Floating Frame Properties"
-msgstr "Schwebender Rahmen - Eigenschaften"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Name:"
-msgstr "Name:"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Contents:"
-msgstr "Inhalt:"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"buttonbrowse\n"
-"label\n"
-"string.text"
-msgid "Browse..."
-msgstr "Durchsuchen..."
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"scrollbaron\n"
-"label\n"
-"string.text"
-msgid "On"
-msgstr "Ein"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"scrollbaroff\n"
-"label\n"
-"string.text"
-msgid "Off"
-msgstr "Aus"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"scrollbarauto\n"
-"label\n"
-"string.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Scroll Bar"
-msgstr "Bildlaufleiste"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"borderon\n"
-"label\n"
-"string.text"
-msgid "On"
-msgstr "Ein"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"borderoff\n"
-"label\n"
-"string.text"
-msgid "Off"
-msgstr "Aus"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Border"
-msgstr "Umrandung"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"widthlabel\n"
-"label\n"
-"string.text"
-msgid "Width:"
-msgstr "Breite:"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"heightlabel\n"
-"label\n"
-"string.text"
-msgid "Height:"
-msgstr "Höhe:"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"defaultwidth\n"
-"label\n"
-"string.text"
-msgid "Default"
-msgstr "Standard"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"defaultheight\n"
-"label\n"
-"string.text"
-msgid "Default"
-msgstr "Standard"
-
-#: insertfloatingframe.ui
-msgctxt ""
-"insertfloatingframe.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Spacing to Contents"
-msgstr "Abstand zum Inhalt"
-
-#: insertoleobject.ui
-msgctxt ""
-"insertoleobject.ui\n"
-"InsertOLEObjectDialog\n"
-"title\n"
-"string.text"
-msgid "Insert OLE Object"
-msgstr "OLE-Objekt einfügen"
-
-#: insertoleobject.ui
-msgctxt ""
-"insertoleobject.ui\n"
-"createnew\n"
-"label\n"
-"string.text"
-msgid "Create new"
-msgstr "Neu erstellen"
-
-#: insertoleobject.ui
-msgctxt ""
-"insertoleobject.ui\n"
-"createfromfile\n"
-"label\n"
-"string.text"
-msgid "Create from file"
-msgstr "Aus Datei erstellen"
-
-#: insertoleobject.ui
-msgctxt ""
-"insertoleobject.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Object Type"
-msgstr "Objekttyp"
-
-#: insertoleobject.ui
-msgctxt ""
-"insertoleobject.ui\n"
-"urlbtn\n"
-"label\n"
-"string.text"
-msgid "Search…"
-msgstr "Suchen…"
-
-#: insertoleobject.ui
-msgctxt ""
-"insertoleobject.ui\n"
-"linktofile\n"
-"label\n"
-"string.text"
-msgid "Link to file"
-msgstr "Mit Datei verknüpfen"
-
-#: insertoleobject.ui
-msgctxt ""
-"insertoleobject.ui\n"
-"asicon\n"
-"label\n"
-"string.text"
-msgid "Display as icon"
-msgstr "Als Symbol anzeigen"
-
-#: insertoleobject.ui
-msgctxt ""
-"insertoleobject.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "File"
-msgstr "Datei"
-
-#: insertrowcolumn.ui
-msgctxt ""
-"insertrowcolumn.ui\n"
-"InsertRowColumnDialog\n"
-"title\n"
-"string.text"
-msgid "Insert Row"
-msgstr "Zeile einfügen"
-
-#: insertrowcolumn.ui
-msgctxt ""
-"insertrowcolumn.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Number:"
-msgstr "A_nzahl:"
-
-#: insertrowcolumn.ui
-msgctxt ""
-"insertrowcolumn.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Insert"
-msgstr "Einfügen"
-
-#: insertrowcolumn.ui
-msgctxt ""
-"insertrowcolumn.ui\n"
-"insert_before\n"
-"label\n"
-"string.text"
-msgid "_Before"
-msgstr "_Vorher"
-
-#: insertrowcolumn.ui
-msgctxt ""
-"insertrowcolumn.ui\n"
-"insert_after\n"
-"label\n"
-"string.text"
-msgid "A_fter"
-msgstr "_Danach"
-
-#: insertrowcolumn.ui
-msgctxt ""
-"insertrowcolumn.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: javaclasspathdialog.ui
-msgctxt ""
-"javaclasspathdialog.ui\n"
-"JavaClassPath\n"
-"title\n"
-"string.text"
-msgid "Class Path"
-msgstr "Class-Pfad"
-
-#: javaclasspathdialog.ui
-msgctxt ""
-"javaclasspathdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "A_ssigned folders and archives"
-msgstr "Z_ugewiesenen Ordner und Archive"
-
-#: javaclasspathdialog.ui
-msgctxt ""
-"javaclasspathdialog.ui\n"
-"archive\n"
-"label\n"
-"string.text"
-msgid "_Add Archive..."
-msgstr "Ar_chiv hinzufügen..."
-
-#: javaclasspathdialog.ui
-msgctxt ""
-"javaclasspathdialog.ui\n"
-"folder\n"
-"label\n"
-"string.text"
-msgid "Add _Folder"
-msgstr "_Ordner hinzufügen"
-
-#: javaclasspathdialog.ui
-msgctxt ""
-"javaclasspathdialog.ui\n"
-"remove\n"
-"label\n"
-"string.text"
-msgid "_Remove"
-msgstr "_Löschen"
-
-#: javastartparametersdialog.ui
-msgctxt ""
-"javastartparametersdialog.ui\n"
-"JavaStartParameters\n"
-"title\n"
-"string.text"
-msgid "Java Start Parameters"
-msgstr "Java-Startparameter"
-
-#: javastartparametersdialog.ui
-msgctxt ""
-"javastartparametersdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Java start _parameter"
-msgstr "Java-Start_parameter"
-
-#: javastartparametersdialog.ui
-msgctxt ""
-"javastartparametersdialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Assig_ned start parameters"
-msgstr "Zuge_wiesene Startparameter"
-
-#: javastartparametersdialog.ui
-msgctxt ""
-"javastartparametersdialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "For example: -Dmyprop=c:\\\\program files\\\\java"
-msgstr "Zum Beispiel: -Dmyprop=c:\\\\program files\\\\java"
-
-#: javastartparametersdialog.ui
-msgctxt ""
-"javastartparametersdialog.ui\n"
-"assignbtn\n"
-"label\n"
-"string.text"
-msgid "_Add"
-msgstr "H_inzufügen"
-
-#: javastartparametersdialog.ui
-msgctxt ""
-"javastartparametersdialog.ui\n"
-"editbtn\n"
-"label\n"
-"string.text"
-msgid "_Edit"
-msgstr "_Bearbeiten"
-
-#: javastartparametersdialog.ui
-msgctxt ""
-"javastartparametersdialog.ui\n"
-"removebtn\n"
-"label\n"
-"string.text"
-msgid "_Remove"
-msgstr "_Entfernen"
-
-#: linedialog.ui
-msgctxt ""
-"linedialog.ui\n"
-"LineDialog\n"
-"title\n"
-"string.text"
-msgid "Line"
-msgstr "Linie"
-
-#: linedialog.ui
-msgctxt ""
-"linedialog.ui\n"
-"RID_SVXPAGE_LINE\n"
-"label\n"
-"string.text"
-msgid "Line"
-msgstr "Linie"
-
-#: linedialog.ui
-msgctxt ""
-"linedialog.ui\n"
-"RID_SVXPAGE_SHADOW\n"
-"label\n"
-"string.text"
-msgid "Shadow"
-msgstr "Schatten"
-
-#: linedialog.ui
-msgctxt ""
-"linedialog.ui\n"
-"RID_SVXPAGE_LINE_DEF\n"
-"label\n"
-"string.text"
-msgid "Line Styles"
-msgstr "Linienstile"
-
-#: linedialog.ui
-msgctxt ""
-"linedialog.ui\n"
-"RID_SVXPAGE_LINEEND_DEF\n"
-"label\n"
-"string.text"
-msgid "Arrow Styles"
-msgstr "Linienspitzen"
-
-#: lineendstabpage.ui
-msgctxt ""
-"lineendstabpage.ui\n"
-"FT_TITLE\n"
-"label\n"
-"string.text"
-msgid "_Title:"
-msgstr "_Titel:"
-
-#: lineendstabpage.ui
-msgctxt ""
-"lineendstabpage.ui\n"
-"FT_LINE_END_STYLE\n"
-"label\n"
-"string.text"
-msgid "Arrow _style:"
-msgstr "Linien_spitzen:"
-
-#: lineendstabpage.ui
-msgctxt ""
-"lineendstabpage.ui\n"
-"FI_TIP\n"
-"label\n"
-"string.text"
-msgid "Add a selected object to create new arrow styles."
-msgstr "Neue Linienspitzen erhalten Sie durch Hinzufügen eines ausgewählten Objektes."
-
-#: lineendstabpage.ui
-msgctxt ""
-"lineendstabpage.ui\n"
-"BTN_MODIFY\n"
-"label\n"
-"string.text"
-msgid "_Modify"
-msgstr "Än_dern"
-
-#: lineendstabpage.ui
-msgctxt ""
-"lineendstabpage.ui\n"
-"BTN_LOAD\n"
-"tooltip_text\n"
-"string.text"
-msgid "Load arrow styles"
-msgstr "Linienspitzentabelle laden"
-
-#: lineendstabpage.ui
-msgctxt ""
-"lineendstabpage.ui\n"
-"BTN_SAVE\n"
-"tooltip_text\n"
-"string.text"
-msgid "Save arrow styles"
-msgstr "Linienspitzentabelle sichern"
-
-#: lineendstabpage.ui
-msgctxt ""
-"lineendstabpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Organize Arrow Styles"
-msgstr "Linienspitzen verwalten"
-
-#: linestyletabpage.ui
-msgctxt ""
-"linestyletabpage.ui\n"
-"FT_LINESTYLE\n"
-"label\n"
-"string.text"
-msgid "Line _style:"
-msgstr "Linien_stil:"
-
-#: linestyletabpage.ui
-msgctxt ""
-"linestyletabpage.ui\n"
-"FT_TYPE\n"
-"label\n"
-"string.text"
-msgid "_Type:"
-msgstr "_Typ:"
-
-#: linestyletabpage.ui
-msgctxt ""
-"linestyletabpage.ui\n"
-"FT_NUMBER\n"
-"label\n"
-"string.text"
-msgid "_Number:"
-msgstr "An_zahl:"
-
-#: linestyletabpage.ui
-msgctxt ""
-"linestyletabpage.ui\n"
-"FT_LENGTH\n"
-"label\n"
-"string.text"
-msgid "_Length:"
-msgstr "_Länge:"
-
-#: linestyletabpage.ui
-msgctxt ""
-"linestyletabpage.ui\n"
-"FT_DISTANCE\n"
-"label\n"
-"string.text"
-msgid "_Spacing:"
-msgstr "A_bstand:"
-
-#: linestyletabpage.ui
-msgctxt ""
-"linestyletabpage.ui\n"
-"CBX_SYNCHRONIZE\n"
-"label\n"
-"string.text"
-msgid "_Fit to line width"
-msgstr "A_n Linienbreite anpassen"
-
-#: linestyletabpage.ui
-msgctxt ""
-"linestyletabpage.ui\n"
-"BTN_MODIFY\n"
-"label\n"
-"string.text"
-msgid "_Modify"
-msgstr "Än_dern"
-
-#: linestyletabpage.ui
-msgctxt ""
-"linestyletabpage.ui\n"
-"BTN_LOAD\n"
-"tooltip_text\n"
-"string.text"
-msgid "Load Line Styles"
-msgstr "Linienstiltabelle laden"
-
-#: linestyletabpage.ui
-msgctxt ""
-"linestyletabpage.ui\n"
-"BTN_SAVE\n"
-"tooltip_text\n"
-"string.text"
-msgid "Save Line Styles"
-msgstr "Linienstiltabelle sichern"
-
-#: linestyletabpage.ui
-msgctxt ""
-"linestyletabpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Properties"
-msgstr "Eigenschaften"
-
-#: linestyletabpage.ui
-msgctxt ""
-"linestyletabpage.ui\n"
-"liststoreTYPE\n"
-"0\n"
-"stringlist.text"
-msgid "Dots"
-msgstr "Punkte"
-
-#: linestyletabpage.ui
-msgctxt ""
-"linestyletabpage.ui\n"
-"liststoreTYPE\n"
-"1\n"
-"stringlist.text"
-msgid "Dash"
-msgstr "Strich"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"FT_LINE_STYLE\n"
-"label\n"
-"string.text"
-msgid "_Style:"
-msgstr "_Stil:"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"FT_COLOR\n"
-"label\n"
-"string.text"
-msgid "Colo_r:"
-msgstr "_Farbe:"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"FT_LINE_WIDTH\n"
-"label\n"
-"string.text"
-msgid "_Width:"
-msgstr "_Breite:"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"FT_TRANSPARENT\n"
-"label\n"
-"string.text"
-msgid "_Transparency:"
-msgstr "_Transparenz:"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Line Properties"
-msgstr "Linieneigenschaften"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"FT_LINE_ENDS_STYLE\n"
-"label\n"
-"string.text"
-msgid "Start st_yle:"
-msgstr "Linienanfan_g:"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "End sty_le:"
-msgstr "Liniene_nde:"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"FT_LINE_START_WIDTH\n"
-"label\n"
-"string.text"
-msgid "Wi_dth:"
-msgstr "B_reite:"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"TSB_CENTER_START\n"
-"label\n"
-"string.text"
-msgid "Ce_nter"
-msgstr "_Zentriert"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"FT_LINE_END_WIDTH\n"
-"label\n"
-"string.text"
-msgid "W_idth:"
-msgstr "Br_eite:"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"TSB_CENTER_END\n"
-"label\n"
-"string.text"
-msgid "C_enter"
-msgstr "Ze_ntriert"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"CBX_SYNCHRONIZE\n"
-"label\n"
-"string.text"
-msgid "Synchroni_ze ends"
-msgstr "En_den synchronisieren"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Arrow Styles"
-msgstr "Linienspitzen"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"FT_EDGE_STYLE\n"
-"label\n"
-"string.text"
-msgid "_Corner style:"
-msgstr "Liniene_cken:"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"FT_CAP_STYLE\n"
-"label\n"
-"string.text"
-msgid "Ca_p style:"
-msgstr "L_inienenden:"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Corner and Cap Styles"
-msgstr "Ecken- und Linienendenstil"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"MB_SYMBOL_BITMAP\n"
-"label\n"
-"string.text"
-msgid "Select..."
-msgstr "Auswahl..."
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"FT_SYMBOL_WIDTH\n"
-"label\n"
-"string.text"
-msgid "Widt_h:"
-msgstr "_Breite:"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"CB_SYMBOL_RATIO\n"
-"label\n"
-"string.text"
-msgid "_Keep ratio"
-msgstr "Seiten_verhältnis beibehalten"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"FT_SYMBOL_HEIGHT\n"
-"label\n"
-"string.text"
-msgid "Hei_ght:"
-msgstr "Höh_e:"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Icon"
-msgstr "Symbol"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"CTL_PREVIEW\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Example"
-msgstr "Beispiel"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"menuitem1\n"
-"label\n"
-"string.text"
-msgid "_No Symbol"
-msgstr "_Kein Symbol"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"menuitem2\n"
-"label\n"
-"string.text"
-msgid "_Automatic"
-msgstr "A_utomatisch"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"menuitem3\n"
-"label\n"
-"string.text"
-msgid "_From file..."
-msgstr "Aus _Datei..."
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"menuitem4\n"
-"label\n"
-"string.text"
-msgid "_Gallery"
-msgstr "_Gallery"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"menuitem5\n"
-"label\n"
-"string.text"
-msgid "_Symbols"
-msgstr "_Symbole"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"liststoreCAP_STYLE\n"
-"0\n"
-"stringlist.text"
-msgid "Flat"
-msgstr "Flach"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"liststoreCAP_STYLE\n"
-"1\n"
-"stringlist.text"
-msgid "Round"
-msgstr "Rund"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"liststoreCAP_STYLE\n"
-"2\n"
-"stringlist.text"
-msgid "Square"
-msgstr "Rechteckig"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"liststoreEDGE_STYLE\n"
-"0\n"
-"stringlist.text"
-msgid "Rounded"
-msgstr "Abgerundet"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"liststoreEDGE_STYLE\n"
-"1\n"
-"stringlist.text"
-msgid "- none -"
-msgstr "- kein -"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"liststoreEDGE_STYLE\n"
-"2\n"
-"stringlist.text"
-msgid "Mitered"
-msgstr "Gehrung"
-
-#: linetabpage.ui
-msgctxt ""
-"linetabpage.ui\n"
-"liststoreEDGE_STYLE\n"
-"3\n"
-"stringlist.text"
-msgid "Beveled"
-msgstr "Abgeschrägt"
-
-#: macroassigndialog.ui
-msgctxt ""
-"macroassigndialog.ui\n"
-"MacroAssignDialog\n"
-"title\n"
-"string.text"
-msgid "Assign Action"
-msgstr "Aktion zuweisen"
-
-#: macroassignpage.ui
-msgctxt ""
-"macroassignpage.ui\n"
-"eventft\n"
-"label\n"
-"string.text"
-msgid "Event"
-msgstr "Ereignis"
-
-#: macroassignpage.ui
-msgctxt ""
-"macroassignpage.ui\n"
-"assignft\n"
-"label\n"
-"string.text"
-msgid "Assigned Action"
-msgstr "Zugewiesene Aktion"
-
-#: macroassignpage.ui
-msgctxt ""
-"macroassignpage.ui\n"
-"libraryft1\n"
-"label\n"
-"string.text"
-msgid "Assignments"
-msgstr "Zuweisungen"
-
-#: macroassignpage.ui
-msgctxt ""
-"macroassignpage.ui\n"
-"assign\n"
-"label\n"
-"string.text"
-msgid "M_acro..."
-msgstr "M_akro..."
-
-#: macroassignpage.ui
-msgctxt ""
-"macroassignpage.ui\n"
-"component\n"
-"label\n"
-"string.text"
-msgid "Com_ponent..."
-msgstr "Kom_ponente..."
-
-#: macroassignpage.ui
-msgctxt ""
-"macroassignpage.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "Remove"
-msgstr "Entfernen"
-
-#: macroassignpage.ui
-msgctxt ""
-"macroassignpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Assign"
-msgstr "Zuweisen"
-
-#: macroselectordialog.ui
-msgctxt ""
-"macroselectordialog.ui\n"
-"MacroSelectorDialog\n"
-"title\n"
-"string.text"
-msgid "Macro Selector"
-msgstr "Makro-Auswahl"
-
-#: macroselectordialog.ui
-msgctxt ""
-"macroselectordialog.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "Add"
-msgstr "Hinzufügen"
-
-#: macroselectordialog.ui
-msgctxt ""
-"macroselectordialog.ui\n"
-"helpmacro\n"
-"label\n"
-"string.text"
-msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
-msgstr "Wählen Sie zuerst die Bibliothek aus, die das gewünschte Makro enthält. Wählen Sie anschließend das Makro unter 'Name des Makros' aus."
-
-#: macroselectordialog.ui
-msgctxt ""
-"macroselectordialog.ui\n"
-"helptoolbar\n"
-"label\n"
-"string.text"
-msgid "To add a command to a toolbar, select the category and then the command. Then drag the command to the Commands list of the Toolbars tab page in the Customize dialog."
-msgstr "Um einen Befehl zu einer Symbolleiste hinzuzufügen, wählen Sie zuerst eine Kategorie aus und dann den Befehl. Ziehen Sie den Befehl in die Liste Befehle des Registers Symbolleisten im Dialog Anpassen."
-
-#: macroselectordialog.ui
-msgctxt ""
-"macroselectordialog.ui\n"
-"libraryft\n"
-"label\n"
-"string.text"
-msgid "Library"
-msgstr "Bibliothek"
-
-#: macroselectordialog.ui
-msgctxt ""
-"macroselectordialog.ui\n"
-"categoryft\n"
-"label\n"
-"string.text"
-msgid "Category"
-msgstr "Bereich"
-
-#: macroselectordialog.ui
-msgctxt ""
-"macroselectordialog.ui\n"
-"macronameft\n"
-"label\n"
-"string.text"
-msgid "Macro Name"
-msgstr "Name des Makros"
-
-#: macroselectordialog.ui
-msgctxt ""
-"macroselectordialog.ui\n"
-"commandsft\n"
-"label\n"
-"string.text"
-msgid "Commands"
-msgstr "Befehle"
-
-#: macroselectordialog.ui
-msgctxt ""
-"macroselectordialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Description"
-msgstr "Beschreibung"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"toolrename\n"
-"label\n"
-"string.text"
-msgid "Rename..."
-msgstr "Umbenennen..."
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"toolrestore\n"
-"label\n"
-"string.text"
-msgid "Restore Default Command"
-msgstr "Standardbefehl wiederherstellen"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"toolchange\n"
-"label\n"
-"string.text"
-msgid "Change Icon..."
-msgstr "Symbol austauschen..."
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"toolreset\n"
-"label\n"
-"string.text"
-msgid "Reset Icon"
-msgstr "Symbol zurücksetzen"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"toplevelft\n"
-"label\n"
-"string.text"
-msgid "Menu"
-msgstr "Menü"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"toolbarstyleft\n"
-"label\n"
-"string.text"
-msgid "Style"
-msgstr "Stil"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"iconsandtextrb\n"
-"label\n"
-"string.text"
-msgid "Icons & Text"
-msgstr "Symbole & Text"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"iconsrb\n"
-"label\n"
-"string.text"
-msgid "Icons"
-msgstr "Symbole"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"textrb\n"
-"label\n"
-"string.text"
-msgid "Text"
-msgstr "Text"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"toplevelbutton\n"
-"label\n"
-"string.text"
-msgid "New..."
-msgstr "Neu..."
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"menuedit\n"
-"label\n"
-"string.text"
-msgid "Menu"
-msgstr "Menü"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"label26\n"
-"label\n"
-"string.text"
-msgid "%PRODUCTNAME %MODULENAME Menus"
-msgstr "%PRODUCTNAME %MODULENAME Menüs"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"label33\n"
-"label\n"
-"string.text"
-msgid "_Save In"
-msgstr "_Speichern in"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"contentslabel\n"
-"label\n"
-"string.text"
-msgid "Entries"
-msgstr "Einträge"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"resetbtn\n"
-"label\n"
-"string.text"
-msgid "Reset"
-msgstr "Zurücksetzen"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"modify\n"
-"label\n"
-"string.text"
-msgid "Modify"
-msgstr "Ändern"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"deletebtn\n"
-"label\n"
-"string.text"
-msgid "Remove"
-msgstr "Entfernen"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "Add Command"
-msgstr "Befehl hinzufügen"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"addseparatorbtn\n"
-"label\n"
-"string.text"
-msgid "Add Separator"
-msgstr "Trenner hinzufügen"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"addsubmenubtn\n"
-"label\n"
-"string.text"
-msgid "Add Submenu"
-msgstr "Untermenü hinzufügen"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"label27\n"
-"label\n"
-"string.text"
-msgid "Menu Content"
-msgstr "Menüinhalt"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"label28\n"
-"label\n"
-"string.text"
-msgid "_Description"
-msgstr "_Beschreibung"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"move\n"
-"label\n"
-"string.text"
-msgid "Move..."
-msgstr "Verschieben..."
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"rename\n"
-"label\n"
-"string.text"
-msgid "Rename..."
-msgstr "Umbenennen..."
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "Delete..."
-msgstr "Löschen..."
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"modtoolrename\n"
-"label\n"
-"string.text"
-msgid "Rename..."
-msgstr "Umbenennen..."
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"modtooldelete\n"
-"label\n"
-"string.text"
-msgid "Delete"
-msgstr "Löschen"
-
-#: menuassignpage.ui
-msgctxt ""
-"menuassignpage.ui\n"
-"modrename\n"
-"label\n"
-"string.text"
-msgid "Rename..."
-msgstr "Umbenennen..."
-
-#: mosaicdialog.ui
-msgctxt ""
-"mosaicdialog.ui\n"
-"MosaicDialog\n"
-"title\n"
-"string.text"
-msgid "Mosaic"
-msgstr "Mosaik"
-
-#: mosaicdialog.ui
-msgctxt ""
-"mosaicdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Width:"
-msgstr "_Breite:"
-
-#: mosaicdialog.ui
-msgctxt ""
-"mosaicdialog.ui\n"
-"height\n"
-"text\n"
-"string.text"
-msgid "2"
-msgstr "2"
-
-#: mosaicdialog.ui
-msgctxt ""
-"mosaicdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Height:"
-msgstr "Höh_e:"
-
-#: mosaicdialog.ui
-msgctxt ""
-"mosaicdialog.ui\n"
-"edges\n"
-"label\n"
-"string.text"
-msgid "E_nhance edges"
-msgstr "_Kanten hervorheben"
-
-#: mosaicdialog.ui
-msgctxt ""
-"mosaicdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Parameters"
-msgstr "Parameter"
-
-#: movemenu.ui
-msgctxt ""
-"movemenu.ui\n"
-"MoveMenuDialog\n"
-"title\n"
-"string.text"
-msgid "New Menu"
-msgstr "Neues Menü"
-
-#: movemenu.ui
-msgctxt ""
-"movemenu.ui\n"
-"menunameft\n"
-"label\n"
-"string.text"
-msgid "Menu name:"
-msgstr "Menüname:"
-
-#: movemenu.ui
-msgctxt ""
-"movemenu.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Menu _position:"
-msgstr "Menü_position:"
-
-#: movemenu.ui
-msgctxt ""
-"movemenu.ui\n"
-"up-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Up"
-msgstr "Nach oben"
-
-#: movemenu.ui
-msgctxt ""
-"movemenu.ui\n"
-"down-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Down"
-msgstr "Nach unten"
-
-#: multipathdialog.ui
-msgctxt ""
-"multipathdialog.ui\n"
-"MultiPathDialog\n"
-"title\n"
-"string.text"
-msgid "Select Paths"
-msgstr "Pfad auswählen"
-
-#: multipathdialog.ui
-msgctxt ""
-"multipathdialog.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "_Add..."
-msgstr "_Hinzufügen..."
-
-#: multipathdialog.ui
-msgctxt ""
-"multipathdialog.ui\n"
-"pathlist\n"
-"label\n"
-"string.text"
-msgid "Path list:"
-msgstr "Pfadliste:"
-
-#: multipathdialog.ui
-msgctxt ""
-"multipathdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Mark the Default Path for New Files"
-msgstr "Wählen Sie den Standardpfad für neue Dateien."
-
-#: namedialog.ui
-msgctxt ""
-"namedialog.ui\n"
-"NameDialog\n"
-"title\n"
-"string.text"
-msgid "Name"
-msgstr "Name"
-
-#: newlibdialog.ui
-msgctxt ""
-"newlibdialog.ui\n"
-"NewLibDialog\n"
-"title\n"
-"string.text"
-msgid "Create Library"
-msgstr "Bibliothek erstellen"
-
-#: newlibdialog.ui
-msgctxt ""
-"newlibdialog.ui\n"
-"newlibft\n"
-"label\n"
-"string.text"
-msgid "Enter the name for the new library."
-msgstr "Geben Sie den Namen für die neue Bibliothek ein."
-
-#: newlibdialog.ui
-msgctxt ""
-"newlibdialog.ui\n"
-"newmacroft\n"
-"label\n"
-"string.text"
-msgid "Enter the name for the new macro."
-msgstr "Geben Sie den Namen für das neue Makro ein."
-
-#: newlibdialog.ui
-msgctxt ""
-"newlibdialog.ui\n"
-"renameft\n"
-"label\n"
-"string.text"
-msgid "Enter the new name for the selected object."
-msgstr "Geben Sie den Namen für das ausgewählte Objekt ein."
-
-#: newlibdialog.ui
-msgctxt ""
-"newlibdialog.ui\n"
-"altmacrotitle\n"
-"label\n"
-"string.text"
-msgid "Create Macro"
-msgstr "Makro erstellen"
-
-#: newlibdialog.ui
-msgctxt ""
-"newlibdialog.ui\n"
-"altrenametitle\n"
-"label\n"
-"string.text"
-msgid "Rename"
-msgstr "Umbenennen"
-
-#: newtabledialog.ui
-msgctxt ""
-"newtabledialog.ui\n"
-"NewTableDialog\n"
-"title\n"
-"string.text"
-msgid "Insert Table"
-msgstr "Tabelle einfügen"
-
-#: newtabledialog.ui
-msgctxt ""
-"newtabledialog.ui\n"
-"columns_label\n"
-"label\n"
-"string.text"
-msgid "_Number of columns:"
-msgstr "_Spaltenanzahl:"
-
-#: newtabledialog.ui
-msgctxt ""
-"newtabledialog.ui\n"
-"rows_label\n"
-"label\n"
-"string.text"
-msgid "_Number of rows:"
-msgstr "_Zeilenanzahl:"
-
-#: newtoolbardialog.ui
-msgctxt ""
-"newtoolbardialog.ui\n"
-"NewToolbarDialog\n"
-"title\n"
-"string.text"
-msgid "Name"
-msgstr "Name"
-
-#: newtoolbardialog.ui
-msgctxt ""
-"newtoolbardialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Toolbar name:"
-msgstr "_Name der Symbolleiste:"
-
-#: newtoolbardialog.ui
-msgctxt ""
-"newtoolbardialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Save in:"
-msgstr "_Speichern in:"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"add\n"
-"tooltip_text\n"
-"string.text"
-msgid "Add"
-msgstr "Hinzufügen"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"edit\n"
-"tooltip_text\n"
-"string.text"
-msgid "Edit Comment"
-msgstr "Kommentar bearbeiten"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"delete\n"
-"tooltip_text\n"
-"string.text"
-msgid "Remove"
-msgstr "Entfernen"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"formatf\n"
-"label\n"
-"string.text"
-msgid "_Format code"
-msgstr "Format-_Code"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"decimalsft\n"
-"label\n"
-"string.text"
-msgid "_Decimal places:"
-msgstr "N_achkommastellen:"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"denominatorft\n"
-"label\n"
-"string.text"
-msgid "Den_ominator places:"
-msgstr "Stellen für Nen_ner:"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"leadzerosft\n"
-"label\n"
-"string.text"
-msgid "Leading _zeroes:"
-msgstr "Führende _Nullen:"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"negnumred\n"
-"label\n"
-"string.text"
-msgid "_Negative numbers red"
-msgstr "Negativ in _Rot"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"thousands\n"
-"label\n"
-"string.text"
-msgid "_Thousands separator"
-msgstr "_Tausendertrennzeichen"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"engineering\n"
-"label\n"
-"string.text"
-msgid "_Engineering notation"
-msgstr "T_echnische Schreibweise"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"optionsft\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"categoryft\n"
-"label\n"
-"string.text"
-msgid "C_ategory"
-msgstr "_Kategorie"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"formatft\n"
-"label\n"
-"string.text"
-msgid "Fo_rmat"
-msgstr "_Format"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"sourceformat\n"
-"label\n"
-"string.text"
-msgid "So_urce format"
-msgstr "_Quellformat"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"languageft\n"
-"label\n"
-"string.text"
-msgid "_Language"
-msgstr "_Sprache"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"liststore1\n"
-"0\n"
-"stringlist.text"
-msgid "All"
-msgstr "Alle"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"liststore1\n"
-"1\n"
-"stringlist.text"
-msgid "User-defined"
-msgstr "Benutzerdefiniert"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"liststore1\n"
-"2\n"
-"stringlist.text"
-msgid "Number"
-msgstr "Dezimalzahl"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"liststore1\n"
-"3\n"
-"stringlist.text"
-msgid "Percent"
-msgstr "Prozent"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"liststore1\n"
-"4\n"
-"stringlist.text"
-msgid "Currency"
-msgstr "Währung"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"liststore1\n"
-"5\n"
-"stringlist.text"
-msgid "Date"
-msgstr "Datum"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"liststore1\n"
-"6\n"
-"stringlist.text"
-msgid "Time"
-msgstr "Uhrzeit"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"liststore1\n"
-"7\n"
-"stringlist.text"
-msgid "Scientific"
-msgstr "Wissenschaftlich"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"liststore1\n"
-"8\n"
-"stringlist.text"
-msgid "Fraction"
-msgstr "Bruch"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"liststore1\n"
-"9\n"
-"stringlist.text"
-msgid "Boolean Value"
-msgstr "Wahrheitswert"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"liststore1\n"
-"10\n"
-"stringlist.text"
-msgid "Text"
-msgstr "Text"
-
-#: numberingformatpage.ui
-msgctxt ""
-"numberingformatpage.ui\n"
-"liststore2\n"
-"0\n"
-"stringlist.text"
-msgid "Automatically"
-msgstr "Automatisch"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Level"
-msgstr "Ebene"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Number:"
-msgstr "Art:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"startatft\n"
-"label\n"
-"string.text"
-msgid "Start at:"
-msgstr "Beginn bei:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"bitmapft\n"
-"label\n"
-"string.text"
-msgid "Graphics:"
-msgstr "Bilder:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"widthft\n"
-"label\n"
-"string.text"
-msgid "Width:"
-msgstr "Breite:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"heightft\n"
-"label\n"
-"string.text"
-msgid "Height:"
-msgstr "Höhe:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"keepratio\n"
-"label\n"
-"string.text"
-msgid "Keep ratio"
-msgstr "Seitenverhältnis beibehalten"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"orientft\n"
-"label\n"
-"string.text"
-msgid "Alignment:"
-msgstr "Ausrichtung:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"orientlb\n"
-"0\n"
-"stringlist.text"
-msgid "Top of baseline"
-msgstr "Basis oben"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"orientlb\n"
-"1\n"
-"stringlist.text"
-msgid "Center of baseline"
-msgstr "Basis zentriert"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"orientlb\n"
-"2\n"
-"stringlist.text"
-msgid "Bottom of baseline"
-msgstr "Basis unten"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"orientlb\n"
-"3\n"
-"stringlist.text"
-msgid "Top of character"
-msgstr "Zeichen oben"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"orientlb\n"
-"4\n"
-"stringlist.text"
-msgid "Center of character"
-msgstr "Zeichen zentriert"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"orientlb\n"
-"5\n"
-"stringlist.text"
-msgid "Bottom of character"
-msgstr "Zeichen unten"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"orientlb\n"
-"6\n"
-"stringlist.text"
-msgid "Top of line"
-msgstr "Zeile oben"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"orientlb\n"
-"7\n"
-"stringlist.text"
-msgid "Center of line"
-msgstr "Zeile zentriert"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"orientlb\n"
-"8\n"
-"stringlist.text"
-msgid "Bottom of line"
-msgstr "Zeile unten"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"bitmap\n"
-"label\n"
-"string.text"
-msgid "Select..."
-msgstr "Auswahl..."
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"numalign\n"
-"0\n"
-"stringlist.text"
-msgid "Left"
-msgstr "Links"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"numalign\n"
-"1\n"
-"stringlist.text"
-msgid "Centered"
-msgstr "Zentriert"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"numalign\n"
-"2\n"
-"stringlist.text"
-msgid "Right"
-msgstr "Rechts"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"bullet\n"
-"label\n"
-"string.text"
-msgid "Select..."
-msgstr "Auswahl..."
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"prefixft\n"
-"label\n"
-"string.text"
-msgid "Before:"
-msgstr "Vor:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"separator\n"
-"label\n"
-"string.text"
-msgid "Separator"
-msgstr "Trenner"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"suffixft\n"
-"label\n"
-"string.text"
-msgid "After:"
-msgstr "Hinter:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"sublevelsft\n"
-"label\n"
-"string.text"
-msgid "Show sublevels:"
-msgstr "Vollständig:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"bulletft\n"
-"label\n"
-"string.text"
-msgid "Character:"
-msgstr "Zeichen:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"relsizeft\n"
-"label\n"
-"string.text"
-msgid "_Relative size:"
-msgstr "_Relative Größe:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"colorft\n"
-"label\n"
-"string.text"
-msgid "Color:"
-msgstr "Farbe:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"charstyleft\n"
-"label\n"
-"string.text"
-msgid "Character style:"
-msgstr "Zeichenvorlage:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"numalignft\n"
-"label\n"
-"string.text"
-msgid "_Alignment:"
-msgstr "Ausri_chtung:"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Numbering"
-msgstr "Liste"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"allsame\n"
-"label\n"
-"string.text"
-msgid "_Consecutive numbering"
-msgstr "_Fortlaufende Nummerierung"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "All Levels"
-msgstr "Alle Ebenen"
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"fromfile\n"
-"label\n"
-"string.text"
-msgid "From file..."
-msgstr "Aus Datei..."
-
-#: numberingoptionspage.ui
-msgctxt ""
-"numberingoptionspage.ui\n"
-"gallery\n"
-"label\n"
-"string.text"
-msgid "Gallery"
-msgstr "Gallery"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"1\n"
-"label\n"
-"string.text"
-msgid "Level"
-msgstr "Ebene"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"numfollowedby\n"
-"label\n"
-"string.text"
-msgid "Numbering followed by:"
-msgstr "Nummerierung wird gefolgt von:"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"num2align\n"
-"label\n"
-"string.text"
-msgid "N_umbering alignment:"
-msgstr "Ausri_chtung der Nummerierung:"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"alignedat\n"
-"label\n"
-"string.text"
-msgid "Aligned at:"
-msgstr "Ausgerichtet bei:"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"indentat\n"
-"label\n"
-"string.text"
-msgid "Indent at:"
-msgstr "Einzug bei:"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"at\n"
-"label\n"
-"string.text"
-msgid "Tab stop at:"
-msgstr "Tabulator bei:"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"indent\n"
-"label\n"
-"string.text"
-msgid "Indent:"
-msgstr "Einzug:"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"relative\n"
-"label\n"
-"string.text"
-msgid "Relati_ve"
-msgstr "Relati_v"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"numberingwidth\n"
-"label\n"
-"string.text"
-msgid "Width of numbering:"
-msgstr "Breite der Nummerierung:"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"numdist\n"
-"label\n"
-"string.text"
-msgid ""
-"Minimum space between\n"
-"numbering and text:"
-msgstr ""
-"Minimaler Abstand zwischen\n"
-"Nummerierung und Text:"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"numalign\n"
-"label\n"
-"string.text"
-msgid "N_umbering alignment:"
-msgstr "Ausri_chtung der Nummerierung:"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "Position and Spacing"
-msgstr "Position und Abstand"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"standard\n"
-"label\n"
-"string.text"
-msgid "Default"
-msgstr "Standard"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"liststore1\n"
-"0\n"
-"stringlist.text"
-msgid "Left"
-msgstr "Links"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"liststore1\n"
-"1\n"
-"stringlist.text"
-msgid "Centered"
-msgstr "Zentriert"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"liststore1\n"
-"2\n"
-"stringlist.text"
-msgid "Right"
-msgstr "Rechts"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"liststore2\n"
-"0\n"
-"stringlist.text"
-msgid "Tab stop"
-msgstr "Tabulator"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"liststore2\n"
-"1\n"
-"stringlist.text"
-msgid "Space"
-msgstr "Leerzeichen"
-
-#: numberingpositionpage.ui
-msgctxt ""
-"numberingpositionpage.ui\n"
-"liststore2\n"
-"2\n"
-"stringlist.text"
-msgid "Nothing"
-msgstr "Keins"
-
-#: objectnamedialog.ui
-msgctxt ""
-"objectnamedialog.ui\n"
-"ObjectNameDialog\n"
-"title\n"
-"string.text"
-msgid "Name"
-msgstr "Name"
-
-#: objectnamedialog.ui
-msgctxt ""
-"objectnamedialog.ui\n"
-"object_name_label\n"
-"label\n"
-"string.text"
-msgid "_Name:"
-msgstr "_Name:"
-
-#: objecttitledescdialog.ui
-msgctxt ""
-"objecttitledescdialog.ui\n"
-"ObjectTitleDescDialog\n"
-"title\n"
-"string.text"
-msgid "Description"
-msgstr "Beschreibung"
-
-#: objecttitledescdialog.ui
-msgctxt ""
-"objecttitledescdialog.ui\n"
-"object_title_label\n"
-"label\n"
-"string.text"
-msgid "_Title:"
-msgstr "_Titel:"
-
-#: objecttitledescdialog.ui
-msgctxt ""
-"objecttitledescdialog.ui\n"
-"desc_label\n"
-"label\n"
-"string.text"
-msgid "_Description:"
-msgstr "_Beschreibung:"
-
-#: optaccessibilitypage.ui
-msgctxt ""
-"optaccessibilitypage.ui\n"
-"acctool\n"
-"label\n"
-"string.text"
-msgid "Support _assistive technology tools (program restart required)"
-msgstr "Unterstützung _behindertengerechter Zugangsprogramme (Programmneustart erforderlich)"
-
-#: optaccessibilitypage.ui
-msgctxt ""
-"optaccessibilitypage.ui\n"
-"textselinreadonly\n"
-"label\n"
-"string.text"
-msgid "Use te_xt selection cursor in read-only text documents"
-msgstr "Te_xtauswahlcursor in schreibgeschützten Textdokumenten verwenden"
-
-#: optaccessibilitypage.ui
-msgctxt ""
-"optaccessibilitypage.ui\n"
-"animatedgraphics\n"
-"label\n"
-"string.text"
-msgid "Allow animated _images"
-msgstr "Animierte _Bilder zulassen"
-
-#: optaccessibilitypage.ui
-msgctxt ""
-"optaccessibilitypage.ui\n"
-"animatedtext\n"
-"label\n"
-"string.text"
-msgid "Allow animated _text"
-msgstr "Animierten _Text zulassen"
-
-#: optaccessibilitypage.ui
-msgctxt ""
-"optaccessibilitypage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Miscellaneous Options"
-msgstr "Sonstige Optionen"
-
-#: optaccessibilitypage.ui
-msgctxt ""
-"optaccessibilitypage.ui\n"
-"autodetecthc\n"
-"label\n"
-"string.text"
-msgid "Automatically _detect high contrast mode of operating system"
-msgstr "_Kontrastdarstellungsmodus des Betriebssystems automatisch erkennen"
-
-#: optaccessibilitypage.ui
-msgctxt ""
-"optaccessibilitypage.ui\n"
-"autofontcolor\n"
-"label\n"
-"string.text"
-msgid "Use automatic font _color for screen display"
-msgstr "Systemschrift_farbe für Bildschirmdarstellung nutzen"
-
-#: optaccessibilitypage.ui
-msgctxt ""
-"optaccessibilitypage.ui\n"
-"systempagepreviewcolor\n"
-"label\n"
-"string.text"
-msgid "_Use system colors for page previews"
-msgstr "Systemfarben für Druckvorschau _verwenden"
-
-#: optaccessibilitypage.ui
-msgctxt ""
-"optaccessibilitypage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Options for High Contrast Appearance"
-msgstr "Optionen für die Kontrastdarstellung"
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"javaenabled\n"
-"label\n"
-"string.text"
-msgid "_Use a Java runtime environment"
-msgstr "_Eine Java-Laufzeitumgebung verwenden"
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Java runtime environments (JRE) already installed:"
-msgstr "_Bereits installierte Java-Laufzeitumgebungen (JRE):"
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "_Add..."
-msgstr "_Hinzufügen..."
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"parameters\n"
-"label\n"
-"string.text"
-msgid "_Parameters..."
-msgstr "_Parameter..."
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"classpath\n"
-"label\n"
-"string.text"
-msgid "_Class Path..."
-msgstr "_Class-Pfad..."
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"vendor\n"
-"label\n"
-"string.text"
-msgid "Vendor"
-msgstr "Hersteller"
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"version\n"
-"label\n"
-"string.text"
-msgid "Version"
-msgstr "Version"
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"features\n"
-"label\n"
-"string.text"
-msgid "Features"
-msgstr "Besondere Merkmale"
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"a11y\n"
-"label\n"
-"string.text"
-msgid "with accessibility support"
-msgstr "Mit Barrierefreiheits-Unterstützung"
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"selectruntime\n"
-"label\n"
-"string.text"
-msgid "Select a Java Runtime Environment"
-msgstr "Java-Laufzeitumgebung auswählen"
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"javapath\n"
-"label\n"
-"string.text"
-msgid "Location: "
-msgstr "Speicherort: "
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Java Options"
-msgstr "Java Optionen"
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"experimental\n"
-"label\n"
-"string.text"
-msgid "Enable experimental features (may be unstable)"
-msgstr "Experimentelle Funktionen aktivieren (kann instabil sein)"
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"macrorecording\n"
-"label\n"
-"string.text"
-msgid "Enable macro recording (may be limited)"
-msgstr "Makroaufzeichnung ermöglichen (eingeschränkt)"
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"expertconfig\n"
-"label\n"
-"string.text"
-msgid "Open Expert Configuration"
-msgstr "Experteneinstellungen öffnen"
-
-#: optadvancedpage.ui
-msgctxt ""
-"optadvancedpage.ui\n"
-"label12\n"
-"label\n"
-"string.text"
-msgid "Optional Features"
-msgstr "Optionale Funktionen"
-
-#: optappearancepage.ui
-msgctxt ""
-"optappearancepage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Scheme:"
-msgstr "_Schema:"
-
-#: optappearancepage.ui
-msgctxt ""
-"optappearancepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Color Scheme"
-msgstr "Farbschema"
-
-#: optappearancepage.ui
-msgctxt ""
-"optappearancepage.ui\n"
-"uielements\n"
-"label\n"
-"string.text"
-msgid "User interface elements"
-msgstr "Elemente der Benutzeroberfläche"
-
-#: optappearancepage.ui
-msgctxt ""
-"optappearancepage.ui\n"
-"colorsetting\n"
-"label\n"
-"string.text"
-msgid "Color setting"
-msgstr "Farbeinstellung"
-
-#: optappearancepage.ui
-msgctxt ""
-"optappearancepage.ui\n"
-"preview\n"
-"label\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: optappearancepage.ui
-msgctxt ""
-"optappearancepage.ui\n"
-"on\n"
-"label\n"
-"string.text"
-msgid "On"
-msgstr "Ein"
-
-#: optappearancepage.ui
-msgctxt ""
-"optappearancepage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Custom Colors"
-msgstr "Benutzerdefinierte Farben"
-
-#: optasianpage.ui
-msgctxt ""
-"optasianpage.ui\n"
-"charkerning\n"
-"label\n"
-"string.text"
-msgid "_Western text only"
-msgstr "Nur _westliche Zeichen"
-
-#: optasianpage.ui
-msgctxt ""
-"optasianpage.ui\n"
-"charpunctkerning\n"
-"label\n"
-"string.text"
-msgid "Western _text and Asian punctuation"
-msgstr "_Westliche Zeichen und asiatische Interpunktion"
-
-#: optasianpage.ui
-msgctxt ""
-"optasianpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Kerning"
-msgstr "Unterschneidung"
-
-#: optasianpage.ui
-msgctxt ""
-"optasianpage.ui\n"
-"nocompression\n"
-"label\n"
-"string.text"
-msgid "_No compression"
-msgstr "_Keine Kompression"
-
-#: optasianpage.ui
-msgctxt ""
-"optasianpage.ui\n"
-"punctcompression\n"
-"label\n"
-"string.text"
-msgid "_Compress punctuation only"
-msgstr "Nur _Interpunktion komprimieren"
-
-#: optasianpage.ui
-msgctxt ""
-"optasianpage.ui\n"
-"punctkanacompression\n"
-"label\n"
-"string.text"
-msgid "Compress punctuation and Japanese Kana"
-msgstr "Interpunktion und japanische Kana komprimieren"
-
-#: optasianpage.ui
-msgctxt ""
-"optasianpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Character Spacing"
-msgstr "Zeichenabstand"
-
-#: optasianpage.ui
-msgctxt ""
-"optasianpage.ui\n"
-"standard\n"
-"label\n"
-"string.text"
-msgid "_Default"
-msgstr "Standar_d"
-
-#: optasianpage.ui
-msgctxt ""
-"optasianpage.ui\n"
-"languageft\n"
-"label\n"
-"string.text"
-msgid "_Language:"
-msgstr "_Sprache:"
-
-#: optasianpage.ui
-msgctxt ""
-"optasianpage.ui\n"
-"startft\n"
-"label\n"
-"string.text"
-msgid "Not _at start of line:"
-msgstr "Kein Zeilen_beginn:"
-
-#: optasianpage.ui
-msgctxt ""
-"optasianpage.ui\n"
-"endft\n"
-"label\n"
-"string.text"
-msgid "Not at _end of line:"
-msgstr "Kein Zeilene_nde:"
-
-#: optasianpage.ui
-msgctxt ""
-"optasianpage.ui\n"
-"hintft\n"
-"label\n"
-"string.text"
-msgid "Without user-defined line break symbols"
-msgstr "Ohne benutzerdefinierte Zeilenwechselzeichen"
-
-#: optasianpage.ui
-msgctxt ""
-"optasianpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "First and Last Characters"
-msgstr "Anfangs- und Endzeichen"
-
-#: optbasicidepage.ui
-msgctxt ""
-"optbasicidepage.ui\n"
-"codecomplete_enable\n"
-"label\n"
-"string.text"
-msgid "Enable code completion"
-msgstr "Code-Vervollständigung einschalten"
-
-#: optbasicidepage.ui
-msgctxt ""
-"optbasicidepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Code Completion"
-msgstr "Code-Vervollständigung"
-
-#: optbasicidepage.ui
-msgctxt ""
-"optbasicidepage.ui\n"
-"autoclose_proc\n"
-"label\n"
-"string.text"
-msgid "Autoclose procedures"
-msgstr "Prozeduren automatisch schließen"
-
-#: optbasicidepage.ui
-msgctxt ""
-"optbasicidepage.ui\n"
-"autoclose_paren\n"
-"label\n"
-"string.text"
-msgid "Autoclose parenthesis"
-msgstr "Klammer automatisch schließen"
-
-#: optbasicidepage.ui
-msgctxt ""
-"optbasicidepage.ui\n"
-"autoclose_quotes\n"
-"label\n"
-"string.text"
-msgid "Autoclose quotes"
-msgstr "Anführungszeichen automatisch schließen"
-
-#: optbasicidepage.ui
-msgctxt ""
-"optbasicidepage.ui\n"
-"autocorrect\n"
-"label\n"
-"string.text"
-msgid "Autocorrection"
-msgstr "AutoKorrektur"
-
-#: optbasicidepage.ui
-msgctxt ""
-"optbasicidepage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Code Suggestion"
-msgstr "Code-Vorschlag"
-
-#: optbasicidepage.ui
-msgctxt ""
-"optbasicidepage.ui\n"
-"extendedtypes_enable\n"
-"label\n"
-"string.text"
-msgid "Use extended types"
-msgstr "Erweiterte Typen benutzen"
-
-#: optbasicidepage.ui
-msgctxt ""
-"optbasicidepage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Language Features"
-msgstr "Sprachfunktionen"
-
-#: optchartcolorspage.ui
-msgctxt ""
-"optchartcolorspage.ui\n"
-"label20\n"
-"label\n"
-"string.text"
-msgid "Chart Colors"
-msgstr "Diagrammfarben"
-
-#: optchartcolorspage.ui
-msgctxt ""
-"optchartcolorspage.ui\n"
-"default\n"
-"label\n"
-"string.text"
-msgid "_Default"
-msgstr "Standar_d"
-
-#: optchartcolorspage.ui
-msgctxt ""
-"optchartcolorspage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Color Table"
-msgstr "Farbtabelle"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"sequencechecking\n"
-"label\n"
-"string.text"
-msgid "Use se_quence checking"
-msgstr "Se_quenzüberprüfung anwenden"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"restricted\n"
-"label\n"
-"string.text"
-msgid "Restricted"
-msgstr "Beschränkt"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"typeandreplace\n"
-"label\n"
-"string.text"
-msgid "_Type and replace"
-msgstr "A_utomatisches Ersetzen"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Sequence Checking"
-msgstr "Sequenzüberprüfung"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Movement:"
-msgstr "Bewegung:"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"movementlogical\n"
-"label\n"
-"string.text"
-msgid "Lo_gical"
-msgstr "_Logisch"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"movementvisual\n"
-"label\n"
-"string.text"
-msgid "_Visual"
-msgstr "_Visuell"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Cursor Control"
-msgstr "Cursorsteuerung"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "_Numerals:"
-msgstr "Z_iffern:"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"numerals\n"
-"0\n"
-"stringlist.text"
-msgid "Arabic (1, 2, 3…)"
-msgstr "Arabisch (1, 2, 3…)"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"numerals\n"
-"1\n"
-"stringlist.text"
-msgid "Eastern Arabic (٣ ,٢ ,١…)"
-msgstr "Ostarabisch (٣ ,٢ ,١…)"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"numerals\n"
-"2\n"
-"stringlist.text"
-msgid "System"
-msgstr "System"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"numerals\n"
-"3\n"
-"stringlist.text"
-msgid "Context"
-msgstr "Inhalt"
-
-#: optctlpage.ui
-msgctxt ""
-"optctlpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "General Options"
-msgstr "Allgemeine Optionen"
-
-#: optemailpage.ui
-msgctxt ""
-"optemailpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_E-mail program:"
-msgstr "_E-Mail-Programm:"
-
-#: optemailpage.ui
-msgctxt ""
-"optemailpage.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "Browse..."
-msgstr "Durchsuchen..."
-
-#: optemailpage.ui
-msgctxt ""
-"optemailpage.ui\n"
-"browsetitle\n"
-"label\n"
-"string.text"
-msgid "All files"
-msgstr "Alle Dateien"
-
-#: optemailpage.ui
-msgctxt ""
-"optemailpage.ui\n"
-"suppress\n"
-"label\n"
-"string.text"
-msgid "Suppress hidden elements of documents"
-msgstr "Versteckte Elemente von Dokumenten unterdrücken"
-
-#: optemailpage.ui
-msgctxt ""
-"optemailpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Sending Documents as E-mail Attachments"
-msgstr "Versenden von Dokumenten als E-Mail-Anhang"
-
-#: optfltrembedpage.ui
-msgctxt ""
-"optfltrembedpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "[L]: Load and convert the object"
-msgstr "[L]: Objekt laden und konvertieren"
-
-#: optfltrembedpage.ui
-msgctxt ""
-"optfltrembedpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "[S]: Convert and save the object"
-msgstr "[S]: Objekt konvertieren und speichern"
-
-#: optfltrembedpage.ui
-msgctxt ""
-"optfltrembedpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Embedded Objects"
-msgstr "Eingebettete Objekte"
-
-#: optfltrembedpage.ui
-msgctxt ""
-"optfltrembedpage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Export as:"
-msgstr "Exportieren als:"
-
-#: optfltrembedpage.ui
-msgctxt ""
-"optfltrembedpage.ui\n"
-"highlighting\n"
-"label\n"
-"string.text"
-msgid "Highlighting"
-msgstr "Hervorhebung"
-
-#: optfltrembedpage.ui
-msgctxt ""
-"optfltrembedpage.ui\n"
-"shading\n"
-"label\n"
-"string.text"
-msgid "Shading"
-msgstr "Schattierung"
-
-#: optfltrembedpage.ui
-msgctxt ""
-"optfltrembedpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Character Highlighting"
-msgstr "Zeichenhervorhebung"
-
-#: optfltrpage.ui
-msgctxt ""
-"optfltrpage.ui\n"
-"wo_basic\n"
-"label\n"
-"string.text"
-msgid "Load Basic _code"
-msgstr "Basic _Code laden"
-
-#: optfltrpage.ui
-msgctxt ""
-"optfltrpage.ui\n"
-"wo_exec\n"
-"label\n"
-"string.text"
-msgid "E_xecutable code"
-msgstr "Aus_führbarer Code"
-
-#: optfltrpage.ui
-msgctxt ""
-"optfltrpage.ui\n"
-"wo_saveorig\n"
-"label\n"
-"string.text"
-msgid "Save _original Basic code"
-msgstr "Original _Basic Code speichern"
-
-#: optfltrpage.ui
-msgctxt ""
-"optfltrpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Microsoft Word 97/2000/XP"
-msgstr "Microsoft Word 97/2000/XP"
-
-#: optfltrpage.ui
-msgctxt ""
-"optfltrpage.ui\n"
-"ex_basic\n"
-"label\n"
-"string.text"
-msgid "Lo_ad Basic code"
-msgstr "Basic Code _laden"
-
-#: optfltrpage.ui
-msgctxt ""
-"optfltrpage.ui\n"
-"ex_exec\n"
-"label\n"
-"string.text"
-msgid "E_xecutable code"
-msgstr "Aus_führbarer Code"
-
-#: optfltrpage.ui
-msgctxt ""
-"optfltrpage.ui\n"
-"ex_saveorig\n"
-"label\n"
-"string.text"
-msgid "Sa_ve original Basic code"
-msgstr "Or_iginal Basic Code speichern"
-
-#: optfltrpage.ui
-msgctxt ""
-"optfltrpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Microsoft Excel 97/2000/XP"
-msgstr "Microsoft Excel 97/2000/XP"
-
-#: optfltrpage.ui
-msgctxt ""
-"optfltrpage.ui\n"
-"pp_basic\n"
-"label\n"
-"string.text"
-msgid "Load Ba_sic code"
-msgstr "Ba_sic Code laden"
-
-#: optfltrpage.ui
-msgctxt ""
-"optfltrpage.ui\n"
-"pp_saveorig\n"
-"label\n"
-"string.text"
-msgid "Sav_e original Basic code"
-msgstr "Ori_ginal Basic Code speichern"
-
-#: optfltrpage.ui
-msgctxt ""
-"optfltrpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Microsoft PowerPoint 97/2000/XP"
-msgstr "Microsoft PowerPoint 97/2000/XP"
-
-#: optfontspage.ui
-msgctxt ""
-"optfontspage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Font:"
-msgstr "Sc_hrift:"
-
-#: optfontspage.ui
-msgctxt ""
-"optfontspage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Re_place with:"
-msgstr "Ersetzen _durch:"
-
-#: optfontspage.ui
-msgctxt ""
-"optfontspage.ui\n"
-"always\n"
-"label\n"
-"string.text"
-msgid "Always"
-msgstr "Immer"
-
-#: optfontspage.ui
-msgctxt ""
-"optfontspage.ui\n"
-"screenonly\n"
-"label\n"
-"string.text"
-msgid "Screen only"
-msgstr "Nur Bildschirm"
-
-#: optfontspage.ui
-msgctxt ""
-"optfontspage.ui\n"
-"font\n"
-"label\n"
-"string.text"
-msgid "Font"
-msgstr "Schriftart"
-
-#: optfontspage.ui
-msgctxt ""
-"optfontspage.ui\n"
-"replacewith\n"
-"label\n"
-"string.text"
-msgid "Replace with"
-msgstr "Ersetzen durch"
-
-#: optfontspage.ui
-msgctxt ""
-"optfontspage.ui\n"
-"usetable\n"
-"label\n"
-"string.text"
-msgid "_Apply replacement table"
-msgstr "_Ersetzungstabelle anwenden"
-
-#: optfontspage.ui
-msgctxt ""
-"optfontspage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Replacement Table"
-msgstr "Ersetzungstabelle"
-
-#: optfontspage.ui
-msgctxt ""
-"optfontspage.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Fon_ts:"
-msgstr "S_chriftarten:"
-
-#: optfontspage.ui
-msgctxt ""
-"optfontspage.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "_Size:"
-msgstr "_Größe:"
-
-#: optfontspage.ui
-msgctxt ""
-"optfontspage.ui\n"
-"fontname\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: optfontspage.ui
-msgctxt ""
-"optfontspage.ui\n"
-"nonpropfontonly\n"
-"label\n"
-"string.text"
-msgid "_Non-proportional fonts only"
-msgstr "_Nur nicht-proportionale Schriftarten"
-
-#: optfontspage.ui
-msgctxt ""
-"optfontspage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Font Settings for HTML, Basic and SQL Sources"
-msgstr "Schrifteinstellungen für HTML-, Basic- und SQL-Quelltexte"
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"exthelp\n"
-"label\n"
-"string.text"
-msgid "_Extended tips"
-msgstr "Er_weiterte Tipps"
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Help"
-msgstr "Hilfe"
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"filedlg\n"
-"label\n"
-"string.text"
-msgid "_Use %PRODUCTNAME dialogs"
-msgstr "%PRODUCTNAME-Dialoge _verwenden"
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Open/Save Dialogs"
-msgstr "Dialoge zum Öffnen/Speichern"
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"printdlg\n"
-"label\n"
-"string.text"
-msgid "Use %PRODUCTNAME _dialogs"
-msgstr "%PRODUCTNAME-Dialoge verwende_n"
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Print Dialogs"
-msgstr "Dialoge zum Drucken"
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"docstatus\n"
-"label\n"
-"string.text"
-msgid "_Printing sets \"document modified\" status"
-msgstr "_Drucken setzt Status \"Dokument geändert\""
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Document Status"
-msgstr "Dokumentstatus"
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "_Interpret as years between "
-msgstr "_Interpretieren als Jahre zwischen"
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"toyear\n"
-"label\n"
-"string.text"
-msgid "and "
-msgstr "und "
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Year (Two Digits)"
-msgstr "Jahr (zweistellig)"
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"collectusageinfo\n"
-"label\n"
-"string.text"
-msgid "Collect usage data and send it to The Document Foundation"
-msgstr "Nutzungsdaten sammeln und an die The Document Foundation senden"
-
-#: optgeneralpage.ui
-msgctxt ""
-"optgeneralpage.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Help Improve %PRODUCTNAME"
-msgstr "Mithelfen, %PRODUCTNAME zu verbessern"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"size7FT\n"
-"label\n"
-"string.text"
-msgid "Size _7:"
-msgstr "Größe _7:"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"size6FT\n"
-"label\n"
-"string.text"
-msgid "Size _6:"
-msgstr "Größe _6:"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"size5FT\n"
-"label\n"
-"string.text"
-msgid "Size _5:"
-msgstr "Größe _5:"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"size4FT\n"
-"label\n"
-"string.text"
-msgid "Size _4:"
-msgstr "Größe _4:"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"size3FT\n"
-"label\n"
-"string.text"
-msgid "Size _3:"
-msgstr "Größe _3:"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"size2FT\n"
-"label\n"
-"string.text"
-msgid "Size _2:"
-msgstr "Größe _2:"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"size1FT\n"
-"label\n"
-"string.text"
-msgid "Size _1:"
-msgstr "Größe _1:"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Font Sizes"
-msgstr "Schriftgrößen"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"ignorefontnames\n"
-"label\n"
-"string.text"
-msgid "Ignore _font settings"
-msgstr "_Schriftart-Einstellungen ignorieren"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"unknowntag\n"
-"label\n"
-"string.text"
-msgid "_Import unknown HTML tags as fields"
-msgstr "_Unbekannte HTML-Tags als Felder importieren"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"numbersenglishus\n"
-"label\n"
-"string.text"
-msgid "_Use '%ENGLISHUSLOCALE' locale for numbers"
-msgstr "_Gebietsschema '%ENGLISHUSLOCALE' für Zahlen"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Import"
-msgstr "Importieren"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"charsetFT\n"
-"label\n"
-"string.text"
-msgid "Character _set:"
-msgstr "_Zeichensatz:"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"savegrflocal\n"
-"label\n"
-"string.text"
-msgid "_Copy local images to Internet"
-msgstr "_Lokale Bilder in das Internet kopieren"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"printextension\n"
-"label\n"
-"string.text"
-msgid "_Print layout"
-msgstr "_Drucklayout"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"starbasicwarning\n"
-"label\n"
-"string.text"
-msgid "Display _warning"
-msgstr "_Warnung anzeigen"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"starbasic\n"
-"label\n"
-"string.text"
-msgid "LibreOffice _Basic"
-msgstr "LibreOffice _Basic"
-
-#: opthtmlpage.ui
-msgctxt ""
-"opthtmlpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Export"
-msgstr "Exportieren"
-
-#: optionsdialog.ui
-msgctxt ""
-"optionsdialog.ui\n"
-"OptionsDialog\n"
-"title\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchcase\n"
-"label\n"
-"string.text"
-msgid "_uppercase/lowercase"
-msgstr "_Groß- und Kleinschreibung"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchfullhalfwidth\n"
-"label\n"
-"string.text"
-msgid "_full-width/half-width forms"
-msgstr "_Normale/halbbreite Formen"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchhiraganakatakana\n"
-"label\n"
-"string.text"
-msgid "_hiragana/katakana"
-msgstr "H_iragana/Katakana"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchcontractions\n"
-"label\n"
-"string.text"
-msgid "_contractions (yo-on, sokuon)"
-msgstr "_Kontraktionen (yo-on, sokuon)"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchminusdashchoon\n"
-"label\n"
-"string.text"
-msgid "_minus/dash/cho-on"
-msgstr "_Minus/Bindestrich/cho-on"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchrepeatcharmarks\n"
-"label\n"
-"string.text"
-msgid "'re_peat character' marks"
-msgstr "_Wiederholungszeichen"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchvariantformkanji\n"
-"label\n"
-"string.text"
-msgid "_variant-form kanji (itaiji)"
-msgstr "Kan_ji Variante (itaiji)"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matcholdkanaforms\n"
-"label\n"
-"string.text"
-msgid "_old Kana forms"
-msgstr "A_lte Kana-Formen"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchdiziduzu\n"
-"label\n"
-"string.text"
-msgid "_di/zi, du/zu"
-msgstr "_di/zi, du/zu"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchbavahafa\n"
-"label\n"
-"string.text"
-msgid "_ba/va, ha/fa"
-msgstr "_ba/va, ha/fa"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchtsithichidhizi\n"
-"label\n"
-"string.text"
-msgid "_tsi/thi/chi, dhi/zi"
-msgstr "_tsi/thi/chi, dhi/zi"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchhyuiyubyuvyu\n"
-"label\n"
-"string.text"
-msgid "h_yu/fyu, byu/vyu"
-msgstr "h_yu/fyu, byu/vyu"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchseshezeje\n"
-"label\n"
-"string.text"
-msgid "_se/she, ze/je"
-msgstr "_se/she, ze/je"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchiaiya\n"
-"label\n"
-"string.text"
-msgid "_ia/iya (piano/piyano)"
-msgstr "Ia/iya (_piano/piyano)"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchkiku\n"
-"label\n"
-"string.text"
-msgid "_ki/ku (tekisuto/tekusuto)"
-msgstr "Ki/k_u (tekisuto/tekusuto)"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"matchprolongedsoundmark\n"
-"label\n"
-"string.text"
-msgid "Prolon_ged vowels (ka-/kaa)"
-msgstr "_Verlängerte Vokale (ka-/kaa)"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Treat as Equal"
-msgstr "Gleichwertig behandeln"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"ignorepunctuation\n"
-"label\n"
-"string.text"
-msgid "Pu_nctuation characters"
-msgstr "Satz_zeichen"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"ignorewhitespace\n"
-"label\n"
-"string.text"
-msgid "_Whitespace characters"
-msgstr "Leerraumzei_chen"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"ignoremiddledot\n"
-"label\n"
-"string.text"
-msgid "Midd_le dots"
-msgstr "_Mittige Punkte"
-
-#: optjsearchpage.ui
-msgctxt ""
-"optjsearchpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Ignore"
-msgstr "Ignorieren"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_User interface:"
-msgstr "_Benutzeroberfläche:"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"localesettingFT\n"
-"label\n"
-"string.text"
-msgid "Locale setting:"
-msgstr "Gebietsschema:"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Decimal separator key:"
-msgstr "Dezimaltrennzeichen:"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"defaultcurrency\n"
-"label\n"
-"string.text"
-msgid "_Default currency:"
-msgstr "_Standardwährung:"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"dataaccpatterns\n"
-"label\n"
-"string.text"
-msgid "Date acceptance _patterns:"
-msgstr "_Datumserkennungsmuster:"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"decimalseparator\n"
-"label\n"
-"string.text"
-msgid "_Same as locale setting ( %1 )"
-msgstr "_Entsprechend Gebietsschema ( %1 )"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Language Of"
-msgstr "Sprache für"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"currentdoc\n"
-"label\n"
-"string.text"
-msgid "For the current document only"
-msgstr "Nur für das aktuelle Dokument"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"ctlsupport\n"
-"label\n"
-"string.text"
-msgid "Complex _text layout:"
-msgstr "Complex _Text Layout:"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"asiansupport\n"
-"label\n"
-"string.text"
-msgid "Asian:"
-msgstr "Asiatisch:"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"western\n"
-"label\n"
-"string.text"
-msgid "Western:"
-msgstr "Westlich:"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Default Languages for Documents"
-msgstr "Standardsprachen der Dokumente"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"ignorelanguagechange\n"
-"label\n"
-"string.text"
-msgid "Ignore s_ystem input language"
-msgstr "Systemsprache _ignorieren"
-
-#: optlanguagespage.ui
-msgctxt ""
-"optlanguagespage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Enhanced Language Support"
-msgstr "Erweiterte Sprachunterstützung"
-
-#: optlingupage.ui
-msgctxt ""
-"optlingupage.ui\n"
-"lingumodulesft\n"
-"label\n"
-"string.text"
-msgid "_Available language modules:"
-msgstr "_Verfügbare Sprachmodule:"
-
-#: optlingupage.ui
-msgctxt ""
-"optlingupage.ui\n"
-"lingumodulesedit\n"
-"label\n"
-"string.text"
-msgid "_Edit..."
-msgstr "_Bearbeiten..."
-
-#: optlingupage.ui
-msgctxt ""
-"optlingupage.ui\n"
-"lingumodulesedit-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Edit Available language modules"
-msgstr "Verfügbare Sprachmodule bearbeiten"
-
-#: optlingupage.ui
-msgctxt ""
-"optlingupage.ui\n"
-"lingudictsft\n"
-"label\n"
-"string.text"
-msgid "_User-defined dictionaries:"
-msgstr "Benut_zerwörterbücher:"
-
-#: optlingupage.ui
-msgctxt ""
-"optlingupage.ui\n"
-"lingudictsnew\n"
-"label\n"
-"string.text"
-msgid "_New..."
-msgstr "_Neu..."
-
-#: optlingupage.ui
-msgctxt ""
-"optlingupage.ui\n"
-"lingudictsedit\n"
-"label\n"
-"string.text"
-msgid "Ed_it..."
-msgstr "B_earbeiten..."
-
-#: optlingupage.ui
-msgctxt ""
-"optlingupage.ui\n"
-"lingudictsedit-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Edit User-defined dictionaries"
-msgstr "Benutzerwörterbücher bearbeiten"
-
-#: optlingupage.ui
-msgctxt ""
-"optlingupage.ui\n"
-"lingudictsdelete\n"
-"label\n"
-"string.text"
-msgid "_Delete"
-msgstr "_Löschen"
-
-#: optlingupage.ui
-msgctxt ""
-"optlingupage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Options:"
-msgstr "O_ptionen:"
-
-#: optlingupage.ui
-msgctxt ""
-"optlingupage.ui\n"
-"moredictslink\n"
-"label\n"
-"string.text"
-msgid "Get more dictionaries online..."
-msgstr "Hier erhalten Sie online weitere Wörterbücher..."
-
-#: optlingupage.ui
-msgctxt ""
-"optlingupage.ui\n"
-"linguoptionsedit\n"
-"label\n"
-"string.text"
-msgid "Edi_t..."
-msgstr "Bea_rbeiten..."
-
-#: optlingupage.ui
-msgctxt ""
-"optlingupage.ui\n"
-"linguoptionsedit-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Edit Options"
-msgstr "Optionen bearbeiten"
-
-#: optlingupage.ui
-msgctxt ""
-"optlingupage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Writing Aids"
-msgstr "Linguistik"
-
-#: optmemorypage.ui
-msgctxt ""
-"optmemorypage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "_Use for %PRODUCTNAME:"
-msgstr "_Verwenden für %PRODUCTNAME:"
-
-#: optmemorypage.ui
-msgctxt ""
-"optmemorypage.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "_Memory per object:"
-msgstr "_Speicher pro Objekt:"
-
-#: optmemorypage.ui
-msgctxt ""
-"optmemorypage.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Remove _from memory after:"
-msgstr "Aus Arbeitsspeicher _entfernen nach:"
-
-#: optmemorypage.ui
-msgctxt ""
-"optmemorypage.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "MB"
-msgstr "MB"
-
-#: optmemorypage.ui
-msgctxt ""
-"optmemorypage.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "MB"
-msgstr "MB"
-
-#: optmemorypage.ui
-msgctxt ""
-"optmemorypage.ui\n"
-"label12\n"
-"label\n"
-"string.text"
-msgid "hh:mm"
-msgstr "hh:mm"
-
-#: optmemorypage.ui
-msgctxt ""
-"optmemorypage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Image Cache"
-msgstr "Bildspeicher"
-
-#: optmemorypage.ui
-msgctxt ""
-"optmemorypage.ui\n"
-"label11\n"
-"label\n"
-"string.text"
-msgid "Number of objects:"
-msgstr "Anzahl der Objekte:"
-
-#: optmemorypage.ui
-msgctxt ""
-"optmemorypage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Cache for Inserted Objects"
-msgstr "Speicher für eingefügte Objekte"
-
-#: optmemorypage.ui
-msgctxt ""
-"optmemorypage.ui\n"
-"quicklaunch\n"
-"label\n"
-"string.text"
-msgid "Load %PRODUCTNAME during system start-up"
-msgstr "%PRODUCTNAME beim Systemstart laden"
-
-#: optmemorypage.ui
-msgctxt ""
-"optmemorypage.ui\n"
-"systray\n"
-"label\n"
-"string.text"
-msgid "Enable systray Quickstarter"
-msgstr "Schnellstarter aktivieren"
-
-#: optmemorypage.ui
-msgctxt ""
-"optmemorypage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "%PRODUCTNAME Quickstarter"
-msgstr "%PRODUCTNAME Schnellstarter"
-
-#: optnewdictionarydialog.ui
-msgctxt ""
-"optnewdictionarydialog.ui\n"
-"OptNewDictionaryDialog\n"
-"title\n"
-"string.text"
-msgid "New Dictionary"
-msgstr "Benutzerwörterbuch anlegen"
-
-#: optnewdictionarydialog.ui
-msgctxt ""
-"optnewdictionarydialog.ui\n"
-"name_label\n"
-"label\n"
-"string.text"
-msgid "_Name:"
-msgstr "_Name:"
-
-#: optnewdictionarydialog.ui
-msgctxt ""
-"optnewdictionarydialog.ui\n"
-"language_label\n"
-"label\n"
-"string.text"
-msgid "_Language:"
-msgstr "_Sprache:"
-
-#: optnewdictionarydialog.ui
-msgctxt ""
-"optnewdictionarydialog.ui\n"
-"except\n"
-"label\n"
-"string.text"
-msgid "_Exception (-)"
-msgstr "A_usnahme (-)"
-
-#: optnewdictionarydialog.ui
-msgctxt ""
-"optnewdictionarydialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Dictionary"
-msgstr "Wörterbuch"
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"autocheck\n"
-"label\n"
-"string.text"
-msgid "_Check for updates automatically"
-msgstr "_Automatisch nach Updates suchen"
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"everyday\n"
-"label\n"
-"string.text"
-msgid "Every da_y"
-msgstr "Jeden _Tag"
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"everyweek\n"
-"label\n"
-"string.text"
-msgid "Every _week"
-msgstr "Jede _Woche"
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"everymonth\n"
-"label\n"
-"string.text"
-msgid "Every _month"
-msgstr "Jeden _Monat"
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"lastchecked\n"
-"label\n"
-"string.text"
-msgid "Last checked: %DATE%, %TIME%"
-msgstr "Zuletzt gesucht: %DATE%, %TIME%"
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"checknow\n"
-"label\n"
-"string.text"
-msgid "Check _Now"
-msgstr "Jetzt _suchen"
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"autodownload\n"
-"label\n"
-"string.text"
-msgid "_Download updates automatically"
-msgstr "_Updates automatisch herunterladen"
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"destpathlabel\n"
-"label\n"
-"string.text"
-msgid "Download destination:"
-msgstr "Herunterladen nach:"
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"changepath\n"
-"label\n"
-"string.text"
-msgid "Ch_ange..."
-msgstr "Ä_ndern..."
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"extrabits\n"
-"label\n"
-"string.text"
-msgid "_Send OS version and basic hardware information"
-msgstr "_Betriebssystemversion und grundlegende Hardware-Informationen übermitteln"
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"extrabits\n"
-"tooltip_text\n"
-"string.text"
-msgid "This information lets us make optimizations for your hardware and operating system."
-msgstr "Diese Informationen lassen uns Optimierungen für Ihre Hardware und Ihr Betriebssystem vornehmen."
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"useragent_label\n"
-"label\n"
-"string.text"
-msgid "User Agent:"
-msgstr "Konfiguration:"
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"useragent_changed\n"
-"label\n"
-"string.text"
-msgid "Hit apply to update"
-msgstr "Klicken Sie auf Übernehmen, um zu aktualisieren"
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"neverchecked\n"
-"label\n"
-"string.text"
-msgid "Last checked: Not yet"
-msgstr "Zuletzt gesucht: Bisher noch nicht"
-
-#: optonlineupdatepage.ui
-msgctxt ""
-"optonlineupdatepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Online Update Options"
-msgstr "Online Update Optionen"
-
-#: optopenclpage.ui
-msgctxt ""
-"optopenclpage.ui\n"
-"useswinterpreter\n"
-"label\n"
-"string.text"
-msgid "Allow use of Software Interpreter (even when OpenCL is not available)"
-msgstr "Verwendung eines Software-Interpreters erlauben (auch wenn OpenCL nicht verfügbar)"
-
-#: optopenclpage.ui
-msgctxt ""
-"optopenclpage.ui\n"
-"useopencl\n"
-"label\n"
-"string.text"
-msgid "Allow use of OpenCL"
-msgstr "Das Verwenden von OpenCL zulassen"
-
-#: optopenclpage.ui
-msgctxt ""
-"optopenclpage.ui\n"
-"openclused\n"
-"label\n"
-"string.text"
-msgid "OpenCL is available for use."
-msgstr "OpenCL steht bereit."
-
-#: optopenclpage.ui
-msgctxt ""
-"optopenclpage.ui\n"
-"openclnotused\n"
-"label\n"
-"string.text"
-msgid "OpenCL is not used."
-msgstr "OpenCL wird nicht verwendet."
-
-#: optopenclpage.ui
-msgctxt ""
-"optopenclpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "OpenCL Options"
-msgstr "OpenCL-Optionen"
-
-#: optpathspage.ui
-msgctxt ""
-"optpathspage.ui\n"
-"type\n"
-"label\n"
-"string.text"
-msgid "Type"
-msgstr "Art"
-
-#: optpathspage.ui
-msgctxt ""
-"optpathspage.ui\n"
-"path\n"
-"label\n"
-"string.text"
-msgid "Path"
-msgstr "Pfad"
-
-#: optpathspage.ui
-msgctxt ""
-"optpathspage.ui\n"
-"editpaths\n"
-"label\n"
-"string.text"
-msgid "Edit Paths: %1"
-msgstr "Pfade Bearbeiten: %1"
-
-#: optpathspage.ui
-msgctxt ""
-"optpathspage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Paths used by %PRODUCTNAME"
-msgstr "Von %PRODUCTNAME verwendete Pfade"
-
-#: optpathspage.ui
-msgctxt ""
-"optpathspage.ui\n"
-"default\n"
-"label\n"
-"string.text"
-msgid "_Default"
-msgstr "Standar_d"
-
-#: optpathspage.ui
-msgctxt ""
-"optpathspage.ui\n"
-"edit\n"
-"label\n"
-"string.text"
-msgid "_Edit..."
-msgstr "_Bearbeiten..."
-
-#: optproxypage.ui
-msgctxt ""
-"optproxypage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Proxy s_erver:"
-msgstr "Pro_xy-Server:"
-
-#: optproxypage.ui
-msgctxt ""
-"optproxypage.ui\n"
-"proxymode\n"
-"0\n"
-"stringlist.text"
-msgid "None"
-msgstr "Keine"
-
-#: optproxypage.ui
-msgctxt ""
-"optproxypage.ui\n"
-"proxymode\n"
-"1\n"
-"stringlist.text"
-msgid "System"
-msgstr "System"
-
-#: optproxypage.ui
-msgctxt ""
-"optproxypage.ui\n"
-"proxymode\n"
-"2\n"
-"stringlist.text"
-msgid "Manual"
-msgstr "Manuell"
-
-#: optproxypage.ui
-msgctxt ""
-"optproxypage.ui\n"
-"httpft\n"
-"label\n"
-"string.text"
-msgid "HT_TP proxy:"
-msgstr "HTTP-Prox_y:"
-
-#: optproxypage.ui
-msgctxt ""
-"optproxypage.ui\n"
-"httpportft\n"
-"label\n"
-"string.text"
-msgid "_Port:"
-msgstr "_Port:"
-
-#: optproxypage.ui
-msgctxt ""
-"optproxypage.ui\n"
-"httpsft\n"
-"label\n"
-"string.text"
-msgid "HTTP_S proxy:"
-msgstr "HTTP_S-Proxy:"
-
-#: optproxypage.ui
-msgctxt ""
-"optproxypage.ui\n"
-"ftpft\n"
-"label\n"
-"string.text"
-msgid "_FTP proxy:"
-msgstr "_FTP-Proxy:"
-
-#: optproxypage.ui
-msgctxt ""
-"optproxypage.ui\n"
-"noproxyft\n"
-"label\n"
-"string.text"
-msgid "_No proxy for:"
-msgstr "_Kein Proxy für:"
-
-#: optproxypage.ui
-msgctxt ""
-"optproxypage.ui\n"
-"httpsportft\n"
-"label\n"
-"string.text"
-msgid "P_ort:"
-msgstr "P_ort:"
-
-#: optproxypage.ui
-msgctxt ""
-"optproxypage.ui\n"
-"ftpportft\n"
-"label\n"
-"string.text"
-msgid "P_ort:"
-msgstr "P_ort:"
-
-#: optproxypage.ui
-msgctxt ""
-"optproxypage.ui\n"
-"noproxydesc\n"
-"label\n"
-"string.text"
-msgid "Separator ;"
-msgstr "Trennzeichen ;"
-
-#: optproxypage.ui
-msgctxt ""
-"optproxypage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"load_docprinter\n"
-"label\n"
-"string.text"
-msgid "Load printer settings with the document"
-msgstr "Druckereinstellungen mit dem Dokument laden"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"load_settings\n"
-"label\n"
-"string.text"
-msgid "Load user-specific settings with the document"
-msgstr "Benutzerspezifische Einstellungen mit dem Dokument laden"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Load"
-msgstr "Laden"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"autosave\n"
-"label\n"
-"string.text"
-msgid "Save _AutoRecovery information every:"
-msgstr "S_peichern von Autowiederherstellungsinfos alle:"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"autosave_mins\n"
-"label\n"
-"string.text"
-msgid "minutes"
-msgstr "Minuten"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"userautosave\n"
-"label\n"
-"string.text"
-msgid "Automatically save the document too"
-msgstr "Auch das Dokument automatisch speichern"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"relative_fsys\n"
-"label\n"
-"string.text"
-msgid "Save URLs relative to file system"
-msgstr "URLs relativ zum Dateisystem speichern"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"docinfo\n"
-"label\n"
-"string.text"
-msgid "_Edit document properties before saving"
-msgstr "_Eigenschaften vorher bearbeiten"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"relative_inet\n"
-"label\n"
-"string.text"
-msgid "Save URLs relative to internet"
-msgstr "URLs relativ zum Internet speichern"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"backup\n"
-"label\n"
-"string.text"
-msgid "Al_ways create backup copy"
-msgstr "_Sicherungskopie immer erstellen"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Save"
-msgstr "Speichern"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"warnalienformat\n"
-"label\n"
-"string.text"
-msgid "Warn when not saving in ODF or default format"
-msgstr "Immer warnen, wenn nicht im ODF- oder Standardformat gespeichert wird"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"odfwarning_label\n"
-"label\n"
-"string.text"
-msgid "Not using ODF 1.2 Extended may cause information to be lost."
-msgstr "Benutzen Sie ODF 1.2 Erweitert, um Informationsverlust zu vermeiden."
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"odfversion\n"
-"0\n"
-"stringlist.text"
-msgid "1.0/1.1"
-msgstr "1.0/1.1"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"odfversion\n"
-"1\n"
-"stringlist.text"
-msgid "1.2"
-msgstr "1.2"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"odfversion\n"
-"2\n"
-"stringlist.text"
-msgid "1.2 Extended (compatibility mode)"
-msgstr "1.2 Erweitert (Kompatibilitätsmodus)"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"odfversion\n"
-"3\n"
-"stringlist.text"
-msgid "1.2 Extended (recommended)"
-msgstr "1.2 Erweitert (empfohlen)"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "ODF format version:"
-msgstr "ODF-Formatversion:"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"saveas_label\n"
-"label\n"
-"string.text"
-msgid "Always sa_ve as:"
-msgstr "_Immer speichern als:"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"doctype\n"
-"0\n"
-"stringlist.text"
-msgid "Text document"
-msgstr "Textdokument"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"doctype\n"
-"1\n"
-"stringlist.text"
-msgid "HTML document"
-msgstr "HTML-Dokument"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"doctype\n"
-"2\n"
-"stringlist.text"
-msgid "Master document"
-msgstr "Globaldokument"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"doctype\n"
-"3\n"
-"stringlist.text"
-msgid "Spreadsheet"
-msgstr "Tabellendokument"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"doctype\n"
-"4\n"
-"stringlist.text"
-msgid "Presentation"
-msgstr "Präsentation"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"doctype\n"
-"5\n"
-"stringlist.text"
-msgid "Drawing"
-msgstr "Zeichnung"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"doctype\n"
-"6\n"
-"stringlist.text"
-msgid "Formula"
-msgstr "Formel"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "D_ocument type:"
-msgstr "Dokument_typ:"
-
-#: optsavepage.ui
-msgctxt ""
-"optsavepage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Default File Format and ODF Settings"
-msgstr "Einstellungen für Standard-Dateiformat und ODF"
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "Maintain a list of Time Stamping Authority (TSA) URLs to be used for digital signatures in PDF export."
-msgstr "Verwalten Sie eine Liste mit URLs von TSAs (Time Stamp Authorities), die Sie beim PDF-Export als digitale Signaturen verwenden können."
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"tsas\n"
-"label\n"
-"string.text"
-msgid "_TSAs..."
-msgstr "_TSAs..."
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "TSAs"
-msgstr "TSAs"
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Select the Network Security Services certificate directory to use for digital signatures."
-msgstr "Wählen Sie das Verzeichnis für das Network-Security-Services-Zertifikat aus, das für die digitalen Signaturen benutzt werden soll."
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"cert\n"
-"label\n"
-"string.text"
-msgid "_Certificate..."
-msgstr "_Zertifikat..."
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Certificate Path"
-msgstr "Zertifizierungspfad"
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Adjust the security level for executing macros and specify trusted macro developers."
-msgstr "Anpassen der Sicherheitsstufe für das Ausführen von Makros und Definieren der vertrauenswürdigen Makro-Entwickler."
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"macro\n"
-"label\n"
-"string.text"
-msgid "Macro Securit_y..."
-msgstr "Makrosi_cherheit..."
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Macro Security"
-msgstr "Makrosicherheit"
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"savepassword\n"
-"label\n"
-"string.text"
-msgid "Persistently _save passwords for web connections"
-msgstr "Kennwörter für _Web-Verbindungen dauerhaft speichern"
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"usemasterpassword\n"
-"label\n"
-"string.text"
-msgid "Protected _by a master password (recommended)"
-msgstr "Mit Master-Kennwort _schützen (empfohlen)"
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"masterpasswordtext\n"
-"label\n"
-"string.text"
-msgid "Passwords are protected by a master password. You will be asked to enter it once per session, if %PRODUCTNAME retrieves a password from the protected password list."
-msgstr "Kennwörter werden durch ein Master-Kennwort geschützt. Sie werden einmal pro Sitzung zur Eingabe des Master-Kennworts aufgefordert, wenn %PRODUCTNAME ein Kennwort aus der Liste benutzt."
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"nopasswordsave\n"
-"label\n"
-"string.text"
-msgid ""
-"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
-"\n"
-"Do you want to delete password list and reset master password?"
-msgstr ""
-"Wenn Sie die Funktion zum dauerhaften Speichern von Kennwörtern abschalten, wird die Liste der Kennwörter gelöscht und das Master-Kennwort zurückgesetzt.\n"
-"\n"
-"Möchten Sie die Liste der Kennwörter löschen und das Master-Kennwort zurücksetzen?"
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"connections\n"
-"label\n"
-"string.text"
-msgid "Connect_ions..."
-msgstr "_Verbindungen..."
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"masterpassword\n"
-"label\n"
-"string.text"
-msgid "_Master Password..."
-msgstr "_Master-Kennwort..."
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Passwords for Web Connections"
-msgstr "Kennwörter für Internet-Verbindungen"
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Adjust security related options and define warnings for hidden information in documents. "
-msgstr "Hier stellen Sie sicherheitsrelevante Optionen ein und legen Warnungen bezüglich versteckter Informationen in Dokumenten fest."
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"options\n"
-"label\n"
-"string.text"
-msgid "O_ptions..."
-msgstr "O_ptionen..."
-
-#: optsecuritypage.ui
-msgctxt ""
-"optsecuritypage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Security Options and Warnings"
-msgstr "Sicherheitsoptionen und -warnungen"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"companyft\n"
-"label\n"
-"string.text"
-msgid "_Company:"
-msgstr "_Firma:"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"nameft\n"
-"label\n"
-"string.text"
-msgid "First/last _name/initials:"
-msgstr "_Vor-/Name/Kürzel:"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"streetft\n"
-"label\n"
-"string.text"
-msgid "_Street:"
-msgstr "_Straße:"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"cityft\n"
-"label\n"
-"string.text"
-msgid "City/state/_zip:"
-msgstr "Stadt/Bundesland/_PLZ:"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"countryft\n"
-"label\n"
-"string.text"
-msgid "Country/re_gion:"
-msgstr "_Land/Region:"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"titleft\n"
-"label\n"
-"string.text"
-msgid "_Title/position:"
-msgstr "_Titel/Position:"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"phoneft\n"
-"label\n"
-"string.text"
-msgid "Telephone (home/_work):"
-msgstr "Telefon (privat/_geschäftlich):"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"phoneft-atkobject\n"
-"AtkObject::accessible-description\n"
-"string.text"
-msgid "Home telephone number"
-msgstr "Private Telefonnummer"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"faxft\n"
-"label\n"
-"string.text"
-msgid "Fa_x/e-mail:"
-msgstr "Fa_x/E-Mail:"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"firstname-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "First name"
-msgstr "Vorname"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"lastname-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Last name"
-msgstr "Name"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"shortname-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Initials"
-msgstr "Kürzel"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"city-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "City"
-msgstr "Stadt"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"state-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "State"
-msgstr "Bundesland"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"zip-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Zip code"
-msgstr "PLZ"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"title-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Title"
-msgstr "Titel"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"position-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"home-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Home telephone number"
-msgstr "Private Telefonnummer"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"work-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Work telephone number"
-msgstr "Telefonnummer (Arbeit)"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"fax-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "FAX number"
-msgstr "Faxnummer"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"email-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "email address"
-msgstr "E-Mail-Adresse"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"usefordocprop\n"
-"label\n"
-"string.text"
-msgid "Use data for document properties"
-msgstr "Daten für Dokumenteigenschaften verwenden"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"rusnameft\n"
-"label\n"
-"string.text"
-msgid "Last name/first _name/father’s name/initials:"
-msgstr "_Name/Vorname/Vatersname/Kürzel:"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"ruslastname-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Last name"
-msgstr "Name"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"rusfathersname-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Father's name"
-msgstr "Vatersname"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"russhortname-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Initials"
-msgstr "Kürzel"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"rusfirstname-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "First name"
-msgstr "Vorname"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"eastnameft\n"
-"label\n"
-"string.text"
-msgid "Last/first _name/initials:"
-msgstr "_Name/Vorname/Kürzel:"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"eastlastname-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Last name"
-msgstr "Name"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"eastfirstname-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "First name"
-msgstr "Vorname"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"eastshortname-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Initials"
-msgstr "Kürzel"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"russtreetft\n"
-"label\n"
-"string.text"
-msgid "_Street/apartment number:"
-msgstr "_Straße/Wohnungsnummer:"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"russtreet-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Street"
-msgstr "Straße"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"apartnum-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Apartment number"
-msgstr "Wohnungsnummer"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"icityft\n"
-"label\n"
-"string.text"
-msgid "_Zip/city:"
-msgstr "_PLZ/Ort:"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"icity-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "City"
-msgstr "Stadt"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"izip-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Zip code"
-msgstr "PLZ"
-
-#: optuserpage.ui
-msgctxt ""
-"optuserpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Address"
-msgstr "Adresse"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"grid3\n"
-"tooltip_text\n"
-"string.text"
-msgid "Requires restart"
-msgstr "Erfordert Neustart"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"useaccel\n"
-"label\n"
-"string.text"
-msgid "Use hard_ware acceleration"
-msgstr "Hard_warebeschleunigung verwenden"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"useaa\n"
-"label\n"
-"string.text"
-msgid "Use anti-a_liasing"
-msgstr "_Kantenglättung verwenden"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"useopengl\n"
-"label\n"
-"string.text"
-msgid "Use OpenGL for all rendering"
-msgstr "OpenGL für das Rendern verwenden"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"forceopengl\n"
-"label\n"
-"string.text"
-msgid "Ignore OpenGL blacklist"
-msgstr "OpenGL-Negativliste ignorieren"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"forceopengl\n"
-"tooltip_text\n"
-"string.text"
-msgid "Requires restart. Enabling this may expose driver bugs"
-msgstr "Erfordert Neustart. Eine Aktivierung kann Treiberfehler verursachen."
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"openglenabled\n"
-"label\n"
-"string.text"
-msgid "GL is currently enabled."
-msgstr "OpenGL ist gegenwärtig aktiviert."
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"opengldisabled\n"
-"label\n"
-"string.text"
-msgid "GL is currently disabled."
-msgstr "OpenGL ist gegenwärtig deaktiviert."
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Graphics Output"
-msgstr "Grafikausgabe"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"label13\n"
-"label\n"
-"string.text"
-msgid "Icons in men_us:"
-msgstr "Symbole _in Menüs:"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"contextmenushortcuts\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"contextmenushortcuts\n"
-"1\n"
-"stringlist.text"
-msgid "Hide"
-msgstr "Verbergen"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"contextmenushortcuts\n"
-"2\n"
-"stringlist.text"
-msgid "Show"
-msgstr "Anzeigen"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "Shortcuts in context menus:"
-msgstr "Kurzbefehle in Kontextmenüs:"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"menuicons\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"menuicons\n"
-"1\n"
-"stringlist.text"
-msgid "Hide"
-msgstr "Ausblenden"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"menuicons\n"
-"2\n"
-"stringlist.text"
-msgid "Show"
-msgstr "Anzeigen"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Menu"
-msgstr "Menü"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"showfontpreview\n"
-"label\n"
-"string.text"
-msgid "Show p_review of fonts"
-msgstr "Schriftarten_vorschau aktivieren"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Font Lists"
-msgstr "Liste der Schriftarten"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Toolbar icon _size:"
-msgstr "Symbolgröße der _Symbolleiste:"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconstyle\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconstyle\n"
-"1\n"
-"stringlist.text"
-msgid "Galaxy"
-msgstr "Galaxy"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconstyle\n"
-"2\n"
-"stringlist.text"
-msgid "High Contrast"
-msgstr "Hoher Kontrast"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconstyle\n"
-"3\n"
-"stringlist.text"
-msgid "Crystal"
-msgstr "Crystal"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconstyle\n"
-"4\n"
-"stringlist.text"
-msgid "Tango"
-msgstr "Tango"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconstyle\n"
-"5\n"
-"stringlist.text"
-msgid "Oxygen"
-msgstr "Oxygen"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconstyle\n"
-"6\n"
-"stringlist.text"
-msgid "Classic"
-msgstr "Klassisch"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconstyle\n"
-"7\n"
-"stringlist.text"
-msgid "Sifr"
-msgstr "Sifr"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconstyle\n"
-"8\n"
-"stringlist.text"
-msgid "Breeze"
-msgstr "Breeze"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconstyle\n"
-"9\n"
-"stringlist.text"
-msgid "Tango Testing"
-msgstr "Tango-Test"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconsize\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconsize\n"
-"1\n"
-"stringlist.text"
-msgid "Small"
-msgstr "Klein"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconsize\n"
-"2\n"
-"stringlist.text"
-msgid "Large"
-msgstr "Groß"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"iconsize\n"
-"3\n"
-"stringlist.text"
-msgid "Extra Large"
-msgstr "Sehr groß"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Icon s_tyle:"
-msgstr "Sy_mbolstil:"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"aafont\n"
-"label\n"
-"string.text"
-msgid "Screen font antialiasin_g"
-msgstr "Bildschirmschriftarten _glätten"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "Sidebar _icon size:"
-msgstr "Symbolgröße _der Seitenleiste:"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"sidebariconsize\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"sidebariconsize\n"
-"1\n"
-"stringlist.text"
-msgid "Small"
-msgstr "Klein"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"sidebariconsize\n"
-"2\n"
-"stringlist.text"
-msgid "Large"
-msgstr "Groß"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "_Notebookbar icon size:"
-msgstr "Symbolgröße im Symbolband:"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"notebookbariconsize\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"notebookbariconsize\n"
-"1\n"
-"stringlist.text"
-msgid "Small"
-msgstr "Klein"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"notebookbariconsize\n"
-"2\n"
-"stringlist.text"
-msgid "Large"
-msgstr "Groß"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"aafrom\n"
-"label\n"
-"string.text"
-msgid "fro_m:"
-msgstr "a_b:"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "User Interface"
-msgstr "Benutzeroberfläche"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"label11\n"
-"label\n"
-"string.text"
-msgid "Mouse _positioning:"
-msgstr "_Mauspositionierung:"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"label12\n"
-"label\n"
-"string.text"
-msgid "Middle mouse _button:"
-msgstr "Mitt_lere Maustaste:"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"mousepos\n"
-"0\n"
-"stringlist.text"
-msgid "Default button"
-msgstr "Standardschaltfläche"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"mousepos\n"
-"1\n"
-"stringlist.text"
-msgid "Dialog center"
-msgstr "Dialog Mitte"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"mousepos\n"
-"2\n"
-"stringlist.text"
-msgid "No automatic positioning"
-msgstr "Keine automatische Positionierung"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"mousemiddle\n"
-"0\n"
-"stringlist.text"
-msgid "No function"
-msgstr "Keine Funktion"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"mousemiddle\n"
-"1\n"
-"stringlist.text"
-msgid "Automatic scrolling"
-msgstr "Automatischer Bildlauf"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"mousemiddle\n"
-"2\n"
-"stringlist.text"
-msgid "Paste clipboard"
-msgstr "Zwischenablage einfügen"
-
-#: optviewpage.ui
-msgctxt ""
-"optviewpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Mouse"
-msgstr "Maus"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelFormat\n"
-"label\n"
-"string.text"
-msgid "_Format:"
-msgstr "_Format:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelWidth\n"
-"label\n"
-"string.text"
-msgid "_Width:"
-msgstr "_Breite:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelHeight\n"
-"label\n"
-"string.text"
-msgid "_Height:"
-msgstr "Höh_e:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelOrientation\n"
-"label\n"
-"string.text"
-msgid "_Orientation:"
-msgstr "_Ausrichtung:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"radiobuttonPortrait\n"
-"label\n"
-"string.text"
-msgid "_Portrait"
-msgstr "Ho_chformat"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"radiobuttonLandscape\n"
-"label\n"
-"string.text"
-msgid "L_andscape"
-msgstr "_Querformat"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelTextFlow\n"
-"label\n"
-"string.text"
-msgid "_Text direction:"
-msgstr "Te_xtrichtung:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelPaperTray\n"
-"label\n"
-"string.text"
-msgid "Paper _tray:"
-msgstr "_Papierschacht:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelPaperFormat\n"
-"label\n"
-"string.text"
-msgid "Paper Format"
-msgstr "Papierformat"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelTopMargin\n"
-"label\n"
-"string.text"
-msgid "Top:"
-msgstr "Oben:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelBottomMargin\n"
-"label\n"
-"string.text"
-msgid "Bottom:"
-msgstr "Unten:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelRightMargin\n"
-"label\n"
-"string.text"
-msgid "Right:"
-msgstr "Rechts:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelOuter\n"
-"label\n"
-"string.text"
-msgid "O_uter:"
-msgstr "Au_ßen:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelLeftMargin\n"
-"label\n"
-"string.text"
-msgid "Left:"
-msgstr "Links:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelInner\n"
-"label\n"
-"string.text"
-msgid "I_nner:"
-msgstr "I_nnen:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelMargins\n"
-"label\n"
-"string.text"
-msgid "Margins"
-msgstr "Seitenränder"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelPageLayout\n"
-"label\n"
-"string.text"
-msgid "_Page layout:"
-msgstr "_Seitenlayout:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Page numbers:"
-msgstr "Seitennummern:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"checkRegisterTrue\n"
-"label\n"
-"string.text"
-msgid "Register-tr_ue"
-msgstr "Registerhaltig_keit"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelTblAlign\n"
-"label\n"
-"string.text"
-msgid "Table alignment:"
-msgstr "Tabellenausrichtung:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"checkbuttonHorz\n"
-"label\n"
-"string.text"
-msgid "Hori_zontal"
-msgstr "_Horizontal"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"checkbuttonVert\n"
-"label\n"
-"string.text"
-msgid "_Vertical"
-msgstr "_Vertikal"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"checkAdaptBox\n"
-"label\n"
-"string.text"
-msgid "_Fit object to paper format"
-msgstr "Objekt _an Papierformat anpassen"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelRegisterStyle\n"
-"label\n"
-"string.text"
-msgid "Reference _Style:"
-msgstr "Absa_tzvorlage Verweis:"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Layout Settings"
-msgstr "Layouteinstellungen"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"labelMsg\n"
-"label\n"
-"string.text"
-msgid ""
-"The margin settings are out of print range.\n"
-"\n"
-"Do you still want to apply these settings?"
-msgstr ""
-"Ihre Einstellungen für die Ränder liegen außerhalb des Druckbereichs.\n"
-"\n"
-"Möchten Sie diese Einstellungen trotzdem übernehmen?"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"liststorePageLayout\n"
-"0\n"
-"stringlist.text"
-msgid "Right and left"
-msgstr "Rechts und Links"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"liststorePageLayout\n"
-"1\n"
-"stringlist.text"
-msgid "Mirrored"
-msgstr "Gespiegelt"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"liststorePageLayout\n"
-"2\n"
-"stringlist.text"
-msgid "Only right"
-msgstr "Nur Rechts"
-
-#: pageformatpage.ui
-msgctxt ""
-"pageformatpage.ui\n"
-"liststorePageLayout\n"
-"3\n"
-"stringlist.text"
-msgid "Only left"
-msgstr "Nur Links"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"drawingareaWN_EXAMPLE-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Example"
-msgstr "Beispiel"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"radioBTN_LEFTALIGN\n"
-"label\n"
-"string.text"
-msgid "_Left"
-msgstr "_Links"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"radioBTN_RIGHTALIGN\n"
-"label\n"
-"string.text"
-msgid "_Right"
-msgstr "_Rechts"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"radioBTN_CENTERALIGN\n"
-"label\n"
-"string.text"
-msgid "_Center"
-msgstr "Z_entriert"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"radioBTN_JUSTIFYALIGN\n"
-"label\n"
-"string.text"
-msgid "_Justified"
-msgstr "_Blocksatz"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"checkCB_EXPAND\n"
-"label\n"
-"string.text"
-msgid "_Expand single word"
-msgstr "Einzelnes _Wort austreiben"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"checkCB_SNAP\n"
-"label\n"
-"string.text"
-msgid "_Snap to text grid (if active)"
-msgstr "Am Textgitter _fangen (wenn aktiviert)"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"labelLB_LASTLINE\n"
-"label\n"
-"string.text"
-msgid "_Last line:"
-msgstr "Letzte Ze_ile:"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"labelST_RIGHTALIGN_ASIAN\n"
-"label\n"
-"string.text"
-msgid "Righ_t/Bottom"
-msgstr "_Rechts/Unten"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"labelST_LEFTALIGN_ASIAN\n"
-"label\n"
-"string.text"
-msgid "_Left/Top"
-msgstr "Lin_ks/Oben"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"labelFT_VERTALIGN\n"
-"label\n"
-"string.text"
-msgid "_Alignment:"
-msgstr "Ausri_chtung:"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"labelFL_VERTALIGN\n"
-"label\n"
-"string.text"
-msgid "Text-to-text"
-msgstr "Text-an-Text"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Text direction:"
-msgstr "Te_xtrichtung:"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"labelFL_PROPERTIES\n"
-"label\n"
-"string.text"
-msgid "Properties"
-msgstr "Eigenschaften"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"liststoreLB_LASTLINE\n"
-"0\n"
-"stringlist.text"
-msgid "Default"
-msgstr "Standard"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"liststoreLB_LASTLINE\n"
-"1\n"
-"stringlist.text"
-msgid "Left"
-msgstr "Links"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"liststoreLB_LASTLINE\n"
-"2\n"
-"stringlist.text"
-msgid "Centered"
-msgstr "Zentriert"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"liststoreLB_LASTLINE\n"
-"3\n"
-"stringlist.text"
-msgid "Justified"
-msgstr "Blocksatz"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"liststoreLB_VERTALIGN\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"liststoreLB_VERTALIGN\n"
-"1\n"
-"stringlist.text"
-msgid "Base line"
-msgstr "Grundlinie"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"liststoreLB_VERTALIGN\n"
-"2\n"
-"stringlist.text"
-msgid "Top"
-msgstr "Oben"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"liststoreLB_VERTALIGN\n"
-"3\n"
-"stringlist.text"
-msgid "Middle"
-msgstr "Mitte"
-
-#: paragalignpage.ui
-msgctxt ""
-"paragalignpage.ui\n"
-"liststoreLB_VERTALIGN\n"
-"4\n"
-"stringlist.text"
-msgid "Bottom"
-msgstr "Unten"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"drawingareaWN_EXAMPLE-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Example"
-msgstr "Beispiel"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"labelFT_LEFTINDENT\n"
-"label\n"
-"string.text"
-msgid "_Before text:"
-msgstr "_Vor Text:"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"labelFT_RIGHTINDENT\n"
-"label\n"
-"string.text"
-msgid "After _text:"
-msgstr "Hinter _Text:"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"labelFT_FLINEINDENT\n"
-"label\n"
-"string.text"
-msgid "_First line:"
-msgstr "Erste _Zeile:"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"checkCB_AUTO\n"
-"label\n"
-"string.text"
-msgid "_Automatic"
-msgstr "A_utomatisch"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"labelST_LINEDIST_ABS\n"
-"label\n"
-"string.text"
-msgid "Fixed"
-msgstr "Fest"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Indent"
-msgstr "Einzug"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"labelFT_TOPDIST\n"
-"label\n"
-"string.text"
-msgid "Ab_ove paragraph:"
-msgstr "Ü_ber Absatz:"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"labelFT_BOTTOMDIST\n"
-"label\n"
-"string.text"
-msgid "Below _paragraph:"
-msgstr "_Unter Absatz:"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"checkCB_CONTEXTUALSPACING\n"
-"label\n"
-"string.text"
-msgid "Don't add space between paragraphs of the same style"
-msgstr "Keine Abstände zwischen Absätzen derselben Vorlage"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"labelFL_VERTALIGN\n"
-"label\n"
-"string.text"
-msgid "Spacing"
-msgstr "Abstand"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"labelFT_LINEDIST\n"
-"label\n"
-"string.text"
-msgid "of"
-msgstr "von"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"labelFL_PROPERTIES\n"
-"label\n"
-"string.text"
-msgid "Line Spacing"
-msgstr "Zeilenabstand"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"checkCB_REGISTER\n"
-"label\n"
-"string.text"
-msgid "A_ctivate"
-msgstr "Berü_cksichtigen"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Register-true"
-msgstr "Registerhaltigkeit"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"liststoreLB_LINEDIST\n"
-"0\n"
-"stringlist.text"
-msgid "Single"
-msgstr "Einzeilig"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"liststoreLB_LINEDIST\n"
-"1\n"
-"stringlist.text"
-msgid "1.15 Lines"
-msgstr "1,15-zeilig"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"liststoreLB_LINEDIST\n"
-"2\n"
-"stringlist.text"
-msgid "1.5 Lines"
-msgstr "1,5-zeilig"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"liststoreLB_LINEDIST\n"
-"3\n"
-"stringlist.text"
-msgid "Double"
-msgstr "Zweizeilig"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"liststoreLB_LINEDIST\n"
-"4\n"
-"stringlist.text"
-msgid "Proportional"
-msgstr "Proportional"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"liststoreLB_LINEDIST\n"
-"5\n"
-"stringlist.text"
-msgid "At least"
-msgstr "Mindestens"
-
-#: paraindentspacing.ui
-msgctxt ""
-"paraindentspacing.ui\n"
-"liststoreLB_LINEDIST\n"
-"6\n"
-"stringlist.text"
-msgid "Leading"
-msgstr "Durchschuss"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"radiobuttonBTN_TABTYPE_DECIMAL\n"
-"label\n"
-"string.text"
-msgid "Deci_mal"
-msgstr "_Dezimal"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"radiobuttonBTN_TABTYPE_LEFT\n"
-"label\n"
-"string.text"
-msgid "_Left"
-msgstr "_Links"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"radiobuttonST_LEFTTAB_ASIAN\n"
-"label\n"
-"string.text"
-msgid "_Left/Top"
-msgstr "Lin_ks/Oben"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"radiobuttonBTN_TABTYPE_RIGHT\n"
-"label\n"
-"string.text"
-msgid "Righ_t"
-msgstr "_Rechts"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"radiobuttonST_RIGHTTAB_ASIAN\n"
-"label\n"
-"string.text"
-msgid "Righ_t/Bottom"
-msgstr "Rechts/_Unten"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"radiobuttonBTN_TABTYPE_CENTER\n"
-"label\n"
-"string.text"
-msgid "C_entered"
-msgstr "_Zentriert"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"labelFT_TABTYPE_DECCHAR\n"
-"label\n"
-"string.text"
-msgid "_Character"
-msgstr "Z_eichen"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Type"
-msgstr "Art"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"radiobuttonBTN_FILLCHAR_NO\n"
-"label\n"
-"string.text"
-msgid "N_one"
-msgstr "Ke_ine"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"radiobuttonBTN_FILLCHAR_POINTS\n"
-"label\n"
-"string.text"
-msgid "_........"
-msgstr "_........"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"radiobuttonBTN_FILLCHAR_DASHLINE\n"
-"label\n"
-"string.text"
-msgid "_--------"
-msgstr "_--------"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
-"label\n"
-"string.text"
-msgid "______"
-msgstr "______"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"radiobuttonBTN_FILLCHAR_OTHER\n"
-"label\n"
-"string.text"
-msgid "C_haracter"
-msgstr "Zei_chen"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Fill Character"
-msgstr "Füllzeichen"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"buttonBTN_DELALL\n"
-"label\n"
-"string.text"
-msgid "Delete _all"
-msgstr "Alle _löschen"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "points"
-msgstr "Punkte"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "dashes"
-msgstr "Striche"
-
-#: paratabspage.ui
-msgctxt ""
-"paratabspage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "underscores"
-msgstr "Unterstriche"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"PasswordDialog\n"
-"title\n"
-"string.text"
-msgid "Set Password"
-msgstr "Kennwort setzen"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Confirm password"
-msgstr "Kennwort bestätigen"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Enter password to open"
-msgstr "_Kennwort zum Öffnen eingeben"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Note: After a password has been set, the document will only open with the password. Should you lose the password, there will be no way to recover the document. Please also note that this password is case-sensitive."
-msgstr "Hinweis: Wenn ein Kennwort angegeben wurde, lässt sich die Datei nur mit diesem öffnen. Falls Sie das Kennwort verlieren sollten, besteht keine Möglichkeit, das Dokument wiederherzustellen. Beachten Sie zudem, dass das Kennwort Groß- und Kleinschreibung berücksichtigt."
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"readonly\n"
-"label\n"
-"string.text"
-msgid "Open file read-only"
-msgstr "Datei schreibgeschützt öffnen"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Enter password to allow editing"
-msgstr "Bearbeiten-Kennwort eingeben"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Confirm password"
-msgstr "Kennwort bestätigen"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "File Sharing Password"
-msgstr "Kennwort für Dokumentfreigabe"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Options"
-msgstr "O_ptionen"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "File Encryption Password"
-msgstr "Kennwort zur Dateiverschlüsselung"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"PasteSpecialDialog\n"
-"title\n"
-"string.text"
-msgid "Paste Special"
-msgstr "Inhalt einfügen"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Source:"
-msgstr "Quelle:"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: patterntabpage.ui
-msgctxt ""
-"patterntabpage.ui\n"
-"BTN_MODIFY\n"
-"label\n"
-"string.text"
-msgid "_Modify"
-msgstr "Än_dern"
-
-#: patterntabpage.ui
-msgctxt ""
-"patterntabpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Pattern"
-msgstr "Muster"
-
-#: patterntabpage.ui
-msgctxt ""
-"patterntabpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Pattern Editor:"
-msgstr "Mustereditor:"
-
-#: patterntabpage.ui
-msgctxt ""
-"patterntabpage.ui\n"
-"CTL_PIXEL-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Pattern Editor"
-msgstr "Mustereditor"
-
-#: patterntabpage.ui
-msgctxt ""
-"patterntabpage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Foreground Color:"
-msgstr "Vordergrundfarbe:"
-
-#: patterntabpage.ui
-msgctxt ""
-"patterntabpage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Background Color:"
-msgstr "Hintergrundfarbe:"
-
-#: patterntabpage.ui
-msgctxt ""
-"patterntabpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: patterntabpage.ui
-msgctxt ""
-"patterntabpage.ui\n"
-"CTL_PREVIEW-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Example"
-msgstr "Beispiel"
-
-#: patterntabpage.ui
-msgctxt ""
-"patterntabpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: percentdialog.ui
-msgctxt ""
-"percentdialog.ui\n"
-"PercentDialog\n"
-"title\n"
-"string.text"
-msgid "Combine"
-msgstr "Kombinieren"
-
-#: percentdialog.ui
-msgctxt ""
-"percentdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Minimum Size"
-msgstr "Mindestgröße"
-
-#: personalization_tab.ui
-msgctxt ""
-"personalization_tab.ui\n"
-"no_persona\n"
-"label\n"
-"string.text"
-msgid "Default look, do not use Themes"
-msgstr "Normale Ansicht ohne Themes"
-
-#: personalization_tab.ui
-msgctxt ""
-"personalization_tab.ui\n"
-"default_persona\n"
-"label\n"
-"string.text"
-msgid "Pre-installed Theme (if available)"
-msgstr "Vorinstalliertes Theme (falls vorhanden)"
-
-#: personalization_tab.ui
-msgctxt ""
-"personalization_tab.ui\n"
-"own_persona\n"
-"label\n"
-"string.text"
-msgid "Own Theme"
-msgstr "Eigenes Theme"
-
-#: personalization_tab.ui
-msgctxt ""
-"personalization_tab.ui\n"
-"select_persona\n"
-"label\n"
-"string.text"
-msgid "Select Theme"
-msgstr "Theme auswählen..."
-
-#: personalization_tab.ui
-msgctxt ""
-"personalization_tab.ui\n"
-"extensions_label\n"
-"label\n"
-"string.text"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Oder aus via Extensions installierten Themes wählen:"
-
-#: personalization_tab.ui
-msgctxt ""
-"personalization_tab.ui\n"
-"personas_label\n"
-"label\n"
-"string.text"
-msgid "Firefox Themes"
-msgstr "Firefox Themes"
-
-#: pickbulletpage.ui
-msgctxt ""
-"pickbulletpage.ui\n"
-"label25\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: pickgraphicpage.ui
-msgctxt ""
-"pickgraphicpage.ui\n"
-"errorft\n"
-"label\n"
-"string.text"
-msgid "The Gallery theme 'Bullets' is empty (no images)."
-msgstr "Das Gallery-Thema 'Aufzählungszeichen' ist leer (keine Bilder)."
-
-#: pickgraphicpage.ui
-msgctxt ""
-"pickgraphicpage.ui\n"
-"browseBtn\n"
-"label\n"
-"string.text"
-msgid "Add and Resize"
-msgstr "Hinzufügen und Größe ändern"
-
-#: pickgraphicpage.ui
-msgctxt ""
-"pickgraphicpage.ui\n"
-"label25\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: picknumberingpage.ui
-msgctxt ""
-"picknumberingpage.ui\n"
-"label25\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: pickoutlinepage.ui
-msgctxt ""
-"pickoutlinepage.ui\n"
-"label25\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"superscript\n"
-"label\n"
-"string.text"
-msgid "Superscript"
-msgstr "Hochgestellt"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"normal\n"
-"label\n"
-"string.text"
-msgid "Normal"
-msgstr "Normal"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"subscript\n"
-"label\n"
-"string.text"
-msgid "Subscript"
-msgstr "Tiefgestellt"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"raiselower\n"
-"label\n"
-"string.text"
-msgid "Raise/lower by"
-msgstr "Hoch/Tief um"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"automatic\n"
-"label\n"
-"string.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"relativefontsize\n"
-"label\n"
-"string.text"
-msgid "Relative font size"
-msgstr "Schriftgröße relativ"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"label20\n"
-"label\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"0deg\n"
-"label\n"
-"string.text"
-msgid "0 degrees"
-msgstr "0 Grad"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"90deg\n"
-"label\n"
-"string.text"
-msgid "90 degrees"
-msgstr "90 Grad"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"270deg\n"
-"label\n"
-"string.text"
-msgid "270 degrees"
-msgstr "270 Grad"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"fittoline\n"
-"label\n"
-"string.text"
-msgid "Fit to line"
-msgstr "An Zeile anpassen"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"label24\n"
-"label\n"
-"string.text"
-msgid "Scale width"
-msgstr "Breite skalieren"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"rotateandscale\n"
-"label\n"
-"string.text"
-msgid "Rotation / Scaling"
-msgstr "Rotation / Skalierung"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"scale\n"
-"label\n"
-"string.text"
-msgid "Scaling"
-msgstr "Skalierung"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"pairkerning\n"
-"label\n"
-"string.text"
-msgid "Pair kerning"
-msgstr "Paarweises Kerning"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"label22\n"
-"label\n"
-"string.text"
-msgid "Spacing"
-msgstr "Abstand"
-
-#: positionpage.ui
-msgctxt ""
-"positionpage.ui\n"
-"preview\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: positionsizedialog.ui
-msgctxt ""
-"positionsizedialog.ui\n"
-"PositionAndSizeDialog\n"
-"title\n"
-"string.text"
-msgid "Position and Size"
-msgstr "Position und Größe"
-
-#: positionsizedialog.ui
-msgctxt ""
-"positionsizedialog.ui\n"
-"RID_SVXPAGE_POSITION_SIZE\n"
-"label\n"
-"string.text"
-msgid "Position and Size"
-msgstr "Position und Größe"
-
-#: positionsizedialog.ui
-msgctxt ""
-"positionsizedialog.ui\n"
-"RID_SVXPAGE_SWPOSSIZE\n"
-"label\n"
-"string.text"
-msgid "Position and Size"
-msgstr "Position und Größe"
-
-#: positionsizedialog.ui
-msgctxt ""
-"positionsizedialog.ui\n"
-"RID_SVXPAGE_ANGLE\n"
-"label\n"
-"string.text"
-msgid "Rotation"
-msgstr "Drehung"
-
-#: positionsizedialog.ui
-msgctxt ""
-"positionsizedialog.ui\n"
-"RID_SVXPAGE_SLANT\n"
-"label\n"
-"string.text"
-msgid "Slant & Corner Radius"
-msgstr "Schräg stellen / Eckenradius"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"FT_POS_X\n"
-"label\n"
-"string.text"
-msgid "Position _X:"
-msgstr "Position _X:"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"FT_POS_Y\n"
-"label\n"
-"string.text"
-msgid "Position _Y:"
-msgstr "Position _Y:"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"FT_POSREFERENCE\n"
-"label\n"
-"string.text"
-msgid "_Base point:"
-msgstr "_Basispunkt:"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"FT_WIDTH\n"
-"label\n"
-"string.text"
-msgid "Wi_dth:"
-msgstr "B_reite:"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"FT_HEIGHT\n"
-"label\n"
-"string.text"
-msgid "H_eight:"
-msgstr "Höh_e:"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"CBX_SCALE\n"
-"label\n"
-"string.text"
-msgid "_Keep ratio"
-msgstr "Seite_nverhältnis beibehalten"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"FT_SIZEREFERENCE\n"
-"label\n"
-"string.text"
-msgid "Base _point:"
-msgstr "Basispun_kt:"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Size"
-msgstr "Größe"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"TSB_POSPROTECT\n"
-"label\n"
-"string.text"
-msgid "Positio_n"
-msgstr "_Position"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"TSB_SIZEPROTECT\n"
-"label\n"
-"string.text"
-msgid "_Size"
-msgstr "_Größe"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Protect"
-msgstr "Schützen"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"TSB_AUTOGROW_WIDTH\n"
-"label\n"
-"string.text"
-msgid "_Fit width to text"
-msgstr "Br_eite an Text anpassen"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"TSB_AUTOGROW_HEIGHT\n"
-"label\n"
-"string.text"
-msgid "Fit _height to text"
-msgstr "Höhe a_n Text anpassen"
-
-#: possizetabpage.ui
-msgctxt ""
-"possizetabpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Adapt"
-msgstr "Anpassen"
-
-#: posterdialog.ui
-msgctxt ""
-"posterdialog.ui\n"
-"PosterDialog\n"
-"title\n"
-"string.text"
-msgid "Posterize"
-msgstr "Poster"
-
-#: posterdialog.ui
-msgctxt ""
-"posterdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Poster colors:"
-msgstr "Posterfarben:"
-
-#: posterdialog.ui
-msgctxt ""
-"posterdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Parameters"
-msgstr "Parameter"
-
-#: querychangelineenddialog.ui
-msgctxt ""
-"querychangelineenddialog.ui\n"
-"AskChangeLineEndDialog\n"
-"title\n"
-"string.text"
-msgid "Save Arrowhead?"
-msgstr "Linienspitze sichern?"
-
-#: querychangelineenddialog.ui
-msgctxt ""
-"querychangelineenddialog.ui\n"
-"AskChangeLineEndDialog\n"
-"text\n"
-"string.text"
-msgid "The arrowhead was modified without saving."
-msgstr "Die Linienspitze wurde geändert aber noch nicht gesichert."
-
-#: querychangelineenddialog.ui
-msgctxt ""
-"querychangelineenddialog.ui\n"
-"AskChangeLineEndDialog\n"
-"secondary_text\n"
-"string.text"
-msgid "Would you like to save the arrowhead now?"
-msgstr "Möchten Sie die Linienspitze jetzt sichern?"
-
-#: querydeletebitmapdialog.ui
-msgctxt ""
-"querydeletebitmapdialog.ui\n"
-"AskDelBitmapDialog\n"
-"title\n"
-"string.text"
-msgid "Delete Bitmap?"
-msgstr "Bitmap löschen?"
-
-#: querydeletebitmapdialog.ui
-msgctxt ""
-"querydeletebitmapdialog.ui\n"
-"AskDelBitmapDialog\n"
-"text\n"
-"string.text"
-msgid "Are you sure you want to delete the bitmap?"
-msgstr "Soll die Bitmap wirklich gelöscht werden?"
-
-#: querydeletechartcolordialog.ui
-msgctxt ""
-"querydeletechartcolordialog.ui\n"
-"QueryDeleteChartColorDialog\n"
-"title\n"
-"string.text"
-msgid "Delete Color?"
-msgstr "Farbe löschen?"
-
-#: querydeletechartcolordialog.ui
-msgctxt ""
-"querydeletechartcolordialog.ui\n"
-"QueryDeleteChartColorDialog\n"
-"text\n"
-"string.text"
-msgid "Do you really want to delete the chart color?"
-msgstr "Soll das Farbschema wirklich gelöscht werden?"
-
-#: querydeletechartcolordialog.ui
-msgctxt ""
-"querydeletechartcolordialog.ui\n"
-"QueryDeleteChartColorDialog\n"
-"secondary_text\n"
-"string.text"
-msgid "This action cannot be undone."
-msgstr "Diese Aktion kann nicht rückgängig gemacht werden."
-
-#: querydeletecolordialog.ui
-msgctxt ""
-"querydeletecolordialog.ui\n"
-"AskDelColorDialog\n"
-"title\n"
-"string.text"
-msgid "Delete color?"
-msgstr "Farbe löschen?"
-
-#: querydeletecolordialog.ui
-msgctxt ""
-"querydeletecolordialog.ui\n"
-"AskDelColorDialog\n"
-"text\n"
-"string.text"
-msgid "Do you want to delete the color?"
-msgstr "Soll die Farbe wirklich gelöscht werden?"
-
-#: querydeletedictionarydialog.ui
-msgctxt ""
-"querydeletedictionarydialog.ui\n"
-"QueryDeleteDictionaryDialog\n"
-"title\n"
-"string.text"
-msgid "Delete Dictionary?"
-msgstr "Wörterbuch löschen?"
-
-#: querydeletedictionarydialog.ui
-msgctxt ""
-"querydeletedictionarydialog.ui\n"
-"QueryDeleteDictionaryDialog\n"
-"text\n"
-"string.text"
-msgid "Do you really want to delete the dictionary?"
-msgstr "Soll das Wörterbuch wirklich gelöscht werden?"
-
-#: querydeletedictionarydialog.ui
-msgctxt ""
-"querydeletedictionarydialog.ui\n"
-"QueryDeleteDictionaryDialog\n"
-"secondary_text\n"
-"string.text"
-msgid "This action cannot be undone."
-msgstr "Diese Aktion kann nicht rückgängig gemacht werden."
-
-#: querydeletegradientdialog.ui
-msgctxt ""
-"querydeletegradientdialog.ui\n"
-"AskDelGradientDialog\n"
-"title\n"
-"string.text"
-msgid "Delete gradient?"
-msgstr "Farbverlauf löschen?"
-
-#: querydeletegradientdialog.ui
-msgctxt ""
-"querydeletegradientdialog.ui\n"
-"AskDelGradientDialog\n"
-"text\n"
-"string.text"
-msgid "Do you want to delete the gradient?"
-msgstr "Soll der Farbverlauf wirklich gelöscht werden?"
-
-#: querydeletehatchdialog.ui
-msgctxt ""
-"querydeletehatchdialog.ui\n"
-"AskDelHatchDialog\n"
-"title\n"
-"string.text"
-msgid "Delete Hatching?"
-msgstr "Schraffur löschen?"
-
-#: querydeletehatchdialog.ui
-msgctxt ""
-"querydeletehatchdialog.ui\n"
-"AskDelHatchDialog\n"
-"text\n"
-"string.text"
-msgid "Do you want to delete the hatching?"
-msgstr "Soll die Schraffur wirklich gelöscht werden?"
-
-#: querydeletelineenddialog.ui
-msgctxt ""
-"querydeletelineenddialog.ui\n"
-"AskDelLineEndDialog\n"
-"title\n"
-"string.text"
-msgid "Delete Arrowhead?"
-msgstr "Linienspitze löschen?"
-
-#: querydeletelineenddialog.ui
-msgctxt ""
-"querydeletelineenddialog.ui\n"
-"AskDelLineEndDialog\n"
-"text\n"
-"string.text"
-msgid "Do you really want to delete the arrowhead?"
-msgstr "Soll die Linienspitze wirklich gelöscht werden?"
-
-#: querydeletelineenddialog.ui
-msgctxt ""
-"querydeletelineenddialog.ui\n"
-"AskDelLineEndDialog\n"
-"secondary_text\n"
-"string.text"
-msgid "This action cannot be undone."
-msgstr "Diese Aktion kann nicht rückgängig gemacht werden."
-
-#: querydeletelinestyledialog.ui
-msgctxt ""
-"querydeletelinestyledialog.ui\n"
-"AskDelLineStyleDialog\n"
-"title\n"
-"string.text"
-msgid "Delete Line Style?"
-msgstr "Linienstil löschen?"
-
-#: querydeletelinestyledialog.ui
-msgctxt ""
-"querydeletelinestyledialog.ui\n"
-"AskDelLineStyleDialog\n"
-"text\n"
-"string.text"
-msgid "Do you want to delete the line style?"
-msgstr "Soll der Linienstil wirklich gelöscht werden?"
-
-#: queryduplicatedialog.ui
-msgctxt ""
-"queryduplicatedialog.ui\n"
-"DuplicateNameDialog\n"
-"title\n"
-"string.text"
-msgid "Duplicate Name"
-msgstr "Doppelter Name"
-
-#: queryduplicatedialog.ui
-msgctxt ""
-"queryduplicatedialog.ui\n"
-"DuplicateNameDialog\n"
-"text\n"
-"string.text"
-msgid "The name you have entered already exists."
-msgstr "Der von Ihnen eingegebene Name existiert bereits."
-
-#: queryduplicatedialog.ui
-msgctxt ""
-"queryduplicatedialog.ui\n"
-"DuplicateNameDialog\n"
-"secondary_text\n"
-"string.text"
-msgid "Please choose another name."
-msgstr "Bitte wählen Sie einen anderen Namen."
-
-#: querynoloadedfiledialog.ui
-msgctxt ""
-"querynoloadedfiledialog.ui\n"
-"NoLoadedFileDialog\n"
-"title\n"
-"string.text"
-msgid "No Loaded File"
-msgstr "Keine Datei geladen"
-
-#: querynoloadedfiledialog.ui
-msgctxt ""
-"querynoloadedfiledialog.ui\n"
-"NoLoadedFileDialog\n"
-"text\n"
-"string.text"
-msgid "The file could not be loaded!"
-msgstr "Die Datei konnte nicht geladen werden!"
-
-#: querynosavefiledialog.ui
-msgctxt ""
-"querynosavefiledialog.ui\n"
-"NoSaveFileDialog\n"
-"title\n"
-"string.text"
-msgid "No Saved File"
-msgstr "Datei nicht gespeichert"
-
-#: querynosavefiledialog.ui
-msgctxt ""
-"querynosavefiledialog.ui\n"
-"NoSaveFileDialog\n"
-"text\n"
-"string.text"
-msgid "The file could not be saved!"
-msgstr "Die Datei kann nicht gespeichert werden!"
-
-#: querysavelistdialog.ui
-msgctxt ""
-"querysavelistdialog.ui\n"
-"AskSaveList\n"
-"title\n"
-"string.text"
-msgid "Save List?"
-msgstr "Liste speichern?"
-
-#: querysavelistdialog.ui
-msgctxt ""
-"querysavelistdialog.ui\n"
-"AskSaveList\n"
-"text\n"
-"string.text"
-msgid "The list was modified without saving."
-msgstr "Die Liste wurde geändert aber noch nicht gespeichert."
-
-#: querysavelistdialog.ui
-msgctxt ""
-"querysavelistdialog.ui\n"
-"AskSaveList\n"
-"secondary_text\n"
-"string.text"
-msgid "Would you like to save the list now?"
-msgstr "Soll die Liste jetzt gespeichert werden?"
-
-#: queryupdategalleryfilelistdialog.ui
-msgctxt ""
-"queryupdategalleryfilelistdialog.ui\n"
-"QueryUpdateFileListDialog\n"
-"title\n"
-"string.text"
-msgid "Update File List?"
-msgstr "Dateiliste aktualisieren?"
-
-#: queryupdategalleryfilelistdialog.ui
-msgctxt ""
-"queryupdategalleryfilelistdialog.ui\n"
-"QueryUpdateFileListDialog\n"
-"text\n"
-"string.text"
-msgid "Do you want to update the file list?"
-msgstr "Möchten Sie die Dateiliste aktualisieren?"
-
-#: recordnumberdialog.ui
-msgctxt ""
-"recordnumberdialog.ui\n"
-"RecordNumberDialog\n"
-"title\n"
-"string.text"
-msgid "Record Number"
-msgstr "Datensatznummer"
-
-#: recordnumberdialog.ui
-msgctxt ""
-"recordnumberdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "go to record"
-msgstr "gehe zu Datensatz"
-
-#: rotationtabpage.ui
-msgctxt ""
-"rotationtabpage.ui\n"
-"FT_POS_X\n"
-"label\n"
-"string.text"
-msgid "Position _X:"
-msgstr "Position _X:"
-
-#: rotationtabpage.ui
-msgctxt ""
-"rotationtabpage.ui\n"
-"FT_POS_Y\n"
-"label\n"
-"string.text"
-msgid "Position _Y:"
-msgstr "Position _Y:"
-
-#: rotationtabpage.ui
-msgctxt ""
-"rotationtabpage.ui\n"
-"FT_POSPRESETS\n"
-"label\n"
-"string.text"
-msgid "_Default settings:"
-msgstr "_Standardeinstellungen:"
-
-#: rotationtabpage.ui
-msgctxt ""
-"rotationtabpage.ui\n"
-"CTL_RECT\n"
-"tooltip_text\n"
-"string.text"
-msgid "Rotation point"
-msgstr "Rotationspunkt"
-
-#: rotationtabpage.ui
-msgctxt ""
-"rotationtabpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Pivot Point"
-msgstr "Drehpunkt"
-
-#: rotationtabpage.ui
-msgctxt ""
-"rotationtabpage.ui\n"
-"FT_ANGLE\n"
-"label\n"
-"string.text"
-msgid "_Angle:"
-msgstr "_Winkel:"
-
-#: rotationtabpage.ui
-msgctxt ""
-"rotationtabpage.ui\n"
-"FT_ANGLEPRESETS\n"
-"label\n"
-"string.text"
-msgid "Default _settings:"
-msgstr "Standard_einstellungen:"
-
-#: rotationtabpage.ui
-msgctxt ""
-"rotationtabpage.ui\n"
-"CTL_ANGLE\n"
-"tooltip_text\n"
-"string.text"
-msgid "Rotation Angle"
-msgstr "Drehwinkel"
-
-#: rotationtabpage.ui
-msgctxt ""
-"rotationtabpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Rotation Angle"
-msgstr "Drehwinkel"
-
-#: screenshotannotationdialog.ui
-msgctxt ""
-"screenshotannotationdialog.ui\n"
-"ScreenshotAnnotationDialog\n"
-"title\n"
-"string.text"
-msgid "Interactive Screenshot Annotation"
-msgstr "Anmerkung zu interaktivem Bildschirmfoto"
-
-#: screenshotannotationdialog.ui
-msgctxt ""
-"screenshotannotationdialog.ui\n"
-"save\n"
-"label\n"
-"string.text"
-msgid "Save Screenshot..."
-msgstr "Bildschirmfoto speichern..."
-
-#: screenshotannotationdialog.ui
-msgctxt ""
-"screenshotannotationdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Click the widgets to add annotation:"
-msgstr "Klicken Sie auf die grafischen Objekte, um eine Anmerkung hinzuzufügen:"
-
-#: screenshotannotationdialog.ui
-msgctxt ""
-"screenshotannotationdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Paste the following markup into the help file:"
-msgstr "Fügen Sie das folgende Markup in die Hilfedatei ein:"
-
-#: scriptorganizer.ui
-msgctxt ""
-"scriptorganizer.ui\n"
-"ScriptOrganizerDialog\n"
-"title\n"
-"string.text"
-msgid "%MACROLANG Macros"
-msgstr "%MACROLANG Makros"
-
-#: scriptorganizer.ui
-msgctxt ""
-"scriptorganizer.ui\n"
-"run\n"
-"label\n"
-"string.text"
-msgid "Run"
-msgstr "Ausführen"
-
-#: scriptorganizer.ui
-msgctxt ""
-"scriptorganizer.ui\n"
-"create\n"
-"label\n"
-"string.text"
-msgid "Create..."
-msgstr "Erstellen..."
-
-#: scriptorganizer.ui
-msgctxt ""
-"scriptorganizer.ui\n"
-"rename\n"
-"label\n"
-"string.text"
-msgid "Rename..."
-msgstr "Umbenennen..."
-
-#: scriptorganizer.ui
-msgctxt ""
-"scriptorganizer.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "Delete..."
-msgstr "Löschen..."
-
-#: scriptorganizer.ui
-msgctxt ""
-"scriptorganizer.ui\n"
-"macrosft\n"
-"label\n"
-"string.text"
-msgid "Macros"
-msgstr "Makros"
-
-#: searchattrdialog.ui
-msgctxt ""
-"searchattrdialog.ui\n"
-"SearchAttrDialog\n"
-"title\n"
-"string.text"
-msgid "Attributes"
-msgstr "Attribute"
-
-#: searchformatdialog.ui
-msgctxt ""
-"searchformatdialog.ui\n"
-"SearchFormatDialog\n"
-"title\n"
-"string.text"
-msgid "Text Format"
-msgstr "Textformatierungen"
-
-#: searchformatdialog.ui
-msgctxt ""
-"searchformatdialog.ui\n"
-"font\n"
-"label\n"
-"string.text"
-msgid "Font"
-msgstr "Schriftart"
-
-#: searchformatdialog.ui
-msgctxt ""
-"searchformatdialog.ui\n"
-"fonteffects\n"
-"label\n"
-"string.text"
-msgid "Font Effects"
-msgstr "Schrifteffekt"
-
-#: searchformatdialog.ui
-msgctxt ""
-"searchformatdialog.ui\n"
-"position\n"
-"label\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: searchformatdialog.ui
-msgctxt ""
-"searchformatdialog.ui\n"
-"asianlayout\n"
-"label\n"
-"string.text"
-msgid "Asian Layout"
-msgstr "Asiatisches Layout"
-
-#: searchformatdialog.ui
-msgctxt ""
-"searchformatdialog.ui\n"
-"labelTP_PARA_STD\n"
-"label\n"
-"string.text"
-msgid "Indents & Spacing"
-msgstr "Einzüge & Abstände"
-
-#: searchformatdialog.ui
-msgctxt ""
-"searchformatdialog.ui\n"
-"labelTP_PARA_ALIGN\n"
-"label\n"
-"string.text"
-msgid "Alignment"
-msgstr "Ausrichtung"
-
-#: searchformatdialog.ui
-msgctxt ""
-"searchformatdialog.ui\n"
-"labelTP_PARA_EXT\n"
-"label\n"
-"string.text"
-msgid "Text Flow"
-msgstr "Textfluss"
-
-#: searchformatdialog.ui
-msgctxt ""
-"searchformatdialog.ui\n"
-"labelTP_PARA_ASIAN\n"
-"label\n"
-"string.text"
-msgid "Asian Typography"
-msgstr "Asiatische Typografie"
-
-#: searchformatdialog.ui
-msgctxt ""
-"searchformatdialog.ui\n"
-"background\n"
-"label\n"
-"string.text"
-msgid "Highlighting"
-msgstr "Hervorhebung"
-
-#: securityoptionsdialog.ui
-msgctxt ""
-"securityoptionsdialog.ui\n"
-"SecurityOptionsDialog\n"
-"title\n"
-"string.text"
-msgid "Security Options and Warnings"
-msgstr "Sicherheitsoptionen und -warnungen"
-
-#: securityoptionsdialog.ui
-msgctxt ""
-"securityoptionsdialog.ui\n"
-"savesenddocs\n"
-"label\n"
-"string.text"
-msgid "_When saving or sending"
-msgstr "_Speichern oder Senden"
-
-#: securityoptionsdialog.ui
-msgctxt ""
-"securityoptionsdialog.ui\n"
-"whensigning\n"
-"label\n"
-"string.text"
-msgid "When _signing"
-msgstr "Si_gnieren"
-
-#: securityoptionsdialog.ui
-msgctxt ""
-"securityoptionsdialog.ui\n"
-"whenprinting\n"
-"label\n"
-"string.text"
-msgid "When _printing"
-msgstr "_Drucken"
-
-#: securityoptionsdialog.ui
-msgctxt ""
-"securityoptionsdialog.ui\n"
-"whenpdf\n"
-"label\n"
-"string.text"
-msgid "When creating PDF _files"
-msgstr "_PDF-Dateien erzeugen"
-
-#: securityoptionsdialog.ui
-msgctxt ""
-"securityoptionsdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Warn if document contains recorded changes, versions, hidden information or notes:"
-msgstr "Wenn ein Dokument aufgezeichnete Änderungen, Versionen, versteckte Informationen oder Notizen enthält, warnen beim:"
-
-#: securityoptionsdialog.ui
-msgctxt ""
-"securityoptionsdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Security Warnings"
-msgstr "Sicherheitswarnungen"
-
-#: securityoptionsdialog.ui
-msgctxt ""
-"securityoptionsdialog.ui\n"
-"removepersonal\n"
-"label\n"
-"string.text"
-msgid "_Remove personal information on saving"
-msgstr "Persönliche _Informationen beim Speichern entfernen"
-
-#: securityoptionsdialog.ui
-msgctxt ""
-"securityoptionsdialog.ui\n"
-"password\n"
-"label\n"
-"string.text"
-msgid "Recommend password protection on sa_ving"
-msgstr "_Kennwortschutz beim Speichern empfehlen"
-
-#: securityoptionsdialog.ui
-msgctxt ""
-"securityoptionsdialog.ui\n"
-"ctrlclick\n"
-"label\n"
-"string.text"
-msgid "Ctrl-click required _to follow hyperlinks"
-msgstr "Strg _beim Klicken halten, um Hyperlinks zu folgen"
-
-#: securityoptionsdialog.ui
-msgctxt ""
-"securityoptionsdialog.ui\n"
-"blockuntrusted\n"
-"label\n"
-"string.text"
-msgid "Block any links from documents not among the trusted locations (see Macro Security)"
-msgstr "Jede Verknüpfung aus Dokumenten blockieren, die nicht als vertrauenswürdige Quelle gilt (siehe Makrosicherheit)"
-
-#: securityoptionsdialog.ui
-msgctxt ""
-"securityoptionsdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Security Options"
-msgstr "Sicherheitsoptionen"
-
-#: select_persona_dialog.ui
-msgctxt ""
-"select_persona_dialog.ui\n"
-"SelectPersonaDialog\n"
-"title\n"
-"string.text"
-msgid "Select Firefox Theme"
-msgstr "Firefox-Themes auswählen"
-
-#: select_persona_dialog.ui
-msgctxt ""
-"select_persona_dialog.ui\n"
-"search_personas\n"
-"label\n"
-"string.text"
-msgid "_Go"
-msgstr "_Gehe zu"
-
-#: select_persona_dialog.ui
-msgctxt ""
-"select_persona_dialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Search Term or Firefox Theme URL"
-msgstr "Suchbegriff oder URL des Firefox-Themes"
-
-#: select_persona_dialog.ui
-msgctxt ""
-"select_persona_dialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Categories"
-msgstr "Kategorien"
-
-#: selectpathdialog.ui
-msgctxt ""
-"selectpathdialog.ui\n"
-"SelectPathDialog\n"
-"title\n"
-"string.text"
-msgid "Select Paths"
-msgstr "Pfade auswählen"
-
-#: selectpathdialog.ui
-msgctxt ""
-"selectpathdialog.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "_Add..."
-msgstr "_Hinzufügen..."
-
-#: selectpathdialog.ui
-msgctxt ""
-"selectpathdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Paths"
-msgstr "Pfade"
-
-#: shadowtabpage.ui
-msgctxt ""
-"shadowtabpage.ui\n"
-"TSB_SHOW_SHADOW\n"
-"label\n"
-"string.text"
-msgid "_Use shadow"
-msgstr "_Schatten anwenden"
-
-#: shadowtabpage.ui
-msgctxt ""
-"shadowtabpage.ui\n"
-"FT_DISTANCE\n"
-"label\n"
-"string.text"
-msgid "_Distance:"
-msgstr "_Distanz:"
-
-#: shadowtabpage.ui
-msgctxt ""
-"shadowtabpage.ui\n"
-"FT_TRANSPARENT\n"
-"label\n"
-"string.text"
-msgid "_Transparency:"
-msgstr "_Transparenz:"
-
-#: shadowtabpage.ui
-msgctxt ""
-"shadowtabpage.ui\n"
-"FT_SHADOW_COLOR\n"
-"label\n"
-"string.text"
-msgid "_Color:"
-msgstr "_Farbe:"
-
-#: shadowtabpage.ui
-msgctxt ""
-"shadowtabpage.ui\n"
-"CTL_COLOR_PREVIEW-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Example"
-msgstr "Beispiel"
-
-#: shadowtabpage.ui
-msgctxt ""
-"shadowtabpage.ui\n"
-"label\n"
-"label\n"
-"string.text"
-msgid "Properties"
-msgstr "Eigenschaften"
-
-#: showcoldialog.ui
-msgctxt ""
-"showcoldialog.ui\n"
-"ShowColDialog\n"
-"title\n"
-"string.text"
-msgid "Show Columns"
-msgstr "Spalten anzeigen"
-
-#: showcoldialog.ui
-msgctxt ""
-"showcoldialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "The following columns are currently hidden. Please mark the fields you want to show and choose OK."
-msgstr "Folgende Spalten sind augenblicklich versteckt. Markieren Sie bitte die wieder einzublendenden und wählen Sie OK."
-
-#: similaritysearchdialog.ui
-msgctxt ""
-"similaritysearchdialog.ui\n"
-"SimilaritySearchDialog\n"
-"title\n"
-"string.text"
-msgid "Similarity Search"
-msgstr "Ähnlichkeitssuche"
-
-#: similaritysearchdialog.ui
-msgctxt ""
-"similaritysearchdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Exchange characters:"
-msgstr "_Zeichen tauschen:"
-
-#: similaritysearchdialog.ui
-msgctxt ""
-"similaritysearchdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Add characters:"
-msgstr "Z_eichen hinzufügen:"
-
-#: similaritysearchdialog.ui
-msgctxt ""
-"similaritysearchdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Remove characters:"
-msgstr "Ze_ichen entfernen:"
-
-#: similaritysearchdialog.ui
-msgctxt ""
-"similaritysearchdialog.ui\n"
-"relaxbox\n"
-"label\n"
-"string.text"
-msgid "_Combine"
-msgstr "_Kombinieren"
-
-#: slantcornertabpage.ui
-msgctxt ""
-"slantcornertabpage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "_X:"
-msgstr "_X:"
-
-#: slantcornertabpage.ui
-msgctxt ""
-"slantcornertabpage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "_Y:"
-msgstr "_Y:"
-
-#: slantcornertabpage.ui
-msgctxt ""
-"slantcornertabpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Control Point 1"
-msgstr "Kontrollpunkt 1"
-
-#: slantcornertabpage.ui
-msgctxt ""
-"slantcornertabpage.ui\n"
-"FT_RADIUS\n"
-"label\n"
-"string.text"
-msgid "_Radius:"
-msgstr "_Radius:"
-
-#: slantcornertabpage.ui
-msgctxt ""
-"slantcornertabpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Corner Radius"
-msgstr "Eckenradius"
-
-#: slantcornertabpage.ui
-msgctxt ""
-"slantcornertabpage.ui\n"
-"FT_ANGLE\n"
-"label\n"
-"string.text"
-msgid "_Angle:"
-msgstr "_Winkel:"
-
-#: slantcornertabpage.ui
-msgctxt ""
-"slantcornertabpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Slant"
-msgstr "Schräg stellen"
-
-#: slantcornertabpage.ui
-msgctxt ""
-"slantcornertabpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_X:"
-msgstr "_X:"
-
-#: slantcornertabpage.ui
-msgctxt ""
-"slantcornertabpage.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "_Y:"
-msgstr "_Y:"
-
-#: slantcornertabpage.ui
-msgctxt ""
-"slantcornertabpage.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Control Point 2"
-msgstr "Kontrollpunkt 2"
-
-#: smarttagoptionspage.ui
-msgctxt ""
-"smarttagoptionspage.ui\n"
-"main\n"
-"label\n"
-"string.text"
-msgid "Label text with smart tags"
-msgstr "Text mit Smart Tags versehen"
-
-#: smarttagoptionspage.ui
-msgctxt ""
-"smarttagoptionspage.ui\n"
-"properties\n"
-"label\n"
-"string.text"
-msgid "Properties..."
-msgstr "Eigenschaften..."
-
-#: smarttagoptionspage.ui
-msgctxt ""
-"smarttagoptionspage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Currently Installed Smart Tags"
-msgstr "Aktuell installierte Smart Tags"
-
-#: smoothdialog.ui
-msgctxt ""
-"smoothdialog.ui\n"
-"SmoothDialog\n"
-"title\n"
-"string.text"
-msgid "Smooth"
-msgstr "Weichzeichnen"
-
-#: smoothdialog.ui
-msgctxt ""
-"smoothdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Smooth radius:"
-msgstr "_Weichzeichnungsradius:"
-
-#: smoothdialog.ui
-msgctxt ""
-"smoothdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Parameters"
-msgstr "Parameter"
-
-#: solarizedialog.ui
-msgctxt ""
-"solarizedialog.ui\n"
-"SolarizeDialog\n"
-"title\n"
-"string.text"
-msgid "Solarization"
-msgstr "Solarisation"
-
-#: solarizedialog.ui
-msgctxt ""
-"solarizedialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Threshold _value:"
-msgstr "_Schwellenwert:"
-
-#: solarizedialog.ui
-msgctxt ""
-"solarizedialog.ui\n"
-"invert\n"
-"label\n"
-"string.text"
-msgid "_Invert"
-msgstr "_Invertieren"
-
-#: solarizedialog.ui
-msgctxt ""
-"solarizedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Parameters"
-msgstr "Parameter"
-
-#: specialcharacters.ui
-msgctxt ""
-"specialcharacters.ui\n"
-"SpecialCharactersDialog\n"
-"title\n"
-"string.text"
-msgid "Special Characters"
-msgstr "Sonderzeichen"
-
-#: specialcharacters.ui
-msgctxt ""
-"specialcharacters.ui\n"
-"ok\n"
-"label\n"
-"string.text"
-msgid "_Insert"
-msgstr "_Einfügen"
-
-#: specialcharacters.ui
-msgctxt ""
-"specialcharacters.ui\n"
-"fontft\n"
-"label\n"
-"string.text"
-msgid "Font:"
-msgstr "Schriftart:"
-
-#: specialcharacters.ui
-msgctxt ""
-"specialcharacters.ui\n"
-"subsetft\n"
-"label\n"
-"string.text"
-msgid "Subset:"
-msgstr "Teilmenge:"
-
-#: specialcharacters.ui
-msgctxt ""
-"specialcharacters.ui\n"
-"symboltext\n"
-"label\n"
-"string.text"
-msgid "Characters:"
-msgstr "Zeichen:"
-
-#: specialcharacters.ui
-msgctxt ""
-"specialcharacters.ui\n"
-"hexlabel\n"
-"label\n"
-"string.text"
-msgid "Hexadecimal:"
-msgstr "Hexadezimal:"
-
-#: specialcharacters.ui
-msgctxt ""
-"specialcharacters.ui\n"
-"decimallabel\n"
-"label\n"
-"string.text"
-msgid "Decimal:"
-msgstr "Dezimal:"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"SpellingDialog\n"
-"title\n"
-"string.text"
-msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)"
-msgstr "Rechtschreibung und Grammatik: $LANGUAGE ($LOCATION)"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"options\n"
-"label\n"
-"string.text"
-msgid "_Options..."
-msgstr "O_ptionen..."
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"ignore\n"
-"label\n"
-"string.text"
-msgid "_Ignore Once"
-msgstr "_Einmal ignorieren"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"change\n"
-"label\n"
-"string.text"
-msgid "Co_rrect"
-msgstr "Ä_ndern"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"changeall\n"
-"label\n"
-"string.text"
-msgid "Correct A_ll"
-msgstr "A_lle ändern"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"autocorrect\n"
-"label\n"
-"string.text"
-msgid "Alwa_ys Correct"
-msgstr "Auto_Korrektur"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"checkgrammar\n"
-"label\n"
-"string.text"
-msgid "Chec_k grammar"
-msgstr "_Grammatik prüfen"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"ignoreall\n"
-"label\n"
-"string.text"
-msgid "I_gnore All"
-msgstr "_Alle ignorieren"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"ignorerule\n"
-"label\n"
-"string.text"
-msgid "I_gnore Rule"
-msgstr "Regel _ignorieren"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"languageft\n"
-"label\n"
-"string.text"
-msgid "Text languag_e:"
-msgstr "_Textsprache:"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"explainlink\n"
-"label\n"
-"string.text"
-msgid "More..."
-msgstr "Mehr..."
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"resumeft\n"
-"label\n"
-"string.text"
-msgid "Res_ume"
-msgstr "_Fortsetzen"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"nosuggestionsft\n"
-"label\n"
-"string.text"
-msgid "(no suggestions)"
-msgstr "(keine Vorschläge)"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"alttitleft\n"
-"label\n"
-"string.text"
-msgid "Spelling: $LANGUAGE ($LOCATION)"
-msgstr "Rechtschreibung: $LANGUAGE ($LOCATION)"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "_Add to Dictionary"
-msgstr "_Zum Wörterbuch hinzufügen"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"addmb\n"
-"label\n"
-"string.text"
-msgid "_Add to Dictionary"
-msgstr "_Zum Wörterbuch hinzufügen"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"suggestionsft\n"
-"label\n"
-"string.text"
-msgid "_Suggestions"
-msgstr "_Vorschläge"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"notindictft\n"
-"label\n"
-"string.text"
-msgid "_Not in dictionary"
-msgstr "_Nicht im Wörterbuch"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"paste\n"
-"label\n"
-"string.text"
-msgid "Paste"
-msgstr "Einfügen"
-
-#: spellingdialog.ui
-msgctxt ""
-"spellingdialog.ui\n"
-"insert\n"
-"label\n"
-"string.text"
-msgid "Special Character"
-msgstr "Sonderzeichen"
-
-#: spelloptionsdialog.ui
-msgctxt ""
-"spelloptionsdialog.ui\n"
-"SpellOptionsDialog\n"
-"title\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: splitcellsdialog.ui
-msgctxt ""
-"splitcellsdialog.ui\n"
-"SplitCellsDialog\n"
-"title\n"
-"string.text"
-msgid "Split Cells"
-msgstr "Zellen teilen"
-
-#: splitcellsdialog.ui
-msgctxt ""
-"splitcellsdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Split cell into:"
-msgstr "_Zelle teilen in:"
-
-#: splitcellsdialog.ui
-msgctxt ""
-"splitcellsdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Split"
-msgstr "Teilen"
-
-#: splitcellsdialog.ui
-msgctxt ""
-"splitcellsdialog.ui\n"
-"hori\n"
-"label\n"
-"string.text"
-msgid "H_orizontally"
-msgstr "_Horizontal"
-
-#: splitcellsdialog.ui
-msgctxt ""
-"splitcellsdialog.ui\n"
-"vert\n"
-"label\n"
-"string.text"
-msgid "_Vertically"
-msgstr "_Vertikal"
-
-#: splitcellsdialog.ui
-msgctxt ""
-"splitcellsdialog.ui\n"
-"prop\n"
-"label\n"
-"string.text"
-msgid "_Into equal proportions"
-msgstr "_Gleichmäßig teilen"
-
-#: splitcellsdialog.ui
-msgctxt ""
-"splitcellsdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Direction"
-msgstr "Richtung"
-
-#: storedwebconnectiondialog.ui
-msgctxt ""
-"storedwebconnectiondialog.ui\n"
-"StoredWebConnectionDialog\n"
-"title\n"
-"string.text"
-msgid "Stored Web Connection Information"
-msgstr "Gespeicherte Informationen zu Internet-Verbindungen"
-
-#: storedwebconnectiondialog.ui
-msgctxt ""
-"storedwebconnectiondialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Web login information (passwords are never shown)"
-msgstr "Internet Login-Informationen (Kennwörter werden nie angezeigt)"
-
-#: storedwebconnectiondialog.ui
-msgctxt ""
-"storedwebconnectiondialog.ui\n"
-"website\n"
-"label\n"
-"string.text"
-msgid "Website"
-msgstr "Webseite"
-
-#: storedwebconnectiondialog.ui
-msgctxt ""
-"storedwebconnectiondialog.ui\n"
-"username\n"
-"label\n"
-"string.text"
-msgid "User name"
-msgstr "Benutzername"
-
-#: storedwebconnectiondialog.ui
-msgctxt ""
-"storedwebconnectiondialog.ui\n"
-"removeall\n"
-"label\n"
-"string.text"
-msgid "Remove _All"
-msgstr "_Alle entfernen"
-
-#: storedwebconnectiondialog.ui
-msgctxt ""
-"storedwebconnectiondialog.ui\n"
-"change\n"
-"label\n"
-"string.text"
-msgid "_Change Password..."
-msgstr "_Kennwort ändern..."
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"widthft\n"
-"label\n"
-"string.text"
-msgid "_Width:"
-msgstr "_Breite:"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"heightft\n"
-"label\n"
-"string.text"
-msgid "H_eight:"
-msgstr "Höh_e:"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"ratio\n"
-"label\n"
-"string.text"
-msgid "_Keep ratio"
-msgstr "Seiten_verhältnis beibehalten"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Size"
-msgstr "Größe"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"topage\n"
-"label\n"
-"string.text"
-msgid "To _page"
-msgstr "An der _Seite"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"topara\n"
-"label\n"
-"string.text"
-msgid "To paragrap_h"
-msgstr "Am A_bsatz"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"tochar\n"
-"label\n"
-"string.text"
-msgid "To cha_racter"
-msgstr "Am Zei_chen"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"aschar\n"
-"label\n"
-"string.text"
-msgid "_As character"
-msgstr "A_ls Zeichen"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"toframe\n"
-"label\n"
-"string.text"
-msgid "To _frame"
-msgstr "Am Rahme_n"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Anchor"
-msgstr "Verankerung"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"horiposft\n"
-"label\n"
-"string.text"
-msgid "Hori_zontal:"
-msgstr "_Horizontal:"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"horibyft\n"
-"label\n"
-"string.text"
-msgid "b_y:"
-msgstr "u_m:"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"vertbyft\n"
-"label\n"
-"string.text"
-msgid "_by:"
-msgstr "u_m:"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"horitoft\n"
-"label\n"
-"string.text"
-msgid "_to:"
-msgstr "z_u:"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"vertposft\n"
-"label\n"
-"string.text"
-msgid "_Vertical:"
-msgstr "_Vertikal:"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"verttoft\n"
-"label\n"
-"string.text"
-msgid "t_o:"
-msgstr "z_u:"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"mirror\n"
-"label\n"
-"string.text"
-msgid "_Mirror on even pages"
-msgstr "Au_f geraden Seiten spiegeln"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"followtextflow\n"
-"label\n"
-"string.text"
-msgid "Follow te_xt flow"
-msgstr "_Textfluss folgen"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"label11\n"
-"label\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"pos\n"
-"label\n"
-"string.text"
-msgid "Positio_n"
-msgstr "_Position"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"size\n"
-"label\n"
-"string.text"
-msgid "_Size"
-msgstr "_Größe"
-
-#: swpossizepage.ui
-msgctxt ""
-"swpossizepage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Protect"
-msgstr "Schützen"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"FT_EFFECTS\n"
-"label\n"
-"string.text"
-msgid "E_ffect:"
-msgstr "_Effekte:"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"FT_DIRECTION\n"
-"label\n"
-"string.text"
-msgid "Direction:"
-msgstr "Richtung:"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"BTN_UP\n"
-"tooltip_text\n"
-"string.text"
-msgid "To top"
-msgstr "Nach oben"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"BTN_UP-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Up"
-msgstr "Oben"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"BTN_RIGHT\n"
-"tooltip_text\n"
-"string.text"
-msgid "To right"
-msgstr "Nach rechts"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"BTN_RIGHT-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Right"
-msgstr "Rechts"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"BTN_LEFT\n"
-"tooltip_text\n"
-"string.text"
-msgid "To left"
-msgstr "Nach links"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"BTN_LEFT-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Left"
-msgstr "Links"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"BTN_DOWN\n"
-"tooltip_text\n"
-"string.text"
-msgid "To bottom"
-msgstr "Nach unten"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"BTN_DOWN-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Down"
-msgstr "Unten"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"TSB_START_INSIDE\n"
-"label\n"
-"string.text"
-msgid "S_tart inside"
-msgstr "_Innerhalb starten"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"TSB_STOP_INSIDE\n"
-"label\n"
-"string.text"
-msgid "Text _visible when exiting"
-msgstr "_Text sichtbar beim Beenden"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"FT_COUNT\n"
-"label\n"
-"string.text"
-msgid "Animation cycles:"
-msgstr "Animationsdurchläufe:"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"TSB_ENDLESS\n"
-"label\n"
-"string.text"
-msgid "_Continuous"
-msgstr "_Fortlaufend"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"FT_AMOUNT\n"
-"label\n"
-"string.text"
-msgid "Increment:"
-msgstr "Schrittweite:"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"TSB_PIXEL\n"
-"label\n"
-"string.text"
-msgid "_Pixels"
-msgstr "_Pixel"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"FT_DELAY\n"
-"label\n"
-"string.text"
-msgid "Delay:"
-msgstr "Verzögerung:"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"TSB_AUTO\n"
-"label\n"
-"string.text"
-msgid "_Automatic"
-msgstr "A_utomatisch"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Properties"
-msgstr "Eigenschaften"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"liststoreEFFECT\n"
-"0\n"
-"stringlist.text"
-msgid "No Effect"
-msgstr "Kein Effekt"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"liststoreEFFECT\n"
-"1\n"
-"stringlist.text"
-msgid "Blink"
-msgstr "Blinken"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"liststoreEFFECT\n"
-"2\n"
-"stringlist.text"
-msgid "Scroll Through"
-msgstr "Durchlaufen"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"liststoreEFFECT\n"
-"3\n"
-"stringlist.text"
-msgid "Scroll Back and Forth"
-msgstr "Hin- und zurücklaufen"
-
-#: textanimtabpage.ui
-msgctxt ""
-"textanimtabpage.ui\n"
-"liststoreEFFECT\n"
-"4\n"
-"stringlist.text"
-msgid "Scroll In"
-msgstr "Reinlaufen"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"TSB_AUTOGROW_WIDTH\n"
-"label\n"
-"string.text"
-msgid "Fit wi_dth to text"
-msgstr "_Breite an Text anpassen"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"TSB_AUTOGROW_HEIGHT\n"
-"label\n"
-"string.text"
-msgid "Fit h_eight to text"
-msgstr "Höh_e an Text anpassen"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"TSB_FIT_TO_SIZE\n"
-"label\n"
-"string.text"
-msgid "_Fit to frame"
-msgstr "An Rah_men anpassen"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"TSB_CONTOUR\n"
-"label\n"
-"string.text"
-msgid "_Adjust to contour"
-msgstr "_Konturfluss"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Drawing Object Text"
-msgstr "Zeichenobjekt Text"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"TSB_WORDWRAP_TEXT\n"
-"label\n"
-"string.text"
-msgid "_Word wrap text in shape"
-msgstr "_Text in Form umbrechen"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"TSB_AUTOGROW_SIZE\n"
-"label\n"
-"string.text"
-msgid "_Resize shape to fit text"
-msgstr "_Größe der Form dem Text anpassen"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Custom Shape Text"
-msgstr "Text der benutzerdefinierten Form"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Left:"
-msgstr "_Links:"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "_Right:"
-msgstr "_Rechts:"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "_Top:"
-msgstr "_Oben:"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "_Bottom:"
-msgstr "_Unten:"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Spacing to Borders"
-msgstr "Abstand zum Rahmen"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"TSB_FULL_WIDTH\n"
-"label\n"
-"string.text"
-msgid "Full _width"
-msgstr "_Ganze Breite"
-
-#: textattrtabpage.ui
-msgctxt ""
-"textattrtabpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Text Anchor"
-msgstr "Textverankerung"
-
-#: textdialog.ui
-msgctxt ""
-"textdialog.ui\n"
-"TextDialog\n"
-"title\n"
-"string.text"
-msgid "Text"
-msgstr "Text"
-
-#: textdialog.ui
-msgctxt ""
-"textdialog.ui\n"
-"RID_SVXPAGE_TEXTATTR\n"
-"label\n"
-"string.text"
-msgid "Text"
-msgstr "Text"
-
-#: textdialog.ui
-msgctxt ""
-"textdialog.ui\n"
-"RID_SVXPAGE_TEXTANIMATION\n"
-"label\n"
-"string.text"
-msgid "Text Animation"
-msgstr "Lauftext"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"checkAuto\n"
-"label\n"
-"string.text"
-msgid "A_utomatically"
-msgstr "Auto_matisch"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"labelLineEnd\n"
-"label\n"
-"string.text"
-msgid "C_haracters at line end"
-msgstr "Zeichen am Zeilene_nde"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"labelLineBegin\n"
-"label\n"
-"string.text"
-msgid "Cha_racters at line begin"
-msgstr "Zeichen am Zeilenan_fang"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"labelMaxNum\n"
-"label\n"
-"string.text"
-msgid "_Maximum number of consecutive hyphens"
-msgstr "Ma_ximal aufeinander folgende Trennstellen"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"LabelHyphenation\n"
-"label\n"
-"string.text"
-msgid "Hyphenation"
-msgstr "Silbentrennung"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"checkInsert\n"
-"label\n"
-"string.text"
-msgid "_Insert"
-msgstr "_Einfügen"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"checkPageStyle\n"
-"label\n"
-"string.text"
-msgid "With page st_yle:"
-msgstr "Mit Seitenvor_lage:"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"labelType\n"
-"label\n"
-"string.text"
-msgid "_Type:"
-msgstr "_Typ:"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"labelPageNum\n"
-"label\n"
-"string.text"
-msgid "Page _number:"
-msgstr "Se_itennummer:"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"labelPosition\n"
-"label\n"
-"string.text"
-msgid "Position:"
-msgstr "Position:"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"comboPageStyle-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Page Style"
-msgstr "Seitenvorlage"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"comboBreakType\n"
-"0\n"
-"stringlist.text"
-msgid "Page"
-msgstr "Seite"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"comboBreakType\n"
-"1\n"
-"stringlist.text"
-msgid "Column"
-msgstr "Spalte"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"comboBreakPosition\n"
-"0\n"
-"stringlist.text"
-msgid "Before"
-msgstr "Vor"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"comboBreakPosition\n"
-"1\n"
-"stringlist.text"
-msgid "After"
-msgstr "Hinter"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Breaks"
-msgstr "Umbrüche"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"checkSplitPara\n"
-"label\n"
-"string.text"
-msgid "_Do not split paragraph"
-msgstr "Absatz ni_cht trennen"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"checkKeepPara\n"
-"label\n"
-"string.text"
-msgid "_Keep with next paragraph"
-msgstr "Mit folgendem Absatz z_usammenhalten"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"checkOrphan\n"
-"label\n"
-"string.text"
-msgid "_Orphan control"
-msgstr "Schuster_jungenregelung"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"checkWidow\n"
-"label\n"
-"string.text"
-msgid "_Widow control"
-msgstr "Hu_renkinderregelung"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"labelOrphan\n"
-"label\n"
-"string.text"
-msgid "lines"
-msgstr "Zeilen"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"labelWidow\n"
-"label\n"
-"string.text"
-msgid "lines"
-msgstr "Zeilen"
-
-#: textflowpage.ui
-msgctxt ""
-"textflowpage.ui\n"
-"labelOptions\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: thesaurus.ui
-msgctxt ""
-"thesaurus.ui\n"
-"ThesaurusDialog\n"
-"title\n"
-"string.text"
-msgid "Thesaurus"
-msgstr "Thesaurus"
-
-#: thesaurus.ui
-msgctxt ""
-"thesaurus.ui\n"
-"replace\n"
-"label\n"
-"string.text"
-msgid "_Replace"
-msgstr "_Ersetzen"
-
-#: thesaurus.ui
-msgctxt ""
-"thesaurus.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Current word:"
-msgstr "Aktuelles Wort:"
-
-#: thesaurus.ui
-msgctxt ""
-"thesaurus.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Alternatives:"
-msgstr "Alternativen:"
-
-#: thesaurus.ui
-msgctxt ""
-"thesaurus.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Replace with:"
-msgstr "Ersetzen durch:"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"RBT_TRANS_OFF\n"
-"label\n"
-"string.text"
-msgid "_No transparency"
-msgstr "_Keine Transparenz"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"RBT_TRANS_LINEAR\n"
-"label\n"
-"string.text"
-msgid "_Transparency:"
-msgstr "_Transparenz:"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"RBT_TRANS_GRADIENT\n"
-"label\n"
-"string.text"
-msgid "_Gradient"
-msgstr "_Verlauf"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"FT_TRGR_TYPE\n"
-"label\n"
-"string.text"
-msgid "Ty_pe:"
-msgstr "T_yp:"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"FT_TRGR_CENTER_X\n"
-"label\n"
-"string.text"
-msgid "Center _X:"
-msgstr "Zentrum _X:"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"FT_TRGR_CENTER_Y\n"
-"label\n"
-"string.text"
-msgid "Center _Y:"
-msgstr "Zentrum _Y:"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"FT_TRGR_ANGLE\n"
-"label\n"
-"string.text"
-msgid "_Angle:"
-msgstr "_Winkel:"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"FT_TRGR_BORDER\n"
-"label\n"
-"string.text"
-msgid "_Border:"
-msgstr "_Umrandung:"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"FT_TRGR_START_VALUE\n"
-"label\n"
-"string.text"
-msgid "_Start value:"
-msgstr "S_tartwert:"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"FT_TRGR_END_VALUE\n"
-"label\n"
-"string.text"
-msgid "_End value:"
-msgstr "_Endwert:"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"CTL_BITMAP_PREVIEW-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Example"
-msgstr "Beispiel"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"CTL_TRANS_PREVIEW-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Example"
-msgstr "Beispiel"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"FL_PROP\n"
-"label\n"
-"string.text"
-msgid "Area Transparency Mode"
-msgstr "Bereich des Transparenzmodus"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"liststoreTYPE\n"
-"0\n"
-"stringlist.text"
-msgid "Linear"
-msgstr "Linear"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"liststoreTYPE\n"
-"1\n"
-"stringlist.text"
-msgid "Axial"
-msgstr "Axial"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"liststoreTYPE\n"
-"2\n"
-"stringlist.text"
-msgid "Radial"
-msgstr "Radial"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"liststoreTYPE\n"
-"3\n"
-"stringlist.text"
-msgid "Ellipsoid"
-msgstr "Ellipsoid"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"liststoreTYPE\n"
-"4\n"
-"stringlist.text"
-msgid "Quadratic"
-msgstr "Quadratisch"
-
-#: transparencytabpage.ui
-msgctxt ""
-"transparencytabpage.ui\n"
-"liststoreTYPE\n"
-"5\n"
-"stringlist.text"
-msgid "Square"
-msgstr "Rechteckig"
-
-#: tsaurldialog.ui
-msgctxt ""
-"tsaurldialog.ui\n"
-"TSAURLDialog\n"
-"title\n"
-"string.text"
-msgid "Time Stamping Authority URLs"
-msgstr "URLs von Time Stamp Authorities"
-
-#: tsaurldialog.ui
-msgctxt ""
-"tsaurldialog.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete..."
-msgstr "_Löschen..."
-
-#: tsaurldialog.ui
-msgctxt ""
-"tsaurldialog.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "_Add..."
-msgstr "_Hinzufügen..."
-
-#: tsaurldialog.ui
-msgctxt ""
-"tsaurldialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Add or delete Time Stamp Authority URLs"
-msgstr "Fügen Sie URLs von „Time Stamp Authorities“ hinzu oder löschen Sie diese."
-
-#: tsaurldialog.ui
-msgctxt ""
-"tsaurldialog.ui\n"
-"enteraurl\n"
-"label\n"
-"string.text"
-msgid "Enter a Time Stamp Authority URL"
-msgstr "Geben Sie die URL einer „Time Stamp Authority“ ein."
-
-#: tsaurldialog.ui
-msgctxt ""
-"tsaurldialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "TSA URL"
-msgstr "URL der TSA"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"twolines\n"
-"label\n"
-"string.text"
-msgid "Write in double lines"
-msgstr "Doppelzeilig schreiben"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Double-lined"
-msgstr "Doppelzeilig"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"label29\n"
-"label\n"
-"string.text"
-msgid "Initial character"
-msgstr "Anfangszeichen"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"label30\n"
-"label\n"
-"string.text"
-msgid "Final character"
-msgstr "Endzeichen"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"label28\n"
-"label\n"
-"string.text"
-msgid "Enclosing Character"
-msgstr "Einschließende Zeichen"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"preview\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"liststore1\n"
-"0\n"
-"stringlist.text"
-msgid "(None)"
-msgstr "(Keines)"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"liststore1\n"
-"1\n"
-"stringlist.text"
-msgid "("
-msgstr "("
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"liststore1\n"
-"2\n"
-"stringlist.text"
-msgid "["
-msgstr "["
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"liststore1\n"
-"3\n"
-"stringlist.text"
-msgid "<"
-msgstr "<"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"liststore1\n"
-"4\n"
-"stringlist.text"
-msgid "{"
-msgstr "{"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"liststore1\n"
-"5\n"
-"stringlist.text"
-msgid "Other Characters..."
-msgstr "Weitere Zeichen..."
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"liststore2\n"
-"0\n"
-"stringlist.text"
-msgid "(None)"
-msgstr "(Keines)"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"liststore2\n"
-"1\n"
-"stringlist.text"
-msgid ")"
-msgstr ")"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"liststore2\n"
-"2\n"
-"stringlist.text"
-msgid "]"
-msgstr "]"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"liststore2\n"
-"3\n"
-"stringlist.text"
-msgid ">"
-msgstr ">"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"liststore2\n"
-"4\n"
-"stringlist.text"
-msgid "}"
-msgstr "}"
-
-#: twolinespage.ui
-msgctxt ""
-"twolinespage.ui\n"
-"liststore2\n"
-"5\n"
-"stringlist.text"
-msgid "Other Characters..."
-msgstr "Weitere Zeichen..."
-
-#: wordcompletionpage.ui
-msgctxt ""
-"wordcompletionpage.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete Entry"
-msgstr "_Eintrag löschen"
-
-#: wordcompletionpage.ui
-msgctxt ""
-"wordcompletionpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Max. entries:"
-msgstr "Ma_x. Einträge:"
-
-#: wordcompletionpage.ui
-msgctxt ""
-"wordcompletionpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Mi_n. word length:"
-msgstr "_Min. Wortlänge:"
-
-#: wordcompletionpage.ui
-msgctxt ""
-"wordcompletionpage.ui\n"
-"appendspace\n"
-"label\n"
-"string.text"
-msgid "_Append space"
-msgstr "_Leerzeichen anhängen"
-
-#: wordcompletionpage.ui
-msgctxt ""
-"wordcompletionpage.ui\n"
-"showastip\n"
-"label\n"
-"string.text"
-msgid "_Show as tip"
-msgstr "Als _Tipphilfe anzeigen"
-
-#: wordcompletionpage.ui
-msgctxt ""
-"wordcompletionpage.ui\n"
-"enablewordcomplete\n"
-"label\n"
-"string.text"
-msgid "Enable word _completion"
-msgstr "_Wortergänzung aktivieren"
-
-#: wordcompletionpage.ui
-msgctxt ""
-"wordcompletionpage.ui\n"
-"whenclosing\n"
-"label\n"
-"string.text"
-msgid "_When closing a document, remove the words collected from it from the list"
-msgstr "_Gesammelte Wörter beim Schließen eines Dokuments entfernen."
-
-#: wordcompletionpage.ui
-msgctxt ""
-"wordcompletionpage.ui\n"
-"collectwords\n"
-"label\n"
-"string.text"
-msgid "C_ollect words"
-msgstr "Wö_rter sammeln"
-
-#: wordcompletionpage.ui
-msgctxt ""
-"wordcompletionpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Acc_ept with:"
-msgstr "A_nnehmen mit:"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"ZoomDialog\n"
-"title\n"
-"string.text"
-msgid "Zoom & View Layout"
-msgstr "Maßstab & Ansichtslayout"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"optimal\n"
-"label\n"
-"string.text"
-msgid "Optimal"
-msgstr "Optimal"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"fitwandh\n"
-"label\n"
-"string.text"
-msgid "Fit width and height"
-msgstr "Breite/Höhe anpassen"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"fitw\n"
-"label\n"
-"string.text"
-msgid "Fit width"
-msgstr "Breite anpassen"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"100pc\n"
-"label\n"
-"string.text"
-msgid "100%"
-msgstr "100%"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"variable\n"
-"label\n"
-"string.text"
-msgid "Variable:"
-msgstr "Variabel:"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"zoomsb\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Variable"
-msgstr "Variabel"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Zoom Factor"
-msgstr "Zoomfaktor"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"automatic\n"
-"label\n"
-"string.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"singlepage\n"
-"label\n"
-"string.text"
-msgid "Single page"
-msgstr "Einzelne Seite"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"columns\n"
-"label\n"
-"string.text"
-msgid "Columns:"
-msgstr "Spalten:"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"columnssb-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Columns"
-msgstr "Spalten"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"bookmode\n"
-"label\n"
-"string.text"
-msgid "Book mode"
-msgstr "Buchmodus"
-
-#: zoomdialog.ui
-msgctxt ""
-"zoomdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "View Layout"
-msgstr "Ansichtslayout"
diff --git a/source/de/dbaccess/messages.po b/source/de/dbaccess/messages.po
new file mode 100644
index 00000000000..30005120397
--- /dev/null
+++ b/source/de/dbaccess/messages.po
@@ -0,0 +1,5385 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"PO-Revision-Date: 2015-07-25 06:40+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1437806451.000000\n"
+
+#. FAMGa
+#: strings.src
+msgctxt "RID_STR_CONNECTION_INVALID"
+msgid "No connection could be established."
+msgstr "Es konnte keine Verbindung hergestellt werden."
+
+#. y8rYj
+#: strings.src
+msgctxt "RID_STR_TABLE_IS_FILTERED"
+msgid ""
+"The table $name$ already exists. It is not visible because it has been "
+"filtered out."
+msgstr ""
+"Die Tabelle $name$ existiert bereits. Sie ist nicht sichtbar, da sie "
+"ausgefiltert wurde."
+
+#. ZfmVR
+#: strings.src
+msgctxt "RID_STR_COULDNOTCONNECT_UNSPECIFIED"
+msgid ""
+"The connection to the external data source could not be established. An "
+"unknown error occurred. The driver is probably defective."
+msgstr ""
+"Die Verbindung zur externen Datenquelle konnte nicht hergestellt werden. Ein"
+" unbekannter Fehler trat auf. Wahrscheinlich ist der Treiber fehlerhaft."
+
+#. XdFHe
+#: strings.src
+msgctxt "RID_STR_COULDNOTCONNECT_NODRIVER"
+msgid ""
+"The connection to the external data source could not be established. No SDBC"
+" driver was found for the URL '$name$'."
+msgstr ""
+"Die Verbindung zur externen Datenquelle konnte nicht hergestellt werden. Es "
+"wurde kein SDBC-Treiber für die URL '$name$' gefunden."
+
+#. HFLkw
+#: strings.src
+msgctxt "RID_STR_COULDNOTLOAD_MANAGER"
+msgid ""
+"The connection to the external data source could not be established. The "
+"SDBC driver manager could not be loaded."
+msgstr ""
+"Die Verbindung zur externen Datenquelle konnte nicht hergestellt werden. Der"
+" SDBC-Treiber-Manager konnte nicht geladen werden."
+
+#. PzEVD
+#: strings.src
+msgctxt "RID_STR_FORM"
+msgid "Form"
+msgstr "Formular"
+
+#. nkamB
+#: strings.src
+msgctxt "RID_STR_REPORT"
+msgid "Report"
+msgstr "Bericht"
+
+#. bYjEz
+#: strings.src
+msgctxt "RID_STR_DATASOURCE_NOT_STORED"
+msgid ""
+"The data source was not saved. Please use the interface XStorable to save "
+"the data source."
+msgstr ""
+"Die Datenquelle wurde nicht gespeichert. Bitte verwenden Sie die "
+"Schnittstelle XStorable, um die Datenquelle zu speichern."
+
+#. BuEPn
+#: strings.src
+msgctxt "RID_STR_ONLY_QUERY"
+msgid ""
+"The given command is not a SELECT statement.\n"
+"Only queries are allowed."
+msgstr ""
+"Der gesetzte Befehl ist kein SELECT-Befehl.\n"
+"Es sind nur Abfragen erlaubt."
+
+#. 4CSx9
+#: strings.src
+msgctxt "RID_STR_NO_VALUE_CHANGED"
+msgid "No values were modified."
+msgstr "Es wurden keine Werte verändert."
+
+#. TFFGN
+#: strings.src
+msgctxt "RID_STR_NO_XROWUPDATE"
+msgid ""
+"Values could not be inserted. The XRowUpdate interface is not supported by "
+"ResultSet."
+msgstr ""
+"Es konnten keine Werte eingefügt werden. Die XRowUpdate-Schnittstelle wird "
+"nicht vom ResultSet unterstützt."
+
+#. PQPVY
+#: strings.src
+msgctxt "RID_STR_NO_XRESULTSETUPDATE"
+msgid ""
+"Values could not be inserted. The XResultSetUpdate interface is not "
+"supported by ResultSet."
+msgstr ""
+"Es konnten keine Werte eingefügt werden. Die XResultSetUpdate-Schnittstelle "
+"wird nicht vom ResultSet unterstützt."
+
+#. EAkm5
+#: strings.src
+msgctxt "RID_STR_NO_UPDATE_MISSING_CONDITION"
+msgid "Values could not be modified, due to a missing condition statement."
+msgstr ""
+"Die Werte konnten nicht verändert, auf Grund einer fehlenden Bedingung."
+
+#. 7Jns7
+#: strings.src
+msgctxt "RID_STR_NO_COLUMN_ADD"
+msgid "The adding of columns is not supported."
+msgstr "Das Hinzufügen von Spalten wird nicht unterstützt."
+
+#. BGMPE
+#: strings.src
+msgctxt "RID_STR_NO_COLUMN_DROP"
+msgid "The dropping of columns is not supported."
+msgstr "Das Löschen von Spalten wird nicht unterstützt."
+
+#. e2SUr
+#: strings.src
+msgctxt "RID_STR_NO_CONDITION_FOR_PK"
+msgid "The WHERE condition could not be created for the primary key."
+msgstr ""
+"Es konnte keine WHERE-Bedingung für den Primärschlüssel erstellt werden."
+
+#. NPDCA
+#: strings.src
+msgctxt "RID_STR_COLUMN_UNKNOWN_PROP"
+msgid "The column does not support the property '%value'."
+msgstr "Die Spalte unterstützt nicht die Eigenschaft '%value'."
+
+#. MDPRn
+#: strings.src
+msgctxt "RID_STR_COLUMN_NOT_SEARCHABLE"
+msgid "The column is not searchable!"
+msgstr "In dieser Spalte kann nicht gesucht werden."
+
+#. s9iVh
+#: strings.src
+msgctxt "RID_STR_NOT_SEQUENCE_INT8"
+msgid "The value of the columns is not of the type Sequence<sal_Int8>."
+msgstr "Der Wert der Spalten ist nicht vom Type Sequence<sal_Int8>."
+
+#. Mrizz
+#: strings.src
+msgctxt "RID_STR_COLUMN_NOT_VALID"
+msgid "The column is not valid."
+msgstr "Die Spalte ist nicht gültig."
+
+#. CyL8V
+#: strings.src
+msgctxt "RID_STR_COLUMN_MUST_VISIBLE"
+msgid "The column '%name' must be visible as a column."
+msgstr "Die Spalte '%name' muss als Spalte sichtbar sein."
+
+#. kZnJD
+#: strings.src
+msgctxt "RID_STR_NO_XQUERIESSUPPLIER"
+msgid "The interface XQueriesSupplier is not available."
+msgstr "Die Schnittstelle XQueriesSupplier ist nicht verfügbar."
+
+#. fBeqP
+#: strings.src
+msgctxt "RID_STR_NO_ABS_ZERO"
+msgid "An 'absolute(0)' call is not allowed."
+msgstr "Ein 'absolute(0)' Aufruf ist nicht erlaubt."
+
+#. GXMTQ
+#: strings.src
+msgctxt "RID_STR_NO_RELATIVE"
+msgid "Relative positioning is not allowed in this state."
+msgstr "Eine relative Positionierung ist in diesem Status nicht erlaubt."
+
+#. EsAfs
+#: strings.src
+msgctxt "RID_STR_NO_REFESH_AFTERLAST"
+msgid ""
+"A row cannot be refreshed when the ResultSet is positioned after the last "
+"row."
+msgstr ""
+"Eine Zeile kann nicht aktualisiert werden, wenn das ResultSet hinter der "
+"letzten Zeile steht."
+
+#. TqUZX
+#: strings.src
+msgctxt "RID_STR_NO_MOVETOINSERTROW_CALLED"
+msgid ""
+"A new row cannot be inserted when the ResultSet is not first moved to the "
+"insert row."
+msgstr ""
+"Das Einfügen einer neuen Zeile ist nicht erlaubt, wenn das ResultSet sich "
+"nicht vorher auf die Einfügezeile bewegt."
+
+#. aGfUX
+#: strings.src
+msgctxt "RID_STR_NO_UPDATEROW"
+msgid "A row cannot be modified in this state"
+msgstr "Eine Zeile kann in diesem Status nicht verändert werden."
+
+#. uaxsC
+#: strings.src
+msgctxt "RID_STR_NO_DELETEROW"
+msgid "A row cannot be deleted in this state."
+msgstr "Eine Zeile kann in diesem Status nicht gelöscht werden."
+
+#. 6aAaN
+#: strings.src
+msgctxt "RID_STR_NO_TABLE_RENAME"
+msgid "The driver does not support table renaming."
+msgstr "Der Treiber unterstützt das Umbenennen einer Tabelle nicht."
+
+#. Q8ADk
+#: strings.src
+msgctxt "RID_STR_COLUMN_ALTER_BY_NAME"
+msgid ""
+"The driver does not support the modification of column descriptions by "
+"changing the name."
+msgstr ""
+"Der Treiber unterstützt das Verändern einer Spaltendefinition, anhand des "
+"Namens, nicht."
+
+#. tZWaL
+#: strings.src
+msgctxt "RID_STR_COLUMN_ALTER_BY_INDEX"
+msgid ""
+"The driver does not support the modification of column descriptions by "
+"changing the index."
+msgstr ""
+"Der Treiber unterstützt das Verändern einer Spaltendefinition, anhand des "
+"Indexes, nicht."
+
+#. Z5gGE
+#: strings.src
+msgctxt "RID_STR_FILE_DOES_NOT_EXIST"
+msgid "The file \"$file$\" does not exist."
+msgstr "Die Datei \"$file$\" existiert nicht."
+
+#. XMAYD
+#: strings.src
+msgctxt "RID_STR_TABLE_DOES_NOT_EXIST"
+msgid "There exists no table named \"$table$\"."
+msgstr "Es existiert keine Tabelle \"$table$\"."
+
+#. XcJvN
+#: strings.src
+msgctxt "RID_STR_QUERY_DOES_NOT_EXIST"
+msgid "There exists no query named \"$table$\"."
+msgstr "Es existiert keine Abfrage mit Namen \"$table$\"."
+
+#. anFDx
+#: strings.src
+msgctxt "RID_STR_CONFLICTING_NAMES"
+msgid ""
+"There are tables in the database whose names conflict with the names of "
+"existing queries. To make full use of all queries and tables, make sure they"
+" have distinct names."
+msgstr ""
+"Die Datenbank enthält Tabellen, deren Namen mit den Namen von existierenden "
+"Abfragen kollidieren. Um alle Tabellen und Abfragen voll nutzen zu können, "
+"stellen Sie sicher, dass sie unterschiedliche Namen haben."
+
+#. e2YrR
+#: strings.src
+msgctxt "RID_STR_COMMAND_LEADING_TO_ERROR"
+msgid ""
+"The SQL command leading to this error is:\n"
+"\n"
+"$command$"
+msgstr ""
+"Das SQL-Kommando, welches zu diesem Fehler führte, ist:\n"
+"\n"
+"$command$"
+
+#. s3B76
+#: strings.src
+msgctxt "RID_STR_STATEMENT_WITHOUT_RESULT_SET"
+msgid "The SQL command does not describe a result set."
+msgstr "Der SQL-Befehl beschreibt keine Ergebnismenge."
+
+#. o8AAh
+#: strings.src
+msgctxt "RID_STR_NAME_MUST_NOT_BE_EMPTY"
+msgid "The name must not be empty."
+msgstr "Der Name darf nicht leer sein."
+
+#. EDBgs
+#: strings.src
+msgctxt "RID_STR_NO_NULL_OBJECTS_IN_CONTAINER"
+msgid "The container cannot contain NULL objects."
+msgstr "Der Container kann keine NULL-Objekte enthalten."
+
+#. BADJn
+#: strings.src
+msgctxt "RID_STR_NAME_ALREADY_USED"
+msgid "There already is an object with the given name."
+msgstr "Es gibt bereits ein Objekt mit dem angegebenen Namen."
+
+#. VdEjV
+#: strings.src
+msgctxt "RID_STR_OBJECT_CONTAINER_MISMATCH"
+msgid "This object cannot be part of this container."
+msgstr "Dieses Objekt kann nicht Bestandteil dieses Containers sein."
+
+#. DFQvz
+#: strings.src
+msgctxt "RID_STR_OBJECT_ALREADY_CONTAINED"
+msgid "The object already is, with a different name, part of the container."
+msgstr ""
+"Das Objekt ist unter einem anderen Namen bereits Bestandteil des Containers."
+
+#. CjNwC
+#: strings.src
+msgctxt "RID_STR_NAME_NOT_FOUND"
+msgid "Unable to find the document '$name$'."
+msgstr "Dokument '$name$' konnte nicht gefunden werden."
+
+#. LM7dF
+#: strings.src
+msgctxt "RID_STR_ERROR_WHILE_SAVING"
+msgid ""
+"Could not save the document to $location$:\n"
+"$message$"
+msgstr ""
+"Das Dokument konnte nicht unter $location$ gespeichert werden:\n"
+"$message$"
+
+#. tHzew
+#: strings.src
+msgctxt "RID_NO_SUCH_DATA_SOURCE"
+msgid ""
+"Error accessing data source '$name$':\n"
+"$error$"
+msgstr ""
+"Fehler beim Zugriff auf die Datenquelle '$name$':\n"
+"$error$"
+
+#. ALTav
+#: strings.src
+msgctxt "RID_STR_NO_SUB_FOLDER"
+msgid "There exists no folder named \"$folder$\"."
+msgstr "Es existiert kein Verzeichnis \"$folder$\"."
+
+#. Fhh7V
+#: strings.src
+msgctxt "RID_STR_NO_DELETE_BEFORE_AFTER"
+msgid "Cannot delete the before-first or after-last row."
+msgstr "Löschen vor der ersten oder nach der letzten Zeile ist nicht möglich."
+
+#. nqVfA
+#: strings.src
+msgctxt "RID_STR_NO_DELETE_INSERT_ROW"
+msgid "Cannot delete the insert-row."
+msgstr "Löschen der Einfügezeile ist nicht möglich."
+
+#. 9BUGj
+#: strings.src
+msgctxt "RID_STR_RESULT_IS_READONLY"
+msgid "Result set is read only."
+msgstr "Der Ergebnissatz ist schreibgeschützt."
+
+#. 47GAs
+#: strings.src
+msgctxt "RID_STR_NO_DELETE_PRIVILEGE"
+msgid "DELETE privilege not available."
+msgstr "Kein DELETE-Recht verfügbar."
+
+#. SsHD3
+#: strings.src
+msgctxt "RID_STR_ROW_ALREADY_DELETED"
+msgid "Current row is already deleted."
+msgstr "Die aktuelle Zeile wurde bereits gelöscht."
+
+#. DkbQp
+#: strings.src
+msgctxt "RID_STR_UPDATE_FAILED"
+msgid "Current row could not be updated."
+msgstr "Die aktuelle Zeile konnte nicht aktualisiert werden."
+
+#. ccyRu
+#: strings.src
+msgctxt "RID_STR_NO_INSERT_PRIVILEGE"
+msgid "INSERT privilege not available."
+msgstr "Kein INSERT-Recht verfügbar."
+
+#. RyCJt
+#: strings.src
+msgctxt "RID_STR_INTERNAL_ERROR"
+msgid "Internal error: no statement object provided by the database driver."
+msgstr ""
+"Interner Fehler: der Datenbanktreiber stellt kein Statement-Objekt zur "
+"Verfügung."
+
+#. SMWJi
+#: strings.src
+msgctxt "RID_STR_EXPRESSION1"
+msgid "Expression1"
+msgstr "Ausdruck1"
+
+#. 32Lgg
+#: strings.src
+msgctxt "RID_STR_NO_SQL_COMMAND"
+msgid "No SQL command was provided."
+msgstr "Es wurde kein SQL-Kommando vorbereitet."
+
+#. bvez7
+#: strings.src
+msgctxt "RID_STR_INVALID_INDEX"
+msgid "Invalid column index."
+msgstr "Ungültiger Spaltenindex."
+
+#. uAGCJ
+#: strings.src
+msgctxt "RID_STR_INVALID_CURSOR_STATE"
+msgid "Invalid cursor state."
+msgstr "Ungültiger Cursorstatus."
+
+#. Dqrzw
+#: strings.src
+msgctxt "RID_STR_CURSOR_BEFORE_OR_AFTER"
+msgid "The cursor points to before the first or after the last row."
+msgstr "Der Cursor zeigt vor die erste bzw. hinter die letzte Zeile."
+
+#. z9fkj
+#: strings.src
+msgctxt "RID_STR_NO_BOOKMARK_BEFORE_OR_AFTER"
+msgid ""
+"The rows before the first and after the last row don't have a bookmark."
+msgstr ""
+"Zeilen vor der ersten bzw. nach der letzten Zeile haben kein Lesezeichen."
+
+#. uYeyd
+#: strings.src
+msgctxt "RID_STR_NO_BOOKMARK_DELETED"
+msgid "The current row is deleted, and thus doesn't have a bookmark."
+msgstr "Die aktuelle Zeile wurde gelöscht und hat deshalb kein Lesezeichen."
+
+#. 935sJ
+#: strings.src
+msgctxt "RID_STR_CONNECTION_REQUEST"
+msgid "A connection for the following URL was requested \"$name$\"."
+msgstr "Es wurde eine Verbindung zur URL \"$name$\" angefordert."
+
+#. UgP8s
+#: strings.src
+msgctxt "RID_STR_MISSING_EXTENSION"
+msgid "The extension is not installed."
+msgstr "Die Extension ist nicht installiert."
+
+#. CvFBA
+#: sdbt_strings.src
+msgctxt "STR_QUERY_AND_TABLE_DISTINCT_NAMES"
+msgid ""
+"You cannot give a table and a query the same name. Please use a name which "
+"is not yet used by a query or table."
+msgstr ""
+"Es ist nicht möglich, einer Tabelle und einer Abfrage denselben Namen zu "
+"geben. Bitte wählen Sie einen Namen, der noch nicht für eine Abfrage oder "
+"Tabelle benutzt wird."
+
+#. bT6Um
+#: sdbt_strings.src
+msgctxt "STR_BASENAME_TABLE"
+msgid "Table"
+msgstr "Tabelle"
+
+#. Qw69D
+#: sdbt_strings.src
+msgctxt "STR_BASENAME_QUERY"
+msgid "Query"
+msgstr "Abfrage"
+
+#. 7vX2A
+#: sdbt_strings.src
+msgctxt "STR_CONN_WITHOUT_QUERIES_OR_TABLES"
+msgid "The given connection is no valid query and/or tables supplier."
+msgstr ""
+"Die angegebene Verbindung ist keine gültige Quelle für Abfragen und/oder "
+"Tabellen."
+
+#. 7J5ZA
+#: sdbt_strings.src
+msgctxt "STR_NO_TABLE_OBJECT"
+msgid "The given object is no table object."
+msgstr "Das angegbene Objekt ist kein Tabellenobjekt."
+
+#. WboPA
+#: sdbt_strings.src
+msgctxt "STR_INVALID_COMPOSITION_TYPE"
+msgid ""
+"Invalid composition type - need a value from "
+"com.sun.star.sdb.tools.CompositionType."
+msgstr ""
+"Ungültiger Composition-Typ - es wird ein Wert aus "
+"com.sun.star.sdb.tools.CompositionType benötigt."
+
+#. 2aCE8
+#: sdbt_strings.src
+msgctxt "STR_INVALID_COMMAND_TYPE"
+msgid ""
+"Invalid command type - only TABLE and QUERY from "
+"com.sun.star.sdb.CommandType are allowed."
+msgstr ""
+"Ungültiger Command-Typ - nur TABLE und QUERY aus "
+"com.sun.star.sdb.CommandType sind zulässig."
+
+#. pZTG2
+#: macromigration.src
+msgctxt "STR_STATE_CLOSE_SUB_DOCS"
+msgid "Prepare"
+msgstr "Vorbereiten"
+
+#. pFNR3
+#: macromigration.src
+msgctxt "STR_STATE_BACKUP_DBDOC"
+msgid "Backup Document"
+msgstr "Sicherungskopie erstellen"
+
+#. LDfr3
+#: macromigration.src
+msgctxt "STR_STATE_MIGRATE"
+msgid "Migrate"
+msgstr "Migrieren"
+
+#. tEttZ
+#: macromigration.src
+msgctxt "STR_STATE_SUMMARY"
+msgid "Summary"
+msgstr "Zusammenfassung"
+
+#. aGU2B
+#: macromigration.src
+msgctxt "STR_FORM"
+msgid "Form '$name$'"
+msgstr "Formular '$name$'"
+
+#. DBmvF
+#: macromigration.src
+msgctxt "STR_REPORT"
+msgid "Report '$name$'"
+msgstr "Bericht '$name$'"
+
+#. CoMty
+#: macromigration.src
+msgctxt "STR_OVERALL_PROGRESS"
+msgid "document $current$ of $overall$"
+msgstr "Dokument $current$ von $overall$"
+
+#. Ttf95
+#: macromigration.src
+msgctxt "STR_DATABASE_DOCUMENT"
+msgid "Database Document"
+msgstr "Datenbankdokument"
+
+#. 87ADQ
+#: macromigration.src
+msgctxt "STR_SAVED_COPY_TO"
+msgid "saved copy to $location$"
+msgstr "Kopie nach $location$ gespeichert"
+
+#. BrPwb
+#: macromigration.src
+msgctxt "STR_MOVED_LIBRARY"
+msgid "migrated $type$ library '$old$' to '$new$'"
+msgstr "$type$-Bibliothek '$old$' nach '$new$' migriert"
+
+#. C7CAR
+#: macromigration.src
+msgctxt "STR_LIBRARY_TYPE_AND_NAME"
+msgid "$type$ library '$library$'"
+msgstr "$type$-Bibliothek '$library$'"
+
+#. E4RNh
+#: macromigration.src
+msgctxt "STR_MIGRATING_LIBS"
+msgid "migrating libraries ..."
+msgstr "migriere Bibliotheken ..."
+
+#. gDCmu
+#: macromigration.src
+msgctxt "STR_OOO_BASIC"
+msgid "%PRODUCTNAME Basic"
+msgstr "%PRODUCTNAME Basic"
+
+#. pTV6D
+#: macromigration.src
+msgctxt "STR_JAVA_SCRIPT"
+msgid "JavaScript"
+msgstr "JavaScript"
+
+#. X2qBp
+#: macromigration.src
+msgctxt "STR_BEAN_SHELL"
+msgid "BeanShell"
+msgstr "BeanShell"
+
+#. FDBSE
+#: macromigration.src
+msgctxt "STR_JAVA"
+msgid "Java"
+msgstr "Java"
+
+#. F4yo3
+#: macromigration.src
+msgctxt "STR_PYTHON"
+msgid "Python"
+msgstr "Python"
+
+#. BwGMo
+#: macromigration.src
+msgctxt "STR_DIALOG"
+msgid "dialog"
+msgstr "Dialog"
+
+#. VXkqp
+#: macromigration.src
+msgctxt "STR_ERRORS"
+msgid "Error(s)"
+msgstr "Fehler"
+
+#. BVTZE
+#: macromigration.src
+msgctxt "STR_WARNINGS"
+msgid "Warnings"
+msgstr "Warnungen"
+
+#. wArT8
+#: macromigration.src
+msgctxt "STR_EXCEPTION"
+msgid "caught exception:"
+msgstr "Ausnahme aufgetreten:"
+
+#. 3fagJ
+#: macromigration.src
+msgctxt "STR_INVALID_BACKUP_LOCATION"
+msgid ""
+"You need to choose a backup location other than the document location "
+"itself."
+msgstr ""
+"Sie müssen einen Sicherungsort angeben, der sich vom Speicherort des "
+"Dokuments unterscheidet."
+
+#. Zj8Ti
+#: macromigration.src
+msgctxt "STR_INVALID_NUMBER_ARGS"
+msgid "Invalid number of initialization arguments. Expected 1."
+msgstr "Ungültige Anzahl von Initialisierungsargumenten. Erwartet wurde 1."
+
+#. N6oEB
+#: macromigration.src
+msgctxt "STR_NO_DATABASE"
+msgid "No database document found in the initialization arguments."
+msgstr ""
+"In den Initialisierungsargumenten wurde kein Datenbankdokument gefunden."
+
+#. SvACu
+#: macromigration.src
+msgctxt "STR_NOT_READONLY"
+msgid "Not applicable to read-only documents."
+msgstr "Für schreibgeschützte Dokumente nicht anwendbar."
+
+#. KyLuN
+#: copytablewizard.src
+msgctxt "STR_CTW_NO_VIEWS_SUPPORT"
+msgid "The destination database does not support views."
+msgstr "Die Zieldatenbank unterstützt keine Sichten."
+
+#. RaJQd
+#: copytablewizard.src
+msgctxt "STR_CTW_NO_PRIMARY_KEY_SUPPORT"
+msgid "The destination database does not support primary keys."
+msgstr "Die Zieldatenbank unterstützt keine Primärschlüssel."
+
+#. JBBmY
+#: copytablewizard.src
+msgctxt "STR_CTW_INVALID_DATA_ACCESS_DESCRIPTOR"
+msgid ""
+"no data access descriptor found, or no data access descriptor able to "
+"provide all necessary information"
+msgstr ""
+"Kein DataAccess-Descriptor gefunden oder kein DataAccess-Descriptor "
+"verfügbar, der alle benötigten Informationen zur Verfügung stellen kann"
+
+#. Z4JFe
+#: copytablewizard.src
+msgctxt "STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT"
+msgid "Only tables and queries are supported at the moment."
+msgstr "Zur Zeit werden nur Tabellen und Abfragen unterstützt."
+
+#. KvUFb
+#: copytablewizard.src
+msgctxt "STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS"
+msgid "The copy source's result set must support bookmarks."
+msgstr ""
+"Das ResultSet der Quelle für die Kopieroperation muss Lesezeichen "
+"unterstützen."
+
+#. XVb6E
+#: copytablewizard.src
+msgctxt "STR_CTW_UNSUPPORTED_COLUMN_TYPE"
+msgid "Unsupported source column type ($type$) at column position $pos$."
+msgstr ""
+"Nicht unterstützter Spaltentyp ($type$) bei Quell-Spalte an Position $pos$."
+
+#. 7pnvE
+#: copytablewizard.src
+msgctxt "STR_CTW_ILLEGAL_PARAMETER_COUNT"
+msgid "Illegal number of initialization parameters."
+msgstr "Ungültige Anzahl von Initialisierungsparametern."
+
+#. z3h9J
+#: copytablewizard.src
+msgctxt "STR_CTW_ERROR_DURING_INITIALIZATION"
+msgid "An error occurred during initialization."
+msgstr "Während der Initialisierung ist ein Fehler aufgetreten."
+
+#. Qpda7
+#: copytablewizard.src
+msgctxt "STR_CTW_ERROR_UNSUPPORTED_SETTING"
+msgid "Unsupported setting in the copy source descriptor: $name$."
+msgstr ""
+"Nicht unterstützte Einstellung im Descriptor der Kopier-Quelle: $name$."
+
+#. BsP8j
+#: copytablewizard.src
+msgctxt "STR_CTW_ERROR_NO_QUERY"
+msgid "To copy a query, your connection must be able to provide queries."
+msgstr ""
+"Um eine Abfrage zu kopieren, muss Ihre Quelle Abfragen zur Verfügung stellen"
+" können."
+
+#. QYh2y
+#: copytablewizard.src
+msgctxt "STR_CTW_ERROR_INVALID_INTERACTIONHANDLER"
+msgid "The given interaction handler is invalid."
+msgstr "Der angegebene Interaktions-Handler ist ungültig."
+
+#. j84AZ
+#: query.src
+msgctxt "STR_QUERY_UNDO_TABWINSHOW"
+msgid "Add Table Window"
+msgstr "Tabellenfenster hinzufügen"
+
+#. DUDsr
+#: query.src
+msgctxt "STR_QUERY_UNDO_MOVETABWIN"
+msgid "Move table window"
+msgstr "Tabellenfenster verschieben"
+
+#. BzDGJ
+#: query.src
+msgctxt "STR_QUERY_UNDO_INSERTCONNECTION"
+msgid "Insert Join"
+msgstr "Verknüpfung einfügen"
+
+#. isNxK
+#: query.src
+msgctxt "STR_QUERY_UNDO_REMOVECONNECTION"
+msgid "Delete Join"
+msgstr "Verknüpfung löschen"
+
+#. 9Uu5p
+#: query.src
+msgctxt "STR_QUERY_UNDO_SIZETABWIN"
+msgid "Resize table window"
+msgstr "Tabellenfenster - Größe ändern"
+
+#. 3qaWu
+#: query.src
+msgctxt "STR_QUERY_UNDO_TABFIELDDELETE"
+msgid "Delete Column"
+msgstr "Spalte löschen"
+
+#. srRyA
+#: query.src
+msgctxt "STR_QUERY_UNDO_TABFIELDMOVED"
+msgid "Move column"
+msgstr "Spalte verschieben"
+
+#. BdYiZ
+#: query.src
+msgctxt "STR_QUERY_UNDO_TABFIELDCREATE"
+msgid "Add Column"
+msgstr "Spalte hinzufügen"
+
+#. r5myi
+#: query.src
+msgctxt "RID_STR_FIELD_DOESNT_EXIST"
+msgid "Invalid expression, field name '$name$' does not exist."
+msgstr ""
+"Der Ausdruck ist ungültig, da der Feldname '$name$' nicht zugeordnet werden "
+"kann."
+
+#. WiCaf
+#: query.src
+msgctxt "STR_QUERY_UNDO_TABWINDELETE"
+msgid "Delete Table Window"
+msgstr "Tabellenfenster löschen"
+
+#. 4677G
+#: query.src
+msgctxt "STR_QUERY_UNDO_MODIFY_CELL"
+msgid "Edit Column Description"
+msgstr "Spaltenbeschreibung ändern"
+
+#. 79APm
+#: query.src
+msgctxt "STR_QUERY_UNDO_SIZE_COLUMN"
+msgid "Adjust column width"
+msgstr "Spaltenbreite ändern"
+
+#. BGEE7
+#: query.src
+msgctxt "STR_QUERY_SORTTEXT"
+msgid "(not sorted);ascending;descending"
+msgstr "(nicht sortiert);aufsteigend;absteigend"
+
+#. NEDpJ
+#: query.src
+msgctxt "STR_QUERY_FUNCTIONS"
+msgid "(no function);Group"
+msgstr "(keine Funktion);Gruppierung"
+
+#. rLdqC
+#: query.src
+msgctxt "STR_QUERY_NOTABLE"
+msgid "(no table)"
+msgstr "(keine Tabelle)"
+
+#. PZ5mq
+#: query.src
+msgctxt "STR_QRY_ORDERBY_UNRELATED"
+msgid "The database only supports sorting for visible fields."
+msgstr "Die Datenbank unterstützt die Sortierung nur für sichtbare Felder."
+
+#. 9w7Ce
+#: query.src
+msgctxt "STR_QUERY_HANDLETEXT"
+msgid "Field;Alias;Table;Sort;Visible;Function;Criterion;Or;Or"
+msgstr "Feld;Alias;Tabelle;Sortierung;Sichtbar;Funktion;Kriterium;oder;oder"
+
+#. qPqvZ
+#: query.src
+msgctxt "STR_QUERY_LIMIT_ALL"
+msgid "All"
+msgstr "Alle"
+
+#. Zz34h
+#: query.src
+msgctxt "STR_QRY_TOO_MANY_COLUMNS"
+msgid "There are too many columns."
+msgstr "Es sind zu viele Spalten vorhanden."
+
+#. hY4NU
+#: query.src
+msgctxt "STR_QRY_CRITERIA_ON_ASTERISK"
+msgid "A condition cannot be applied to field [*]"
+msgstr "Eine Bedingung für Feld [*] ist nicht möglich"
+
+#. ygnPh
+#: query.src
+msgctxt "STR_QRY_TOO_LONG_STATEMENT"
+msgid "The SQL statement created is too long."
+msgstr "Der erzeugte SQL Ausdruck ist zu lang."
+
+#. EumQ9
+#: query.src
+msgctxt "STR_QRY_TOOCOMPLEX"
+msgid "Query is too complex"
+msgstr "Anfrage ist zu komplex"
+
+#. Ht5Xf
+#: query.src
+msgctxt "STR_QRY_NOSELECT"
+msgid "Nothing has been selected."
+msgstr "Es fehlt eine Auswahl."
+
+#. oUXZD
+#: query.src
+msgctxt "STR_QRY_SYNTAX"
+msgid "SQL syntax error"
+msgstr "Fehler in der SQL Syntax"
+
+#. D5qmZ
+#: query.src
+msgctxt "STR_QRY_ORDERBY_ON_ASTERISK"
+msgid "[*] cannot be used as a sort criterion."
+msgstr "Nach [*] kann nicht sortiert werden."
+
+#. E4YC3
+#: query.src
+msgctxt "STR_QRY_TOO_MANY_TABLES"
+msgid "There are too many tables."
+msgstr "Es sind zu viele Tabellen vorhanden."
+
+#. fnEYE
+#: query.src
+msgctxt "STR_QRY_NATIVE"
+msgid ""
+"The statement will not be applied when querying in the SQL dialect of the "
+"database."
+msgstr ""
+"Bei Anfrage im SQL-Dialekt der Datenbank wird das Statement nicht "
+"übernommen."
+
+#. iEVz7
+#: query.src
+msgctxt "STR_QRY_ILLEGAL_JOIN"
+msgid "Join could not be processed"
+msgstr "Verknüpfung konnte nicht ausgeführt werden"
+
+#. 3EkzD
+#: query.src
+msgctxt "STR_SVT_SQL_SYNTAX_ERROR"
+msgid "Syntax error in SQL statement"
+msgstr "Syntaxfehler im SQL-Ausdruck"
+
+#. 4umu8
+#: query.src
+msgctxt "STR_QUERYDESIGN_NO_VIEW_SUPPORT"
+msgid "This database does not support table views."
+msgstr "Diese Datenbank unterstützt keine Tabellenansichten."
+
+#. wsWmH
+#: query.src
+msgctxt "STR_NO_ALTER_VIEW_SUPPORT"
+msgid "This database does not support altering of existing table views."
+msgstr ""
+"Diese Datenbank unterstützt keine Änderungen an vorhandenen Tabellensichten."
+
+#. DersC
+#: query.src
+msgctxt "STR_QUERYDESIGN_NO_VIEW_ASK"
+msgid "Do you want to create a query instead?"
+msgstr "Möchten Sie statt dessen eine Abfrage erzeugen?"
+
+#. LWaN7
+#: query.src
+msgctxt "STR_DATASOURCE_DELETED"
+msgid ""
+"The corresponding data source has been deleted. Therefore, data relevant to "
+"that data source cannot be saved."
+msgstr ""
+"Die zugehörige Datenquelle wurde gelöscht. Es können keine dies bezüglichen "
+"Daten gespeichert werden."
+
+#. r9TeF
+#: query.src
+msgctxt "STR_QRY_COLUMN_NOT_FOUND"
+msgid "The column '$name$' is unknown."
+msgstr "Die Spalte '$name$' ist unbekannt."
+
+#. FzLYr
+#: query.src
+msgctxt "STR_QRY_JOIN_COLUMN_COMPARE"
+msgid "Columns can only be compared using '='."
+msgstr "Spalten dürfen nur mit '=' verglichen werden."
+
+#. Pzh6C
+#: query.src
+msgctxt "STR_QRY_LIKE_LEFT_NO_COLUMN"
+msgid "You must use a column name before 'LIKE'."
+msgstr "Vor dem 'WIE' muss ein Spaltenname stehen."
+
+#. bwj8B
+#: query.src
+msgctxt "STR_QRY_CHECK_CASESENSITIVE"
+msgid ""
+"The column could not be found. Please note that the database is case-"
+"sensitive."
+msgstr ""
+"Die Spalte konnte nicht gefunden werden. Bitte beachten Sie, dass die "
+"Datenbank Groß- und Kleinschreibung unterscheidet."
+
+#. 8fSWD
+#: query.src
+msgctxt "STR_QUERY_SAVEMODIFIED"
+msgid ""
+"$object$ has been changed.\n"
+"Do you want to save the changes?"
+msgstr ""
+"$object$ wurde geändert.\n"
+"Sollen die Änderungen gespeichert werden?"
+
+#. rLMEX
+#: query.src
+msgctxt "STR_ERROR_PARSING_STATEMENT"
+msgid "$object$ is based on an SQL command which could not be parsed."
+msgstr ""
+"$object$ basiert auf einem SQL-Kommando, das nicht analysiert werden konnte."
+
+#. 6cpa3
+#: query.src
+msgctxt "STR_INFO_OPENING_IN_SQL_VIEW"
+msgid "$object$ will be opened in SQL view."
+msgstr "$object$ wird in der SQL-Ansicht geöffnet."
+
+#. BiN6g
+#: query.src
+msgctxt "RSC_QUERY_OBJECT_TYPE"
+msgid "The table view"
+msgstr "Die Tabellensicht"
+
+#. ySuKZ
+#: query.src
+msgctxt "RSC_QUERY_OBJECT_TYPE"
+msgid "The query"
+msgstr "Die Abfrage"
+
+#. akGh9
+#: query.src
+msgctxt "RSC_QUERY_OBJECT_TYPE"
+msgid "The SQL statement"
+msgstr "Der SQL-Befehl"
+
+#. pH2Jv
+#: query.src
+msgctxt "STR_STATEMENT_WITHOUT_RESULT_SET"
+msgid ""
+"The query does not create a result set, and thus cannot be part of another "
+"query."
+msgstr ""
+"Die Abfrage erzeugt keine Ergebnismenge, und kann deswegen nicht Teil einer "
+"anderen Abfrage sein."
+
+#. iu64w
+#: querydlg.src
+msgctxt "STR_JOIN_TYPE_HINT"
+msgid "Please note that some databases may not support this join type."
+msgstr ""
+"Bitte beachten Sie, dass einige Datenbanken eventuell diese Art der "
+"Verknüpfung nicht unterstützen."
+
+#. Khmn9
+#: querydlg.src
+msgctxt "STR_QUERY_INNER_JOIN"
+msgid ""
+"Includes only records for which the contents of the related fields of both "
+"tables are identical."
+msgstr ""
+"Beinhaltet nur die Datensätze, bei denen die Inhalte der verknüpften Felder "
+"beider Tabellen gleich sind."
+
+#. JUyyK
+#: querydlg.src
+msgctxt "STR_QUERY_LEFTRIGHT_JOIN"
+msgid ""
+"Contains ALL records from table '%1' but only records from table '%2' where "
+"the values in the related fields are matching."
+msgstr ""
+"Beinhaltet ALLE Datensätze aus '%1' und nur die Datensätze aus '%2', bei "
+"denen die Inhalte der verknüpften Felder beider Tabellen gleich sind."
+
+#. EdhCU
+#: querydlg.src
+msgctxt "STR_QUERY_FULL_JOIN"
+msgid "Contains ALL records from '%1' and from '%2'."
+msgstr "Beinhaltet ALLE Datensätze aus '%1' und aus '%2'."
+
+#. c9PsZ
+#: querydlg.src
+msgctxt "STR_QUERY_CROSS_JOIN"
+msgid "Contains the Cartesian product of ALL records from '%1' and from '%2'."
+msgstr ""
+"Beinhaltet das kartesische Produkt ALLER Datensätze aus '%1' und '%2'."
+
+#. 5dqK5
+#: WizardPages.src
+msgctxt "STR_WIZ_COLUMN_SELECT_TITEL"
+msgid "Apply columns"
+msgstr "Spaltenübernahme"
+
+#. nZ7x6
+#: WizardPages.src
+msgctxt "STR_WIZ_TYPE_SELECT_TITEL"
+msgid "Type formatting"
+msgstr "Typformatierungen"
+
+#. C5Zs4
+#: WizardPages.src
+msgctxt "STR_WIZ_NAME_ALREADY_DEFINED"
+msgid ""
+"Enter a unique name for the new primary key data field.\n"
+"The following name is already in use:"
+msgstr ""
+"Geben Sie einen eindeutigen Namen für das neue Primärschlüssel-Datenfeld ein.\n"
+"Der folgende Name wird schon benutzt:"
+
+#. MuQ2C
+#: WizardPages.src
+msgctxt "STR_WIZ_NAME_MATCHING_TITEL"
+msgid "Assign columns"
+msgstr "Spalten zuordnen"
+
+#. 5vCFA
+#: WizardPages.src
+msgctxt "STR_WIZ_PB_PREV"
+msgid "< ~Back"
+msgstr "< ~Zurück"
+
+#. aWFVD
+#: WizardPages.src
+msgctxt "STR_WIZ_PB_NEXT"
+msgid "~Next>"
+msgstr "~Weiter >"
+
+#. aKHUX
+#: WizardPages.src
+msgctxt "STR_WIZ_PB_OK"
+msgid "C~reate"
+msgstr "~Fertigstellen"
+
+#. 3XyRu
+#: WizardPages.src
+msgctxt "STR_WIZ_TABLE_COPY"
+msgid "Copy table"
+msgstr "Tabelle kopieren"
+
+#. uNGvx
+#: WizardPages.src
+msgctxt "STR_COPYTABLE_TITLE_COPY"
+msgid "Copy table"
+msgstr "Tabelle kopieren"
+
+#. xCPkD
+#: WizardPages.src
+msgctxt "STR_INVALID_TABLE_NAME"
+msgid "This table name is not valid in the current database."
+msgstr "In der aktuellen Datenbank ist dies kein gültiger Tabellenname."
+
+#. m35Lx
+#: WizardPages.src
+msgctxt "STR_SUGGEST_APPEND_TABLE_DATA"
+msgid ""
+"Choose the option 'Append data' on the first page to append data to an "
+"existing table."
+msgstr ""
+"Wählen Sie die Option 'Daten anhängen' auf der ersten Seite, um Daten an "
+"eine existierende Tabellen anzuhängen."
+
+#. XbmVN
+#: WizardPages.src
+msgctxt "STR_INVALID_TABLE_NAME_LENGTH"
+msgid "Please change the table name. It is too long."
+msgstr "Bitte ändern Sie den Tabellenname. Er ist zu lang."
+
+#. 8Uiv2
+#: dbumiscres.src
+msgctxt "STR_RSC_CHARSETS"
+msgid "System"
+msgstr "System"
+
+#. pnwDB
+#: dbumiscres.src
+msgctxt "STR_ERROR_DURING_CREATION"
+msgid "Error during creation"
+msgstr "Fehler beim Erzeugen"
+
+#. CC5Yw
+#: dbumiscres.src
+msgctxt "STR_UNEXPECTED_ERROR"
+msgid "An unexpected error occurred. The operation could not be performed."
+msgstr ""
+"Ein unerwarteter Fehler ist aufgetreten. Die Operation kann nicht ausgeführt"
+" werden."
+
+#. kXCG9
+#: dbumiscres.src
+msgctxt "STR_COULDNOTOPEN_LINKEDDOC"
+msgid "The document \"$file$\" could not be opened."
+msgstr "Das Dokument \"$file$\" konnte nicht geöffnet werden."
+
+#. bFHHW
+#: dbumiscres.src
+msgctxt "STR_MISSING_TABLES_XDROP"
+msgid ""
+"The table cannot be deleted because the database connection does not support"
+" this."
+msgstr ""
+"Die Tabelle kann nicht gelöscht werden, da die Datenbankverbindung diese "
+"nicht unterstützt."
+
+#. ZNB5D
+#: dbumiscres.src
+msgctxt "STR_BUTTON_TEXT_ALL"
+msgid "~All"
+msgstr "A~lle"
+
+#. C8eBG
+#: dbumiscres.src
+msgctxt "STR_UNDO_COLON"
+msgid "Undo:"
+msgstr "Rückgängig:"
+
+#. aje2A
+#: dbumiscres.src
+msgctxt "STR_REDO_COLON"
+msgid "Redo:"
+msgstr "Wiederherstellen:"
+
+#. ixMkj
+#: dbumiscres.src
+msgctxt "STR_UNKNOWN_TYPE_FOUND"
+msgid "No corresponding column type could be found for column '#1'."
+msgstr "Für die Spalte '#1' konnte kein passender Spaltentyp gefunden werden."
+
+#. qVax3
+#: dbumiscres.src
+msgctxt "STR_FILE_DOES_NOT_EXIST"
+msgid "The file \"$file$\" does not exist."
+msgstr "Die Datei \"$file$\" existiert nicht."
+
+#. 737k3
+#: dbumiscres.src
+msgctxt "STR_WARNINGS_DURING_CONNECT"
+msgid ""
+"Warnings were encountered while connecting to the data source. Press "
+"\"$buttontext$\" to view them."
+msgstr ""
+"Beim Verbindungsaufbau sind Warnungen aufgetreten. Drücken Sie "
+"\"$buttontext$\", um sie anzuzeigen."
+
+#. cGJja
+#: dbumiscres.src
+msgctxt "STR_NAMED_OBJECT_ALREADY_EXISTS"
+msgid ""
+"The name '$#$' already exists.\n"
+"Please enter another name."
+msgstr ""
+"Der Name '$#$' existiert bereits.\n"
+"Bitte geben Sie einen neuen Namen an."
+
+#. TNvCf
+#: dbumiscres.src
+msgctxt "RID_STR_EXTENSION_NOT_PRESENT"
+msgid "The report, \"$file$\", requires the Oracle Report Builder feature."
+msgstr "Der Bericht \"$file$\" benötigt die Funktion Oracle Report Builder."
+
+#. 4SGBJ
+#: TableGrantCtrl.src
+msgctxt "STR_TABLE_PRIV_NAME"
+msgid "Table name"
+msgstr "Tabellename"
+
+#. Nw93R
+#: TableGrantCtrl.src
+msgctxt "STR_TABLE_PRIV_INSERT"
+msgid "Insert data"
+msgstr "Daten einfügen"
+
+#. nLFJd
+#: TableGrantCtrl.src
+msgctxt "STR_TABLE_PRIV_DELETE"
+msgid "Delete data"
+msgstr "Daten löschen"
+
+#. eGEDE
+#: TableGrantCtrl.src
+msgctxt "STR_TABLE_PRIV_UPDATE"
+msgid "Modify data"
+msgstr "Daten ändern"
+
+#. e2bxV
+#: TableGrantCtrl.src
+msgctxt "STR_TABLE_PRIV_ALTER"
+msgid "Alter structure"
+msgstr "Struktur ändern"
+
+#. zejFA
+#: TableGrantCtrl.src
+msgctxt "STR_TABLE_PRIV_SELECT"
+msgid "Read data"
+msgstr "Daten lesen"
+
+#. UsMj8
+#: TableGrantCtrl.src
+msgctxt "STR_TABLE_PRIV_REFERENCE"
+msgid "Modify references"
+msgstr "References ändern"
+
+#. SEGp9
+#: TableGrantCtrl.src
+msgctxt "STR_TABLE_PRIV_DROP"
+msgid "Drop structure"
+msgstr "Struktur löschen"
+
+#. oC8Px
+#: tabletree.src
+msgctxt "STR_COULDNOTCREATE_DRIVERMANAGER"
+msgid "Cannot connect to the SDBC driver manager (#servicename#)."
+msgstr ""
+"Es konnte keine Verbindung zum SDBC-Treiber-Manager (#servicename#) "
+"hergestellt werden."
+
+#. aym6r
+#: tabletree.src
+msgctxt "STR_NOREGISTEREDDRIVER"
+msgid "A driver is not registered for the URL #connurl#."
+msgstr "Es ist kein Treiber für die URL #connurl# registriert."
+
+#. oafZG
+#: tabletree.src
+msgctxt "STR_NOTABLEINFO"
+msgid ""
+"Successfully connected, but information about database tables is not "
+"available."
+msgstr ""
+"Die Verbindung wurde erfolgreich hergestellt, aber es konnten keine "
+"Informationen über Tabellen in der Datenbank ermittelt werden."
+
+#. uBW6C
+#: tabletree.src
+msgctxt "STR_ALL_TABLES"
+msgid "All tables"
+msgstr "Alle Tabellen"
+
+#. nhz6M
+#: tabletree.src
+msgctxt "STR_ALL_VIEWS"
+msgid "All views"
+msgstr "Alle Tabellensichten"
+
+#. APBCw
+#: tabletree.src
+msgctxt "STR_ALL_TABLES_AND_VIEWS"
+msgid "All tables and views"
+msgstr "Alle Tabellen und Tabellensichten"
+
+#. a8LWj
+#: undosqledit.src
+msgctxt "STR_QUERY_UNDO_MODIFYSQLEDIT"
+msgid "Modify SQL statement(s)"
+msgstr "SQL-Anweisung(en) modifizieren"
+
+#. BCCiv
+#: AutoControls.src
+msgctxt "STR_DBASE_PATH_OR_FILE"
+msgid "Path to the dBASE files"
+msgstr "Pfad zu den dBASE Dateien"
+
+#. hnBFY
+#: AutoControls.src
+msgctxt "STR_FLAT_PATH_OR_FILE"
+msgid "Path to the text files"
+msgstr "Pfad zu den Textdateien"
+
+#. DRFyX
+#: AutoControls.src
+msgctxt "STR_CALC_PATH_OR_FILE"
+msgid "Path to the spreadsheet document"
+msgstr "Pfad zum Tabellendokument"
+
+#. qxbA7
+#: AutoControls.src
+msgctxt "STR_NAME_OF_ODBC_DATASOURCE"
+msgid "Name of the ODBC data source on your system"
+msgstr "Name der ODBC Datenquelle auf Ihrem System"
+
+#. zQxCp
+#: AutoControls.src
+msgctxt "STR_MYSQL_DATABASE_NAME"
+msgid "Name of the MySQL database"
+msgstr "Name der MySQL Datenbank"
+
+#. uhRMQ
+#: AutoControls.src
+msgctxt "STR_ORACLE_DATABASE_NAME"
+msgid "Name of the Oracle database"
+msgstr "Name der Oracle Datenbank"
+
+#. nmoae
+#: AutoControls.src
+msgctxt "STR_MSACCESS_MDB_FILE"
+msgid "Microsoft Access database file"
+msgstr "Microsoft Access Datenbankdatei"
+
+#. 34zwh
+#: AutoControls.src
+msgctxt "STR_NO_ADDITIONAL_SETTINGS"
+msgid ""
+"No more settings are necessary. To verify that the connection is working, "
+"click the '%test' button."
+msgstr ""
+"Es werden keine weiteren Einstellungen benötigt. Um die Verbindung zu "
+"prüfen, klicken Sie auf die Schaltfläche '%test'."
+
+#. nLAjt
+#: AutoControls.src
+msgctxt "STR_COMMONURL"
+msgid "Datasource URL (e.g. postgresql://host:port/database)"
+msgstr "URL der Datenquelle (beispielsweise postgresql://host:port/datenbank)"
+
+#. rKH3t
+#: AutoControls.src
+msgctxt "STR_HOSTNAME"
+msgid "~Host name"
+msgstr "~Rechnername"
+
+#. Gdbjz
+#: AutoControls.src
+msgctxt "STR_MOZILLA_PROFILE_NAME"
+msgid "~Mozilla profile name"
+msgstr "Name des ~Mozilla Benutzerprofils"
+
+#. A6YJb
+#: AutoControls.src
+msgctxt "STR_THUNDERBIRD_PROFILE_NAME"
+msgid "~Thunderbird profile name"
+msgstr "Name des ~Thunderbird Benutzerprofils"
+
+#. HnmRA
+#: AutoControls.src
+msgctxt "STR_ADD_TABLES"
+msgid "Add Tables"
+msgstr "Tabellen hinzufügen"
+
+#. eHahH
+#: AutoControls.src
+msgctxt "STR_ADD_TABLE_OR_QUERY"
+msgid "Add Table or Query"
+msgstr "Tabelle oder Abfrage hinzufügen"
+
+#. BdzcB
+#: ConnectionPage.src
+msgctxt "STR_CONNECTION_TEST"
+msgid "Connection Test"
+msgstr "Verbindungstest"
+
+#. oAAKs
+#: ConnectionPage.src
+msgctxt "STR_CONNECTION_SUCCESS"
+msgid "The connection was established successfully."
+msgstr "Die Verbindung wurde erfolgreich hergestellt."
+
+#. 5V7Ay
+#: ConnectionPage.src
+msgctxt "STR_CONNECTION_NO_SUCCESS"
+msgid "The connection could not be established."
+msgstr "Es konnte keine Verbindung hergestellt werden."
+
+#. wvNFP
+#: ConnectionPage.src
+msgctxt "STR_JDBCDRIVER_SUCCESS"
+msgid "The JDBC driver was loaded successfully."
+msgstr "Der JDBC-Treiber wurde erfolgreich geladen."
+
+#. RdMCN
+#: ConnectionPage.src
+msgctxt "STR_JDBCDRIVER_NO_SUCCESS"
+msgid "The JDBC driver could not be loaded."
+msgstr "Der JDBC-Treiber konnte nicht geladen werden."
+
+#. dyCvN
+#: ConnectionPage.src
+msgctxt "STR_MSACCESS_FILTERNAME"
+msgid "MS Access file"
+msgstr "MS Access Datei"
+
+#. rDsuu
+#: ConnectionPage.src
+msgctxt "STR_MSACCESS_2007_FILTERNAME"
+msgid "MS Access 2007 file"
+msgstr "MS Access 2007 Datei"
+
+#. jFwxU
+#: ConnectionPage.src
+msgctxt "STR_FIREBIRD_FILTERNAME"
+msgid "Firebird Database"
+msgstr "Firebird Datenbank"
+
+#. Avmtu
+#: UserAdmin.src
+msgctxt "STR_QUERY_USERADMIN_DELETE_USER"
+msgid "Do you really want to delete the user?"
+msgstr "Soll der Benutzer wirklich gelöscht werden?"
+
+#. yeKZF
+#: UserAdmin.src
+msgctxt "STR_USERADMIN_NOT_AVAILABLE"
+msgid "The database does not support user administration."
+msgstr "Die Datenbank unterstützt keine Benutzerverwaltung."
+
+#. 4CVtX
+#: UserAdmin.src
+msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
+msgid "The passwords do not match. Please enter the password again."
+msgstr ""
+"Die Kennwörter stimmen nicht überein. Bitte geben Sie diese noch einmal ein."
+
+#. U2bRK
+#: dbadmin.src
+msgctxt "STR_DATABASE_TYPE_CHANGE"
+msgid "Database properties"
+msgstr "Datenbankeigenschaften"
+
+#. etNzz
+#: dbadmin.src
+msgctxt "STR_PARENTTITLE_GENERAL"
+msgid "Data Source Properties: #"
+msgstr "Datenquellen Eigenschaften: #"
+
+#. z9Ecp
+#: dbadmin.src
+msgctxt "STR_ERR_USE_CONNECT_TO"
+msgid ""
+"Please choose 'Connect to an existing database' to connect to an existing "
+"database instead."
+msgstr ""
+"Bitte verwenden Sie 'Verbindung zu einer bestehenden Datenbank herstellen', "
+"um stattdessen mit einer bestehenden Datenbank zu verbinden."
+
+#. PfAC6
+#: dbadmin.src
+msgctxt "STR_COULD_NOT_LOAD_ODBC_LIB"
+msgid ""
+"Could not load the program library #lib# or it is corrupted. The ODBC data "
+"source selection is not available."
+msgstr ""
+"Die Programmbibliothek #lib# konnte nicht geladen werden oder ist defekt. "
+"Die ODBC-Datenquellen-Auswahl ist nicht verfügbar."
+
+#. d3vbZ
+#: dbadmin.src
+msgctxt "STR_UNSUPPORTED_DATASOURCE_TYPE"
+msgid ""
+"This kind of data source is not supported on this platform.\n"
+"You are allowed to change the settings, but you probably will not be able to connect to the database."
+msgstr ""
+"Dieser Datenquellen-Typ wird auf dieser Plattform nicht unterstützt.\n"
+"Sie können die Einstellungen verändern, werden aber vermutlich keine Verbindung zu der Datenbank herstellen können."
+
+#. 2f7Ga
+#: dbadmin.src
+msgctxt "STR_AUTOTEXT_FIELD_SEP_NONE"
+msgid "{None}"
+msgstr "{Keiner}"
+
+#. iR7CJ
+#: dbadmin.src
+msgctxt "STR_AUTOFIELDSEPARATORLIST"
+msgid ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
+msgstr ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Leerzeichen}\t32"
+
+#. DFGo9
+#: dbadmin.src
+msgctxt "STR_AUTODELIMITER_MISSING"
+msgid "#1 must be set."
+msgstr "#1 muss angegeben sein."
+
+#. ZDRBf
+#: dbadmin.src
+msgctxt "STR_AUTODELIMITER_MUST_DIFFER"
+msgid "#1 and #2 must be different."
+msgstr "#1 und #2 müssen unterschiedlich sein."
+
+#. 9oCZr
+#: dbadmin.src
+msgctxt "STR_AUTONO_WILDCARDS"
+msgid "Wildcards such as ?,* are not allowed in #1."
+msgstr "Platzhalter wie ?,* sind in der #1 nicht möglich."
+
+#. 3srwC
+#: dbadmin2.src
+msgctxt "STR_ENTER_CONNECTION_PASSWORD"
+msgid "A password is needed to connect to the data source \"$name$\"."
+msgstr ""
+"Die Verbindung zur Datenquelle \"$name$\" erfordert die Eingabe eines "
+"Kennwortes."
+
+#. tYDxc
+#: dbadmin2.src
+msgctxt "STR_ASK_FOR_DIRECTORY_CREATION"
+msgid ""
+"The directory\n"
+"\n"
+"$path$\n"
+"\n"
+"does not exist. Should it be created?"
+msgstr ""
+"Das Verzeichnis\n"
+"\n"
+"$path$\n"
+"\n"
+"existiert nicht. Soll es angelegt werden?"
+
+#. 3PFxY
+#: dbadmin2.src
+msgctxt "STR_COULD_NOT_CREATE_DIRECTORY"
+msgid "The directory $name$ could not be created."
+msgstr "Das Verzeichnis $name$ konnte nicht angelegt werden."
+
+#. V9kGF
+#: dbadmin2.src
+msgctxt "STR_ALREADYEXISTOVERWRITE"
+msgid "The file already exists. Overwrite?"
+msgstr "Die Datei existiert bereits. Soll sie überschrieben werden?"
+
+#. i47ye
+#: dbadmin2.src
+msgctxt "STR_NEW_FOLDER"
+msgid "Folder"
+msgstr "Ordner"
+
+#. 55EA7
+#: dbadminsetup.src
+msgctxt "STR_DBWIZARDTITLE"
+msgid "Database Wizard"
+msgstr "Datenbank-Assistent"
+
+#. p4Yy4
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_INTROPAGE"
+msgid "Select database"
+msgstr "Datenbank auswählen"
+
+#. GTpDz
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_DBASE"
+msgid "Set up dBASE connection"
+msgstr "Verbindung zu dBASE-Dateien einrichten"
+
+#. VBaQN
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_TEXT"
+msgid "Set up a connection to text files"
+msgstr "Verbindung zu Textdateien einrichten"
+
+#. TiBeQ
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_MSACCESS"
+msgid "Set up Microsoft Access connection"
+msgstr "Microsoft Access Verbindung einrichten"
+
+#. XaDDh
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_LDAP"
+msgid "Set up LDAP connection"
+msgstr "LDAP-Verbindung einrichten"
+
+#. WZtzU
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_ADO"
+msgid "Set up ADO connection"
+msgstr "ADO-Verbindung einrichten"
+
+#. n3HgX
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_JDBC"
+msgid "Set up JDBC connection"
+msgstr "JDBC-Verbindung einrichten"
+
+#. qiZT5
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_ORACLE"
+msgid "Set up Oracle database connection"
+msgstr "Oracle Datenbankverbindung einrichten"
+
+#. KbAqW
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_MYSQL"
+msgid "Set up MySQL connection"
+msgstr "MySQL Verbindung einrichten"
+
+#. uJuNs
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_ODBC"
+msgid "Set up ODBC connection"
+msgstr "ODBC-Verbindung einrichten"
+
+#. HZXar
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_SPREADSHEET"
+msgid "Set up Spreadsheet connection"
+msgstr "Verbindung zu Tabellendokumenten einrichten"
+
+#. wUEMA
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_AUTHENTIFICATION"
+msgid "Set up user authentication"
+msgstr "Benutzer-Authentifizierung einrichten"
+
+#. YgsyA
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_MYSQL_NATIVE"
+msgid "Set up MySQL server data"
+msgstr "MySQL Server-Daten einrichten"
+
+#. 6Fy7C
+#: dbadminsetup.src
+msgctxt "STR_PAGETITLE_FINAL"
+msgid "Save and proceed"
+msgstr "Fertigstellen und fortfahren"
+
+#. LhDjK
+#: dbadminsetup.src
+msgctxt "STR_DATABASEDEFAULTNAME"
+msgid "New Database"
+msgstr "Neue Datenbank"
+
+#. DoGLb
+#: dbadminsetup.src
+msgctxt "STR_MYSQLJDBC_HEADERTEXT"
+msgid "Set up connection to a MySQL database using JDBC"
+msgstr "Verbindung zu einer MySQL-Datenbank per JDBC einrichten"
+
+#. B5kEC
+#: dbadminsetup.src
+msgctxt "STR_MYSQLJDBC_HELPTEXT"
+msgid ""
+"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Bitte geben Sie die benötigten Informationen ein, um eine Verbindung per JDBC zu einer MySQL-Datenbank herzustellen. Bitte beachten Sie, dass eine JDBC-Treiberklasse auf ihrem System installiert und %PRODUCTNAME bekannt sein muss.\n"
+"Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
+
+#. uGTyY
+#: dbadminsetup.src
+msgctxt "STR_MYSQL_DRIVERCLASSTEXT"
+msgid "MySQL JDBC d~river class:"
+msgstr "MySQL JDBC ~Treiberklasse:"
+
+#. cBiSe
+#: dbadminsetup.src
+msgctxt "STR_MYSQL_DEFAULT"
+msgid "Default: 3306"
+msgstr "Default: 3306"
+
+#. zDx7G
+#: dbadminsetup.src
+msgctxt "STR_DBASE_HEADERTEXT"
+msgid "Set up a connection to dBASE files"
+msgstr "Verbindung zu dBASE-Dateien einrichten"
+
+#. MXTEF
+#: dbadminsetup.src
+msgctxt "STR_DBASE_HELPTEXT"
+msgid "Select the folder where the dBASE files are stored."
+msgstr "Bitte wählen Sie den Ordner, in dem sich die dBASE- Dateien befinden."
+
+#. Ke4xP
+#: dbadminsetup.src
+msgctxt "STR_TEXT_HEADERTEXT"
+msgid "Set up a connection to text files"
+msgstr "Verbindung zu Textdateien einrichten"
+
+#. uJFWa
+#: dbadminsetup.src
+msgctxt "STR_TEXT_HELPTEXT"
+msgid ""
+"Select the folder where the CSV (Comma Separated Values) text files are "
+"stored. %PRODUCTNAME Base will open these files in read-only mode."
+msgstr ""
+"Bitte wählen Sie den Ordner, in dem sich die im CSV-Format (Comma Separated "
+"Value) gespeicherten Dateien befinden. %PRODUCTNAME Base greift auf die "
+"Daten nur lesend zu."
+
+#. chkNh
+#: dbadminsetup.src
+msgctxt "STR_TEXT_PATH_OR_FILE"
+msgid "Path to text files"
+msgstr "Pfad zu den Textdateien"
+
+#. VXUEj
+#: dbadminsetup.src
+msgctxt "STR_MSACCESS_HEADERTEXT"
+msgid "Set up a connection to a Microsoft Access database"
+msgstr "Verbindung zu einer Microsoft Access Datenbank einrichten"
+
+#. rTF65
+#: dbadminsetup.src
+msgctxt "STR_MSACCESS_HELPTEXT"
+msgid "Please select the Microsoft Access file you want to access."
+msgstr ""
+"Bitte wählen Sie die Microsoft Access Datei aus, auf die Sie zugreifen "
+"möchten."
+
+#. DYcM8
+#: dbadminsetup.src
+msgctxt "STR_ADO_HEADERTEXT"
+msgid "Set up a connection to an ADO database"
+msgstr "Verbindung zu einer ADO-Datenquelle einrichten"
+
+#. WzZiB
+#: dbadminsetup.src
+msgctxt "STR_ADO_HELPTEXT"
+msgid ""
+"Please enter the URL of the ADO data source you want to connect to.\n"
+"Click 'Browse' to configure provider-specific settings.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Geben Sie bitte die URL ein, um eine Verbindung zu einer ADO-Datenquelle zu erstellen.\n"
+"Klicken Sie auf 'Durchsuchen', um Hersteller-spezifische Einstellungen vorzunehmen.\n"
+"Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
+
+#. PRyfo
+#: dbadminsetup.src
+msgctxt "STR_ODBC_HEADERTEXT"
+msgid "Set up a connection to an ODBC database"
+msgstr "Verbindung zu einer ODBC-Datenquelle einrichten"
+
+#. CBVtz
+#: dbadminsetup.src
+msgctxt "STR_ODBC_HELPTEXT"
+msgid ""
+"Enter the name of the ODBC database you want to connect to.\n"
+"Click 'Browse...' to select an ODBC database that is already registered in %PRODUCTNAME.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Bitte geben Sie den Namen der ODBC-Datenquelle ein, um eine Verbindung herzustellen.\n"
+"Klicken Sie auf 'Durchsuchen...' um eine %PRODUCTNAME bekannte ODBC-Datenquelle auszuwählen.\n"
+"Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
+
+#. dmi7n
+#: dbadminsetup.src
+msgctxt "STR_JDBC_HEADERTEXT"
+msgid "Set up a connection to a JDBC database"
+msgstr "Datenbankverbindung per JDBC einrichten"
+
+#. dYGeU
+#: dbadminsetup.src
+msgctxt "STR_JDBC_HELPTEXT"
+msgid ""
+"Please enter the required information to connect to a JDBC database.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Bitte geben Sie die benötigten Informationen ein, um per JDBC eine Verbindung zu einer Datenquelle herzustellen.\n"
+"Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
+
+#. DWgup
+#: dbadminsetup.src
+msgctxt "STR_ORACLE_HEADERTEXT"
+msgid "Set up a connection to an Oracle database"
+msgstr "Verbindung zu einer Oracle-Datenbank einrichten"
+
+#. Z57ca
+#: dbadminsetup.src
+msgctxt "STR_ORACLE_DEFAULT"
+msgid "Default: 1521"
+msgstr "Standard: 1521"
+
+#. dnAP9
+#: dbadminsetup.src
+msgctxt "STR_ORACLE_DRIVERCLASSTEXT"
+msgid "Oracle JDBC ~driver class"
+msgstr "Oracle JDBC ~Treiberklasse"
+
+#. aD8dK
+#: dbadminsetup.src
+msgctxt "STR_ORACLE_HELPTEXT"
+msgid ""
+"Please enter the required information to connect to an Oracle database. Note that a JDBC Driver Class must be installed on your system and registered with %PRODUCTNAME.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Bitte geben Sie die benötigte Information ein, um per JDBC eine Verbindung zu einer Oracle-Datenbank herzustellen. Bitte beachten Sie, dass eine JDBC-Treiberklasse auf ihrem System installiert und %PRODUCTNAME bekannt sein muss.\n"
+"Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
+
+#. Vqjfj
+#: dbadminsetup.src
+msgctxt "STR_SPREADSHEET_HEADERTEXT"
+msgid "Set up a connection to spreadsheets"
+msgstr "Verbindung zu Tabellendokumenten einrichten"
+
+#. FnpBr
+#: dbadminsetup.src
+msgctxt "STR_SPREADSHEET_HELPTEXT"
+msgid ""
+"Click 'Browse...' to select a %PRODUCTNAME spreadsheet or Microsoft Excel workbook.\n"
+"%PRODUCTNAME will open this file in read-only mode."
+msgstr ""
+"Klicken Sie auf 'Durchsuchen...', um ein %PRODUCTNAME Tabellendokumenten oder eine Microsoft Excel-Arbeitsmappen auszuwählen.\n"
+"%PRODUCTNAME greift auf die Dateien nur lesend zu."
+
+#. fxmJG
+#: dbadminsetup.src
+msgctxt "STR_SPREADSHEETPATH"
+msgid "~Location and file name"
+msgstr "~Speicherort und Dateiname"
+
+#. og5kg
+#: directsql.src
+msgctxt "STR_COMMAND_EXECUTED_SUCCESSFULLY"
+msgid "Command successfully executed."
+msgstr "Befehl erfolgreich ausgeführt."
+
+#. BhFXv
+#: directsql.src
+msgctxt "STR_DIRECTSQL_CONNECTIONLOST"
+msgid ""
+"The connection to the database has been lost. This dialog will be closed."
+msgstr ""
+"Die Verbindung zur Datenbank wurde unterbrochen. Dieser Dialog wird "
+"geschlossen."
+
+#. WTysM
+#: indexdialog.src
+msgctxt "STR_TAB_INDEX_SORTORDER"
+msgid "Sort order"
+msgstr "Sortierreihenfolge"
+
+#. 67TCR
+#: indexdialog.src
+msgctxt "STR_TAB_INDEX_FIELD"
+msgid "Index field"
+msgstr "Indexfeld"
+
+#. rCZbG
+#: indexdialog.src
+msgctxt "STR_ORDER_ASCENDING"
+msgid "Ascending"
+msgstr "Aufsteigend"
+
+#. zUeEN
+#: indexdialog.src
+msgctxt "STR_ORDER_DESCENDING"
+msgid "Descending"
+msgstr "Absteigend"
+
+#. DpB67
+#: indexdialog.src
+msgctxt "STR_CONFIRM_DROP_INDEX"
+msgid "Do you really want to delete the index '$name$'?"
+msgstr "Möchten Sie den Index '$name$' wirklich löschen?"
+
+#. 3sTLe
+#: indexdialog.src
+msgctxt "STR_LOGICAL_INDEX_NAME"
+msgid "index"
+msgstr "Index"
+
+#. HFaXn
+#: indexdialog.src
+msgctxt "STR_NEED_INDEX_FIELDS"
+msgid "The index must contain at least one field."
+msgstr "Der Index muss mindestens ein Feld enthalten."
+
+#. LRDDD
+#: indexdialog.src
+msgctxt "STR_INDEX_NAME_ALREADY_USED"
+msgid "There is already another index named \"$name$\"."
+msgstr "Es gibt schon einen anderen Index namens \"$name$\"."
+
+#. 9C3mx
+#: indexdialog.src
+msgctxt "STR_INDEXDESIGN_DOUBLE_COLUMN_NAME"
+msgid ""
+"In an index definition, no table column may occur more than once. However, "
+"you have entered column \"$name$\" twice."
+msgstr ""
+"In einer Index-Definition darf jede Tabellenspalte höchstens einmal "
+"vorkommen. Sie haben jedoch die Spalte \"$name$\" zweimal verwendet."
+
+#. XANpc
+#: paramdialog.src
+msgctxt "STR_COULD_NOT_CONVERT_PARAM"
+msgid ""
+"The entry could not be converted to a valid value for the \"$name$\" "
+"parameter"
+msgstr ""
+"Der Eintrag konnte nicht in einen gültigen Wert für die Spalte \"$name$\" "
+"umgewandelt werden"
+
+#. FCnE3
+#: sqlmessage.src
+msgctxt "STR_EXCEPTION_STATUS"
+msgid "SQL Status"
+msgstr "SQL-Status"
+
+#. ha64T
+#: sqlmessage.src
+msgctxt "STR_EXCEPTION_ERRORCODE"
+msgid "Error code"
+msgstr "Fehler-Code"
+
+#. 9A2cX
+#: sqlmessage.src
+msgctxt "STR_EXPLAN_STRINGCONVERSION_ERROR"
+msgid ""
+"A frequent reason for this error is an inappropriate character set setting "
+"for the language of your database. Check the setting by choosing Edit - "
+"Database - Properties."
+msgstr ""
+"Ein häufiger Grund für diesen Fehler ist eine ungeeignete Zeichensatz-"
+"Einstellung für die Sprache Ihrer Datenbank. Überprüfen Sie diese "
+"Einstellung unter Bearbeiten - Datenbank - Eigenschaften."
+
+#. itnjJ
+#: sqlmessage.src
+msgctxt "STR_EXCEPTION_ERROR"
+msgid "Error"
+msgstr "Fehler"
+
+#. Q4A2Y
+#: sqlmessage.src
+msgctxt "STR_EXCEPTION_WARNING"
+msgid "Warning"
+msgstr "Warnung"
+
+#. LSBpE
+#: sqlmessage.src
+msgctxt "STR_EXCEPTION_INFO"
+msgid "Information"
+msgstr "Information"
+
+#. DKRwR
+#: sqlmessage.src
+msgctxt "STR_EXCEPTION_DETAILS"
+msgid "Details"
+msgstr "Details"
+
+#. U3N6g
+#: app.src
+msgctxt "RID_STR_NEW_FORM"
+msgid "Create Form in Design View..."
+msgstr "Formular in Entwurfsansicht erstellen..."
+
+#. vLzx4
+#: app.src
+msgctxt "RID_STR_NEW_FORM_AUTO"
+msgid "Use Wizard to Create Form..."
+msgstr "Formular unter Verwendung des Assistenten erstellen..."
+
+#. ZRnDp
+#: app.src
+msgctxt "RID_STR_NEW_REPORT_AUTO"
+msgid "Use Wizard to Create Report..."
+msgstr "Bericht unter Verwendung des Assistenten erstellen..."
+
+#. aSmAa
+#: app.src
+msgctxt "RID_STR_NEW_REPORT"
+msgid "Create Report in Design View..."
+msgstr "Bericht in Entwurfsansicht erstellen..."
+
+#. mGsho
+#: app.src
+msgctxt "RID_STR_NEW_QUERY"
+msgid "Create Query in Design View..."
+msgstr "Abfrage in der Entwurfsansicht erstellen..."
+
+#. sfADq
+#: app.src
+msgctxt "RID_STR_NEW_QUERY_SQL"
+msgid "Create Query in SQL View..."
+msgstr "Abfrage in SQL-Ansicht erstellen..."
+
+#. 57XvA
+#: app.src
+msgctxt "RID_STR_NEW_QUERY_AUTO"
+msgid "Use Wizard to Create Query..."
+msgstr "Abfrage unter Verwendung des Assistenten erstellen..."
+
+#. wzNZ2
+#: app.src
+msgctxt "RID_STR_NEW_TABLE"
+msgid "Create Table in Design View..."
+msgstr "Tabelle in der Entwurfsansicht erstellen..."
+
+#. SZdVd
+#: app.src
+msgctxt "RID_STR_NEW_TABLE_AUTO"
+msgid "Use Wizard to Create Table..."
+msgstr "Tabelle unter Verwendung des Assistenten erstellen..."
+
+#. Xdxfp
+#: app.src
+msgctxt "RID_STR_NEW_VIEW"
+msgid "Create View..."
+msgstr "Ansicht erstellen..."
+
+#. uinhG
+#: app.src
+msgctxt "RID_STR_FORMS_CONTAINER"
+msgid "Forms"
+msgstr "Formulare"
+
+#. EhPGD
+#: app.src
+msgctxt "RID_STR_REPORTS_CONTAINER"
+msgid "Reports"
+msgstr "Berichte"
+
+#. DFmZD
+#: app.src
+msgctxt "RID_STR_REPORTS_HELP_TEXT_WIZARD"
+msgid ""
+"The wizard will guide you through the steps necessary to create a report."
+msgstr ""
+"Der Assistent wird Sie durch die Schritte führen, die zur Erstellung eines "
+"Berichtes notwendig sind."
+
+#. e4rD6
+#: app.src
+msgctxt "RID_STR_FORMS_HELP_TEXT"
+msgid ""
+"Create a form by specifying the record source, controls, and control "
+"properties."
+msgstr ""
+"Erstellen Sie ein Formular, indem Sie die Datensatzquelle, Steuerelemente "
+"und Steuerelementeigenschaften angeben."
+
+#. WMRFD
+#: app.src
+msgctxt "RID_STR_REPORT_HELP_TEXT"
+msgid ""
+"Create a report by specifying the record source, controls, and control "
+"properties."
+msgstr ""
+"Erstellen eines Berichts durch Angabe von Datensatzquelle, Steuerelementen "
+"und Steuerelementeigenschaften."
+
+#. mJ9jD
+#: app.src
+msgctxt "RID_STR_FORMS_HELP_TEXT_WIZARD"
+msgid ""
+"The wizard will guide you through the steps necessary to create a form."
+msgstr ""
+"Der Assistent wird Sie durch die Schritte führen, die zur Erstellung eines "
+"Formulars notwendig sind."
+
+#. c6NPF
+#: app.src
+msgctxt "RID_STR_QUERIES_HELP_TEXT"
+msgid ""
+"Create a query by specifying the filters, input tables, field names, and "
+"properties for sorting or grouping."
+msgstr ""
+"Erstellen Sie eine Abfrage, indem Sie Filter, Eingabetabellen, sowie "
+"Sortierungs- und Gruppierungseigenschaften angeben."
+
+#. Gk7RQ
+#: app.src
+msgctxt "RID_STR_QUERIES_HELP_TEXT_SQL"
+msgid "Create a query by entering an SQL statement directly."
+msgstr ""
+"Erstellen Sie eine Abfrage, indem Sie einen SQL-Befehl direkt eingeben."
+
+#. EUCKU
+#: app.src
+msgctxt "RID_STR_QUERIES_HELP_TEXT_WIZARD"
+msgid ""
+"The wizard will guide you through the steps necessary to create a query."
+msgstr ""
+"Der Assistent wird Sie durch die Schritte führen, die zur Erstellung einer "
+"Abfrage notwendig sind."
+
+#. hFmde
+#: app.src
+msgctxt "RID_STR_TABLES_HELP_TEXT_DESIGN"
+msgid ""
+"Create a table by specifying the field names and properties, as well as the "
+"data types."
+msgstr ""
+"Erstellen Sie eine Tabelle, indem Sie Feldnamen und -eigenschaften, sowie "
+"Datentypen angeben."
+
+#. ctDmY
+#: app.src
+msgctxt "RID_STR_TABLES_HELP_TEXT_WIZARD"
+msgid ""
+"Choose from a selection of business and personal table samples, which you "
+"customize to create a table."
+msgstr ""
+"Wählen Sie aus geschäftlichen oder privaten Beispieltabellen aus, die Sie "
+"dann für Ihren Zweck anpassen."
+
+#. GmBmQ
+#: app.src
+msgctxt "RID_STR_VIEWS_HELP_TEXT_DESIGN"
+msgid ""
+"Create a view by specifying the tables and field names you would like to "
+"have visible."
+msgstr ""
+"Erstellen Sie eine Ansicht, indem Sie Tabellen und Feldnamen angeben, die "
+"Sie anzeigen möchten."
+
+#. 5ADJN
+#: app.src
+msgctxt "STR_DATABASE"
+msgid "Database"
+msgstr "Datenbank"
+
+#. D2GFx
+#: app.src
+msgctxt "STR_TASKS"
+msgid "Tasks"
+msgstr "Aufgaben"
+
+#. t46y2
+#: app.src
+msgctxt "STR_DESCRIPTION"
+msgid "Description"
+msgstr "Beschreibung"
+
+#. i4BHJ
+#: app.src
+msgctxt "STR_PREVIEW"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. MpYZa
+#: app.src
+msgctxt "STR_QUERY_CLOSEDOCUMENTS"
+msgid ""
+"The connection type has been altered.\n"
+"For the changes to take effect, all forms, reports, queries and tables must be closed.\n"
+"\n"
+"Do you want to close all documents now?"
+msgstr ""
+"Die Verbindungsart wurde geändert.\n"
+"Damit die Änderungen wirksam werden, müssen alle Formulare, Berichte, Abfragen und Tabellen geschlossen werden.\n"
+"\n"
+"Möchten Sie jetzt alle Dokumente schließen?"
+
+#. PzEVD
+#: app.src
+msgctxt "RID_STR_FORM"
+msgid "Form"
+msgstr "Formular"
+
+#. nkamB
+#: app.src
+msgctxt "RID_STR_REPORT"
+msgid "Report"
+msgstr "Bericht"
+
+#. 5Ujux
+#: app.src
+msgctxt "STR_FRM_LABEL"
+msgid "F~orm name"
+msgstr "~Name des Formulars"
+
+#. zA6vD
+#: app.src
+msgctxt "STR_RPT_LABEL"
+msgid "~Report name"
+msgstr "~Name des Berichts"
+
+#. 8RUit
+#: app.src
+msgctxt "STR_FOLDER_LABEL"
+msgid "F~older name"
+msgstr "~Name des Ordners"
+
+#. Twota
+#: app.src
+msgctxt "STR_SUB_DOCS_WITH_SCRIPTS"
+msgid "The document contains forms or reports with embedded macros."
+msgstr ""
+"Das Dokument enthält Formulare oder Berichte mit eingebetteten Makros."
+
+#. v33uG
+#: app.src
+msgctxt "STR_SUB_DOCS_WITH_SCRIPTS_DETAIL"
+msgid ""
+"Macros should be embedded into the database document itself.\n"
+"\n"
+"You can continue to use your document as before, however, you are encouraged to migrate your macros. The menu item 'Tools / Migrate Macros ...' will assist you with this.\n"
+"\n"
+"Note that you won't be able to embed macros into the database document itself until this migration is done. "
+msgstr ""
+"Makros sollten direkt in das Datenbankdokument eingebettet werden.\n"
+"\n"
+"Sie können Ihr Dokument weiterhin wie bisher verwenden, es ist aber von Vorteil, Ihre Makros zu konvertieren. Der Assistent unter 'Extras / Makros migrieren...' unterstützt Sie dabei.\n"
+"\n"
+"Beachten Sie, dass Sie Makros nicht direkt in das Datenbankdokument einbetten können, solange Sie diese Migration nicht durchgeführt haben."
+
+#. SBEJP
+#: app.src
+msgctxt "RID_STR_EMBEDDED_DATABASE"
+msgid "Embedded database"
+msgstr "Eingebettete Datenbank"
+
+#. 9GfaL
+#: app.src
+msgctxt "RID_STR_NO_DIFF_CAT"
+msgid "You cannot select different categories."
+msgstr "Es können keine unterschiedlichen Kategorien ausgewählt werden."
+
+#. HMRSN
+#: app.src
+msgctxt "RID_STR_UNSUPPORTED_OBJECT_TYPE"
+msgid "Unsupported object type found ($type$)."
+msgstr "Nicht unterstützten Objekttyp gefunden ($type$)."
+
+#. YgB34
+#: app.src
+msgctxt "STR_PAGETITLE_GENERAL"
+msgid "Advanced Properties"
+msgstr "Erweiterte Eigenschaften"
+
+#. wFDHD
+#: app.src
+msgctxt "STR_PAGETITLE_ADVANCED"
+msgid "Additional Settings"
+msgstr "Erweiterte Einstellungen"
+
+#. HYDjE
+#: app.src
+msgctxt "STR_PAGETITLE_CONNECTION"
+msgid "Connection settings"
+msgstr "Verbingungseinstellungen"
+
+#. KLRak
+#: app.src
+msgctxt "STR_TBL_LABEL"
+msgid "~Table Name"
+msgstr "Name der ~Tabelle"
+
+#. WPmUe
+#: app.src
+msgctxt "STR_QRY_LABEL"
+msgid "~Query name"
+msgstr "Name ~der Abfrage"
+
+#. cGPht
+#: app.src
+msgctxt "STR_TITLE_RENAME"
+msgid "Rename to"
+msgstr "Umbenennen nach"
+
+#. GQDBD
+#: app.src
+msgctxt "STR_TITLE_PASTE_AS"
+msgid "Insert as"
+msgstr "Einfügen als"
+
+#. ixrDD
+#: relation.src
+msgctxt "STR_QUERY_REL_EDIT_RELATION"
+msgid ""
+"This relation already exists. Do you want to edit it or create a new one?"
+msgstr ""
+"Diese Relation existiert bereits. Möchten Sie diese bearbeiten oder eine "
+"neue Relation erstellen?"
+
+#. nFRsS
+#: relation.src
+msgctxt "STR_QUERY_REL_EDIT"
+msgid "Edit..."
+msgstr "Bearbeiten..."
+
+#. yRkFG
+#: relation.src
+msgctxt "STR_QUERY_REL_CREATE"
+msgid "Create..."
+msgstr "Erstellen..."
+
+#. VWBJF
+#: relation.src
+msgctxt "STR_RELATIONDESIGN"
+msgid " - %PRODUCTNAME Base: Relation design"
+msgstr " - %PRODUCTNAME Base: Beziehungsdesign"
+
+#. ZCd5X
+#: relation.src
+msgctxt "STR_RELATIONDESIGN_NOT_AVAILABLE"
+msgid "The database does not support relations."
+msgstr "Die Datenbank unterstützt keine Relationen."
+
+#. CG2Pd
+#: relation.src
+msgctxt "STR_QUERY_REL_DELETE_WINDOW"
+msgid ""
+"When you delete this table all corresponding relations will be deleted as "
+"well. Continue?"
+msgstr ""
+"Wenn Sie diese Tabelle löschen werden alle zugehörigen Relationen ebenfalls "
+"gelöscht. Fortfahren?"
+
+#. Wzf9T
+#: relation.src
+msgctxt "STR_QUERY_REL_COULD_NOT_CREATE"
+msgid ""
+"The database could not create the relation. Maybe foreign keys for this kind of table aren't supported.\n"
+"Please check your documentation of the database."
+msgstr ""
+"Die Datenbank konnte die Beziehung nicht erstellen. Unter Umständen werden Fremdschlüssel für diese Art von Tabelle nicht unterstützt.\n"
+"Bitte überprüfen Sie die Dokumentation der Datenbank."
+
+#. CmzsA
+#: table.src
+msgctxt "STR_TABLEDESIGN_DBFIELDTYPES"
+msgid ""
+"Unknown;Text;Number;Date/Time;Date;Time;Yes/No;Currency;Memo;Counter;Image;Text"
+" (fix);Decimal;Binary (fix);Binary;BigInt;Double;Float;Real;Integer;Small "
+"Integer;Tiny Integer;SQL "
+"Null;Object;Distinct;Structure;Field;BLOB;CLOB;REF;OTHER;Bit (fix)"
+msgstr ""
+"Unbekannt;Text;Zahl;Datum/Zeit;Datum;Zeit;Ja/Nein;Währung;Memo;Zähler;Bild;Text"
+" (fix);Dezimal;Binärfeld "
+"(fix);Binärfeld;BigInt;Double;Float;Real;Integer;Small Integer;Tiny "
+"Integer;SQL Null;Objekt;Distinct;Struktur;Feld;BLOB;CLOB;REF;OTHER;Bit (fix)"
+
+#. hhXGF
+#: table.src
+msgctxt "STR_TABLEDESIGN_UNDO_PRIMKEY"
+msgid "Insert/remove primary key"
+msgstr "Primärschlüssel einfügen/entfernen"
+
+#. 26uKH
+#: table.src
+msgctxt "STR_VALUE_YES"
+msgid "Yes"
+msgstr "Ja"
+
+#. vqVF5
+#: table.src
+msgctxt "STR_VALUE_NO"
+msgid "No"
+msgstr "Nein"
+
+#. TDokm
+#: table.src
+msgctxt "STR_VALUE_NONE"
+msgid "<none>"
+msgstr "<keiner>"
+
+#. eARN2
+#: table.src
+msgctxt "STR_TAB_FIELD_NAME"
+msgid "Field name"
+msgstr "Feldname"
+
+#. 66g23
+#: table.src
+msgctxt "STR_TAB_FIELD_COLUMN_NAME"
+msgid "Field Name"
+msgstr "Feldname"
+
+#. WHmLD
+#: table.src
+msgctxt "STR_TAB_FIELD_DATATYPE"
+msgid "Field ~type"
+msgstr "Feld~typ"
+
+#. F6UGZ
+#: table.src
+msgctxt "STR_TAB_FIELD_COLUMN_DATATYPE"
+msgid "Field Type"
+msgstr "Feldtyp"
+
+#. LFBuq
+#: table.src
+msgctxt "STR_TAB_HELP_TEXT"
+msgid "Description"
+msgstr "Beschreibung"
+
+#. BYE5G
+#: table.src
+msgctxt "STR_COLUMN_DESCRIPTION"
+msgid "Column Description"
+msgstr "Spaltenbeschreibung"
+
+#. NF9TD
+#: table.src
+msgctxt "STR_FIELD_AUTOINCREMENT"
+msgid "~AutoValue"
+msgstr "~Auto-Wert"
+
+#. Aney5
+#: table.src
+msgctxt "STR_TAB_PROPERTIES"
+msgid "Field Properties"
+msgstr "Feldeigenschaften"
+
+#. kjdpF
+#: table.src
+msgctxt "STR_TABED_UNDO_CELLMODIFIED"
+msgid "Modify cell"
+msgstr "Zelle ändern"
+
+#. aPzA3
+#: table.src
+msgctxt "STR_TABED_UNDO_ROWDELETED"
+msgid "Delete row"
+msgstr "Zeile löschen"
+
+#. DFnqv
+#: table.src
+msgctxt "STR_TABED_UNDO_TYPE_CHANGED"
+msgid "Modify field type"
+msgstr "Feldtyp ändern"
+
+#. XLRpC
+#: table.src
+msgctxt "STR_TABED_UNDO_ROWINSERTED"
+msgid "Insert row"
+msgstr "Zeile einfügen"
+
+#. LgbwQ
+#: table.src
+msgctxt "STR_TABED_UNDO_NEWROWINSERTED"
+msgid "Insert new row"
+msgstr "Neue Zeile einfügen"
+
+#. gi8TU
+#: table.src
+msgctxt "STR_DEFAULT_VALUE"
+msgid "~Default value"
+msgstr "~Defaultwert"
+
+#. j3T6w
+#: table.src
+msgctxt "STR_FIELD_REQUIRED"
+msgid "~Entry required"
+msgstr "~Eingabe erforderlich"
+
+#. rk4dG
+#: table.src
+msgctxt "STR_TEXT_LENGTH"
+msgid "~Length"
+msgstr "~Länge"
+
+#. mZzFW
+#: table.src
+msgctxt "STR_NUMERIC_TYPE"
+msgid "~Type"
+msgstr "~Typ"
+
+#. DHbjE
+#: table.src
+msgctxt "STR_LENGTH"
+msgid "~Length"
+msgstr "~Länge"
+
+#. cNWp2
+#: table.src
+msgctxt "STR_SCALE"
+msgid "Decimal ~places"
+msgstr "~Nachkommastellen"
+
+#. VH3vx
+#: table.src
+msgctxt "STR_FORMAT"
+msgid "Format example"
+msgstr "Format-Beispiel"
+
+#. 3AyBV
+#: table.src
+msgctxt "STR_HELP_BOOL_DEFAULT"
+msgid ""
+"Select a value that is to appear in all new records as default.\n"
+"If the field is not to have a default value, select the empty string."
+msgstr ""
+"Wählen Sie einen Wert aus, der in jedem neu eingefügten Datensatz als Standard erscheinen soll.\n"
+"Wählen Sie die leere Zeichenkette aus, wenn das Feld keinen solchen Standardwert haben soll."
+
+#. AbZU4
+#: table.src
+msgctxt "STR_HELP_DEFAULT_VALUE"
+msgid ""
+"Enter a default value for this field.\n"
+"\n"
+"When you later enter data in the table, this string will be used in each new record for the field selected. It should, therefore, correspond to the cell format that needs to be entered below."
+msgstr ""
+"Geben Sie hier einen Standardwert für das Feld an.\n"
+"\n"
+"Wenn Sie später Daten in die Tabelle eingeben, wird in jedem neuen Datensatz diese Zeichenkette für das ausgewählte Feld verwendet. Sie sollte deshalb der weiter unten einzugebenden Zellenformatierung genügen."
+
+#. Pay8s
+#: table.src
+msgctxt "STR_HELP_FIELD_REQUIRED"
+msgid ""
+"Activate this option if this field cannot contain NULL values, i.e. the user"
+" must always enter data."
+msgstr ""
+"Aktivieren Sie diese Option, wenn in diesem Feld keine NULL-Werte erlaubt "
+"sind, der Benutzer also immer Daten eingeben muss."
+
+#. hwwVA
+#: table.src
+msgctxt "STR_HELP_TEXT_LENGTH"
+msgid "Enter the maximum text length permitted."
+msgstr "Geben Sie die maximal zulässige Textlänge an."
+
+#. yPnZq
+#: table.src
+msgctxt "STR_HELP_NUMERIC_TYPE"
+msgid "Enter the number format."
+msgstr "Legen Sie hier fest, welchen Typ die Zahl haben soll."
+
+#. 2yCJu
+#: table.src
+msgctxt "STR_HELP_LENGTH"
+msgid ""
+"Determine the length data can have in this field.\n"
+"\n"
+"If decimal fields, then the maximum length of the number to be entered, if binary fields, then the length of the data block.\n"
+"The value will be corrected accordingly when it exceeds the maximum for this database."
+msgstr ""
+"Geben Sie die Länge für Daten in diesem Feld an.\n"
+"\n"
+"Für Dezimal-Felder ist das die maximale Länge der eingegebenen Zahl, für Binärfelder die Länge des Datenblockes.\n"
+"Wenn der Wert größer ist als der maximal für diese Datenbank zulässige, wird er entsprechend korrigiert."
+
+#. BY4V7
+#: table.src
+msgctxt "STR_HELP_SCALE"
+msgid "Specify the number of decimal places permitted in this field."
+msgstr ""
+"Geben Sie an, wie viel Nachkommastellen die Zahlen in diesem Feld enthalten "
+"sollen."
+
+#. QBHjm
+#: table.src
+msgctxt "STR_HELP_FORMAT_CODE"
+msgid ""
+"This is where you see how the data would be displayed in the current format "
+"(use the button on the right to modify the format)."
+msgstr ""
+"Hier sehen Sie, wie die Daten mit dem aktuell eingestellten Format "
+"dargestellt würden (verwenden Sie die nebenstehenden Schaltfläche, um das "
+"Format zu ändern)."
+
+#. eV4sD
+#: table.src
+msgctxt "STR_HELP_FORMAT_BUTTON"
+msgid "This is where you determine the output format of the data."
+msgstr ""
+"Hiermit können Sie festlegen, wie die Daten der Tabelle bei der Ausgabe "
+"formatiert werden sollen."
+
+#. Y5q39
+#: table.src
+msgctxt "STR_HELP_AUTOINCREMENT"
+msgid ""
+"Choose if this field should contain AutoIncrement values.\n"
+"\n"
+"You can not enter data in fields of this type. An intrinsic value will be assigned to each new record automatically (resulting from the increment of the previous record)."
+msgstr ""
+"Wählen Sie, ob dieses Feld Auto-Inkrement-Werte enthalten soll.\n"
+"\n"
+"Sie können in ihm dann keine Daten direkt eingeben. Stattdessen bekommt jeder neue Datensatz automatisch einen eigenen Wert zugewiesen (der sich durch Erhöhen aus dem des vorigen Datensatzes ergibt)."
+
+#. yhuKC
+#: table.src
+msgctxt "STR_BUTTON_FORMAT"
+msgid "~..."
+msgstr "~..."
+
+#. 5uQpF
+#: table.src
+msgctxt "STR_TABLEDESIGN_DUPLICATE_NAME"
+msgid ""
+"The table cannot be saved because column name \"$column$\" was assigned "
+"twice."
+msgstr ""
+"Die Tabelle kann nicht gespeichert werden, da der Spaltenname \"$column$\" "
+"doppelt vergeben wurde."
+
+#. vayRE
+#: table.src
+msgctxt "STR_TBL_COLUMN_IS_KEYCOLUMN"
+msgid ""
+"The column \"$column$\" belongs to the primary key. If the column is "
+"deleted, the primary key will also be deleted. Do you really want to "
+"continue?"
+msgstr ""
+"Die Spalte \"$column$\" gehört zum Primärschlüssel. Falls sie gelöscht wird,"
+" wird auch der Primärschlüssel gelöscht. Möchten Sie wirklich fortfahren?"
+
+#. fo93e
+#: table.src
+msgctxt "STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE"
+msgid "Primary Key Affected"
+msgstr "Primärschlüssel betroffen"
+
+#. wcLcG
+#: table.src
+msgctxt "STR_COLUMN_NAME"
+msgid "Column"
+msgstr "Spalte"
+
+#. ES566
+#: table.src
+msgctxt "STR_QRY_CONTINUE"
+msgid "Continue anyway?"
+msgstr "Möchten Sie trotzdem fortfahren?"
+
+#. iXbw5
+#: table.src
+msgctxt "STR_TABLEDESIGN_CONNECTION_MISSING"
+msgid ""
+"The table could not be saved due to problems connecting to the database."
+msgstr ""
+"Die Tabelle konnte nicht gespeichert werden, da keine Verbindung zur "
+"Datenbank hergestellt werden konnte."
+
+#. kuExF
+#: table.src
+msgctxt "STR_TABLEDESIGN_DATASOURCE_DELETED"
+msgid ""
+"The table filter could not be adjusted because the data source has been "
+"deleted."
+msgstr ""
+"Der Tabellenfilter konnte nicht angepasst werden, da die Datenquelle "
+"gelöscht wurde."
+
+#. Lt4Yc
+#: table.src
+msgctxt "STR_QUERY_SAVE_TABLE_EDIT_INDEXES"
+msgid ""
+"Before you can edit the indexes of a table, you have to save it.\n"
+"Do you want to save the changes now?"
+msgstr ""
+"Bevor Sie die Indizies einer Tabelle ändern können, muss diese gespeichert werden.\n"
+"Möchten Sie Ihre Änderungen jetzt speichern?"
+
+#. HFLQk
+#: table.src
+msgctxt "STR_TABLEDESIGN_NO_PRIM_KEY_HEAD"
+msgid "No primary key"
+msgstr "Kein Primärschlüssel"
+
+#. ir5Du
+#: table.src
+msgctxt "STR_TABLEDESIGN_NO_PRIM_KEY"
+msgid ""
+"A unique index or primary key is required for data record identification in this database.\n"
+"You can only enter data into this table when one of these two structural conditions has been met.\n"
+"\n"
+"Should a primary key be created now?"
+msgstr ""
+"In dieser Datenbank wird zur Datensatz-Identifizierung ein eindeutiger Index oder ein Primärschlüssel benötigt.\n"
+"Sie werden erst dann Daten in die Tabelle eingeben können, wenn sie eine dieser beiden Struktur-Bedingungen erfüllt.\n"
+"\n"
+"Soll jetzt ein Primärschlüssel erzeugt werden?"
+
+#. R7KDG
+#: table.src
+msgctxt "STR_TABLEDESIGN_ALTER_ERROR"
+msgid ""
+"The column \"$column$\" could not be changed. Should the column instead be "
+"deleted and the new format appended?"
+msgstr ""
+"Die Spalte \"$column$\" konnte nicht geändert werden. Soll sie statt dessen "
+"gelöscht und das neue Format angehängt werden?"
+
+#. U3f4j
+#: table.src
+msgctxt "STR_TABLEDESIGN_SAVE_ERROR"
+msgid "Error while saving the table design"
+msgstr "Fehler beim Speichern des Tabellenentwurfes"
+
+#. 9BsSL
+#: table.src
+msgctxt "STR_TABLEDESIGN_COULD_NOT_DROP_COL"
+msgid "The column $column$ could not be deleted."
+msgstr "Die Spalte $column$ konnte nicht gelöscht werden."
+
+#. GiwCC
+#: table.src
+msgctxt "STR_AUTOINCREMENT_VALUE"
+msgid "A~uto-increment statement"
+msgstr "A~uto-Increment-Ausdruck"
+
+#. Etkrj
+#: table.src
+msgctxt "STR_HELP_AUTOINCREMENT_VALUE"
+msgid ""
+"Enter an SQL statement for the auto-increment field.\n"
+"\n"
+"This statement will be directly transferred to the database when the table is created."
+msgstr ""
+"Geben Sie hier einen SQL Ausdruck für das Auto-Increment-Feld an.\n"
+"\n"
+"Dieser Ausdruck wird beim Erzeugen der Tabelle direkt an die Datenbank übertragen."
+
+#. fAEud
+#: table.src
+msgctxt "STR_NO_TYPE_INFO_AVAILABLE"
+msgid ""
+"No type information could be retrieved from the database.\n"
+"The table design mode is not available for this data source."
+msgstr ""
+"Es konnten keine Typinformationen von der Datenbank ermittelt werden.\n"
+"Der Tabellenentwurfmodus ist für diese Datenquelle nicht verfügbar."
+
+#. 2s2rr
+#: table.src
+msgctxt "STR_CHANGE_COLUMN_NAME"
+msgid "change field name"
+msgstr "Feldnamen ändern"
+
+#. PC3QD
+#: table.src
+msgctxt "STR_CHANGE_COLUMN_TYPE"
+msgid "change field type"
+msgstr "Feldtyp ändern"
+
+#. Z2B9o
+#: table.src
+msgctxt "STR_CHANGE_COLUMN_DESCRIPTION"
+msgid "change field description"
+msgstr "Feldbeschreibung ändern"
+
+#. aDrTE
+#: table.src
+msgctxt "STR_CHANGE_COLUMN_ATTRIBUTE"
+msgid "change field attribute"
+msgstr "Feldattribut ändern"
+
+#. yGyEU
+#: sbabrw.src
+msgctxt "STR_QUERY_BRW_DELETE_ROWS"
+msgid "Do you want to delete the selected data?"
+msgstr "Sollen die ausgewählten Daten gelöscht werden?"
+
+#. AMTEz
+#: sbabrw.src
+msgctxt "SBA_BROWSER_SETTING_ORDER"
+msgid "Error setting the sort criteria"
+msgstr "Fehler beim Setzen der Sortier-Kriterien"
+
+#. kXqdF
+#: sbabrw.src
+msgctxt "SBA_BROWSER_SETTING_FILTER"
+msgid "Error setting the filter criteria"
+msgstr "Fehler beim Setzen der Filter-Kriterien"
+
+#. tXz3U
+#: sbabrw.src
+msgctxt "RID_STR_CONNECTION_LOST"
+msgid "Connection lost"
+msgstr "Vebindung verloren"
+
+#. 5ELXe
+#: sbabrw.src
+msgctxt "RID_STR_QUERIES_CONTAINER"
+msgid "Queries"
+msgstr "Abfragen"
+
+#. wdm7E
+#: sbabrw.src
+msgctxt "RID_STR_TABLES_CONTAINER"
+msgid "Tables"
+msgstr "Tabellen"
+
+#. BTcMU
+#: sbabrw.src
+msgctxt "STR_TITLE_CONFIRM_DELETION"
+msgid "Confirm Deletion"
+msgstr "Löschen bestätigen"
+
+#. pbjZT
+#: sbabrw.src
+msgctxt "STR_QUERY_DELETE_TABLE"
+msgid "Do you want to delete the table '%1'?"
+msgstr "Soll die Tabelle '%1' gelöscht werden?"
+
+#. CLELW
+#: sbabrw.src
+msgctxt "STR_QUERY_CONNECTION_LOST"
+msgid ""
+"The connection to the database has been lost. Do you want to reconnect?"
+msgstr ""
+"Die Verbindung zur Datenbank ist verloren gegangen! Soll Sie wieder "
+"hergestellt werden?"
+
+#. NRXrT
+#: sbabrw.src
+msgctxt "STR_OPENTABLES_WARNINGS"
+msgid "Warnings encountered"
+msgstr "Warnungen aufgetreten"
+
+#. EXau9
+#: sbabrw.src
+msgctxt "STR_OPENTABLES_WARNINGS_DETAILS"
+msgid ""
+"While retrieving the tables, warnings were reported by the database "
+"connection."
+msgstr ""
+"Beim Ermitteln der Tabellen wurden von der Datenbankverbindung Warnungen "
+"gemeldet."
+
+#. HtRDf
+#: sbabrw.src
+msgctxt "STR_CONNECTING_DATASOURCE"
+msgid "Connecting to \"$name$\" ..."
+msgstr "Verbindungsaufbau zu \"$name$\" ..."
+
+#. QNCRB
+#: sbabrw.src
+msgctxt "STR_LOADING_QUERY"
+msgid "Loading query $name$ ..."
+msgstr "Lade Abfrage $name$ ..."
+
+#. QfTUB
+#: sbabrw.src
+msgctxt "STR_LOADING_TABLE"
+msgid "Loading table $name$ ..."
+msgstr "Lade Tabelle $name$ ..."
+
+#. FECQm
+#: sbabrw.src
+msgctxt "STR_NO_TABLE_FORMAT_INSIDE"
+msgid "No table format could be found."
+msgstr "Es konnte kein Tabellenformat gefunden werden."
+
+#. 6isKD
+#: sbabrw.src
+msgctxt "STR_COULDNOTCONNECT_DATASOURCE"
+msgid "The connection to the data source \"$name$\" could not be established."
+msgstr ""
+"Die Verbindung zur Datenquelle \"$name$\" konnte nicht hergestellt werden."
+
+#. HErUD
+#: sbagrid.src
+msgctxt "RID_STR_COLUMN_FORMAT"
+msgid "Column ~Format..."
+msgstr "Spalten~formatierung..."
+
+#. pSid2
+#: sbagrid.src
+msgctxt "RID_STR_COLUMN_WIDTH"
+msgid "Column ~Width..."
+msgstr "Spalten~breite..."
+
+#. mczq6
+#: sbagrid.src
+msgctxt "RID_STR_TABLE_FORMAT"
+msgid "Table Format..."
+msgstr "Tabellenformat ..."
+
+#. Giaeq
+#: sbagrid.src
+msgctxt "RID_STR_ROW_HEIGHT"
+msgid "Row Height..."
+msgstr "Zeilenhöhe..."
+
+#. F8EEk
+#: sbagrid.src
+msgctxt "RID_STR_COPY"
+msgid "~Copy"
+msgstr "~Kopieren"
+
+#. hAGj6
+#: sbagrid.src
+msgctxt "RID_STR_UNDO_MODIFY_RECORD"
+msgid "Undo: Data Input"
+msgstr "Rückgängig: Dateneingabe"
+
+#. NeA2w
+#: sbagrid.src
+msgctxt "RID_STR_SAVE_CURRENT_RECORD"
+msgid "Save current record"
+msgstr "Aktuellen Datensatz speichern"
+
+#. tV569
+#: sbagrid.src
+msgctxt "STR_QRY_TITLE"
+msgid "Query #"
+msgstr "Abfrage #"
+
+#. FBqHA
+#: sbagrid.src
+msgctxt "STR_TBL_TITLE"
+msgid "Table #"
+msgstr "Tabelle #"
+
+#. cCYzs
+#: sbagrid.src
+msgctxt "STR_VIEW_TITLE"
+msgid "View #"
+msgstr "Ansicht #"
+
+#. 8yp2G
+#: sbagrid.src
+msgctxt "STR_NAME_ALREADY_EXISTS"
+msgid "The name \"#\" already exists."
+msgstr "Der Name \"#\" existiert bereits."
+
+#. EmTa7
+#: sbagrid.src
+msgctxt "STR_NO_COLUMNNAME_MATCHING"
+msgid "No matching column names were found."
+msgstr "Es konnten keine übereinstimmenden Spaltennamen gefunden werden."
+
+#. 4EFDH
+#: sbagrid.src
+msgctxt "STR_ERROR_OCCURRED_WHILE_COPYING"
+msgid "An error occurred. Do you want to continue copying?"
+msgstr ""
+"Es ist ein Fehler aufgetreten. Möchten Sie den Kopiervorgang fortsetzen?"
+
+#. xnbDP
+#: sbagrid.src
+msgctxt "STR_DATASOURCE_GRIDCONTROL_NAME"
+msgid "Data source table view"
+msgstr "Tabellenansicht der Datenquelle"
+
+#. r58gb
+#: sbagrid.src
+msgctxt "STR_DATASOURCE_GRIDCONTROL_DESC"
+msgid "Shows the selected table or query."
+msgstr "Zeigt die ausgewählte Tabelle oder Abfrage an."
+
+#. 4KVZn
+#: admindialog.ui
+msgctxt "admindialog|AdminDialog"
+msgid "Database Properties"
+msgstr "Datenbankeigenschaften"
+
+#. k3TWc
+#: admindialog.ui
+msgctxt "admindialog|advanced"
+msgid "Advanced Properties"
+msgstr "Erweiterte Eigenschaften"
+
+#. 2CAoQ
+#: advancedsettingsdialog.ui
+msgctxt "advancedsettingsdialog|AdvancedSettingsDialog"
+msgid "Advanced Settings"
+msgstr "Erweiterte Einstellungen"
+
+#. UGSGn
+#: advancedsettingsdialog.ui
+msgctxt "advancedsettingsdialog|generated"
+msgid "Generated Values"
+msgstr "Generierte Werte"
+
+#. KunTv
+#: advancedsettingsdialog.ui
+msgctxt "advancedsettingsdialog|special"
+msgid "Special Settings"
+msgstr "Besondere Einstellungen"
+
+#. CAaA9
+#: applycolpage.ui
+msgctxt "applycolpage|label1"
+msgid "Existing Columns"
+msgstr "Vorhandene Spalten"
+
+#. 6FMF4
+#: authentificationpage.ui
+msgctxt "authentificationpage|header"
+msgid "Set up the user authentication"
+msgstr "Benutzer-Authentifizierung eingeben"
+
+#. zJ8Zt
+#: authentificationpage.ui
+msgctxt "authentificationpage|helptext"
+msgid "Some databases require you to enter a user name."
+msgstr ""
+"Geben Sie bitte jetzt einen Benutzernamen ein, falls die Datenbank zur "
+"Verbindungsherstellung einen bestimmten Benutzer erwartet."
+
+#. ZqSUv
+#: authentificationpage.ui
+msgctxt "authentificationpage|generalUserNameLabel"
+msgid "_User name"
+msgstr "_Benutzername"
+
+#. ZE2AC
+#: authentificationpage.ui
+msgctxt "authentificationpage|passRequiredCheckbutton"
+msgid "Password re_quired"
+msgstr "_Kennwort erforderlich"
+
+#. zASUB
+#: authentificationpage.ui
+msgctxt "authentificationpage|testConnectionButton"
+msgid "_Test Connection"
+msgstr "_Verbindung testen"
+
+#. AKLpS
+#: autocharsetpage.ui
+msgctxt "autocharsetpage|charsetlabel"
+msgid "_Character set:"
+msgstr "_Zeichensatz:"
+
+#. tgPJD
+#: autocharsetpage.ui
+msgctxt "autocharsetpage|charsetheader"
+msgid "Data Conversion"
+msgstr "Datenkonvertierung"
+
+#. Rs3pE
+#: backuppage.ui
+msgctxt "backuppage|label1"
+msgid "Backup Your Document"
+msgstr "Sichern Sie Ihr Dokument"
+
+#. bKj55
+#: backuppage.ui
+msgctxt "backuppage|label2"
+msgid ""
+"To allow you to go back to the state before the migration, the database "
+"document will be backed up to a location of your choice. Every change done "
+"by the wizard will be made to the original document, the backup will stay "
+"untouched."
+msgstr ""
+"Um den Stand vor der Migration wiederherstellen zu können, wird eine "
+"Sicherungskopie des Datenbankdokuments an einer Stelle Ihrer Wahl angelegt. "
+"Alle Änderungen des Assistenten werden nur am Originaldokument vorgenommen, "
+"die Sicherungskopie bleibt unverändert."
+
+#. eZDqm
+#: backuppage.ui
+msgctxt "backuppage|startmigrate"
+msgid ""
+"Press 'Next' to save a copy of your document, and to begin the migration."
+msgstr ""
+"Klicken Sie auf 'Weiter', um eine Sicherungskopie Ihres Dokuments anzulegen "
+"und die Migration zu starten."
+
+#. pTj7G
+#: backuppage.ui
+msgctxt "backuppage|label3"
+msgid "Save to:"
+msgstr "Speichern unter:"
+
+#. 3c6my
+#: backuppage.ui
+msgctxt "backuppage|browse"
+msgid "Browse..."
+msgstr "Durchsuchen..."
+
+#. fw3s6
+#: choosedatasourcedialog.ui
+msgctxt "choosedatasourcedialog|ChooseDataSourceDialog"
+msgid "Data Source"
+msgstr "Datenquelle"
+
+#. jctjv
+#: choosedatasourcedialog.ui
+msgctxt "choosedatasourcedialog|organize"
+msgid "Or_ganize..."
+msgstr "_Verwalten..."
+
+#. auhD3
+#: choosedatasourcedialog.ui
+msgctxt "choosedatasourcedialog|label1"
+msgid "Choose a data source:"
+msgstr "Wählen Sie eine Datenquelle:"
+
+#. pqsFf
+#: collectionviewdialog.ui
+msgctxt "collectionviewdialog|CollectionView"
+msgid "Save"
+msgstr "Speichern"
+
+#. dBcxN
+#: collectionviewdialog.ui
+msgctxt "collectionviewdialog|ok"
+msgid "_Save"
+msgstr "_Speichern"
+
+#. mvCb2
+#: collectionviewdialog.ui
+msgctxt "collectionviewdialog|newFolderButton|tooltip_text"
+msgid "Create New Directory"
+msgstr "Neuen Ordner erstellen"
+
+#. Bwm2H
+#: collectionviewdialog.ui
+msgctxt "collectionviewdialog|upButton|tooltip_text"
+msgid "Up One Level"
+msgstr "Aufwärts"
+
+#. G5Eev
+#: collectionviewdialog.ui
+msgctxt "collectionviewdialog|fileNameLabel"
+msgid "File _name:"
+msgstr "Datei_name:"
+
+#. ZnGGB
+#: colwidthdialog.ui
+msgctxt "colwidthdialog|ColWidthDialog"
+msgid "Column Width"
+msgstr "Spaltenbreite"
+
+#. AiEUA
+#: colwidthdialog.ui
+msgctxt "colwidthdialog|label1"
+msgid "_Width:"
+msgstr "_Breite:"
+
+#. LtAmr
+#: colwidthdialog.ui
+msgctxt "colwidthdialog|automatic"
+msgid "_Automatic"
+msgstr "_Automatisch"
+
+#. zBVS9
+#: connectionpage.ui
+msgctxt "connectionpage|browseurllabel"
+msgid "Path to the dBASE files:"
+msgstr "Pfad zu den dBASE-Dateien:"
+
+#. Xmumk
+#: connectionpage.ui
+msgctxt "connectionpage|create"
+msgid "_Create New"
+msgstr "_Neu erstellen"
+
+#. zvUpu
+#: connectionpage.ui
+msgctxt "connectionpage|browse"
+msgid "_Browse…"
+msgstr "_Durchsuchen…"
+
+#. PxXFZ
+#: connectionpage.ui
+msgctxt "connectionpage|generalLabel"
+msgid "General"
+msgstr "Allgemein"
+
+#. BvLEW
+#: connectionpage.ui
+msgctxt "connectionpage|userNameLabel"
+msgid "_User name:"
+msgstr "_Benutzername:"
+
+#. VM8W3
+#: connectionpage.ui
+msgctxt "connectionpage|passCheckbutton"
+msgid "Password required"
+msgstr "Kennwort erforderlich"
+
+#. rG2VU
+#: connectionpage.ui
+msgctxt "connectionpage|userlabel"
+msgid "User Authentication"
+msgstr "Benutzer Authentifizierung"
+
+#. jtAGx
+#: connectionpage.ui
+msgctxt "connectionpage|javaDriverLabel"
+msgid "_JDBC driver class:"
+msgstr "_JDBC-Treiberklasse:"
+
+#. iv6Vk
+#: connectionpage.ui
+msgctxt "connectionpage|driverButton"
+msgid "Test Class"
+msgstr "Klasse testen"
+
+#. uzAzE
+#: connectionpage.ui
+msgctxt "connectionpage|JDBCLabel"
+msgid "JDBC Properties"
+msgstr "JDBC-Eigenschaften"
+
+#. UgDTb
+#: connectionpage.ui
+msgctxt "connectionpage|connectionButton"
+msgid "Test Connection"
+msgstr "Verbindung testen"
+
+#. 4wjAh
+#: copytablepage.ui
+msgctxt "copytablepage|defdata"
+msgid "De_finition and data"
+msgstr "Definition und D_aten"
+
+#. SVMDA
+#: copytablepage.ui
+msgctxt "copytablepage|def"
+msgid "Def_inition"
+msgstr "_Definition"
+
+#. MWhAZ
+#: copytablepage.ui
+msgctxt "copytablepage|view"
+msgid "A_s table view"
+msgstr "Als Tabellen_sicht"
+
+#. rhvDJ
+#: copytablepage.ui
+msgctxt "copytablepage|data"
+msgid "Append _data"
+msgstr "Daten a_nhängen"
+
+#. 8FEcc
+#: copytablepage.ui
+msgctxt "copytablepage|firstline"
+msgid "Use first _line as column names"
+msgstr "Erste _Zeile als Spaltennamen verwenden"
+
+#. XdVmL
+#: copytablepage.ui
+msgctxt "copytablepage|primarykey"
+msgid "Crea_te new field as primary key"
+msgstr "Neues Feld als Primärschlüssel _erstellen"
+
+#. 4NZf8
+#: copytablepage.ui
+msgctxt "copytablepage|keynamelabel"
+msgid "Name:"
+msgstr "Name:"
+
+#. 4KFNk
+#: copytablepage.ui
+msgctxt "copytablepage|infoLabel"
+msgid ""
+"Existing data fields can be set as primary key on the type formatting step "
+"(third page) of the wizard."
+msgstr ""
+"Existierende Datenfelder können beim Formatierungsschritt Typ (dritte Seite)"
+" des Assistenten als Primärschlüssel gesetzt werden."
+
+#. LqAEB
+#: copytablepage.ui
+msgctxt "copytablepage|label1"
+msgid "Options"
+msgstr "Optionen"
+
+#. gKEgD
+#: copytablepage.ui
+msgctxt "copytablepage|label2"
+msgid "Ta_ble name:"
+msgstr "_Tabellenname:"
+
+#. PUvDR
+#: dbaseindexdialog.ui
+msgctxt "dbaseindexdialog|DBaseIndexDialog"
+msgid "Indexes"
+msgstr "Indizes"
+
+#. ThFEm
+#: dbaseindexdialog.ui
+msgctxt "dbaseindexdialog|label1"
+msgid "_Table:"
+msgstr "_Tabelle:"
+
+#. yKLwM
+#: dbaseindexdialog.ui
+msgctxt "dbaseindexdialog|label3"
+msgid "T_able indexes"
+msgstr "T_abellenindizes"
+
+#. CeDzT
+#: dbaseindexdialog.ui
+msgctxt "dbaseindexdialog|label4"
+msgid "_Free indexes"
+msgstr "_Freie Indizes"
+
+#. DqAFB
+#: dbaseindexdialog.ui
+msgctxt "dbaseindexdialog|label2"
+msgid "Assignment"
+msgstr "Zuweisung"
+
+#. nLTCr
+#: dbasepage.ui
+msgctxt "dbasepage|charsetlabel"
+msgid "_Character set:"
+msgstr "_Zeichensatz:"
+
+#. CT9hn
+#: dbasepage.ui
+msgctxt "dbasepage|charsetheader"
+msgid "Data Conversion"
+msgstr "Datenkonvertierung"
+
+#. jH7nJ
+#: dbasepage.ui
+msgctxt "dbasepage|showDelRowsCheckbutton"
+msgid "Display deleted records as well"
+msgstr "Auch gelöschte Datensätze anzeigen"
+
+#. sD2dr
+#: dbasepage.ui
+msgctxt "dbasepage|specMessageLabel"
+msgid ""
+"Note: When deleted, and thus inactive, records are displayed, you will not "
+"be able to delete records from the data source."
+msgstr ""
+"Achtung: Wenn gelöschte und daher inaktive Datensätze angezeigt werden, "
+"können Sie keine Datensätze aus der Datenquelle löschen."
+
+#. fhzxC
+#: dbasepage.ui
+msgctxt "dbasepage|label1"
+msgid "Optional Settings"
+msgstr "Optionale Einstellungen"
+
+#. sLxfs
+#: dbasepage.ui
+msgctxt "dbasepage|indiciesButton"
+msgid "Indexes..."
+msgstr "Indizes..."
+
+#. JTECg
+#: dbwizconnectionpage.ui
+msgctxt "dbwizconnectionpage|helptext"
+msgid "label"
+msgstr "Beschriftung"
+
+#. hDn8s
+#: dbwizconnectionpage.ui
+msgctxt "dbwizconnectionpage|browseurllabel"
+msgid "Path to the dBASE files:"
+msgstr "Pfad zu den dBASE-Dateien:"
+
+#. AiYtB
+#: dbwizconnectionpage.ui
+msgctxt "dbwizconnectionpage|create"
+msgid "_Create New"
+msgstr "_Neu erstellen"
+
+#. PDgBn
+#: dbwizconnectionpage.ui
+msgctxt "dbwizconnectionpage|browse"
+msgid "_Browse…"
+msgstr "_Durchsuchen…"
+
+#. pXU9R
+#: dbwizmysqlintropage.ui
+msgctxt "dbwizmysqlintropage|label2"
+msgid ""
+"You can connect to a MySQL database using either ODBC or JDBC.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+"Bitte wählen Sie, ob die Verbindung zur MySQL Datenbank per ODBC oder JDBC hergestellt werden soll.\n"
+"Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
+
+#. QSqAG
+#: dbwizmysqlintropage.ui
+msgctxt "dbwizmysqlintropage|odbc"
+msgid "Connect using ODBC (Open Database Connectivity)"
+msgstr "Verbindung über ODBC (Open Database Connectivity)"
+
+#. Ysd73
+#: dbwizmysqlintropage.ui
+msgctxt "dbwizmysqlintropage|jdbc"
+msgid "Connect using JDBC (Java Database Connectivity)"
+msgstr "Verbindung über JDBC (Java Database Connectivity)"
+
+#. AW2n6
+#: dbwizmysqlintropage.ui
+msgctxt "dbwizmysqlintropage|directly"
+msgid "Connect directly"
+msgstr "Direkte Verbindung"
+
+#. C9PFE
+#: dbwizmysqlintropage.ui
+msgctxt "dbwizmysqlintropage|label1"
+msgid "How do you want to connect to your MySQL database?"
+msgstr "Wie möchten Sie sich mit Ihrer Datenbank verbinden?"
+
+#. pdEL5
+#: dbwizmysqlintropage.ui
+msgctxt "dbwizmysqlintropage|header"
+msgid "Set Up a Connection to a MySQL Database"
+msgstr "Verbindung zu einer MySQL-Datenbank einrichten"
+
+#. E8ACc
+#: dbwizmysqlnativepage.ui
+msgctxt "dbwizmysqlnativepage|helptext"
+msgid "Please enter the required information to connect to a MySQL database."
+msgstr ""
+"Bitte geben Sie die benötigten Informationen ein, um eine Verbindung zu "
+"einer MySQL-Datenbank herzustellen."
+
+#. 2HCAG
+#: dbwizmysqlnativepage.ui
+msgctxt "dbwizmysqlnativepage|header"
+msgid "Set Up a Connection to a MySQL Database"
+msgstr "Verbindung zu einer MySQL-Datenbank einrichten"
+
+#. AEty7
+#: dbwizspreadsheetpage.ui
+msgctxt "dbwizspreadsheetpage|browse"
+msgid "Browse"
+msgstr "Durchsuchen"
+
+#. eEY69
+#: dbwizspreadsheetpage.ui
+msgctxt "dbwizspreadsheetpage|create"
+msgid "Create New"
+msgstr "Neu erstellen"
+
+#. iycse
+#: dbwizspreadsheetpage.ui
+msgctxt "dbwizspreadsheetpage|passwordrequired"
+msgid "_Password required"
+msgstr "_Kennwort erforderlich"
+
+#. TQ6pX
+#: dbwiztextpage.ui
+msgctxt "dbwiztextpage|browse"
+msgid "Browse"
+msgstr "Durchsuchen"
+
+#. cFQNG
+#: dbwiztextpage.ui
+msgctxt "dbwiztextpage|create"
+msgid "Create New"
+msgstr "Neu erstellen"
+
+#. hKFLd
+#: deleteallrowsdialog.ui
+msgctxt "deleteallrowsdialog|DeleteAllRowsDialog"
+msgid ""
+"You are trying to delete all the columns in the table. A table cannot exist "
+"without columns. Should the table be deleted from the database? If not, the "
+"table will remain unchanged."
+msgstr ""
+"Sie versuchen alle Spalten der Tabelle zu löschen. Ohne Spalten kann eine "
+"Tabelle nicht bestehen. Soll die Tabelle aus der Datenbank gelöscht werden? "
+"Falls nicht, bleibt die Tabelle unverändert."
+
+#. xXvq5
+#: designsavemodifieddialog.ui
+msgctxt "designsavemodifieddialog|DesignSaveModifiedDialog"
+msgid "Do you want to save the changes?"
+msgstr "Möchten Sie die Änderungen speichern?"
+
+#. GVoxS
+#: designsavemodifieddialog.ui
+msgctxt "designsavemodifieddialog|DesignSaveModifiedDialog"
+msgid "The relation design has been changed."
+msgstr "Die Beziehungen wurden geändert."
+
+#. ebrWc
+#: directsqldialog.ui
+msgctxt "directsqldialog|DirectSQLDialog"
+msgid "Execute SQL Statement"
+msgstr "SQL-Anweisung ausführen"
+
+#. QCHBC
+#: directsqldialog.ui
+msgctxt "directsqldialog|sql_label"
+msgid "_Command to execute:"
+msgstr "A_uszuführendes Kommando:"
+
+#. gpXeL
+#: directsqldialog.ui
+msgctxt "directsqldialog|showoutput"
+msgid "_Show output of \"select\" statements"
+msgstr "Aus_gabe der \"select\"-Anweisung anzeigen"
+
+#. xJT2B
+#: directsqldialog.ui
+msgctxt "directsqldialog|execute"
+msgid "_Execute"
+msgstr "Au_sführen"
+
+#. FoYMP
+#: directsqldialog.ui
+msgctxt "directsqldialog|sqlhistory_label"
+msgid "_Previous commands:"
+msgstr "_Vorherige Befehle:"
+
+#. aqBRi
+#: directsqldialog.ui
+msgctxt "directsqldialog|label1"
+msgid "SQL Command"
+msgstr "SQL-Befehl"
+
+#. iUSnR
+#: directsqldialog.ui
+msgctxt "directsqldialog|label2"
+msgid "Status"
+msgstr "Status"
+
+#. DYZA5
+#: directsqldialog.ui
+msgctxt "directsqldialog|label3"
+msgid "Output"
+msgstr "Ausgabe"
+
+#. KUVUc
+#: fielddialog.ui
+msgctxt "fielddialog|FieldDialog"
+msgid "Field Format"
+msgstr "Feldformatierung"
+
+#. WhGAL
+#: fielddialog.ui
+msgctxt "fielddialog|format"
+msgid "Format"
+msgstr "Format"
+
+#. MvFHK
+#: fielddialog.ui
+msgctxt "fielddialog|alignment"
+msgid "Alignment"
+msgstr "Ausrichtung"
+
+#. M2WyU
+#: fielddialog.ui
+msgctxt "fielddialog|alttitle"
+msgid "Table Format"
+msgstr "Tabellenformatierung"
+
+#. nTFUa
+#: finalpagewizard.ui
+msgctxt "finalpagewizard|headerText"
+msgid "Decide How to Proceed After Saving the Database"
+msgstr "Bitte entscheiden Sie, wie Sie fortfahren möchten"
+
+#. 8F6gE
+#: finalpagewizard.ui
+msgctxt "finalpagewizard|helpText"
+msgid "Do you want the wizard to register the database in %PRODUCTNAME?"
+msgstr "Soll der Assistent die Datenbank in %PRODUCTNAME anmelden?"
+
+#. KheM5
+#: finalpagewizard.ui
+msgctxt "finalpagewizard|yesregister"
+msgid "_Yes, register the database for me"
+msgstr "_Ja, die Datenbank soll angemeldet werden"
+
+#. wLXis
+#: finalpagewizard.ui
+msgctxt "finalpagewizard|noregister"
+msgid "N_o, do not register the database"
+msgstr "_Nein, die Datenbank soll nicht angemeldet werden"
+
+#. 3AhL3
+#: finalpagewizard.ui
+msgctxt "finalpagewizard|additionalText"
+msgid "After the database file has been saved, what do you want to do?"
+msgstr "Wie möchten Sie fortfahren, nachdem die Datenbank gespeichert wurde?"
+
+#. NCBKA
+#: finalpagewizard.ui
+msgctxt "finalpagewizard|openediting"
+msgid "Open the database for editing"
+msgstr "Die Datenbank zum Bearbeiten öffnen"
+
+#. C8hgG
+#: finalpagewizard.ui
+msgctxt "finalpagewizard|usewizard"
+msgid "Create tables using the table wizard"
+msgstr "Eine Tabelle mit Hilfe des Tabellen-Assistenten erstellen"
+
+#. JpPEA
+#: finalpagewizard.ui
+msgctxt "finalpagewizard|finishText"
+msgid "Click 'Finish' to save the database."
+msgstr "Klicken Sie auf 'Fertigstellen', um die Datenbank zu speichern."
+
+#. eUk5Q
+#: generalpagedialog.ui
+msgctxt "generalpagedialog|datasourceTypePre"
+msgid ""
+"Select the type of database to which you want to establish a connection."
+msgstr ""
+"Bitte wählen Sie den Typ der Datenbank aus, zu der Sie eine Verbindung "
+"aufgebaut möchten."
+
+#. YBtFA
+#: generalpagedialog.ui
+msgctxt "generalpagedialog|datasourceTypeLabel"
+msgid "Database _type:"
+msgstr "Datenbank_typ:"
+
+#. CBhUu
+#: generalpagedialog.ui
+msgctxt "generalpagedialog|datasourceTypeHelp"
+msgid ""
+"On the following pages, you can make detailed settings for the connection.\n"
+"\n"
+"The new settings you make will overwrite your existing settings."
+msgstr ""
+"Auf den nächsten Seiten können Sie dann detaillierte Verbindungs-Einstellungen vornehmen.\n"
+"\n"
+"Bitte beachten Sie dabei, dass diese neuen Einstellungen Ihre bestehenden überschreiben."
+
+#. bWHAD
+#: generalpagewizard.ui
+msgctxt "generalpagewizard|headerText"
+msgid "Welcome to the %PRODUCTNAME Database Wizard"
+msgstr "Willkommen beim %PRODUCTNAME Datenbank-Assistenten"
+
+#. DSNWP
+#: generalpagewizard.ui
+msgctxt "generalpagewizard|helpText"
+msgid ""
+"Use the Database Wizard to create a new database, open an existing database "
+"file, or connect to a database stored on a server."
+msgstr ""
+"Benutzen Sie den Datenbank-Assistenten, um eine neue Datenbank anzulegen, "
+"eine bestehende Datenbankdatei zu öffnen oder eine Verbindung zu einer "
+"Server-Datenbank herzustellen."
+
+#. KxZny
+#: generalpagewizard.ui
+msgctxt "generalpagewizard|sourceTypeHeader"
+msgid "What do you want to do?"
+msgstr "Was möchten Sie tun?"
+
+#. M3vFA
+#: generalpagewizard.ui
+msgctxt "generalpagewizard|createDatabase"
+msgid "Create a n_ew database"
+msgstr "Eine n_eue Datenbank erstellen"
+
+#. BRSfR
+#: generalpagewizard.ui
+msgctxt "generalpagewizard|embeddeddbLabel"
+msgid "_Embedded database:"
+msgstr "_Eingebettete Datenbank:"
+
+#. S2RBe
+#: generalpagewizard.ui
+msgctxt "generalpagewizard|openExistingDatabase"
+msgid "Open an existing database _file"
+msgstr "_Bestehende Datenbankdatei öffnen"
+
+#. dfae2
+#: generalpagewizard.ui
+msgctxt "generalpagewizard|docListLabel"
+msgid "_Recently used:"
+msgstr "Zu_letzt benutzt:"
+
+#. dVAEy
+#: generalpagewizard.ui
+msgctxt "generalpagewizard|openDatabase"
+msgid "Open"
+msgstr "Öffnen"
+
+#. cKpTp
+#: generalpagewizard.ui
+msgctxt "generalpagewizard|connectDatabase"
+msgid "Connect to an e_xisting database"
+msgstr "_Verbindung zu einer bestehenden Datenbank herstellen"
+
+#. DQvKi
+#: generalspecialjdbcdetailspage.ui
+msgctxt "generalspecialjdbcdetailspage|label2"
+msgid "_Host name:"
+msgstr "_Rechnername:"
+
+#. NmRqx
+#: generalspecialjdbcdetailspage.ui
+msgctxt "generalspecialjdbcdetailspage|label3"
+msgid "_Port number:"
+msgstr "_Portnummer:"
+
+#. JjYBA
+#: generalspecialjdbcdetailspage.ui
+msgctxt "generalspecialjdbcdetailspage|socketLabel"
+msgid "Socket:"
+msgstr "Socket:"
+
+#. CYJEF
+#: generalspecialjdbcdetailspage.ui
+msgctxt "generalspecialjdbcdetailspage|driverClassLabel"
+msgid "MySQL JDBC d_river class:"
+msgstr "MySQL JDBC-_Treiberklasse:"
+
+#. QDQ3G
+#: generalspecialjdbcdetailspage.ui
+msgctxt "generalspecialjdbcdetailspage|testDriverClassButton"
+msgid "Test Class"
+msgstr "Klasse testen"
+
+#. DNTGo
+#: generalspecialjdbcdetailspage.ui
+msgctxt "generalspecialjdbcdetailspage|label1"
+msgid "Connection Settings"
+msgstr "Verbindungseinstellungen"
+
+#. yPG6n
+#: generalspecialjdbcdetailspage.ui
+msgctxt "generalspecialjdbcdetailspage|charsetlabel"
+msgid "_Character set:"
+msgstr "_Zeichensatz:"
+
+#. 3acBr
+#: generalspecialjdbcdetailspage.ui
+msgctxt "generalspecialjdbcdetailspage|charsetheader"
+msgid "Data Conversion"
+msgstr "Datenkonvertierung"
+
+#. hLDiy
+#: generatedvaluespage.ui
+msgctxt "generatedvaluespage|autoretrieve"
+msgid "Re_trieve generated values"
+msgstr "_Generierte Werte berücksichtigen"
+
+#. 3aTBK
+#: generatedvaluespage.ui
+msgctxt "generatedvaluespage|statementft"
+msgid "_Auto-increment statement:"
+msgstr "_Generierte Werte berücksichtigen:"
+
+#. o7FfB
+#: generatedvaluespage.ui
+msgctxt "generatedvaluespage|queryft"
+msgid "_Query of generated values:"
+msgstr "Abfrage der generierten _Werte:"
+
+#. oZ7DF
+#: generatedvaluespage.ui
+msgctxt "generatedvaluespage|label1"
+msgid "Settings"
+msgstr "Einstellungen"
+
+#. WKPaP
+#: indexdesigndialog.ui
+msgctxt "indexdesigndialog|IndexDesignDialog"
+msgid "Indexes"
+msgstr "Indizes"
+
+#. pYSUo
+#: indexdesigndialog.ui
+msgctxt "indexdesigndialog|ID_INDEX_NEW"
+msgid "New Index"
+msgstr "Neuer Index"
+
+#. xvFrq
+#: indexdesigndialog.ui
+msgctxt "indexdesigndialog|ID_INDEX_DROP"
+msgid "Delete Current Index"
+msgstr "Aktuellen Index löschen"
+
+#. bWECV
+#: indexdesigndialog.ui
+msgctxt "indexdesigndialog|ID_INDEX_RENAME"
+msgid "Rename Current Index"
+msgstr "Aktuellen Index umbenennen"
+
+#. Bqozz
+#: indexdesigndialog.ui
+msgctxt "indexdesigndialog|ID_INDEX_SAVE"
+msgid "Save Current Index"
+msgstr "Aktuellen Index speichern"
+
+#. Dxbbx
+#: indexdesigndialog.ui
+msgctxt "indexdesigndialog|ID_INDEX_RESET"
+msgid "Reset Current Index"
+msgstr "Aktuellen Index zurücksetzen"
+
+#. RqkCS
+#: indexdesigndialog.ui
+msgctxt "indexdesigndialog|DESC_LABEL"
+msgid "Index identifier:"
+msgstr "Indexbezeichner:"
+
+#. 5gKPi
+#: indexdesigndialog.ui
+msgctxt "indexdesigndialog|UNIQUE"
+msgid "_Unique"
+msgstr "_Eindeutig"
+
+#. GDL3o
+#: indexdesigndialog.ui
+msgctxt "indexdesigndialog|FIELDS_LABEL"
+msgid "Fields:"
+msgstr "Felder:"
+
+#. CzG9d
+#: indexdesigndialog.ui
+msgctxt "indexdesigndialog|INDEX_DETAILS"
+msgid "Index Details"
+msgstr "Index-Details"
+
+#. XpEhE
+#: jdbcconnectionpage.ui
+msgctxt "jdbcconnectionpage|header"
+msgid "Set Up a Connection to a JDBC Database"
+msgstr "Datenbankverbindung per JDBC einrichten"
+
+#. PYDNi
+#: jdbcconnectionpage.ui
+msgctxt "jdbcconnectionpage|helptext"
+msgid ""
+"Please enter the required information to connect to a JDBC database. Please "
+"contact your system administrator if you are unsure about the following "
+"settings."
+msgstr ""
+"Bitte geben Sie die benötigten Informationen ein, um per JDBC eine "
+"Verbindung zu einer Datenbank herzustellen. Fragen Sie Ihren "
+"Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher "
+"sind."
+
+#. E4598
+#: jdbcconnectionpage.ui
+msgctxt "jdbcconnectionpage|browseurllabel"
+msgid "Path to the dBASE files:"
+msgstr "Pfad zu den dBASE-Dateien:"
+
+#. WuCxz
+#: jdbcconnectionpage.ui
+msgctxt "jdbcconnectionpage|create"
+msgid "_Create New"
+msgstr "_Neu erstellen"
+
+#. D3Tg7
+#: jdbcconnectionpage.ui
+msgctxt "jdbcconnectionpage|browse"
+msgid "_Browse…"
+msgstr "_Durchsuchen…"
+
+#. DDHsx
+#: jdbcconnectionpage.ui
+msgctxt "jdbcconnectionpage|jdbcLabel"
+msgid "JDBC d_river class:"
+msgstr "JDBC _Treiberklasse:"
+
+#. SfoBB
+#: jdbcconnectionpage.ui
+msgctxt "jdbcconnectionpage|jdbcButton"
+msgid "_Test Class"
+msgstr "K_lasse testen"
+
+#. hNXMZ
+#: joindialog.ui
+msgctxt "joindialog|JoinDialog"
+msgid "Join Properties"
+msgstr "Verbundeigenschaften"
+
+#. YUCgu
+#: joindialog.ui
+msgctxt "joindialog|label1"
+msgid "Tables Involved"
+msgstr "Beteiligte Tabellen"
+
+#. kbsrd
+#: joindialog.ui
+msgctxt "joindialog|label2"
+msgid "Fields Involved"
+msgstr "Beteiligte Felder"
+
+#. C3Avj
+#: joindialog.ui
+msgctxt "joindialog|label5"
+msgid "_Type:"
+msgstr "_Typ:"
+
+#. GTvPb
+#: joindialog.ui
+msgctxt "joindialog|natural"
+msgid "Natural"
+msgstr "Natürlich"
+
+#. UkuPe
+#: joindialog.ui
+msgctxt "joindialog|label6"
+msgid "Options"
+msgstr "Optionen"
+
+#. RAXzW
+#: joindialog.ui
+msgctxt "joindialog|liststore1"
+msgid "Inner join"
+msgstr "Innerer Verbund"
+
+#. ZEaHj
+#: joindialog.ui
+msgctxt "joindialog|liststore1"
+msgid "Left join"
+msgstr "Linker Verbund"
+
+#. y9EMH
+#: joindialog.ui
+msgctxt "joindialog|liststore1"
+msgid "Right join"
+msgstr "Rechter Verbund"
+
+#. G57Ed
+#: joindialog.ui
+msgctxt "joindialog|liststore1"
+msgid "Full (outer) join"
+msgstr "Voller (äußerer) Verbund"
+
+#. vwzCL
+#: joindialog.ui
+msgctxt "joindialog|liststore1"
+msgid "Cross join"
+msgstr "Kreuzverbund"
+
+#. urRcL
+#: jointablemenu.ui
+msgctxt "jointablemenu|delete"
+msgid "_Delete"
+msgstr "_Löschen"
+
+#. 2WDtr
+#: joinviewmenu.ui
+msgctxt "joinviewmenu|delete"
+msgid "_Delete"
+msgstr "_Löschen"
+
+#. phaLD
+#: joinviewmenu.ui
+msgctxt "joinviewmenu|edit"
+msgid "Edit..."
+msgstr "Bearbeiten..."
+
+#. KF2HS
+#: keymenu.ui
+msgctxt "keymenu|primarykey"
+msgid "Primary Key"
+msgstr "Primärschlüssel"
+
+#. GNYro
+#: ldapconnectionpage.ui
+msgctxt "ldapconnectionpage|header"
+msgid "Set Up a Connection to an LDAP Directory"
+msgstr "Verbindung zu einem LDAP-Verzeichnis einrichten"
+
+#. jCxP3
+#: ldapconnectionpage.ui
+msgctxt "ldapconnectionpage|helpLabel"
+msgid ""
+"Please enter the required information to connect to an LDAP directory. "
+"Please contact your system administrator if you are unsure about the "
+"following settings."
+msgstr ""
+"Bitte geben Sie die benötigten Information ein, um eine Verbindung zu einem "
+"LDAP-Verzeichnis herzustellen. Fragen Sie Ihren Systemadministrator, wenn "
+"Sie sich bei den folgenden Einstellungen unsicher sind."
+
+#. YCmvx
+#: ldapconnectionpage.ui
+msgctxt "ldapconnectionpage|hostNameLabel"
+msgid "_Server:"
+msgstr "_Server:"
+
+#. Xp6uQ
+#: ldapconnectionpage.ui
+msgctxt "ldapconnectionpage|portNumLabel"
+msgid "_Port number:"
+msgstr "_Portnummer:"
+
+#. Gcxv9
+#: ldapconnectionpage.ui
+msgctxt "ldapconnectionpage|portNumDefLabel"
+msgid "Default: 389"
+msgstr "Standard: 389"
+
+#. zAZYs
+#: ldapconnectionpage.ui
+msgctxt "ldapconnectionpage|baseDNLabel"
+msgid "Base _DN:"
+msgstr "Base _DN:"
+
+#. FBvM5
+#: ldapconnectionpage.ui
+msgctxt "ldapconnectionpage|useSSLCheckbutton"
+msgid "Use _secure connection (SSL)"
+msgstr "_Sichere Verbindung verwenden (SSL)"
+
+#. UyMMA
+#: ldappage.ui
+msgctxt "ldappage|label1"
+msgid "_Base DN:"
+msgstr "_Base DN:"
+
+#. Suvjj
+#: ldappage.ui
+msgctxt "ldappage|useSSLCheckbutton"
+msgid "Use secure connection (SSL)"
+msgstr "Sichere Verbindung verwenden (SSL)"
+
+#. uYkAF
+#: ldappage.ui
+msgctxt "ldappage|label2"
+msgid "_Port number:"
+msgstr "_Portnummer:"
+
+#. UMj7r
+#: ldappage.ui
+msgctxt "ldappage|label3"
+msgid "Maximum number of _records:"
+msgstr "Maximale Anzahl an _Datensätzen:"
+
+#. azHuR
+#: ldappage.ui
+msgctxt "ldappage|charsetheader"
+msgid "Connection Settings"
+msgstr "Verbindungseinstellungen"
+
+#. XU6Jp
+#: migratepage.ui
+msgctxt "migratepage|label1"
+msgid "Migration Progress"
+msgstr "Migrationsfortschritt"
+
+#. hXkDY
+#: migratepage.ui
+msgctxt "migratepage|count"
+msgid ""
+"The database document contains $forms$ form(s) and $reports$ report(s), "
+"which are currently being processed:"
+msgstr ""
+"Das Datenbankdokument enthält $forms$ Formular(e) und $reports$ Bericht(e), "
+"die gerade verarbeitet werden:"
+
+#. wikhD
+#: migratepage.ui
+msgctxt "migratepage|done"
+msgid ""
+"All forms and reports have been successfully processed. Press 'Next' to show"
+" a detailed summary."
+msgstr ""
+"Alle Formulare und Berichte wurden erfolgreich verarbeitet. Klicken Sie auf "
+"'Weiter', um eine Zusammenfassung angezeigt zu bekommen."
+
+#. PeCGL
+#: migratepage.ui
+msgctxt "migratepage|label4"
+msgid "Overall progress:"
+msgstr "Gesamtfortschritt:"
+
+#. sEzFD
+#: migratepage.ui
+msgctxt "migratepage|overall"
+msgid "document $current$ of $overall$"
+msgstr "Dokument $current$ von $overall$"
+
+#. P3Mto
+#: migratepage.ui
+msgctxt "migratepage|label6"
+msgid "Current progress:"
+msgstr "Aktueller Fortschritt:"
+
+#. ubb9X
+#: migratepage.ui
+msgctxt "migratepage|label5"
+msgid "Current object:"
+msgstr "Aktuelles Objekt:"
+
+#. TWFAB
+#: mysqlnativepage.ui
+msgctxt "mysqlnativepage|connectionheader"
+msgid "Connection Settings"
+msgstr "Verbindungseinstellungen"
+
+#. 2sdZK
+#: mysqlnativepage.ui
+msgctxt "mysqlnativepage|usernamelabel"
+msgid "_User name:"
+msgstr "_Benutzername:"
+
+#. oz8Rm
+#: mysqlnativepage.ui
+msgctxt "mysqlnativepage|passwordrequired"
+msgid "Password required"
+msgstr "Kennwort erforderlich"
+
+#. DsZGv
+#: mysqlnativepage.ui
+msgctxt "mysqlnativepage|userheader"
+msgid "User Authentication"
+msgstr "Benutzer Authentifizierung"
+
+#. 8SNx7
+#: mysqlnativepage.ui
+msgctxt "mysqlnativepage|charsetlabel"
+msgid "_Character set:"
+msgstr "_Zeichensatz:"
+
+#. VP2sP
+#: mysqlnativepage.ui
+msgctxt "mysqlnativepage|charsetheader"
+msgid "Data Conversion"
+msgstr "Datenkonvertierung"
+
+#. 2zNgz
+#: mysqlnativesettings.ui
+msgctxt "mysqlnativesettings|dbnamelabel"
+msgid "_Database name:"
+msgstr "Datenbank_name:"
+
+#. CKY7R
+#: mysqlnativesettings.ui
+msgctxt "mysqlnativesettings|hostport"
+msgid "Se_rver/port"
+msgstr "Se_rver / Port"
+
+#. RVEr2
+#: mysqlnativesettings.ui
+msgctxt "mysqlnativesettings|serverlabel"
+msgid "_Server:"
+msgstr "_Server:"
+
+#. DH5Eg
+#: mysqlnativesettings.ui
+msgctxt "mysqlnativesettings|portlabel"
+msgid "_Port:"
+msgstr "_Port:"
+
+#. gFnmA
+#: mysqlnativesettings.ui
+msgctxt "mysqlnativesettings|defaultport"
+msgid "Default: 3306"
+msgstr "Default: 3306"
+
+#. MQVfg
+#: mysqlnativesettings.ui
+msgctxt "mysqlnativesettings|socketlabel"
+msgid "So_cket:"
+msgstr "So_cket:"
+
+#. 2qXzD
+#: mysqlnativesettings.ui
+msgctxt "mysqlnativesettings|namedpipelabel"
+msgid "Named p_ipe:"
+msgstr "Named p_ipe:"
+
+#. CzRyx
+#: namematchingpage.ui
+msgctxt "namematchingpage|all"
+msgid "_All"
+msgstr "_Alle"
+
+#. db6rw
+#: namematchingpage.ui
+msgctxt "namematchingpage|none"
+msgid "Non_e"
+msgstr "_Keine"
+
+#. yScg2
+#: namematchingpage.ui
+msgctxt "namematchingpage|leftlabel"
+msgid "Source table: "
+msgstr "Quelltabelle: "
+
+#. SCMEA
+#: namematchingpage.ui
+msgctxt "namematchingpage|rightlabel"
+msgid "Destination table: "
+msgstr "Zieltabelle: "
+
+#. GnhfA
+#: odbcpage.ui
+msgctxt "odbcpage|charsetlabel"
+msgid "_Character set:"
+msgstr "_Zeichensatz:"
+
+#. ebokD
+#: odbcpage.ui
+msgctxt "odbcpage|charsetheader"
+msgid "Data Conversion"
+msgstr "Datenkonvertierung"
+
+#. doAQr
+#: odbcpage.ui
+msgctxt "odbcpage|optionslabel"
+msgid "ODBC _options:"
+msgstr "_ODBC-Optionen:"
+
+#. siTp3
+#: odbcpage.ui
+msgctxt "odbcpage|useCatalogCheckbutton"
+msgid "Use catalog for file-based databases"
+msgstr "Katalog bei dateibasierten Datenbanken verwenden"
+
+#. GMUZg
+#: odbcpage.ui
+msgctxt "odbcpage|label1"
+msgid "Optional Settings"
+msgstr "Optionale Einstellungen"
+
+#. zjHDt
+#: parametersdialog.ui
+msgctxt "parametersdialog|Parameters"
+msgid "Parameter Input"
+msgstr "Parameter-Eingabe"
+
+#. 64gyj
+#: parametersdialog.ui
+msgctxt "parametersdialog|label2"
+msgid "_Value:"
+msgstr "W_ert:"
+
+#. BqYRw
+#: parametersdialog.ui
+msgctxt "parametersdialog|next"
+msgid "_Next"
+msgstr "_Weiter"
+
+#. xirKR
+#: parametersdialog.ui
+msgctxt "parametersdialog|label1"
+msgid "_Parameters"
+msgstr "_Parameter"
+
+#. cJozC
+#: password.ui
+msgctxt "password|PasswordDialog"
+msgid "Change Password"
+msgstr "Kennwort ändern"
+
+#. GDZAN
+#: password.ui
+msgctxt "password|label2"
+msgid "Old p_assword:"
+msgstr "Altes K_ennwort:"
+
+#. tJbEC
+#: password.ui
+msgctxt "password|label3"
+msgid "_Password:"
+msgstr "_Kennwort:"
+
+#. hWJs6
+#: password.ui
+msgctxt "password|label4"
+msgid "_Confirm password:"
+msgstr "Kennwort _bestätigen:"
+
+#. 8t7zU
+#: password.ui
+msgctxt "password|label1"
+msgid "User “$name$: $”"
+msgstr "Benutzer „$name$: $”"
+
+#. 3Dvb3
+#: preparepage.ui
+msgctxt "preparepage|label1"
+msgid "Welcome to the Database Macro Migration Wizard"
+msgstr "Willkommen beim Migrationsassistenten für Datenbankmakros"
+
+#. BThGv
+#: preparepage.ui
+msgctxt "preparepage|label2"
+msgid ""
+"This wizard will guide you through the task of migrating your macros.\n"
+"\n"
+"After you finished it, all macros which were formerly embedded into the forms and reports of the current database document will have been moved to the document itself. In this course, libraries will be renamed as needed.\n"
+"\n"
+"If your forms and reports contain references to those macros, they will be adjusted, where possible.\n"
+"\n"
+"Before the migration can start, all forms, reports, queries and tables belonging to the document must be closed. Press 'Next' to do so."
+msgstr ""
+"Dieser Assistent führt Sie durch die Migration Ihrer Makros.\n"
+"\n"
+"Während der Migration werden alle Makros, die bisher in Formularen und Berichten eingebettet waren, in das Datenbankdokument verschoben. Falls nötig, werden Bibliotheken dabei umbenannt.\n"
+"\n"
+"Sollten Ihre Formulare und Berichte Verweise auf diese Makros enthalten, werden diese soweit möglich angepasst.\n"
+"\n"
+"Alle Formulare, Berichte, Abfragen und Tabellen müssen geschlossen werden, bevor die Migration gestartet werden kann. Klicken Sie auf 'Weiter', um die Objekte zu schließen."
+
+#. pBXs5
+#: preparepage.ui
+msgctxt "preparepage|closedocerror"
+msgid ""
+"Not all objects could be closed. Please close them manually, and re-start "
+"the wizard."
+msgstr ""
+"Einige Objekte konnten nicht geschlossen werden. Bitte schließen Sie diese "
+"manuell und starten Sie den Assistenten danach erneut."
+
+#. 9sAsA
+#: querycolmenu.ui
+msgctxt "querycolmenu|width"
+msgid "Column _Width..."
+msgstr "Spalten_breite..."
+
+#. JBFyN
+#: querycolmenu.ui
+msgctxt "querycolmenu|delete"
+msgid "_Delete"
+msgstr "_Löschen"
+
+#. FeWU3
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|QueryFilterDialog"
+msgid "Standard Filter"
+msgstr "Standardfilter"
+
+#. Vj95w
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|label2"
+msgid "Operator"
+msgstr "Verknüpfung"
+
+#. epkLc
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|label5"
+msgid "Field name"
+msgstr "Feldname"
+
+#. Y5DBo
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|label6"
+msgid "Condition"
+msgstr "Bedingung"
+
+#. DdcwC
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|field1"
+msgid "- none -"
+msgstr "- keiner -"
+
+#. 57zBE
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|cond1"
+msgid "="
+msgstr "="
+
+#. GGX3G
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|cond1"
+msgid "<>"
+msgstr "<>"
+
+#. k5DCL
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|cond1"
+msgid "<"
+msgstr "<"
+
+#. FAAzh
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|cond1"
+msgid "<="
+msgstr "<="
+
+#. Qzo9n
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|cond1"
+msgid ">"
+msgstr ">"
+
+#. H4pEw
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|cond1"
+msgid ">="
+msgstr ">="
+
+#. PWqBz
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|cond1"
+msgid "like"
+msgstr "wie"
+
+#. RDy6G
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|cond1"
+msgid "not like"
+msgstr "nicht wie"
+
+#. 2qvuA
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|cond1"
+msgid "null"
+msgstr "leer"
+
+#. 4znh7
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|cond1"
+msgid "not null"
+msgstr "nicht leer"
+
+#. A8jis
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|field2"
+msgid "- none -"
+msgstr "- keiner -"
+
+#. FdHSG
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|field3"
+msgid "- none -"
+msgstr "- keiner -"
+
+#. tBd3g
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|label7"
+msgid "Value"
+msgstr "Wert"
+
+#. PFZ8z
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|op2"
+msgid "AND"
+msgstr "UND"
+
+#. pQza3
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|op2"
+msgid "OR"
+msgstr "ODER"
+
+#. EaXyP
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|op3"
+msgid "AND"
+msgstr "UND"
+
+#. DV78L
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|op3"
+msgid "OR"
+msgstr "ODER"
+
+#. SESZq
+#: queryfilterdialog.ui
+msgctxt "queryfilterdialog|label1"
+msgid "Criteria"
+msgstr "Kriterien"
+
+#. jFD4L
+#: queryfuncmenu.ui
+msgctxt "queryfuncmenu|functions"
+msgid "Functions"
+msgstr "Funktionen"
+
+#. PyQCz
+#: queryfuncmenu.ui
+msgctxt "queryfuncmenu|tablename"
+msgid "Table Name"
+msgstr "Tabellenname"
+
+#. zV9Fb
+#: queryfuncmenu.ui
+msgctxt "queryfuncmenu|alias"
+msgid "Alias"
+msgstr "Aliasname"
+
+#. V3RBW
+#: queryfuncmenu.ui
+msgctxt "queryfuncmenu|distinct"
+msgid "Distinct Values"
+msgstr "Eindeutige Werte"
+
+#. peEt4
+#: querypropertiesdialog.ui
+msgctxt "querypropertiesdialog|QueryPropertiesDialog"
+msgid "Query Properties"
+msgstr "Abfrageeigenschaften"
+
+#. fyogK
+#: querypropertiesdialog.ui
+msgctxt "querypropertiesdialog|limit-label"
+msgid "Limit:"
+msgstr "Limit:"
+
+#. 2D6E2
+#: querypropertiesdialog.ui
+msgctxt "querypropertiesdialog|distinct"
+msgid "Yes"
+msgstr "Ja"
+
+#. rErxt
+#: querypropertiesdialog.ui
+msgctxt "querypropertiesdialog|nondistinct"
+msgid "No"
+msgstr "Nein"
+
+#. P9quF
+#: querypropertiesdialog.ui
+msgctxt "querypropertiesdialog|distinctvalues"
+msgid "Distinct values:"
+msgstr "Eindeutige Werte:"
+
+#. gLFLt
+#: relationdialog.ui
+msgctxt "relationdialog|RelationDialog"
+msgid "Relations"
+msgstr "Relationen"
+
+#. DEGM2
+#: relationdialog.ui
+msgctxt "relationdialog|label1"
+msgid "Tables Involved"
+msgstr "Beteiligte Tabellen"
+
+#. 87WEB
+#: relationdialog.ui
+msgctxt "relationdialog|label2"
+msgid "Fields Involved"
+msgstr "Beteiligte Felder"
+
+#. pf4b4
+#: relationdialog.ui
+msgctxt "relationdialog|addaction"
+msgid "_No action"
+msgstr "_Keine Aktion"
+
+#. uZGGW
+#: relationdialog.ui
+msgctxt "relationdialog|addcascade"
+msgid "_Update cascade"
+msgstr "K_ask. aktualisieren"
+
+#. AuTpa
+#: relationdialog.ui
+msgctxt "relationdialog|addnull"
+msgid "_Set null"
+msgstr "_Null setzen"
+
+#. xNWHg
+#: relationdialog.ui
+msgctxt "relationdialog|adddefault"
+msgid "Set _default"
+msgstr "_Standard setzen"
+
+#. SfKFG
+#: relationdialog.ui
+msgctxt "relationdialog|label3"
+msgid "Update Options"
+msgstr "Optionen aktualisieren"
+
+#. wnvZa
+#: relationdialog.ui
+msgctxt "relationdialog|delaction"
+msgid "_No action"
+msgstr "_Keine Aktion"
+
+#. 3BAEe
+#: relationdialog.ui
+msgctxt "relationdialog|delcascade"
+msgid "Delete _cascade"
+msgstr "Ka_sk. löschen"
+
+#. mwt6P
+#: relationdialog.ui
+msgctxt "relationdialog|delnull"
+msgid "_Set null"
+msgstr "_Null setzen"
+
+#. hZGB8
+#: relationdialog.ui
+msgctxt "relationdialog|deldefault"
+msgid "Set _default"
+msgstr "_Standard setzen"
+
+#. LLcup
+#: relationdialog.ui
+msgctxt "relationdialog|label4"
+msgid "Delete Options"
+msgstr "Löschoptionen"
+
+#. 2Cb2G
+#: relationdialog.ui
+msgctxt "relationdialog|liststore1"
+msgid "Inner join"
+msgstr "Innerer Verbund"
+
+#. nhWNP
+#: relationdialog.ui
+msgctxt "relationdialog|liststore1"
+msgid "Left join"
+msgstr "Linker Verbund"
+
+#. TD2LX
+#: relationdialog.ui
+msgctxt "relationdialog|liststore1"
+msgid "Right join"
+msgstr "Rechter Verbund"
+
+#. yLDPS
+#: relationdialog.ui
+msgctxt "relationdialog|liststore1"
+msgid "Full (outer) join"
+msgstr "Voller (äußerer) Verbund"
+
+#. UYDBa
+#: relationdialog.ui
+msgctxt "relationdialog|liststore1"
+msgid "Cross join"
+msgstr "Kreuzverbund"
+
+#. ATWGG
+#: rowheightdialog.ui
+msgctxt "rowheightdialog|RowHeightDialog"
+msgid "Row Height"
+msgstr "Zeilenhöhe"
+
+#. 8pFfi
+#: rowheightdialog.ui
+msgctxt "rowheightdialog|label1"
+msgid "_Height:"
+msgstr "Höh_e:"
+
+#. 4QFsD
+#: rowheightdialog.ui
+msgctxt "rowheightdialog|automatic"
+msgid "_Automatic"
+msgstr "_Automatisch"
+
+#. VDhjL
+#: rtfcopytabledialog.ui
+msgctxt "rtfcopytabledialog|RTFCopyTable"
+msgid "Copy RTF Table"
+msgstr "RTF Tabelle kopieren"
+
+#. SD2FQ
+#: savedialog.ui
+msgctxt "savedialog|SaveDialog"
+msgid "Save As"
+msgstr "Speichern unter"
+
+#. fTe5E
+#: savedialog.ui
+msgctxt "savedialog|descriptionft"
+msgid "Please enter a name for the object to be created:"
+msgstr "Bitte geben Sie einen Namen für das anzulegende Objekt an:"
+
+#. oiUCs
+#: savedialog.ui
+msgctxt "savedialog|catalogft"
+msgid "_Catalog:"
+msgstr "_Katalog:"
+
+#. CGa85
+#: savedialog.ui
+msgctxt "savedialog|schemaft"
+msgid "_Schema:"
+msgstr "_Schema:"
+
+#. FCptK
+#: saveindexdialog.ui
+msgctxt "saveindexdialog|SaveIndexDialog"
+msgid "Exit Index Design"
+msgstr "Index-Entwurf verlassen"
+
+#. k9pCR
+#: saveindexdialog.ui
+msgctxt "saveindexdialog|SaveIndexDialog"
+msgid "Do you want to save the changes made to the current index?"
+msgstr "Möchten Sie die Änderungen am aktuellen Index speichern?"
+
+#. h9UfS
+#: savemodifieddialog.ui
+msgctxt "savemodifieddialog|SaveModifiedDialog"
+msgid "Do you want to save the changes?"
+msgstr "Möchten Sie die Änderungen speichern?"
+
+#. P326A
+#: savemodifieddialog.ui
+msgctxt "savemodifieddialog|SaveModifiedDialog"
+msgid "The current record has been changed."
+msgstr "Der aktuelle Datensatz wurde geändert."
+
+#. wmp9V
+#: sortdialog.ui
+msgctxt "sortdialog|SortDialog"
+msgid "Sort Order"
+msgstr "Sortierung"
+
+#. szD83
+#: sortdialog.ui
+msgctxt "sortdialog|label2"
+msgid "Operator"
+msgstr "Verknüpfung"
+
+#. UcmpV
+#: sortdialog.ui
+msgctxt "sortdialog|label3"
+msgid "and then"
+msgstr "Danach"
+
+#. u8kT2
+#: sortdialog.ui
+msgctxt "sortdialog|label4"
+msgid "and then"
+msgstr "Danach"
+
+#. oK7UF
+#: sortdialog.ui
+msgctxt "sortdialog|label5"
+msgid "Field name"
+msgstr "Feldname"
+
+#. AVPtE
+#: sortdialog.ui
+msgctxt "sortdialog|label6"
+msgid "Order"
+msgstr "Reihenfolge"
+
+#. EGDpm
+#: sortdialog.ui
+msgctxt "sortdialog|value1"
+msgid "ascending"
+msgstr "Aufsteigend"
+
+#. PGxfE
+#: sortdialog.ui
+msgctxt "sortdialog|value1"
+msgid "descending"
+msgstr "Absteigend"
+
+#. FqcgB
+#: sortdialog.ui
+msgctxt "sortdialog|value2"
+msgid "ascending"
+msgstr "Aufsteigend"
+
+#. E5DBL
+#: sortdialog.ui
+msgctxt "sortdialog|value2"
+msgid "descending"
+msgstr "Absteigend"
+
+#. Fa8EC
+#: sortdialog.ui
+msgctxt "sortdialog|value3"
+msgid "ascending"
+msgstr "Aufsteigend"
+
+#. UFZVT
+#: sortdialog.ui
+msgctxt "sortdialog|value3"
+msgid "descending"
+msgstr "Absteigend"
+
+#. C6iQ6
+#: sortdialog.ui
+msgctxt "sortdialog|label1"
+msgid "Sort Order"
+msgstr "Sortierung"
+
+#. CsLXB
+#: specialjdbcconnectionpage.ui
+msgctxt "specialjdbcconnectionpage|header"
+msgid "Set up connection to a MySQL database using JDBC"
+msgstr "Verbindung zu einer MySQL-Datenbank per JDBC einrichten"
+
+#. oxw5Q
+#: specialjdbcconnectionpage.ui
+msgctxt "specialjdbcconnectionpage|helpLabel"
+msgid ""
+"Please enter the required information to connect to a MySQL database using "
+"JDBC. Note that a JDBC driver class must be installed on your system and "
+"registered with %PRODUCTNAME. Please contact your system administrator if "
+"you are unsure about the following settings. "
+msgstr ""
+"Bitte geben Sie die benötigten Informationen ein, um eine Verbindung per "
+"JDBC zu einer MySQL-Datenbank herzustellen. Bitte beachten Sie, dass eine "
+"JDBC-Treiberklasse auf ihrem System installiert und %PRODUCTNAME bekannt "
+"sein muss. Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den "
+"folgenden Einstellungen unsicher sind."
+
+#. GchzZ
+#: specialjdbcconnectionpage.ui
+msgctxt "specialjdbcconnectionpage|dbNameLabel"
+msgid "_Database name:"
+msgstr "Datenbank_name:"
+
+#. ZuWG7
+#: specialjdbcconnectionpage.ui
+msgctxt "specialjdbcconnectionpage|hostNameLabel"
+msgid "_Server:"
+msgstr "_Server:"
+
+#. iZmbB
+#: specialjdbcconnectionpage.ui
+msgctxt "specialjdbcconnectionpage|portNumLabel"
+msgid "_Port number:"
+msgstr "_Portnummer:"
+
+#. ECnjE
+#: specialjdbcconnectionpage.ui
+msgctxt "specialjdbcconnectionpage|portNumDefLabel"
+msgid "Default: 3306"
+msgstr "Default: 3306"
+
+#. dhiYx
+#: specialjdbcconnectionpage.ui
+msgctxt "specialjdbcconnectionpage|jdbcDriverLabel"
+msgid "MySQL JDBC d_river class:"
+msgstr "MySQL JDBC-_Treiberklasse:"
+
+#. 8oG6P
+#: specialjdbcconnectionpage.ui
+msgctxt "specialjdbcconnectionpage|testDriverButton"
+msgid "_Test Class"
+msgstr "K_lasse testen"
+
+#. WKnRX
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|usesql92"
+msgid "Use SQL92 naming constraints"
+msgstr "SQL92 Namensbeschränkung verwenden"
+
+#. Gwn9n
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|append"
+msgid "Append the table alias name on SELECT statements"
+msgstr "Den Aliasnamen von Tabellen im SELECT-Ausdruck anhängen"
+
+#. rim5j
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|useas"
+msgid "Use keyword AS before table alias names"
+msgstr "Schlüsselwort AS vor Tabellen-Aliasnamen verwenden"
+
+#. JDTsA
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|useoj"
+msgid "Use Outer Join syntax '{oj }'"
+msgstr "Für Outer Joins die Syntax '{oj }' verwenden"
+
+#. T8TKQ
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|ignoreprivs"
+msgid "Ignore the privileges from the database driver"
+msgstr "Die Rechte vom Datenbanktreiber ignorieren"
+
+#. QK4W3
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|replaceparams"
+msgid "Replace named parameters with '?'"
+msgstr "Benannte Parameter durch '?' ersetzen"
+
+#. kfSki
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|displayver"
+msgid "Display version columns (when available)"
+msgstr "Versionsspalten anzeigen (falls verfügbar)"
+
+#. JqBdc
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|usecatalogname"
+msgid "Use catalog name in SELECT statements"
+msgstr "Den Katalognamen im SELECT-Ausdruck verwenden"
+
+#. yFGxG
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|useschemaname"
+msgid "Use schema name in SELECT statements"
+msgstr "Den Schemanamen im SELECT-Ausdruck verwenden."
+
+#. gyC7J
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|createindex"
+msgid "Create index with ASC or DESC statement"
+msgstr "Index mit ASC- oder DESC-Befehl erstellen"
+
+#. Xabxp
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|eol"
+msgid "End text lines with CR+LF"
+msgstr "Textzeilen mit CR+LF beenden"
+
+#. XFM7x
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|ignorecurrency"
+msgid "Ignore currency field information"
+msgstr "Währungsfeld-Information ignorieren"
+
+#. 2tRzG
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|inputchecks"
+msgid "Form data input checks for required fields"
+msgstr "Formulardaten-Eingabe prüft auf benötigte Felder"
+
+#. jEgvf
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|useodbcliterals"
+msgid "Use ODBC conformant date/time literals"
+msgstr "ODBC-konforme Datum-/Zeit-Symbole verwenden"
+
+#. GuCLC
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|primarykeys"
+msgid "Supports primary keys"
+msgstr "Unterstützt Primärschlüssel"
+
+#. o7mns
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|resulttype"
+msgid "Respect the result set type from the database driver"
+msgstr "Akzeptieren Sie den angezeigten Satztyps des Datenbanktreibers"
+
+#. RQ7hP
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|comparisonft"
+msgid "Comparison of Boolean values:"
+msgstr "Vergleich von Wahrheitswerten:"
+
+#. MrrnQ
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|comparison"
+msgid "Default"
+msgstr "Standard"
+
+#. D7LWx
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|comparison"
+msgid "SQL"
+msgstr "SQL"
+
+#. NzvwB
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|comparison"
+msgid "Mixed"
+msgstr "Gemischt"
+
+#. NhGDH
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|comparison"
+msgid "MS Access"
+msgstr "MS Access"
+
+#. 3eorZ
+#: specialsettingspage.ui
+msgctxt "specialsettingspage|rowsft"
+msgid "Rows to scan column types:"
+msgstr "Zeilen für Suche nach Spaltentypen:"
+
+#. Y7PiJ
+#: sqlexception.ui
+msgctxt "sqlexception|SQLExceptionDialog"
+msgid "Error Details"
+msgstr "Fehlerdetails"
+
+#. sWSQ4
+#: sqlexception.ui
+msgctxt "sqlexception|label2"
+msgid "Error _list:"
+msgstr "_Fehlerliste:"
+
+#. AFG3c
+#: sqlexception.ui
+msgctxt "sqlexception|label3"
+msgid "_Description:"
+msgstr "_Beschreibung:"
+
+#. 7hifH
+#: summarypage.ui
+msgctxt "summarypage|label1"
+msgid "Summary"
+msgstr "Zusammenfassung"
+
+#. dMM99
+#: summarypage.ui
+msgctxt "summarypage|success"
+msgid ""
+"The migration was successful. Below is a log of the actions which have been "
+"taken to your document."
+msgstr ""
+"Die Migration war erfolgreich. Unten sehen Sie ein Protokoll der Aktionen, "
+"die für Ihr Dokument ausgeführt wurden."
+
+#. REA6D
+#: summarypage.ui
+msgctxt "summarypage|failure"
+msgid ""
+"The migration was not successful. Examine the migration log below for "
+"details."
+msgstr ""
+"Die Migration war nicht erfolgreich. Lesen Sie das Migrationsprotokoll für "
+"weitere Details."
+
+#. Y3ZXm
+#: tabledesignrowmenu.ui
+msgctxt "tabledesignrowmenu|cut"
+msgid "Cu_t"
+msgstr "_Ausschneiden"
+
+#. YBoBk
+#: tabledesignrowmenu.ui
+msgctxt "tabledesignrowmenu|copy"
+msgid "_Copy"
+msgstr "_Kopieren"
+
+#. dGPAA
+#: tabledesignrowmenu.ui
+msgctxt "tabledesignrowmenu|paste"
+msgid "_Paste"
+msgstr "E_infügen"
+
+#. Ekmvg
+#: tabledesignrowmenu.ui
+msgctxt "tabledesignrowmenu|delete"
+msgid "_Delete"
+msgstr "_Löschen"
+
+#. PWZ9E
+#: tabledesignrowmenu.ui
+msgctxt "tabledesignrowmenu|insert"
+msgid "Insert Rows"
+msgstr "Zeilen einfügen"
+
+#. 4XEhH
+#: tabledesignrowmenu.ui
+msgctxt "tabledesignrowmenu|primarykey"
+msgid "Primary Key"
+msgstr "Primärschlüssel"
+
+#. PnMFo
+#: tabledesignsavemodifieddialog.ui
+msgctxt "tabledesignsavemodifieddialog|TableDesignSaveModifiedDialog"
+msgid "Do you want to save the changes?"
+msgstr "Möchten Sie die Änderungen speichern?"
+
+#. C3FHu
+#: tabledesignsavemodifieddialog.ui
+msgctxt "tabledesignsavemodifieddialog|TableDesignSaveModifiedDialog"
+msgid "The table has been changed."
+msgstr "Diese Tabelle wurde geändert."
+
+#. iFfXZ
+#: tablesfilterdialog.ui
+msgctxt "tablesfilterdialog|TablesFilterDialog"
+msgid "Tables Filter"
+msgstr "Tabellenfilter"
+
+#. 5ZNAA
+#: tablesfilterpage.ui
+msgctxt "tablesfilterpage|label2"
+msgid "Mark the tables that should be visible for the applications."
+msgstr ""
+"Markieren Sie diejenigen Tabellen, die für die Anwendungen sichtbar sein "
+"sollen."
+
+#. Cvzwv
+#: tablesfilterpage.ui
+msgctxt "tablesfilterpage|label1"
+msgid "Tables and Table Filter"
+msgstr "Tabellen und Tabellenfilter"
+
+#. xfec4
+#: tablesjoindialog.ui
+msgctxt "tablesjoindialog|tables"
+msgid "Tables"
+msgstr "Tabellen"
+
+#. WPTyJ
+#: tablesjoindialog.ui
+msgctxt "tablesjoindialog|queries"
+msgid "Queries"
+msgstr "Abfragen"
+
+#. TYE5C
+#: tablesjoindialog.ui
+msgctxt "tablesjoindialog|title"
+msgid "Add Tables"
+msgstr "Tabellen hinzufügen"
+
+#. zFRKj
+#: tablesjoindialog.ui
+msgctxt "tablesjoindialog|alttitle"
+msgid "Add Table or Query"
+msgstr "Tabelle oder Abfrage hinzufügen"
+
+#. 8b2nn
+#: textconnectionsettings.ui
+msgctxt "textconnectionsettings|TextConnectionSettingsDialog"
+msgid "Text Connection Settings"
+msgstr "Verbindungseinstellungen"
+
+#. HScTi
+#: textpage.ui
+msgctxt "textpage|textfile"
+msgid "Plain text files (*.txt)"
+msgstr "Einfache Textdateien (*.txt)"
+
+#. i2ntJ
+#: textpage.ui
+msgctxt "textpage|csvfile"
+msgid "Comma-separated value files (*.csv)"
+msgstr "Comma separated value-Dateien (*.csv)"
+
+#. 9DRFR
+#: textpage.ui
+msgctxt "textpage|custom"
+msgid "Custom:"
+msgstr "Benutzerdefiniert:"
+
+#. x3eWP
+#: textpage.ui
+msgctxt "textpage|example"
+msgid "Custom: *.abc"
+msgstr "Benutzerdefiniert: *.abc"
+
+#. aSpdr
+#: textpage.ui
+msgctxt "textpage|extensionheader"
+msgid "Specify the Type of Files You Want to Access"
+msgstr "Geben Sie den Dateityp an, auf den Sie zugreifen möchten"
+
+#. 4VGRV
+#: textpage.ui
+msgctxt "textpage|containsheaders"
+msgid "_Text contains headers"
+msgstr "_Text enthält Kopfzeile"
+
+#. PGqYA
+#: textpage.ui
+msgctxt "textpage|fieldlabel"
+msgid "Field separator:"
+msgstr "Feldtrenner:"
+
+#. EBzXo
+#: textpage.ui
+msgctxt "textpage|textlabel"
+msgid "Text separator:"
+msgstr "Texttrenner:"
+
+#. Va37w
+#: textpage.ui
+msgctxt "textpage|decimallabel"
+msgid "Decimal separator:"
+msgstr "Dezimaltrennzeichen:"
+
+#. qF6Aj
+#: textpage.ui
+msgctxt "textpage|thousandslabel"
+msgid "Thousands separator:"
+msgstr "Tausendertrennzeichen:"
+
+#. DSrai
+#: textpage.ui
+msgctxt "textpage|decimalseparator"
+msgid "."
+msgstr ","
+
+#. yWQdQ
+#: textpage.ui
+msgctxt "textpage|decimalseparator"
+msgid ","
+msgstr "."
+
+#. rD7yP
+#: textpage.ui
+msgctxt "textpage|decimalseparator"
+msgid ";"
+msgstr ";"
+
+#. FBFxB
+#: textpage.ui
+msgctxt "textpage|decimalseparator"
+msgid ":"
+msgstr ":"
+
+#. cuU6W
+#: textpage.ui
+msgctxt "textpage|thousandsseparator"
+msgid "."
+msgstr "."
+
+#. 7y57B
+#: textpage.ui
+msgctxt "textpage|thousandsseparator"
+msgid ","
+msgstr ","
+
+#. R3dp6
+#: textpage.ui
+msgctxt "textpage|formatlabel"
+msgid "Row Format"
+msgstr "Zeilenformat"
+
+#. 8GaPt
+#: textpage.ui
+msgctxt "textpage|charsetlabel"
+msgid "_Character set:"
+msgstr "_Zeichensatz:"
+
+#. 752ii
+#: textpage.ui
+msgctxt "textpage|charsetheader"
+msgid "Data Conversion"
+msgstr "Datenkonvertierung"
+
+#. cQGgr
+#: typeselectpage.ui
+msgctxt "typeselectpage|columns"
+msgid "Column Information"
+msgstr "Spalteninformation"
+
+#. GneVZ
+#: typeselectpage.ui
+msgctxt "typeselectpage|autolabel"
+msgid "Lines (ma_x.):"
+msgstr "_Zeilen (max.):"
+
+#. hsswG
+#: typeselectpage.ui
+msgctxt "typeselectpage|autobutton"
+msgid "_Auto"
+msgstr "_Automatisch"
+
+#. sTgpa
+#: typeselectpage.ui
+msgctxt "typeselectpage|autotype"
+msgid "Automatic Type Recognition"
+msgstr "Automatische Typerkennung"
+
+#. VANs7
+#: useradmindialog.ui
+msgctxt "useradmindialog|UserAdminDialog"
+msgid "User Administration"
+msgstr "Benutzeradministration"
+
+#. siFUA
+#: useradmindialog.ui
+msgctxt "useradmindialog|settings"
+msgid "User Settings"
+msgstr "Benutzereinstellungen"
+
+#. Jvnnk
+#: useradminpage.ui
+msgctxt "useradminpage|label3"
+msgid "Us_er:"
+msgstr "_Benutzer:"
+
+#. ZQhyG
+#: useradminpage.ui
+msgctxt "useradminpage|add"
+msgid "_Add User..."
+msgstr "Benutzer _hinzufügen..."
+
+#. L7EVW
+#: useradminpage.ui
+msgctxt "useradminpage|changepass"
+msgid "Change _Password..."
+msgstr "_Kennwort ändern..."
+
+#. vDFqX
+#: useradminpage.ui
+msgctxt "useradminpage|delete"
+msgid "_Delete User..."
+msgstr "Benut_zer löschen..."
+
+#. gMJwT
+#: useradminpage.ui
+msgctxt "useradminpage|label1"
+msgid "User Selection"
+msgstr "Benutzerauswahl"
+
+#. ADQpm
+#: useradminpage.ui
+msgctxt "useradminpage|label2"
+msgid "Access Rights for Selected User"
+msgstr "Zugriffsrechte für ausgewählten Benutzer"
+
+#. 5X3RP
+#: userdetailspage.ui
+msgctxt "userdetailspage|hostnameft"
+msgid "_Host name:"
+msgstr "_Rechnername:"
+
+#. eDvjr
+#: userdetailspage.ui
+msgctxt "userdetailspage|portnumberft"
+msgid "_Port number:"
+msgstr "_Portnummer:"
+
+#. rEGAs
+#: userdetailspage.ui
+msgctxt "userdetailspage|usecatalog"
+msgid "_Use catalog"
+msgstr "Katalog _verwenden"
+
+#. BzFdV
+#: userdetailspage.ui
+msgctxt "userdetailspage|optionslabel"
+msgid "_Driver settings:"
+msgstr "_Treibereinstellungen:"
+
+#. Gjovq
+#: userdetailspage.ui
+msgctxt "userdetailspage|label1"
+msgid "Connection Settings"
+msgstr "Verbindungseinstellungen"
+
+#. eLA6J
+#: userdetailspage.ui
+msgctxt "userdetailspage|charsetlabel"
+msgid "_Character set:"
+msgstr "_Zeichensatz:"
+
+#. oaAiD
+#: userdetailspage.ui
+msgctxt "userdetailspage|charsetheader"
+msgid "Data conversion"
+msgstr "Datenkonvertierung"
diff --git a/source/de/dbaccess/source/core/resource.po b/source/de/dbaccess/source/core/resource.po
deleted file mode 100644
index f41e23b41e0..00000000000
--- a/source/de/dbaccess/source/core/resource.po
+++ /dev/null
@@ -1,539 +0,0 @@
-#. extracted from dbaccess/source/core/resource
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-07-25 06:40+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1437806451.000000\n"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_CONNECTION_INVALID\n"
-"string.text"
-msgid "No connection could be established."
-msgstr "Es konnte keine Verbindung hergestellt werden."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_TABLE_IS_FILTERED\n"
-"string.text"
-msgid "The table $name$ already exists. It is not visible because it has been filtered out."
-msgstr "Die Tabelle $name$ existiert bereits. Sie ist nicht sichtbar, da sie ausgefiltert wurde."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_COULDNOTCONNECT_UNSPECIFIED\n"
-"string.text"
-msgid "The connection to the external data source could not be established. An unknown error occurred. The driver is probably defective."
-msgstr "Die Verbindung zur externen Datenquelle konnte nicht hergestellt werden. Ein unbekannter Fehler trat auf. Wahrscheinlich ist der Treiber fehlerhaft."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_COULDNOTCONNECT_NODRIVER\n"
-"string.text"
-msgid "The connection to the external data source could not be established. No SDBC driver was found for the URL '$name$'."
-msgstr "Die Verbindung zur externen Datenquelle konnte nicht hergestellt werden. Es wurde kein SDBC-Treiber für die URL '$name$' gefunden."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_COULDNOTLOAD_MANAGER\n"
-"string.text"
-msgid "The connection to the external data source could not be established. The SDBC driver manager could not be loaded."
-msgstr "Die Verbindung zur externen Datenquelle konnte nicht hergestellt werden. Der SDBC-Treiber-Manager konnte nicht geladen werden."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_FORM\n"
-"string.text"
-msgid "Form"
-msgstr "Formular"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_REPORT\n"
-"string.text"
-msgid "Report"
-msgstr "Bericht"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_DATASOURCE_NOT_STORED\n"
-"string.text"
-msgid "The data source was not saved. Please use the interface XStorable to save the data source."
-msgstr "Die Datenquelle wurde nicht gespeichert. Bitte verwenden Sie die Schnittstelle XStorable, um die Datenquelle zu speichern."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_ONLY_QUERY\n"
-"string.text"
-msgid ""
-"The given command is not a SELECT statement.\n"
-"Only queries are allowed."
-msgstr ""
-"Der gesetzte Befehl ist kein SELECT-Befehl.\n"
-"Es sind nur Abfragen erlaubt."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_VALUE_CHANGED\n"
-"string.text"
-msgid "No values were modified."
-msgstr "Es wurden keine Werte verändert."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_XROWUPDATE\n"
-"string.text"
-msgid "Values could not be inserted. The XRowUpdate interface is not supported by ResultSet."
-msgstr "Es konnten keine Werte eingefügt werden. Die XRowUpdate-Schnittstelle wird nicht vom ResultSet unterstützt."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_XRESULTSETUPDATE\n"
-"string.text"
-msgid "Values could not be inserted. The XResultSetUpdate interface is not supported by ResultSet."
-msgstr "Es konnten keine Werte eingefügt werden. Die XResultSetUpdate-Schnittstelle wird nicht vom ResultSet unterstützt."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_UPDATE_MISSING_CONDITION\n"
-"string.text"
-msgid "Values could not be modified, due to a missing condition statement."
-msgstr "Die Werte konnten nicht verändert, auf Grund einer fehlenden Bedingung."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_COLUMN_ADD\n"
-"string.text"
-msgid "The adding of columns is not supported."
-msgstr "Das Hinzufügen von Spalten wird nicht unterstützt."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_COLUMN_DROP\n"
-"string.text"
-msgid "The dropping of columns is not supported."
-msgstr "Das Löschen von Spalten wird nicht unterstützt."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_CONDITION_FOR_PK\n"
-"string.text"
-msgid "The WHERE condition could not be created for the primary key."
-msgstr "Es konnte keine WHERE-Bedingung für den Primärschlüssel erstellt werden."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_COLUMN_UNKNOWN_PROP\n"
-"string.text"
-msgid "The column does not support the property '%value'."
-msgstr "Die Spalte unterstützt nicht die Eigenschaft '%value'."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_COLUMN_NOT_SEARCHABLE\n"
-"string.text"
-msgid "The column is not searchable!"
-msgstr "In dieser Spalte kann nicht gesucht werden."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NOT_SEQUENCE_INT8\n"
-"string.text"
-msgid "The value of the columns is not of the type Sequence<sal_Int8>."
-msgstr "Der Wert der Spalten ist nicht vom Type Sequence<sal_Int8>."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_COLUMN_NOT_VALID\n"
-"string.text"
-msgid "The column is not valid."
-msgstr "Die Spalte ist nicht gültig."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_COLUMN_MUST_VISIBLE\n"
-"string.text"
-msgid "The column '%name' must be visible as a column."
-msgstr "Die Spalte '%name' muss als Spalte sichtbar sein."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_XQUERIESSUPPLIER\n"
-"string.text"
-msgid "The interface XQueriesSupplier is not available."
-msgstr "Die Schnittstelle XQueriesSupplier ist nicht verfügbar."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_ABS_ZERO\n"
-"string.text"
-msgid "An 'absolute(0)' call is not allowed."
-msgstr "Ein 'absolute(0)' Aufruf ist nicht erlaubt."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_RELATIVE\n"
-"string.text"
-msgid "Relative positioning is not allowed in this state."
-msgstr "Eine relative Positionierung ist in diesem Status nicht erlaubt."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_REFESH_AFTERLAST\n"
-"string.text"
-msgid "A row cannot be refreshed when the ResultSet is positioned after the last row."
-msgstr "Eine Zeile kann nicht aktualisiert werden, wenn das ResultSet hinter der letzten Zeile steht."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_MOVETOINSERTROW_CALLED\n"
-"string.text"
-msgid "A new row cannot be inserted when the ResultSet is not first moved to the insert row."
-msgstr "Das Einfügen einer neuen Zeile ist nicht erlaubt, wenn das ResultSet sich nicht vorher auf die Einfügezeile bewegt."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_UPDATEROW\n"
-"string.text"
-msgid "A row cannot be modified in this state"
-msgstr "Eine Zeile kann in diesem Status nicht verändert werden."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_DELETEROW\n"
-"string.text"
-msgid "A row cannot be deleted in this state."
-msgstr "Eine Zeile kann in diesem Status nicht gelöscht werden."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_TABLE_RENAME\n"
-"string.text"
-msgid "The driver does not support table renaming."
-msgstr "Der Treiber unterstützt das Umbenennen einer Tabelle nicht."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_COLUMN_ALTER_BY_NAME\n"
-"string.text"
-msgid "The driver does not support the modification of column descriptions by changing the name."
-msgstr "Der Treiber unterstützt das Verändern einer Spaltendefinition, anhand des Namens, nicht."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_COLUMN_ALTER_BY_INDEX\n"
-"string.text"
-msgid "The driver does not support the modification of column descriptions by changing the index."
-msgstr "Der Treiber unterstützt das Verändern einer Spaltendefinition, anhand des Indexes, nicht."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_FILE_DOES_NOT_EXIST\n"
-"string.text"
-msgid "The file \"$file$\" does not exist."
-msgstr "Die Datei \"$file$\" existiert nicht."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_TABLE_DOES_NOT_EXIST\n"
-"string.text"
-msgid "There exists no table named \"$table$\"."
-msgstr "Es existiert keine Tabelle \"$table$\"."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_QUERY_DOES_NOT_EXIST\n"
-"string.text"
-msgid "There exists no query named \"$table$\"."
-msgstr "Es existiert keine Abfrage mit Namen \"$table$\"."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_CONFLICTING_NAMES\n"
-"string.text"
-msgid "There are tables in the database whose names conflict with the names of existing queries. To make full use of all queries and tables, make sure they have distinct names."
-msgstr "Die Datenbank enthält Tabellen, deren Namen mit den Namen von existierenden Abfragen kollidieren. Um alle Tabellen und Abfragen voll nutzen zu können, stellen Sie sicher, dass sie unterschiedliche Namen haben."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_COMMAND_LEADING_TO_ERROR\n"
-"string.text"
-msgid ""
-"The SQL command leading to this error is:\n"
-"\n"
-"$command$"
-msgstr ""
-"Das SQL-Kommando, welches zu diesem Fehler führte, ist:\n"
-"\n"
-"$command$"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_STATEMENT_WITHOUT_RESULT_SET\n"
-"string.text"
-msgid "The SQL command does not describe a result set."
-msgstr "Der SQL-Befehl beschreibt keine Ergebnismenge."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NAME_MUST_NOT_BE_EMPTY\n"
-"string.text"
-msgid "The name must not be empty."
-msgstr "Der Name darf nicht leer sein."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_NULL_OBJECTS_IN_CONTAINER\n"
-"string.text"
-msgid "The container cannot contain NULL objects."
-msgstr "Der Container kann keine NULL-Objekte enthalten."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NAME_ALREADY_USED\n"
-"string.text"
-msgid "There already is an object with the given name."
-msgstr "Es gibt bereits ein Objekt mit dem angegebenen Namen."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_OBJECT_CONTAINER_MISMATCH\n"
-"string.text"
-msgid "This object cannot be part of this container."
-msgstr "Dieses Objekt kann nicht Bestandteil dieses Containers sein."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_OBJECT_ALREADY_CONTAINED\n"
-"string.text"
-msgid "The object already is, with a different name, part of the container."
-msgstr "Das Objekt ist unter einem anderen Namen bereits Bestandteil des Containers."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NAME_NOT_FOUND\n"
-"string.text"
-msgid "Unable to find the document '$name$'."
-msgstr "Dokument '$name$' konnte nicht gefunden werden."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_ERROR_WHILE_SAVING\n"
-"string.text"
-msgid ""
-"Could not save the document to $location$:\n"
-"$message$"
-msgstr ""
-"Das Dokument konnte nicht unter $location$ gespeichert werden:\n"
-"$message$"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_NO_SUCH_DATA_SOURCE\n"
-"string.text"
-msgid ""
-"Error accessing data source '$name$':\n"
-"$error$"
-msgstr ""
-"Fehler beim Zugriff auf die Datenquelle '$name$':\n"
-"$error$"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_SUB_FOLDER\n"
-"string.text"
-msgid "There exists no folder named \"$folder$\"."
-msgstr "Es existiert kein Verzeichnis \"$folder$\"."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_DELETE_BEFORE_AFTER\n"
-"string.text"
-msgid "Cannot delete the before-first or after-last row."
-msgstr "Löschen vor der ersten oder nach der letzten Zeile ist nicht möglich."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_DELETE_INSERT_ROW\n"
-"string.text"
-msgid "Cannot delete the insert-row."
-msgstr "Löschen der Einfügezeile ist nicht möglich."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_RESULT_IS_READONLY\n"
-"string.text"
-msgid "Result set is read only."
-msgstr "Der Ergebnissatz ist schreibgeschützt."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_DELETE_PRIVILEGE\n"
-"string.text"
-msgid "DELETE privilege not available."
-msgstr "Kein DELETE-Recht verfügbar."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_ROW_ALREADY_DELETED\n"
-"string.text"
-msgid "Current row is already deleted."
-msgstr "Die aktuelle Zeile wurde bereits gelöscht."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_UPDATE_FAILED\n"
-"string.text"
-msgid "Current row could not be updated."
-msgstr "Die aktuelle Zeile konnte nicht aktualisiert werden."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_INSERT_PRIVILEGE\n"
-"string.text"
-msgid "INSERT privilege not available."
-msgstr "Kein INSERT-Recht verfügbar."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_INTERNAL_ERROR\n"
-"string.text"
-msgid "Internal error: no statement object provided by the database driver."
-msgstr "Interner Fehler: der Datenbanktreiber stellt kein Statement-Objekt zur Verfügung."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_EXPRESSION1\n"
-"string.text"
-msgid "Expression1"
-msgstr "Ausdruck1"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_SQL_COMMAND\n"
-"string.text"
-msgid "No SQL command was provided."
-msgstr "Es wurde kein SQL-Kommando vorbereitet."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_INVALID_INDEX\n"
-"string.text"
-msgid "Invalid column index."
-msgstr "Ungültiger Spaltenindex."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_INVALID_CURSOR_STATE\n"
-"string.text"
-msgid "Invalid cursor state."
-msgstr "Ungültiger Cursorstatus."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_CURSOR_BEFORE_OR_AFTER\n"
-"string.text"
-msgid "The cursor points to before the first or after the last row."
-msgstr "Der Cursor zeigt vor die erste bzw. hinter die letzte Zeile."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_BOOKMARK_BEFORE_OR_AFTER\n"
-"string.text"
-msgid "The rows before the first and after the last row don't have a bookmark."
-msgstr "Zeilen vor der ersten bzw. nach der letzten Zeile haben kein Lesezeichen."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NO_BOOKMARK_DELETED\n"
-"string.text"
-msgid "The current row is deleted, and thus doesn't have a bookmark."
-msgstr "Die aktuelle Zeile wurde gelöscht und hat deshalb kein Lesezeichen."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_CONNECTION_REQUEST\n"
-"string.text"
-msgid "A connection for the following URL was requested \"$name$\"."
-msgstr "Es wurde eine Verbindung zur URL \"$name$\" angefordert."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_MISSING_EXTENSION\n"
-"string.text"
-msgid "The extension is not installed."
-msgstr "Die Extension ist nicht installiert."
diff --git a/source/de/dbaccess/source/ext/macromigration.po b/source/de/dbaccess/source/ext/macromigration.po
deleted file mode 100644
index 7acd9869178..00000000000
--- a/source/de/dbaccess/source/ext/macromigration.po
+++ /dev/null
@@ -1,219 +0,0 @@
-#. extracted from dbaccess/source/ext/macromigration
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-07-26 06:16+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1437891411.000000\n"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_STATE_CLOSE_SUB_DOCS\n"
-"string.text"
-msgid "Prepare"
-msgstr "Vorbereiten"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_STATE_BACKUP_DBDOC\n"
-"string.text"
-msgid "Backup Document"
-msgstr "Sicherungskopie erstellen"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_STATE_MIGRATE\n"
-"string.text"
-msgid "Migrate"
-msgstr "Migrieren"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_STATE_SUMMARY\n"
-"string.text"
-msgid "Summary"
-msgstr "Zusammenfassung"
-
-#. This refers to a form document inside a database document.
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_FORM\n"
-"string.text"
-msgid "Form '$name$'"
-msgstr "Formular '$name$'"
-
-#. This refers to a report document inside a database document.
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_REPORT\n"
-"string.text"
-msgid "Report '$name$'"
-msgstr "Bericht '$name$'"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_OVERALL_PROGRESS\n"
-"string.text"
-msgid "document $current$ of $overall$"
-msgstr "Dokument $current$ von $overall$"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_DATABASE_DOCUMENT\n"
-"string.text"
-msgid "Database Document"
-msgstr "Datenbankdokument"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_SAVED_COPY_TO\n"
-"string.text"
-msgid "saved copy to $location$"
-msgstr "Kopie nach $location$ gespeichert"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_MOVED_LIBRARY\n"
-"string.text"
-msgid "migrated $type$ library '$old$' to '$new$'"
-msgstr "$type$-Bibliothek '$old$' nach '$new$' migriert"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_LIBRARY_TYPE_AND_NAME\n"
-"string.text"
-msgid "$type$ library '$library$'"
-msgstr "$type$-Bibliothek '$library$'"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_MIGRATING_LIBS\n"
-"string.text"
-msgid "migrating libraries ..."
-msgstr "migriere Bibliotheken ..."
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_OOO_BASIC\n"
-"string.text"
-msgid "%PRODUCTNAME Basic"
-msgstr "%PRODUCTNAME Basic"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_JAVA_SCRIPT\n"
-"string.text"
-msgid "JavaScript"
-msgstr "JavaScript"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_BEAN_SHELL\n"
-"string.text"
-msgid "BeanShell"
-msgstr "BeanShell"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_JAVA\n"
-"string.text"
-msgid "Java"
-msgstr "Java"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_PYTHON\n"
-"string.text"
-msgid "Python"
-msgstr "Python"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_DIALOG\n"
-"string.text"
-msgid "dialog"
-msgstr "Dialog"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_ERRORS\n"
-"string.text"
-msgid "Error(s)"
-msgstr "Fehler"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_WARNINGS\n"
-"string.text"
-msgid "Warnings"
-msgstr "Warnungen"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_EXCEPTION\n"
-"string.text"
-msgid "caught exception:"
-msgstr "Ausnahme aufgetreten:"
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_INVALID_BACKUP_LOCATION\n"
-"string.text"
-msgid "You need to choose a backup location other than the document location itself."
-msgstr "Sie müssen einen Sicherungsort angeben, der sich vom Speicherort des Dokuments unterscheidet."
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_INVALID_NUMBER_ARGS\n"
-"string.text"
-msgid "Invalid number of initialization arguments. Expected 1."
-msgstr "Ungültige Anzahl von Initialisierungsargumenten. Erwartet wurde 1."
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_NO_DATABASE\n"
-"string.text"
-msgid "No database document found in the initialization arguments."
-msgstr "In den Initialisierungsargumenten wurde kein Datenbankdokument gefunden."
-
-#: macromigration.src
-msgctxt ""
-"macromigration.src\n"
-"STR_NOT_READONLY\n"
-"string.text"
-msgid "Not applicable to read-only documents."
-msgstr "Für schreibgeschützte Dokumente nicht anwendbar."
diff --git a/source/de/dbaccess/source/sdbtools/resource.po b/source/de/dbaccess/source/sdbtools/resource.po
deleted file mode 100644
index 0fe58191550..00000000000
--- a/source/de/dbaccess/source/sdbtools/resource.po
+++ /dev/null
@@ -1,73 +0,0 @@
-#. extracted from dbaccess/source/sdbtools/resource
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2017-02-20 16:04+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487606653.000000\n"
-
-#: sdbt_strings.src
-msgctxt ""
-"sdbt_strings.src\n"
-"STR_QUERY_AND_TABLE_DISTINCT_NAMES\n"
-"string.text"
-msgid "You cannot give a table and a query the same name. Please use a name which is not yet used by a query or table."
-msgstr "Es ist nicht möglich, einer Tabelle und einer Abfrage denselben Namen zu geben. Bitte wählen Sie einen Namen, der noch nicht für eine Abfrage oder Tabelle benutzt wird."
-
-#: sdbt_strings.src
-msgctxt ""
-"sdbt_strings.src\n"
-"STR_BASENAME_TABLE\n"
-"string.text"
-msgid "Table"
-msgstr "Tabelle"
-
-#: sdbt_strings.src
-msgctxt ""
-"sdbt_strings.src\n"
-"STR_BASENAME_QUERY\n"
-"string.text"
-msgid "Query"
-msgstr "Abfrage"
-
-#: sdbt_strings.src
-msgctxt ""
-"sdbt_strings.src\n"
-"STR_CONN_WITHOUT_QUERIES_OR_TABLES\n"
-"string.text"
-msgid "The given connection is no valid query and/or tables supplier."
-msgstr "Die angegebene Verbindung ist keine gültige Quelle für Abfragen und/oder Tabellen."
-
-#: sdbt_strings.src
-msgctxt ""
-"sdbt_strings.src\n"
-"STR_NO_TABLE_OBJECT\n"
-"string.text"
-msgid "The given object is no table object."
-msgstr "Das angegbene Objekt ist kein Tabellenobjekt."
-
-#: sdbt_strings.src
-msgctxt ""
-"sdbt_strings.src\n"
-"STR_INVALID_COMPOSITION_TYPE\n"
-"string.text"
-msgid "Invalid composition type - need a value from com.sun.star.sdb.tools.CompositionType."
-msgstr "Ungültiger Composition-Typ - es wird ein Wert aus com.sun.star.sdb.tools.CompositionType benötigt."
-
-#: sdbt_strings.src
-msgctxt ""
-"sdbt_strings.src\n"
-"STR_INVALID_COMMAND_TYPE\n"
-"string.text"
-msgid "Invalid command type - only TABLE and QUERY from com.sun.star.sdb.CommandType are allowed."
-msgstr "Ungültiger Command-Typ - nur TABLE und QUERY aus com.sun.star.sdb.CommandType sind zulässig."
diff --git a/source/de/dbaccess/source/ui/app.po b/source/de/dbaccess/source/ui/app.po
deleted file mode 100644
index 9b379b80c6e..00000000000
--- a/source/de/dbaccess/source/ui/app.po
+++ /dev/null
@@ -1,387 +0,0 @@
-#. extracted from dbaccess/source/ui/app
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-02-21 04:04+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1487649854.000000\n"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_NEW_FORM\n"
-"string.text"
-msgid "Create Form in Design View..."
-msgstr "Formular in Entwurfsansicht erstellen..."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_NEW_FORM_AUTO\n"
-"string.text"
-msgid "Use Wizard to Create Form..."
-msgstr "Formular unter Verwendung des Assistenten erstellen..."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_NEW_REPORT_AUTO\n"
-"string.text"
-msgid "Use Wizard to Create Report..."
-msgstr "Bericht unter Verwendung des Assistenten erstellen..."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_NEW_REPORT\n"
-"string.text"
-msgid "Create Report in Design View..."
-msgstr "Bericht in Entwurfsansicht erstellen..."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_NEW_QUERY\n"
-"string.text"
-msgid "Create Query in Design View..."
-msgstr "Abfrage in der Entwurfsansicht erstellen..."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_NEW_QUERY_SQL\n"
-"string.text"
-msgid "Create Query in SQL View..."
-msgstr "Abfrage in SQL-Ansicht erstellen..."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_NEW_QUERY_AUTO\n"
-"string.text"
-msgid "Use Wizard to Create Query..."
-msgstr "Abfrage unter Verwendung des Assistenten erstellen..."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_NEW_TABLE\n"
-"string.text"
-msgid "Create Table in Design View..."
-msgstr "Tabelle in der Entwurfsansicht erstellen..."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_NEW_TABLE_AUTO\n"
-"string.text"
-msgid "Use Wizard to Create Table..."
-msgstr "Tabelle unter Verwendung des Assistenten erstellen..."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_NEW_VIEW\n"
-"string.text"
-msgid "Create View..."
-msgstr "Ansicht erstellen..."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_FORMS_CONTAINER\n"
-"string.text"
-msgid "Forms"
-msgstr "Formulare"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_REPORTS_CONTAINER\n"
-"string.text"
-msgid "Reports"
-msgstr "Berichte"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_REPORTS_HELP_TEXT_WIZARD\n"
-"string.text"
-msgid "The wizard will guide you through the steps necessary to create a report."
-msgstr "Der Assistent wird Sie durch die Schritte führen, die zur Erstellung eines Berichtes notwendig sind."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_FORMS_HELP_TEXT\n"
-"string.text"
-msgid "Create a form by specifying the record source, controls, and control properties."
-msgstr "Erstellen Sie ein Formular, indem Sie die Datensatzquelle, Steuerelemente und Steuerelementeigenschaften angeben."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_REPORT_HELP_TEXT\n"
-"string.text"
-msgid "Create a report by specifying the record source, controls, and control properties."
-msgstr "Erstellen eines Berichts durch Angabe von Datensatzquelle, Steuerelementen und Steuerelementeigenschaften."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_FORMS_HELP_TEXT_WIZARD\n"
-"string.text"
-msgid "The wizard will guide you through the steps necessary to create a form."
-msgstr "Der Assistent wird Sie durch die Schritte führen, die zur Erstellung eines Formulars notwendig sind."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_QUERIES_HELP_TEXT\n"
-"string.text"
-msgid "Create a query by specifying the filters, input tables, field names, and properties for sorting or grouping."
-msgstr "Erstellen Sie eine Abfrage, indem Sie Filter, Eingabetabellen, sowie Sortierungs- und Gruppierungseigenschaften angeben."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_QUERIES_HELP_TEXT_SQL\n"
-"string.text"
-msgid "Create a query by entering an SQL statement directly."
-msgstr "Erstellen Sie eine Abfrage, indem Sie einen SQL-Befehl direkt eingeben."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_QUERIES_HELP_TEXT_WIZARD\n"
-"string.text"
-msgid "The wizard will guide you through the steps necessary to create a query."
-msgstr "Der Assistent wird Sie durch die Schritte führen, die zur Erstellung einer Abfrage notwendig sind."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_TABLES_HELP_TEXT_DESIGN\n"
-"string.text"
-msgid "Create a table by specifying the field names and properties, as well as the data types."
-msgstr "Erstellen Sie eine Tabelle, indem Sie Feldnamen und -eigenschaften, sowie Datentypen angeben."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_TABLES_HELP_TEXT_WIZARD\n"
-"string.text"
-msgid "Choose from a selection of business and personal table samples, which you customize to create a table."
-msgstr "Wählen Sie aus geschäftlichen oder privaten Beispieltabellen aus, die Sie dann für Ihren Zweck anpassen."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_VIEWS_HELP_TEXT_DESIGN\n"
-"string.text"
-msgid "Create a view by specifying the tables and field names you would like to have visible."
-msgstr "Erstellen Sie eine Ansicht, indem Sie Tabellen und Feldnamen angeben, die Sie anzeigen möchten."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_DATABASE\n"
-"string.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_TASKS\n"
-"string.text"
-msgid "Tasks"
-msgstr "Aufgaben"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_DESCRIPTION\n"
-"string.text"
-msgid "Description"
-msgstr "Beschreibung"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_PREVIEW\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_QUERY_CLOSEDOCUMENTS\n"
-"string.text"
-msgid ""
-"The connection type has been altered.\n"
-"For the changes to take effect, all forms, reports, queries and tables must be closed.\n"
-"\n"
-"Do you want to close all documents now?"
-msgstr ""
-"Die Verbindungsart wurde geändert.\n"
-"Damit die Änderungen wirksam werden, müssen alle Formulare, Berichte, Abfragen und Tabellen geschlossen werden.\n"
-"\n"
-"Möchten Sie jetzt alle Dokumente schließen?"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_FORM\n"
-"string.text"
-msgid "Form"
-msgstr "Formular"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_REPORT\n"
-"string.text"
-msgid "Report"
-msgstr "Bericht"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_FRM_LABEL\n"
-"string.text"
-msgid "F~orm name"
-msgstr "~Name des Formulars"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_RPT_LABEL\n"
-"string.text"
-msgid "~Report name"
-msgstr "~Name des Berichts"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_FOLDER_LABEL\n"
-"string.text"
-msgid "F~older name"
-msgstr "~Name des Ordners"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_SUB_DOCS_WITH_SCRIPTS\n"
-"string.text"
-msgid "The document contains forms or reports with embedded macros."
-msgstr "Das Dokument enthält Formulare oder Berichte mit eingebetteten Makros."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_SUB_DOCS_WITH_SCRIPTS_DETAIL\n"
-"string.text"
-msgid ""
-"Macros should be embedded into the database document itself.\n"
-"\n"
-"You can continue to use your document as before, however, you are encouraged to migrate your macros. The menu item 'Tools / Migrate Macros ...' will assist you with this.\n"
-"\n"
-"Note that you won't be able to embed macros into the database document itself until this migration is done. "
-msgstr ""
-"Makros sollten direkt in das Datenbankdokument eingebettet werden.\n"
-"\n"
-"Sie können Ihr Dokument weiterhin wie bisher verwenden, es ist aber von Vorteil, Ihre Makros zu konvertieren. Der Assistent unter 'Extras / Makros migrieren...' unterstützt Sie dabei.\n"
-"\n"
-"Beachten Sie, dass Sie Makros nicht direkt in das Datenbankdokument einbetten können, solange Sie diese Migration nicht durchgeführt haben."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_EMBEDDED_DATABASE\n"
-"string.text"
-msgid "Embedded database"
-msgstr "Eingebettete Datenbank"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_NO_DIFF_CAT\n"
-"string.text"
-msgid "You cannot select different categories."
-msgstr "Es können keine unterschiedlichen Kategorien ausgewählt werden."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"RID_STR_UNSUPPORTED_OBJECT_TYPE\n"
-"string.text"
-msgid "Unsupported object type found ($type$)."
-msgstr "Nicht unterstützten Objekttyp gefunden ($type$)."
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_PAGETITLE_GENERAL\n"
-"string.text"
-msgid "Advanced Properties"
-msgstr "Erweiterte Eigenschaften"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_PAGETITLE_ADVANCED\n"
-"string.text"
-msgid "Additional Settings"
-msgstr "Erweiterte Einstellungen"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_PAGETITLE_CONNECTION\n"
-"string.text"
-msgid "Connection settings"
-msgstr "Verbingungseinstellungen"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_TBL_LABEL\n"
-"string.text"
-msgid "~Table Name"
-msgstr "Name der ~Tabelle"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_QRY_LABEL\n"
-"string.text"
-msgid "~Query name"
-msgstr "Name ~der Abfrage"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_TITLE_RENAME\n"
-"string.text"
-msgid "Rename to"
-msgstr "Umbenennen nach"
-
-#: app.src
-msgctxt ""
-"app.src\n"
-"STR_TITLE_PASTE_AS\n"
-"string.text"
-msgid "Insert as"
-msgstr "Einfügen als"
diff --git a/source/de/dbaccess/source/ui/browser.po b/source/de/dbaccess/source/ui/browser.po
deleted file mode 100644
index 256c462981a..00000000000
--- a/source/de/dbaccess/source/ui/browser.po
+++ /dev/null
@@ -1,265 +0,0 @@
-#. extracted from dbaccess/source/ui/browser
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-14 17:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492191416.000000\n"
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"STR_QUERY_BRW_DELETE_ROWS\n"
-"string.text"
-msgid "Do you want to delete the selected data?"
-msgstr "Sollen die ausgewählten Daten gelöscht werden?"
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"SBA_BROWSER_SETTING_ORDER\n"
-"string.text"
-msgid "Error setting the sort criteria"
-msgstr "Fehler beim Setzen der Sortier-Kriterien"
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"SBA_BROWSER_SETTING_FILTER\n"
-"string.text"
-msgid "Error setting the filter criteria"
-msgstr "Fehler beim Setzen der Filter-Kriterien"
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"RID_STR_CONNECTION_LOST\n"
-"string.text"
-msgid "Connection lost"
-msgstr "Vebindung verloren"
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"RID_STR_QUERIES_CONTAINER\n"
-"string.text"
-msgid "Queries"
-msgstr "Abfragen"
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"RID_STR_TABLES_CONTAINER\n"
-"string.text"
-msgid "Tables"
-msgstr "Tabellen"
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"STR_TITLE_CONFIRM_DELETION\n"
-"string.text"
-msgid "Confirm Deletion"
-msgstr "Löschen bestätigen"
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"STR_QUERY_DELETE_TABLE\n"
-"string.text"
-msgid "Do you want to delete the table '%1'?"
-msgstr "Soll die Tabelle '%1' gelöscht werden?"
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"STR_QUERY_CONNECTION_LOST\n"
-"string.text"
-msgid "The connection to the database has been lost. Do you want to reconnect?"
-msgstr "Die Verbindung zur Datenbank ist verloren gegangen! Soll Sie wieder hergestellt werden?"
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"STR_OPENTABLES_WARNINGS\n"
-"string.text"
-msgid "Warnings encountered"
-msgstr "Warnungen aufgetreten"
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"STR_OPENTABLES_WARNINGS_DETAILS\n"
-"string.text"
-msgid "While retrieving the tables, warnings were reported by the database connection."
-msgstr "Beim Ermitteln der Tabellen wurden von der Datenbankverbindung Warnungen gemeldet."
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"STR_CONNECTING_DATASOURCE\n"
-"string.text"
-msgid "Connecting to \"$name$\" ..."
-msgstr "Verbindungsaufbau zu \"$name$\" ..."
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"STR_LOADING_QUERY\n"
-"string.text"
-msgid "Loading query $name$ ..."
-msgstr "Lade Abfrage $name$ ..."
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"STR_LOADING_TABLE\n"
-"string.text"
-msgid "Loading table $name$ ..."
-msgstr "Lade Tabelle $name$ ..."
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"STR_NO_TABLE_FORMAT_INSIDE\n"
-"string.text"
-msgid "No table format could be found."
-msgstr "Es konnte kein Tabellenformat gefunden werden."
-
-#: sbabrw.src
-msgctxt ""
-"sbabrw.src\n"
-"STR_COULDNOTCONNECT_DATASOURCE\n"
-"string.text"
-msgid "The connection to the data source \"$name$\" could not be established."
-msgstr "Die Verbindung zur Datenquelle \"$name$\" konnte nicht hergestellt werden."
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"RID_STR_COLUMN_FORMAT\n"
-"string.text"
-msgid "Column ~Format..."
-msgstr "Spalten~formatierung..."
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"RID_STR_COLUMN_WIDTH\n"
-"string.text"
-msgid "Column ~Width..."
-msgstr "Spalten~breite..."
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"RID_STR_TABLE_FORMAT\n"
-"string.text"
-msgid "Table Format..."
-msgstr "Tabellenformat ..."
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"RID_STR_ROW_HEIGHT\n"
-"string.text"
-msgid "Row Height..."
-msgstr "Zeilenhöhe..."
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"RID_STR_COPY\n"
-"string.text"
-msgid "~Copy"
-msgstr "~Kopieren"
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"RID_STR_UNDO_MODIFY_RECORD\n"
-"string.text"
-msgid "Undo: Data Input"
-msgstr "Rückgängig: Dateneingabe"
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"RID_STR_SAVE_CURRENT_RECORD\n"
-"string.text"
-msgid "Save current record"
-msgstr "Aktuellen Datensatz speichern"
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"STR_QRY_TITLE\n"
-"string.text"
-msgid "Query #"
-msgstr "Abfrage #"
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"STR_TBL_TITLE\n"
-"string.text"
-msgid "Table #"
-msgstr "Tabelle #"
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"STR_VIEW_TITLE\n"
-"string.text"
-msgid "View #"
-msgstr "Ansicht #"
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"STR_NAME_ALREADY_EXISTS\n"
-"string.text"
-msgid "The name \"#\" already exists."
-msgstr "Der Name \"#\" existiert bereits."
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"STR_NO_COLUMNNAME_MATCHING\n"
-"string.text"
-msgid "No matching column names were found."
-msgstr "Es konnten keine übereinstimmenden Spaltennamen gefunden werden."
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"STR_ERROR_OCCURRED_WHILE_COPYING\n"
-"string.text"
-msgid "An error occurred. Do you want to continue copying?"
-msgstr "Es ist ein Fehler aufgetreten. Möchten Sie den Kopiervorgang fortsetzen?"
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"STR_DATASOURCE_GRIDCONTROL_NAME\n"
-"string.text"
-msgid "Data source table view"
-msgstr "Tabellenansicht der Datenquelle"
-
-#: sbagrid.src
-msgctxt ""
-"sbagrid.src\n"
-"STR_DATASOURCE_GRIDCONTROL_DESC\n"
-"string.text"
-msgid "Shows the selected table or query."
-msgstr "Zeigt die ausgewählte Tabelle oder Abfrage an."
diff --git a/source/de/dbaccess/source/ui/control.po b/source/de/dbaccess/source/ui/control.po
deleted file mode 100644
index 8fc4a15a883..00000000000
--- a/source/de/dbaccess/source/ui/control.po
+++ /dev/null
@@ -1,137 +0,0 @@
-#. extracted from dbaccess/source/ui/control
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-07-26 06:18+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1437891490.000000\n"
-
-#: TableGrantCtrl.src
-msgctxt ""
-"TableGrantCtrl.src\n"
-"STR_TABLE_PRIV_NAME\n"
-"string.text"
-msgid "Table name"
-msgstr "Tabellename"
-
-#: TableGrantCtrl.src
-msgctxt ""
-"TableGrantCtrl.src\n"
-"STR_TABLE_PRIV_INSERT\n"
-"string.text"
-msgid "Insert data"
-msgstr "Daten einfügen"
-
-#: TableGrantCtrl.src
-msgctxt ""
-"TableGrantCtrl.src\n"
-"STR_TABLE_PRIV_DELETE\n"
-"string.text"
-msgid "Delete data"
-msgstr "Daten löschen"
-
-#: TableGrantCtrl.src
-msgctxt ""
-"TableGrantCtrl.src\n"
-"STR_TABLE_PRIV_UPDATE\n"
-"string.text"
-msgid "Modify data"
-msgstr "Daten ändern"
-
-#: TableGrantCtrl.src
-msgctxt ""
-"TableGrantCtrl.src\n"
-"STR_TABLE_PRIV_ALTER\n"
-"string.text"
-msgid "Alter structure"
-msgstr "Struktur ändern"
-
-#: TableGrantCtrl.src
-msgctxt ""
-"TableGrantCtrl.src\n"
-"STR_TABLE_PRIV_SELECT\n"
-"string.text"
-msgid "Read data"
-msgstr "Daten lesen"
-
-#: TableGrantCtrl.src
-msgctxt ""
-"TableGrantCtrl.src\n"
-"STR_TABLE_PRIV_REFERENCE\n"
-"string.text"
-msgid "Modify references"
-msgstr "References ändern"
-
-#: TableGrantCtrl.src
-msgctxt ""
-"TableGrantCtrl.src\n"
-"STR_TABLE_PRIV_DROP\n"
-"string.text"
-msgid "Drop structure"
-msgstr "Struktur löschen"
-
-#: tabletree.src
-msgctxt ""
-"tabletree.src\n"
-"STR_COULDNOTCREATE_DRIVERMANAGER\n"
-"string.text"
-msgid "Cannot connect to the SDBC driver manager (#servicename#)."
-msgstr "Es konnte keine Verbindung zum SDBC-Treiber-Manager (#servicename#) hergestellt werden."
-
-#: tabletree.src
-msgctxt ""
-"tabletree.src\n"
-"STR_NOREGISTEREDDRIVER\n"
-"string.text"
-msgid "A driver is not registered for the URL #connurl#."
-msgstr "Es ist kein Treiber für die URL #connurl# registriert."
-
-#: tabletree.src
-msgctxt ""
-"tabletree.src\n"
-"STR_NOTABLEINFO\n"
-"string.text"
-msgid "Successfully connected, but information about database tables is not available."
-msgstr "Die Verbindung wurde erfolgreich hergestellt, aber es konnten keine Informationen über Tabellen in der Datenbank ermittelt werden."
-
-#: tabletree.src
-msgctxt ""
-"tabletree.src\n"
-"STR_ALL_TABLES\n"
-"string.text"
-msgid "All tables"
-msgstr "Alle Tabellen"
-
-#: tabletree.src
-msgctxt ""
-"tabletree.src\n"
-"STR_ALL_VIEWS\n"
-"string.text"
-msgid "All views"
-msgstr "Alle Tabellensichten"
-
-#: tabletree.src
-msgctxt ""
-"tabletree.src\n"
-"STR_ALL_TABLES_AND_VIEWS\n"
-"string.text"
-msgid "All tables and views"
-msgstr "Alle Tabellen und Tabellensichten"
-
-#: undosqledit.src
-msgctxt ""
-"undosqledit.src\n"
-"STR_QUERY_UNDO_MODIFYSQLEDIT\n"
-"string.text"
-msgid "Modify SQL statement(s)"
-msgstr "SQL-Anweisung(en) modifizieren"
diff --git a/source/de/dbaccess/source/ui/dlg.po b/source/de/dbaccess/source/ui/dlg.po
deleted file mode 100644
index 2faa90d0658..00000000000
--- a/source/de/dbaccess/source/ui/dlg.po
+++ /dev/null
@@ -1,852 +0,0 @@
-#. extracted from dbaccess/source/ui/dlg
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-08-25 12:34+0200\n"
-"PO-Revision-Date: 2017-05-10 03:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494387368.000000\n"
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_DBASE_PATH_OR_FILE\n"
-"string.text"
-msgid "Path to the dBASE files"
-msgstr "Pfad zu den dBASE Dateien"
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_FLAT_PATH_OR_FILE\n"
-"string.text"
-msgid "Path to the text files"
-msgstr "Pfad zu den Textdateien"
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_CALC_PATH_OR_FILE\n"
-"string.text"
-msgid "Path to the spreadsheet document"
-msgstr "Pfad zum Tabellendokument"
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_NAME_OF_ODBC_DATASOURCE\n"
-"string.text"
-msgid "Name of the ODBC data source on your system"
-msgstr "Name der ODBC Datenquelle auf Ihrem System"
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_MYSQL_DATABASE_NAME\n"
-"string.text"
-msgid "Name of the MySQL database"
-msgstr "Name der MySQL Datenbank"
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_ORACLE_DATABASE_NAME\n"
-"string.text"
-msgid "Name of the Oracle database"
-msgstr "Name der Oracle Datenbank"
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_MSACCESS_MDB_FILE\n"
-"string.text"
-msgid "Microsoft Access database file"
-msgstr "Microsoft Access Datenbankdatei"
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_NO_ADDITIONAL_SETTINGS\n"
-"string.text"
-msgid "No more settings are necessary. To verify that the connection is working, click the '%test' button."
-msgstr "Es werden keine weiteren Einstellungen benötigt. Um die Verbindung zu prüfen, klicken Sie auf die Schaltfläche '%test'."
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_COMMONURL\n"
-"string.text"
-msgid "Datasource URL (e.g. postgresql://host:port/database)"
-msgstr "URL der Datenquelle (beispielsweise postgresql://host:port/datenbank)"
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_HOSTNAME\n"
-"string.text"
-msgid "~Host name"
-msgstr "~Rechnername"
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_MOZILLA_PROFILE_NAME\n"
-"string.text"
-msgid "~Mozilla profile name"
-msgstr "Name des ~Mozilla Benutzerprofils"
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_THUNDERBIRD_PROFILE_NAME\n"
-"string.text"
-msgid "~Thunderbird profile name"
-msgstr "Name des ~Thunderbird Benutzerprofils"
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_ADD_TABLES\n"
-"string.text"
-msgid "Add Tables"
-msgstr "Tabellen hinzufügen"
-
-#: AutoControls.src
-msgctxt ""
-"AutoControls.src\n"
-"STR_ADD_TABLE_OR_QUERY\n"
-"string.text"
-msgid "Add Table or Query"
-msgstr "Tabelle oder Abfrage hinzufügen"
-
-#: ConnectionPage.src
-msgctxt ""
-"ConnectionPage.src\n"
-"STR_CONNECTION_TEST\n"
-"string.text"
-msgid "Connection Test"
-msgstr "Verbindungstest"
-
-#: ConnectionPage.src
-msgctxt ""
-"ConnectionPage.src\n"
-"STR_CONNECTION_SUCCESS\n"
-"string.text"
-msgid "The connection was established successfully."
-msgstr "Die Verbindung wurde erfolgreich hergestellt."
-
-#: ConnectionPage.src
-msgctxt ""
-"ConnectionPage.src\n"
-"STR_CONNECTION_NO_SUCCESS\n"
-"string.text"
-msgid "The connection could not be established."
-msgstr "Es konnte keine Verbindung hergestellt werden."
-
-#: ConnectionPage.src
-msgctxt ""
-"ConnectionPage.src\n"
-"STR_JDBCDRIVER_SUCCESS\n"
-"string.text"
-msgid "The JDBC driver was loaded successfully."
-msgstr "Der JDBC-Treiber wurde erfolgreich geladen."
-
-#: ConnectionPage.src
-msgctxt ""
-"ConnectionPage.src\n"
-"STR_JDBCDRIVER_NO_SUCCESS\n"
-"string.text"
-msgid "The JDBC driver could not be loaded."
-msgstr "Der JDBC-Treiber konnte nicht geladen werden."
-
-#: ConnectionPage.src
-msgctxt ""
-"ConnectionPage.src\n"
-"STR_MSACCESS_FILTERNAME\n"
-"string.text"
-msgid "MS Access file"
-msgstr "MS Access Datei"
-
-#: ConnectionPage.src
-msgctxt ""
-"ConnectionPage.src\n"
-"STR_MSACCESS_2007_FILTERNAME\n"
-"string.text"
-msgid "MS Access 2007 file"
-msgstr "MS Access 2007 Datei"
-
-#: ConnectionPage.src
-msgctxt ""
-"ConnectionPage.src\n"
-"STR_FIREBIRD_FILTERNAME\n"
-"string.text"
-msgid "Firebird Database"
-msgstr "Firebird Datenbank"
-
-#: UserAdmin.src
-msgctxt ""
-"UserAdmin.src\n"
-"STR_QUERY_USERADMIN_DELETE_USER\n"
-"string.text"
-msgid "Do you really want to delete the user?"
-msgstr "Soll der Benutzer wirklich gelöscht werden?"
-
-#: UserAdmin.src
-msgctxt ""
-"UserAdmin.src\n"
-"STR_USERADMIN_NOT_AVAILABLE\n"
-"string.text"
-msgid "The database does not support user administration."
-msgstr "Die Datenbank unterstützt keine Benutzerverwaltung."
-
-#: UserAdmin.src
-msgctxt ""
-"UserAdmin.src\n"
-"STR_ERROR_PASSWORDS_NOT_IDENTICAL\n"
-"string.text"
-msgid "The passwords do not match. Please enter the password again."
-msgstr "Die Kennwörter stimmen nicht überein. Bitte geben Sie diese noch einmal ein."
-
-#: dbadmin.src
-msgctxt ""
-"dbadmin.src\n"
-"STR_DATABASE_TYPE_CHANGE\n"
-"string.text"
-msgid "Database properties"
-msgstr "Datenbankeigenschaften"
-
-#: dbadmin.src
-msgctxt ""
-"dbadmin.src\n"
-"STR_PARENTTITLE_GENERAL\n"
-"string.text"
-msgid "Data Source Properties: #"
-msgstr "Datenquellen Eigenschaften: #"
-
-#: dbadmin.src
-msgctxt ""
-"dbadmin.src\n"
-"STR_ERR_USE_CONNECT_TO\n"
-"string.text"
-msgid "Please choose 'Connect to an existing database' to connect to an existing database instead."
-msgstr "Bitte verwenden Sie 'Verbindung zu einer bestehenden Datenbank herstellen', um stattdessen mit einer bestehenden Datenbank zu verbinden."
-
-#: dbadmin.src
-msgctxt ""
-"dbadmin.src\n"
-"STR_COULD_NOT_LOAD_ODBC_LIB\n"
-"string.text"
-msgid "Could not load the program library #lib# or it is corrupted. The ODBC data source selection is not available."
-msgstr "Die Programmbibliothek #lib# konnte nicht geladen werden oder ist defekt. Die ODBC-Datenquellen-Auswahl ist nicht verfügbar."
-
-#: dbadmin.src
-msgctxt ""
-"dbadmin.src\n"
-"STR_UNSUPPORTED_DATASOURCE_TYPE\n"
-"string.text"
-msgid ""
-"This kind of data source is not supported on this platform.\n"
-"You are allowed to change the settings, but you probably will not be able to connect to the database."
-msgstr ""
-"Dieser Datenquellen-Typ wird auf dieser Plattform nicht unterstützt.\n"
-"Sie können die Einstellungen verändern, werden aber vermutlich keine Verbindung zu der Datenbank herstellen können."
-
-#: dbadmin.src
-msgctxt ""
-"dbadmin.src\n"
-"STR_AUTOTEXT_FIELD_SEP_NONE\n"
-"string.text"
-msgid "{None}"
-msgstr "{Keiner}"
-
-#. EM Dec 2002: 'Space' refers to what you get when you hit the space bar on your keyboard.
-#: dbadmin.src
-msgctxt ""
-"dbadmin.src\n"
-"STR_AUTOFIELDSEPARATORLIST\n"
-"string.text"
-msgid ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
-msgstr ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Leerzeichen}\t32"
-
-#: dbadmin.src
-msgctxt ""
-"dbadmin.src\n"
-"STR_AUTODELIMITER_MISSING\n"
-"string.text"
-msgid "#1 must be set."
-msgstr "#1 muss angegeben sein."
-
-#: dbadmin.src
-msgctxt ""
-"dbadmin.src\n"
-"STR_AUTODELIMITER_MUST_DIFFER\n"
-"string.text"
-msgid "#1 and #2 must be different."
-msgstr "#1 und #2 müssen unterschiedlich sein."
-
-#: dbadmin.src
-msgctxt ""
-"dbadmin.src\n"
-"STR_AUTONO_WILDCARDS\n"
-"string.text"
-msgid "Wildcards such as ?,* are not allowed in #1."
-msgstr "Platzhalter wie ?,* sind in der #1 nicht möglich."
-
-#: dbadmin2.src
-msgctxt ""
-"dbadmin2.src\n"
-"STR_ENTER_CONNECTION_PASSWORD\n"
-"string.text"
-msgid "A password is needed to connect to the data source \"$name$\"."
-msgstr "Die Verbindung zur Datenquelle \"$name$\" erfordert die Eingabe eines Kennwortes."
-
-#: dbadmin2.src
-msgctxt ""
-"dbadmin2.src\n"
-"STR_ASK_FOR_DIRECTORY_CREATION\n"
-"string.text"
-msgid ""
-"The directory\n"
-"\n"
-"$path$\n"
-"\n"
-"does not exist. Should it be created?"
-msgstr ""
-"Das Verzeichnis\n"
-"\n"
-"$path$\n"
-"\n"
-"existiert nicht. Soll es angelegt werden?"
-
-#: dbadmin2.src
-msgctxt ""
-"dbadmin2.src\n"
-"STR_COULD_NOT_CREATE_DIRECTORY\n"
-"string.text"
-msgid "The directory $name$ could not be created."
-msgstr "Das Verzeichnis $name$ konnte nicht angelegt werden."
-
-#: dbadmin2.src
-msgctxt ""
-"dbadmin2.src\n"
-"STR_ALREADYEXISTOVERWRITE\n"
-"string.text"
-msgid "The file already exists. Overwrite?"
-msgstr "Die Datei existiert bereits. Soll sie überschrieben werden?"
-
-#: dbadmin2.src
-msgctxt ""
-"dbadmin2.src\n"
-"STR_NEW_FOLDER\n"
-"string.text"
-msgid "Folder"
-msgstr "Ordner"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_DBWIZARDTITLE\n"
-"string.text"
-msgid "Database Wizard"
-msgstr "Datenbank-Assistent"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_INTROPAGE\n"
-"string.text"
-msgid "Select database"
-msgstr "Datenbank auswählen"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_DBASE\n"
-"string.text"
-msgid "Set up dBASE connection"
-msgstr "Verbindung zu dBASE-Dateien einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_TEXT\n"
-"string.text"
-msgid "Set up a connection to text files"
-msgstr "Verbindung zu Textdateien einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_MSACCESS\n"
-"string.text"
-msgid "Set up Microsoft Access connection"
-msgstr "Microsoft Access Verbindung einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_LDAP\n"
-"string.text"
-msgid "Set up LDAP connection"
-msgstr "LDAP-Verbindung einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_ADO\n"
-"string.text"
-msgid "Set up ADO connection"
-msgstr "ADO-Verbindung einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_JDBC\n"
-"string.text"
-msgid "Set up JDBC connection"
-msgstr "JDBC-Verbindung einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_ORACLE\n"
-"string.text"
-msgid "Set up Oracle database connection"
-msgstr "Oracle Datenbankverbindung einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_MYSQL\n"
-"string.text"
-msgid "Set up MySQL connection"
-msgstr "MySQL Verbindung einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_ODBC\n"
-"string.text"
-msgid "Set up ODBC connection"
-msgstr "ODBC-Verbindung einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_SPREADSHEET\n"
-"string.text"
-msgid "Set up Spreadsheet connection"
-msgstr "Verbindung zu Tabellendokumenten einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_AUTHENTIFICATION\n"
-"string.text"
-msgid "Set up user authentication"
-msgstr "Benutzer-Authentifizierung einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_MYSQL_NATIVE\n"
-"string.text"
-msgid "Set up MySQL server data"
-msgstr "MySQL Server-Daten einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_PAGETITLE_FINAL\n"
-"string.text"
-msgid "Save and proceed"
-msgstr "Fertigstellen und fortfahren"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_DATABASEDEFAULTNAME\n"
-"string.text"
-msgid "New Database"
-msgstr "Neue Datenbank"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_MYSQLJDBC_HEADERTEXT\n"
-"string.text"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr "Verbindung zu einer MySQL-Datenbank per JDBC einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_MYSQLJDBC_HELPTEXT\n"
-"string.text"
-msgid ""
-"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-"Bitte geben Sie die benötigten Informationen ein, um eine Verbindung per JDBC zu einer MySQL-Datenbank herzustellen. Bitte beachten Sie, dass eine JDBC-Treiberklasse auf ihrem System installiert und %PRODUCTNAME bekannt sein muss.\n"
-"Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_MYSQL_DRIVERCLASSTEXT\n"
-"string.text"
-msgid "MySQL JDBC d~river class:"
-msgstr "MySQL JDBC ~Treiberklasse:"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_MYSQL_DEFAULT\n"
-"string.text"
-msgid "Default: 3306"
-msgstr "Default: 3306"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_DBASE_HEADERTEXT\n"
-"string.text"
-msgid "Set up a connection to dBASE files"
-msgstr "Verbindung zu dBASE-Dateien einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_DBASE_HELPTEXT\n"
-"string.text"
-msgid "Select the folder where the dBASE files are stored."
-msgstr "Bitte wählen Sie den Ordner, in dem sich die dBASE- Dateien befinden."
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_TEXT_HEADERTEXT\n"
-"string.text"
-msgid "Set up a connection to text files"
-msgstr "Verbindung zu Textdateien einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_TEXT_HELPTEXT\n"
-"string.text"
-msgid "Select the folder where the CSV (Comma Separated Values) text files are stored. %PRODUCTNAME Base will open these files in read-only mode."
-msgstr "Bitte wählen Sie den Ordner, in dem sich die im CSV-Format (Comma Separated Value) gespeicherten Dateien befinden. %PRODUCTNAME Base greift auf die Daten nur lesend zu."
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_TEXT_PATH_OR_FILE\n"
-"string.text"
-msgid "Path to text files"
-msgstr "Pfad zu den Textdateien"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_MSACCESS_HEADERTEXT\n"
-"string.text"
-msgid "Set up a connection to a Microsoft Access database"
-msgstr "Verbindung zu einer Microsoft Access Datenbank einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_MSACCESS_HELPTEXT\n"
-"string.text"
-msgid "Please select the Microsoft Access file you want to access."
-msgstr "Bitte wählen Sie die Microsoft Access Datei aus, auf die Sie zugreifen möchten."
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_ADO_HEADERTEXT\n"
-"string.text"
-msgid "Set up a connection to an ADO database"
-msgstr "Verbindung zu einer ADO-Datenquelle einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_ADO_HELPTEXT\n"
-"string.text"
-msgid ""
-"Please enter the URL of the ADO data source you want to connect to.\n"
-"Click 'Browse' to configure provider-specific settings.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-"Geben Sie bitte die URL ein, um eine Verbindung zu einer ADO-Datenquelle zu erstellen.\n"
-"Klicken Sie auf 'Durchsuchen', um Hersteller-spezifische Einstellungen vorzunehmen.\n"
-"Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_ODBC_HEADERTEXT\n"
-"string.text"
-msgid "Set up a connection to an ODBC database"
-msgstr "Verbindung zu einer ODBC-Datenquelle einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_ODBC_HELPTEXT\n"
-"string.text"
-msgid ""
-"Enter the name of the ODBC database you want to connect to.\n"
-"Click 'Browse...' to select an ODBC database that is already registered in %PRODUCTNAME.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-"Bitte geben Sie den Namen der ODBC-Datenquelle ein, um eine Verbindung herzustellen.\n"
-"Klicken Sie auf 'Durchsuchen...' um eine %PRODUCTNAME bekannte ODBC-Datenquelle auszuwählen.\n"
-"Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_JDBC_HEADERTEXT\n"
-"string.text"
-msgid "Set up a connection to a JDBC database"
-msgstr "Datenbankverbindung per JDBC einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_JDBC_HELPTEXT\n"
-"string.text"
-msgid ""
-"Please enter the required information to connect to a JDBC database.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-"Bitte geben Sie die benötigten Informationen ein, um per JDBC eine Verbindung zu einer Datenquelle herzustellen.\n"
-"Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_ORACLE_HEADERTEXT\n"
-"string.text"
-msgid "Set up a connection to an Oracle database"
-msgstr "Verbindung zu einer Oracle-Datenbank einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_ORACLE_DEFAULT\n"
-"string.text"
-msgid "Default: 1521"
-msgstr "Standard: 1521"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_ORACLE_DRIVERCLASSTEXT\n"
-"string.text"
-msgid "Oracle JDBC ~driver class"
-msgstr "Oracle JDBC ~Treiberklasse"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_ORACLE_HELPTEXT\n"
-"string.text"
-msgid ""
-"Please enter the required information to connect to an Oracle database. Note that a JDBC Driver Class must be installed on your system and registered with %PRODUCTNAME.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-"Bitte geben Sie die benötigte Information ein, um per JDBC eine Verbindung zu einer Oracle-Datenbank herzustellen. Bitte beachten Sie, dass eine JDBC-Treiberklasse auf ihrem System installiert und %PRODUCTNAME bekannt sein muss.\n"
-"Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_SPREADSHEET_HEADERTEXT\n"
-"string.text"
-msgid "Set up a connection to spreadsheets"
-msgstr "Verbindung zu Tabellendokumenten einrichten"
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_SPREADSHEET_HELPTEXT\n"
-"string.text"
-msgid ""
-"Click 'Browse...' to select a %PRODUCTNAME spreadsheet or Microsoft Excel workbook.\n"
-"%PRODUCTNAME will open this file in read-only mode."
-msgstr ""
-"Klicken Sie auf 'Durchsuchen...', um ein %PRODUCTNAME Tabellendokumenten oder eine Microsoft Excel-Arbeitsmappen auszuwählen.\n"
-"%PRODUCTNAME greift auf die Dateien nur lesend zu."
-
-#: dbadminsetup.src
-msgctxt ""
-"dbadminsetup.src\n"
-"STR_SPREADSHEETPATH\n"
-"string.text"
-msgid "~Location and file name"
-msgstr "~Speicherort und Dateiname"
-
-#: directsql.src
-msgctxt ""
-"directsql.src\n"
-"STR_COMMAND_EXECUTED_SUCCESSFULLY\n"
-"string.text"
-msgid "Command successfully executed."
-msgstr "Befehl erfolgreich ausgeführt."
-
-#: directsql.src
-msgctxt ""
-"directsql.src\n"
-"STR_DIRECTSQL_CONNECTIONLOST\n"
-"string.text"
-msgid "The connection to the database has been lost. This dialog will be closed."
-msgstr "Die Verbindung zur Datenbank wurde unterbrochen. Dieser Dialog wird geschlossen."
-
-#: indexdialog.src
-msgctxt ""
-"indexdialog.src\n"
-"STR_TAB_INDEX_SORTORDER\n"
-"string.text"
-msgid "Sort order"
-msgstr "Sortierreihenfolge"
-
-#: indexdialog.src
-msgctxt ""
-"indexdialog.src\n"
-"STR_TAB_INDEX_FIELD\n"
-"string.text"
-msgid "Index field"
-msgstr "Indexfeld"
-
-#: indexdialog.src
-msgctxt ""
-"indexdialog.src\n"
-"STR_ORDER_ASCENDING\n"
-"string.text"
-msgid "Ascending"
-msgstr "Aufsteigend"
-
-#: indexdialog.src
-msgctxt ""
-"indexdialog.src\n"
-"STR_ORDER_DESCENDING\n"
-"string.text"
-msgid "Descending"
-msgstr "Absteigend"
-
-#: indexdialog.src
-msgctxt ""
-"indexdialog.src\n"
-"STR_CONFIRM_DROP_INDEX\n"
-"string.text"
-msgid "Do you really want to delete the index '$name$'?"
-msgstr "Möchten Sie den Index '$name$' wirklich löschen?"
-
-#: indexdialog.src
-msgctxt ""
-"indexdialog.src\n"
-"STR_LOGICAL_INDEX_NAME\n"
-"string.text"
-msgid "index"
-msgstr "Index"
-
-#: indexdialog.src
-msgctxt ""
-"indexdialog.src\n"
-"STR_NEED_INDEX_FIELDS\n"
-"string.text"
-msgid "The index must contain at least one field."
-msgstr "Der Index muss mindestens ein Feld enthalten."
-
-#: indexdialog.src
-msgctxt ""
-"indexdialog.src\n"
-"STR_INDEX_NAME_ALREADY_USED\n"
-"string.text"
-msgid "There is already another index named \"$name$\"."
-msgstr "Es gibt schon einen anderen Index namens \"$name$\"."
-
-#: indexdialog.src
-msgctxt ""
-"indexdialog.src\n"
-"STR_INDEXDESIGN_DOUBLE_COLUMN_NAME\n"
-"string.text"
-msgid "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
-msgstr "In einer Index-Definition darf jede Tabellenspalte höchstens einmal vorkommen. Sie haben jedoch die Spalte \"$name$\" zweimal verwendet."
-
-#: paramdialog.src
-msgctxt ""
-"paramdialog.src\n"
-"STR_COULD_NOT_CONVERT_PARAM\n"
-"string.text"
-msgid "The entry could not be converted to a valid value for the \"$name$\" parameter"
-msgstr "Der Eintrag konnte nicht in einen gültigen Wert für die Spalte \"$name$\" umgewandelt werden"
-
-#: sqlmessage.src
-msgctxt ""
-"sqlmessage.src\n"
-"STR_EXCEPTION_STATUS\n"
-"string.text"
-msgid "SQL Status"
-msgstr "SQL-Status"
-
-#: sqlmessage.src
-msgctxt ""
-"sqlmessage.src\n"
-"STR_EXCEPTION_ERRORCODE\n"
-"string.text"
-msgid "Error code"
-msgstr "Fehler-Code"
-
-#: sqlmessage.src
-msgctxt ""
-"sqlmessage.src\n"
-"STR_EXPLAN_STRINGCONVERSION_ERROR\n"
-"string.text"
-msgid "A frequent reason for this error is an inappropriate character set setting for the language of your database. Check the setting by choosing Edit - Database - Properties."
-msgstr "Ein häufiger Grund für diesen Fehler ist eine ungeeignete Zeichensatz-Einstellung für die Sprache Ihrer Datenbank. Überprüfen Sie diese Einstellung unter Bearbeiten - Datenbank - Eigenschaften."
-
-#: sqlmessage.src
-msgctxt ""
-"sqlmessage.src\n"
-"STR_EXCEPTION_ERROR\n"
-"string.text"
-msgid "Error"
-msgstr "Fehler"
-
-#: sqlmessage.src
-msgctxt ""
-"sqlmessage.src\n"
-"STR_EXCEPTION_WARNING\n"
-"string.text"
-msgid "Warning"
-msgstr "Warnung"
-
-#: sqlmessage.src
-msgctxt ""
-"sqlmessage.src\n"
-"STR_EXCEPTION_INFO\n"
-"string.text"
-msgid "Information"
-msgstr "Information"
-
-#: sqlmessage.src
-msgctxt ""
-"sqlmessage.src\n"
-"STR_EXCEPTION_DETAILS\n"
-"string.text"
-msgid "Details"
-msgstr "Details"
diff --git a/source/de/dbaccess/source/ui/misc.po b/source/de/dbaccess/source/ui/misc.po
deleted file mode 100644
index be4f1e5226c..00000000000
--- a/source/de/dbaccess/source/ui/misc.po
+++ /dev/null
@@ -1,225 +0,0 @@
-#. extracted from dbaccess/source/ui/misc
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-01-14 09:50+0000\n"
-"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484387431.000000\n"
-
-#: WizardPages.src
-msgctxt ""
-"WizardPages.src\n"
-"STR_WIZ_COLUMN_SELECT_TITEL\n"
-"string.text"
-msgid "Apply columns"
-msgstr "Spaltenübernahme"
-
-#: WizardPages.src
-msgctxt ""
-"WizardPages.src\n"
-"STR_WIZ_TYPE_SELECT_TITEL\n"
-"string.text"
-msgid "Type formatting"
-msgstr "Typformatierungen"
-
-#: WizardPages.src
-msgctxt ""
-"WizardPages.src\n"
-"STR_WIZ_NAME_ALREADY_DEFINED\n"
-"string.text"
-msgid ""
-"Enter a unique name for the new primary key data field.\n"
-"The following name is already in use:"
-msgstr ""
-"Geben Sie einen eindeutigen Namen für das neue Primärschlüssel-Datenfeld ein.\n"
-"Der folgende Name wird schon benutzt:"
-
-#: WizardPages.src
-msgctxt ""
-"WizardPages.src\n"
-"STR_WIZ_NAME_MATCHING_TITEL\n"
-"string.text"
-msgid "Assign columns"
-msgstr "Spalten zuordnen"
-
-#: WizardPages.src
-msgctxt ""
-"WizardPages.src\n"
-"STR_WIZ_PB_PREV\n"
-"string.text"
-msgid "< ~Back"
-msgstr "< ~Zurück"
-
-#: WizardPages.src
-msgctxt ""
-"WizardPages.src\n"
-"STR_WIZ_PB_NEXT\n"
-"string.text"
-msgid "~Next>"
-msgstr "~Weiter >"
-
-#: WizardPages.src
-msgctxt ""
-"WizardPages.src\n"
-"STR_WIZ_PB_OK\n"
-"string.text"
-msgid "C~reate"
-msgstr "~Fertigstellen"
-
-#: WizardPages.src
-msgctxt ""
-"WizardPages.src\n"
-"STR_WIZ_TABLE_COPY\n"
-"string.text"
-msgid "Copy table"
-msgstr "Tabelle kopieren"
-
-#: WizardPages.src
-msgctxt ""
-"WizardPages.src\n"
-"STR_COPYTABLE_TITLE_COPY\n"
-"string.text"
-msgid "Copy table"
-msgstr "Tabelle kopieren"
-
-#: WizardPages.src
-msgctxt ""
-"WizardPages.src\n"
-"STR_INVALID_TABLE_NAME\n"
-"string.text"
-msgid "This table name is not valid in the current database."
-msgstr "In der aktuellen Datenbank ist dies kein gültiger Tabellenname."
-
-#: WizardPages.src
-msgctxt ""
-"WizardPages.src\n"
-"STR_SUGGEST_APPEND_TABLE_DATA\n"
-"string.text"
-msgid "Choose the option 'Append data' on the first page to append data to an existing table."
-msgstr "Wählen Sie die Option 'Daten anhängen' auf der ersten Seite, um Daten an eine existierende Tabellen anzuhängen."
-
-#: WizardPages.src
-msgctxt ""
-"WizardPages.src\n"
-"STR_INVALID_TABLE_NAME_LENGTH\n"
-"string.text"
-msgid "Please change the table name. It is too long."
-msgstr "Bitte ändern Sie den Tabellenname. Er ist zu lang."
-
-#: dbumiscres.src
-msgctxt ""
-"dbumiscres.src\n"
-"STR_RSC_CHARSETS\n"
-"string.text"
-msgid "System"
-msgstr "System"
-
-#: dbumiscres.src
-msgctxt ""
-"dbumiscres.src\n"
-"STR_ERROR_DURING_CREATION\n"
-"string.text"
-msgid "Error during creation"
-msgstr "Fehler beim Erzeugen"
-
-#: dbumiscres.src
-msgctxt ""
-"dbumiscres.src\n"
-"STR_UNEXPECTED_ERROR\n"
-"string.text"
-msgid "An unexpected error occurred. The operation could not be performed."
-msgstr "Ein unerwarteter Fehler ist aufgetreten. Die Operation kann nicht ausgeführt werden."
-
-#: dbumiscres.src
-msgctxt ""
-"dbumiscres.src\n"
-"STR_COULDNOTOPEN_LINKEDDOC\n"
-"string.text"
-msgid "The document \"$file$\" could not be opened."
-msgstr "Das Dokument \"$file$\" konnte nicht geöffnet werden."
-
-#: dbumiscres.src
-msgctxt ""
-"dbumiscres.src\n"
-"STR_MISSING_TABLES_XDROP\n"
-"string.text"
-msgid "The table cannot be deleted because the database connection does not support this."
-msgstr "Die Tabelle kann nicht gelöscht werden, da die Datenbankverbindung diese nicht unterstützt."
-
-#: dbumiscres.src
-msgctxt ""
-"dbumiscres.src\n"
-"STR_BUTTON_TEXT_ALL\n"
-"string.text"
-msgid "~All"
-msgstr "A~lle"
-
-#: dbumiscres.src
-msgctxt ""
-"dbumiscres.src\n"
-"STR_UNDO_COLON\n"
-"string.text"
-msgid "Undo:"
-msgstr "Rückgängig:"
-
-#: dbumiscres.src
-msgctxt ""
-"dbumiscres.src\n"
-"STR_REDO_COLON\n"
-"string.text"
-msgid "Redo:"
-msgstr "Wiederherstellen:"
-
-#: dbumiscres.src
-msgctxt ""
-"dbumiscres.src\n"
-"STR_UNKNOWN_TYPE_FOUND\n"
-"string.text"
-msgid "No corresponding column type could be found for column '#1'."
-msgstr "Für die Spalte '#1' konnte kein passender Spaltentyp gefunden werden."
-
-#: dbumiscres.src
-msgctxt ""
-"dbumiscres.src\n"
-"STR_FILE_DOES_NOT_EXIST\n"
-"string.text"
-msgid "The file \"$file$\" does not exist."
-msgstr "Die Datei \"$file$\" existiert nicht."
-
-#: dbumiscres.src
-msgctxt ""
-"dbumiscres.src\n"
-"STR_WARNINGS_DURING_CONNECT\n"
-"string.text"
-msgid "Warnings were encountered while connecting to the data source. Press \"$buttontext$\" to view them."
-msgstr "Beim Verbindungsaufbau sind Warnungen aufgetreten. Drücken Sie \"$buttontext$\", um sie anzuzeigen."
-
-#: dbumiscres.src
-msgctxt ""
-"dbumiscres.src\n"
-"STR_NAMED_OBJECT_ALREADY_EXISTS\n"
-"string.text"
-msgid ""
-"The name '$#$' already exists.\n"
-"Please enter another name."
-msgstr ""
-"Der Name '$#$' existiert bereits.\n"
-"Bitte geben Sie einen neuen Namen an."
-
-#: dbumiscres.src
-msgctxt ""
-"dbumiscres.src\n"
-"RID_STR_EXTENSION_NOT_PRESENT\n"
-"string.text"
-msgid "The report, \"$file$\", requires the Oracle Report Builder feature."
-msgstr "Der Bericht \"$file$\" benötigt die Funktion Oracle Report Builder."
diff --git a/source/de/dbaccess/source/ui/querydesign.po b/source/de/dbaccess/source/ui/querydesign.po
deleted file mode 100644
index 31ee8cefb3c..00000000000
--- a/source/de/dbaccess/source/ui/querydesign.po
+++ /dev/null
@@ -1,419 +0,0 @@
-#. extracted from dbaccess/source/ui/querydesign
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2016-11-15 12:21+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1479212494.000000\n"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_UNDO_TABWINSHOW\n"
-"string.text"
-msgid "Add Table Window"
-msgstr "Tabellenfenster hinzufügen"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_UNDO_MOVETABWIN\n"
-"string.text"
-msgid "Move table window"
-msgstr "Tabellenfenster verschieben"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_UNDO_INSERTCONNECTION\n"
-"string.text"
-msgid "Insert Join"
-msgstr "Verknüpfung einfügen"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_UNDO_REMOVECONNECTION\n"
-"string.text"
-msgid "Delete Join"
-msgstr "Verknüpfung löschen"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_UNDO_SIZETABWIN\n"
-"string.text"
-msgid "Resize table window"
-msgstr "Tabellenfenster - Größe ändern"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_UNDO_TABFIELDDELETE\n"
-"string.text"
-msgid "Delete Column"
-msgstr "Spalte löschen"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_UNDO_TABFIELDMOVED\n"
-"string.text"
-msgid "Move column"
-msgstr "Spalte verschieben"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_UNDO_TABFIELDCREATE\n"
-"string.text"
-msgid "Add Column"
-msgstr "Spalte hinzufügen"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"RID_STR_FIELD_DOESNT_EXIST\n"
-"string.text"
-msgid "Invalid expression, field name '$name$' does not exist."
-msgstr "Der Ausdruck ist ungültig, da der Feldname '$name$' nicht zugeordnet werden kann."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_UNDO_TABWINDELETE\n"
-"string.text"
-msgid "Delete Table Window"
-msgstr "Tabellenfenster löschen"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_UNDO_MODIFY_CELL\n"
-"string.text"
-msgid "Edit Column Description"
-msgstr "Spaltenbeschreibung ändern"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_UNDO_SIZE_COLUMN\n"
-"string.text"
-msgid "Adjust column width"
-msgstr "Spaltenbreite ändern"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_SORTTEXT\n"
-"string.text"
-msgid "(not sorted);ascending;descending"
-msgstr "(nicht sortiert);aufsteigend;absteigend"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_FUNCTIONS\n"
-"string.text"
-msgid "(no function);Group"
-msgstr "(keine Funktion);Gruppierung"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_NOTABLE\n"
-"string.text"
-msgid "(no table)"
-msgstr "(keine Tabelle)"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_ORDERBY_UNRELATED\n"
-"string.text"
-msgid "The database only supports sorting for visible fields."
-msgstr "Die Datenbank unterstützt die Sortierung nur für sichtbare Felder."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_HANDLETEXT\n"
-"string.text"
-msgid "Field;Alias;Table;Sort;Visible;Function;Criterion;Or;Or"
-msgstr "Feld;Alias;Tabelle;Sortierung;Sichtbar;Funktion;Kriterium;oder;oder"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_LIMIT_ALL\n"
-"string.text"
-msgid "All"
-msgstr "Alle"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_TOO_MANY_COLUMNS\n"
-"string.text"
-msgid "There are too many columns."
-msgstr "Es sind zu viele Spalten vorhanden."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_CRITERIA_ON_ASTERISK\n"
-"string.text"
-msgid "A condition cannot be applied to field [*]"
-msgstr "Eine Bedingung für Feld [*] ist nicht möglich"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_TOO_LONG_STATEMENT\n"
-"string.text"
-msgid "The SQL statement created is too long."
-msgstr "Der erzeugte SQL Ausdruck ist zu lang."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_TOOCOMPLEX\n"
-"string.text"
-msgid "Query is too complex"
-msgstr "Anfrage ist zu komplex"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_NOSELECT\n"
-"string.text"
-msgid "Nothing has been selected."
-msgstr "Es fehlt eine Auswahl."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_SYNTAX\n"
-"string.text"
-msgid "SQL syntax error"
-msgstr "Fehler in der SQL Syntax"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_ORDERBY_ON_ASTERISK\n"
-"string.text"
-msgid "[*] cannot be used as a sort criterion."
-msgstr "Nach [*] kann nicht sortiert werden."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_TOO_MANY_TABLES\n"
-"string.text"
-msgid "There are too many tables."
-msgstr "Es sind zu viele Tabellen vorhanden."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_NATIVE\n"
-"string.text"
-msgid "The statement will not be applied when querying in the SQL dialect of the database."
-msgstr "Bei Anfrage im SQL-Dialekt der Datenbank wird das Statement nicht übernommen."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_ILLEGAL_JOIN\n"
-"string.text"
-msgid "Join could not be processed"
-msgstr "Verknüpfung konnte nicht ausgeführt werden"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_SVT_SQL_SYNTAX_ERROR\n"
-"string.text"
-msgid "Syntax error in SQL statement"
-msgstr "Syntaxfehler im SQL-Ausdruck"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERYDESIGN_NO_VIEW_SUPPORT\n"
-"string.text"
-msgid "This database does not support table views."
-msgstr "Diese Datenbank unterstützt keine Tabellenansichten."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_NO_ALTER_VIEW_SUPPORT\n"
-"string.text"
-msgid "This database does not support altering of existing table views."
-msgstr "Diese Datenbank unterstützt keine Änderungen an vorhandenen Tabellensichten."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERYDESIGN_NO_VIEW_ASK\n"
-"string.text"
-msgid "Do you want to create a query instead?"
-msgstr "Möchten Sie statt dessen eine Abfrage erzeugen?"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_DATASOURCE_DELETED\n"
-"string.text"
-msgid "The corresponding data source has been deleted. Therefore, data relevant to that data source cannot be saved."
-msgstr "Die zugehörige Datenquelle wurde gelöscht. Es können keine dies bezüglichen Daten gespeichert werden."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_COLUMN_NOT_FOUND\n"
-"string.text"
-msgid "The column '$name$' is unknown."
-msgstr "Die Spalte '$name$' ist unbekannt."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_JOIN_COLUMN_COMPARE\n"
-"string.text"
-msgid "Columns can only be compared using '='."
-msgstr "Spalten dürfen nur mit '=' verglichen werden."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_LIKE_LEFT_NO_COLUMN\n"
-"string.text"
-msgid "You must use a column name before 'LIKE'."
-msgstr "Vor dem 'WIE' muss ein Spaltenname stehen."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QRY_CHECK_CASESENSITIVE\n"
-"string.text"
-msgid "The column could not be found. Please note that the database is case-sensitive."
-msgstr "Die Spalte konnte nicht gefunden werden. Bitte beachten Sie, dass die Datenbank Groß- und Kleinschreibung unterscheidet."
-
-#. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource will be inserted.
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_QUERY_SAVEMODIFIED\n"
-"string.text"
-msgid ""
-"$object$ has been changed.\n"
-"Do you want to save the changes?"
-msgstr ""
-"$object$ wurde geändert.\n"
-"Sollen die Änderungen gespeichert werden?"
-
-#. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource (except "SQL command", which doesn't make sense here) will be inserted.
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_ERROR_PARSING_STATEMENT\n"
-"string.text"
-msgid "$object$ is based on an SQL command which could not be parsed."
-msgstr "$object$ basiert auf einem SQL-Kommando, das nicht analysiert werden konnte."
-
-#. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource (except "SQL command", which doesn't make sense here) will be inserted.
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_INFO_OPENING_IN_SQL_VIEW\n"
-"string.text"
-msgid "$object$ will be opened in SQL view."
-msgstr "$object$ wird in der SQL-Ansicht geöffnet."
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"RSC_QUERY_OBJECT_TYPE\n"
-"The table view\n"
-"itemlist.text"
-msgid "The table view"
-msgstr "Die Tabellensicht"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"RSC_QUERY_OBJECT_TYPE\n"
-"The query\n"
-"itemlist.text"
-msgid "The query"
-msgstr "Die Abfrage"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"RSC_QUERY_OBJECT_TYPE\n"
-"The SQL statement\n"
-"itemlist.text"
-msgid "The SQL statement"
-msgstr "Der SQL-Befehl"
-
-#: query.src
-msgctxt ""
-"query.src\n"
-"STR_STATEMENT_WITHOUT_RESULT_SET\n"
-"string.text"
-msgid "The query does not create a result set, and thus cannot be part of another query."
-msgstr "Die Abfrage erzeugt keine Ergebnismenge, und kann deswegen nicht Teil einer anderen Abfrage sein."
-
-#: querydlg.src
-msgctxt ""
-"querydlg.src\n"
-"STR_JOIN_TYPE_HINT\n"
-"string.text"
-msgid "Please note that some databases may not support this join type."
-msgstr "Bitte beachten Sie, dass einige Datenbanken eventuell diese Art der Verknüpfung nicht unterstützen."
-
-#: querydlg.src
-msgctxt ""
-"querydlg.src\n"
-"STR_QUERY_INNER_JOIN\n"
-"string.text"
-msgid "Includes only records for which the contents of the related fields of both tables are identical."
-msgstr "Beinhaltet nur die Datensätze, bei denen die Inhalte der verknüpften Felder beider Tabellen gleich sind."
-
-#: querydlg.src
-msgctxt ""
-"querydlg.src\n"
-"STR_QUERY_LEFTRIGHT_JOIN\n"
-"string.text"
-msgid "Contains ALL records from table '%1' but only records from table '%2' where the values in the related fields are matching."
-msgstr "Beinhaltet ALLE Datensätze aus '%1' und nur die Datensätze aus '%2', bei denen die Inhalte der verknüpften Felder beider Tabellen gleich sind."
-
-#: querydlg.src
-msgctxt ""
-"querydlg.src\n"
-"STR_QUERY_FULL_JOIN\n"
-"string.text"
-msgid "Contains ALL records from '%1' and from '%2'."
-msgstr "Beinhaltet ALLE Datensätze aus '%1' und aus '%2'."
-
-#: querydlg.src
-msgctxt ""
-"querydlg.src\n"
-"STR_QUERY_CROSS_JOIN\n"
-"string.text"
-msgid "Contains the Cartesian product of ALL records from '%1' and from '%2'."
-msgstr "Beinhaltet das kartesische Produkt ALLER Datensätze aus '%1' und '%2'."
diff --git a/source/de/dbaccess/source/ui/relationdesign.po b/source/de/dbaccess/source/ui/relationdesign.po
deleted file mode 100644
index 48e4eef3d86..00000000000
--- a/source/de/dbaccess/source/ui/relationdesign.po
+++ /dev/null
@@ -1,77 +0,0 @@
-#. extracted from dbaccess/source/ui/relationdesign
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-07-25 06:43+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
-"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1437806592.000000\n"
-
-#: relation.src
-msgctxt ""
-"relation.src\n"
-"STR_QUERY_REL_EDIT_RELATION\n"
-"string.text"
-msgid "This relation already exists. Do you want to edit it or create a new one?"
-msgstr "Diese Relation existiert bereits. Möchten Sie diese bearbeiten oder eine neue Relation erstellen?"
-
-#: relation.src
-msgctxt ""
-"relation.src\n"
-"STR_QUERY_REL_EDIT\n"
-"string.text"
-msgid "Edit..."
-msgstr "Bearbeiten..."
-
-#: relation.src
-msgctxt ""
-"relation.src\n"
-"STR_QUERY_REL_CREATE\n"
-"string.text"
-msgid "Create..."
-msgstr "Erstellen..."
-
-#: relation.src
-msgctxt ""
-"relation.src\n"
-"STR_RELATIONDESIGN\n"
-"string.text"
-msgid " - %PRODUCTNAME Base: Relation design"
-msgstr " - %PRODUCTNAME Base: Beziehungsdesign"
-
-#: relation.src
-msgctxt ""
-"relation.src\n"
-"STR_RELATIONDESIGN_NOT_AVAILABLE\n"
-"string.text"
-msgid "The database does not support relations."
-msgstr "Die Datenbank unterstützt keine Relationen."
-
-#: relation.src
-msgctxt ""
-"relation.src\n"
-"STR_QUERY_REL_DELETE_WINDOW\n"
-"string.text"
-msgid "When you delete this table all corresponding relations will be deleted as well. Continue?"
-msgstr "Wenn Sie diese Tabelle löschen werden alle zugehörigen Relationen ebenfalls gelöscht. Fortfahren?"
-
-#: relation.src
-msgctxt ""
-"relation.src\n"
-"STR_QUERY_REL_COULD_NOT_CREATE\n"
-"string.text"
-msgid ""
-"The database could not create the relation. Maybe foreign keys for this kind of table aren't supported.\n"
-"Please check your documentation of the database."
-msgstr ""
-"Die Datenbank konnte die Beziehung nicht erstellen. Unter Umständen werden Fremdschlüssel für diese Art von Tabelle nicht unterstützt.\n"
-"Bitte überprüfen Sie die Dokumentation der Datenbank."
diff --git a/source/de/dbaccess/source/ui/tabledesign.po b/source/de/dbaccess/source/ui/tabledesign.po
deleted file mode 100644
index 1f450e61186..00000000000
--- a/source/de/dbaccess/source/ui/tabledesign.po
+++ /dev/null
@@ -1,511 +0,0 @@
-#. extracted from dbaccess/source/ui/tabledesign
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-01-14 10:34+0000\n"
-"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1484390068.000000\n"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABLEDESIGN_DBFIELDTYPES\n"
-"string.text"
-msgid "Unknown;Text;Number;Date/Time;Date;Time;Yes/No;Currency;Memo;Counter;Image;Text (fix);Decimal;Binary (fix);Binary;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Structure;Field;BLOB;CLOB;REF;OTHER;Bit (fix)"
-msgstr "Unbekannt;Text;Zahl;Datum/Zeit;Datum;Zeit;Ja/Nein;Währung;Memo;Zähler;Bild;Text (fix);Dezimal;Binärfeld (fix);Binärfeld;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Objekt;Distinct;Struktur;Feld;BLOB;CLOB;REF;OTHER;Bit (fix)"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABLEDESIGN_UNDO_PRIMKEY\n"
-"string.text"
-msgid "Insert/remove primary key"
-msgstr "Primärschlüssel einfügen/entfernen"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_VALUE_YES\n"
-"string.text"
-msgid "Yes"
-msgstr "Ja"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_VALUE_NO\n"
-"string.text"
-msgid "No"
-msgstr "Nein"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_VALUE_NONE\n"
-"string.text"
-msgid "<none>"
-msgstr "<keiner>"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TAB_FIELD_NAME\n"
-"string.text"
-msgid "Field name"
-msgstr "Feldname"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TAB_FIELD_COLUMN_NAME\n"
-"string.text"
-msgid "Field Name"
-msgstr "Feldname"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TAB_FIELD_DATATYPE\n"
-"string.text"
-msgid "Field ~type"
-msgstr "Feld~typ"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TAB_FIELD_COLUMN_DATATYPE\n"
-"string.text"
-msgid "Field Type"
-msgstr "Feldtyp"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TAB_HELP_TEXT\n"
-"string.text"
-msgid "Description"
-msgstr "Beschreibung"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_COLUMN_DESCRIPTION\n"
-"string.text"
-msgid "Column Description"
-msgstr "Spaltenbeschreibung"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_FIELD_AUTOINCREMENT\n"
-"string.text"
-msgid "~AutoValue"
-msgstr "~Auto-Wert"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TAB_PROPERTIES\n"
-"string.text"
-msgid "Field Properties"
-msgstr "Feldeigenschaften"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABED_UNDO_CELLMODIFIED\n"
-"string.text"
-msgid "Modify cell"
-msgstr "Zelle ändern"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABED_UNDO_ROWDELETED\n"
-"string.text"
-msgid "Delete row"
-msgstr "Zeile löschen"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABED_UNDO_TYPE_CHANGED\n"
-"string.text"
-msgid "Modify field type"
-msgstr "Feldtyp ändern"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABED_UNDO_ROWINSERTED\n"
-"string.text"
-msgid "Insert row"
-msgstr "Zeile einfügen"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABED_UNDO_NEWROWINSERTED\n"
-"string.text"
-msgid "Insert new row"
-msgstr "Neue Zeile einfügen"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_DEFAULT_VALUE\n"
-"string.text"
-msgid "~Default value"
-msgstr "~Defaultwert"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_FIELD_REQUIRED\n"
-"string.text"
-msgid "~Entry required"
-msgstr "~Eingabe erforderlich"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TEXT_LENGTH\n"
-"string.text"
-msgid "~Length"
-msgstr "~Länge"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_NUMERIC_TYPE\n"
-"string.text"
-msgid "~Type"
-msgstr "~Typ"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_LENGTH\n"
-"string.text"
-msgid "~Length"
-msgstr "~Länge"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_SCALE\n"
-"string.text"
-msgid "Decimal ~places"
-msgstr "~Nachkommastellen"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_FORMAT\n"
-"string.text"
-msgid "Format example"
-msgstr "Format-Beispiel"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_HELP_BOOL_DEFAULT\n"
-"string.text"
-msgid ""
-"Select a value that is to appear in all new records as default.\n"
-"If the field is not to have a default value, select the empty string."
-msgstr ""
-"Wählen Sie einen Wert aus, der in jedem neu eingefügten Datensatz als Standard erscheinen soll.\n"
-"Wählen Sie die leere Zeichenkette aus, wenn das Feld keinen solchen Standardwert haben soll."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_HELP_DEFAULT_VALUE\n"
-"string.text"
-msgid ""
-"Enter a default value for this field.\n"
-"\n"
-"When you later enter data in the table, this string will be used in each new record for the field selected. It should, therefore, correspond to the cell format that needs to be entered below."
-msgstr ""
-"Geben Sie hier einen Standardwert für das Feld an.\n"
-"\n"
-"Wenn Sie später Daten in die Tabelle eingeben, wird in jedem neuen Datensatz diese Zeichenkette für das ausgewählte Feld verwendet. Sie sollte deshalb der weiter unten einzugebenden Zellenformatierung genügen."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_HELP_FIELD_REQUIRED\n"
-"string.text"
-msgid "Activate this option if this field cannot contain NULL values, i.e. the user must always enter data."
-msgstr "Aktivieren Sie diese Option, wenn in diesem Feld keine NULL-Werte erlaubt sind, der Benutzer also immer Daten eingeben muss."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_HELP_TEXT_LENGTH\n"
-"string.text"
-msgid "Enter the maximum text length permitted."
-msgstr "Geben Sie die maximal zulässige Textlänge an."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_HELP_NUMERIC_TYPE\n"
-"string.text"
-msgid "Enter the number format."
-msgstr "Legen Sie hier fest, welchen Typ die Zahl haben soll."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_HELP_LENGTH\n"
-"string.text"
-msgid ""
-"Determine the length data can have in this field.\n"
-"\n"
-"If decimal fields, then the maximum length of the number to be entered, if binary fields, then the length of the data block.\n"
-"The value will be corrected accordingly when it exceeds the maximum for this database."
-msgstr ""
-"Geben Sie die Länge für Daten in diesem Feld an.\n"
-"\n"
-"Für Dezimal-Felder ist das die maximale Länge der eingegebenen Zahl, für Binärfelder die Länge des Datenblockes.\n"
-"Wenn der Wert größer ist als der maximal für diese Datenbank zulässige, wird er entsprechend korrigiert."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_HELP_SCALE\n"
-"string.text"
-msgid "Specify the number of decimal places permitted in this field."
-msgstr "Geben Sie an, wie viel Nachkommastellen die Zahlen in diesem Feld enthalten sollen."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_HELP_FORMAT_CODE\n"
-"string.text"
-msgid "This is where you see how the data would be displayed in the current format (use the button on the right to modify the format)."
-msgstr "Hier sehen Sie, wie die Daten mit dem aktuell eingestellten Format dargestellt würden (verwenden Sie die nebenstehenden Schaltfläche, um das Format zu ändern)."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_HELP_FORMAT_BUTTON\n"
-"string.text"
-msgid "This is where you determine the output format of the data."
-msgstr "Hiermit können Sie festlegen, wie die Daten der Tabelle bei der Ausgabe formatiert werden sollen."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_HELP_AUTOINCREMENT\n"
-"string.text"
-msgid ""
-"Choose if this field should contain AutoIncrement values.\n"
-"\n"
-"You can not enter data in fields of this type. An intrinsic value will be assigned to each new record automatically (resulting from the increment of the previous record)."
-msgstr ""
-"Wählen Sie, ob dieses Feld Auto-Inkrement-Werte enthalten soll.\n"
-"\n"
-"Sie können in ihm dann keine Daten direkt eingeben. Stattdessen bekommt jeder neue Datensatz automatisch einen eigenen Wert zugewiesen (der sich durch Erhöhen aus dem des vorigen Datensatzes ergibt)."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_BUTTON_FORMAT\n"
-"string.text"
-msgid "~..."
-msgstr "~..."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABLEDESIGN_DUPLICATE_NAME\n"
-"string.text"
-msgid "The table cannot be saved because column name \"$column$\" was assigned twice."
-msgstr "Die Tabelle kann nicht gespeichert werden, da der Spaltenname \"$column$\" doppelt vergeben wurde."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TBL_COLUMN_IS_KEYCOLUMN\n"
-"string.text"
-msgid "The column \"$column$\" belongs to the primary key. If the column is deleted, the primary key will also be deleted. Do you really want to continue?"
-msgstr "Die Spalte \"$column$\" gehört zum Primärschlüssel. Falls sie gelöscht wird, wird auch der Primärschlüssel gelöscht. Möchten Sie wirklich fortfahren?"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE\n"
-"string.text"
-msgid "Primary Key Affected"
-msgstr "Primärschlüssel betroffen"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_COLUMN_NAME\n"
-"string.text"
-msgid "Column"
-msgstr "Spalte"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_QRY_CONTINUE\n"
-"string.text"
-msgid "Continue anyway?"
-msgstr "Möchten Sie trotzdem fortfahren?"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABLEDESIGN_CONNECTION_MISSING\n"
-"string.text"
-msgid "The table could not be saved due to problems connecting to the database."
-msgstr "Die Tabelle konnte nicht gespeichert werden, da keine Verbindung zur Datenbank hergestellt werden konnte."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABLEDESIGN_DATASOURCE_DELETED\n"
-"string.text"
-msgid "The table filter could not be adjusted because the data source has been deleted."
-msgstr "Der Tabellenfilter konnte nicht angepasst werden, da die Datenquelle gelöscht wurde."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_QUERY_SAVE_TABLE_EDIT_INDEXES\n"
-"string.text"
-msgid ""
-"Before you can edit the indexes of a table, you have to save it.\n"
-"Do you want to save the changes now?"
-msgstr ""
-"Bevor Sie die Indizies einer Tabelle ändern können, muss diese gespeichert werden.\n"
-"Möchten Sie Ihre Änderungen jetzt speichern?"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABLEDESIGN_NO_PRIM_KEY_HEAD\n"
-"string.text"
-msgid "No primary key"
-msgstr "Kein Primärschlüssel"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABLEDESIGN_NO_PRIM_KEY\n"
-"string.text"
-msgid ""
-"A unique index or primary key is required for data record identification in this database.\n"
-"You can only enter data into this table when one of these two structural conditions has been met.\n"
-"\n"
-"Should a primary key be created now?"
-msgstr ""
-"In dieser Datenbank wird zur Datensatz-Identifizierung ein eindeutiger Index oder ein Primärschlüssel benötigt.\n"
-"Sie werden erst dann Daten in die Tabelle eingeben können, wenn sie eine dieser beiden Struktur-Bedingungen erfüllt.\n"
-"\n"
-"Soll jetzt ein Primärschlüssel erzeugt werden?"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABLEDESIGN_ALTER_ERROR\n"
-"string.text"
-msgid "The column \"$column$\" could not be changed. Should the column instead be deleted and the new format appended?"
-msgstr "Die Spalte \"$column$\" konnte nicht geändert werden. Soll sie statt dessen gelöscht und das neue Format angehängt werden?"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABLEDESIGN_SAVE_ERROR\n"
-"string.text"
-msgid "Error while saving the table design"
-msgstr "Fehler beim Speichern des Tabellenentwurfes"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_TABLEDESIGN_COULD_NOT_DROP_COL\n"
-"string.text"
-msgid "The column $column$ could not be deleted."
-msgstr "Die Spalte $column$ konnte nicht gelöscht werden."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_AUTOINCREMENT_VALUE\n"
-"string.text"
-msgid "A~uto-increment statement"
-msgstr "A~uto-Increment-Ausdruck"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_HELP_AUTOINCREMENT_VALUE\n"
-"string.text"
-msgid ""
-"Enter an SQL statement for the auto-increment field.\n"
-"\n"
-"This statement will be directly transferred to the database when the table is created."
-msgstr ""
-"Geben Sie hier einen SQL Ausdruck für das Auto-Increment-Feld an.\n"
-"\n"
-"Dieser Ausdruck wird beim Erzeugen der Tabelle direkt an die Datenbank übertragen."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_NO_TYPE_INFO_AVAILABLE\n"
-"string.text"
-msgid ""
-"No type information could be retrieved from the database.\n"
-"The table design mode is not available for this data source."
-msgstr ""
-"Es konnten keine Typinformationen von der Datenbank ermittelt werden.\n"
-"Der Tabellenentwurfmodus ist für diese Datenquelle nicht verfügbar."
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_CHANGE_COLUMN_NAME\n"
-"string.text"
-msgid "change field name"
-msgstr "Feldnamen ändern"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_CHANGE_COLUMN_TYPE\n"
-"string.text"
-msgid "change field type"
-msgstr "Feldtyp ändern"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_CHANGE_COLUMN_DESCRIPTION\n"
-"string.text"
-msgid "change field description"
-msgstr "Feldbeschreibung ändern"
-
-#: table.src
-msgctxt ""
-"table.src\n"
-"STR_CHANGE_COLUMN_ATTRIBUTE\n"
-"string.text"
-msgid "change field attribute"
-msgstr "Feldattribut ändern"
diff --git a/source/de/dbaccess/source/ui/uno.po b/source/de/dbaccess/source/ui/uno.po
deleted file mode 100644
index 0fdddc7ed67..00000000000
--- a/source/de/dbaccess/source/ui/uno.po
+++ /dev/null
@@ -1,105 +0,0 @@
-#. extracted from dbaccess/source/ui/uno
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-06-18 04:37+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1466224669.000000\n"
-
-#: copytablewizard.src
-msgctxt ""
-"copytablewizard.src\n"
-"STR_CTW_NO_VIEWS_SUPPORT\n"
-"string.text"
-msgid "The destination database does not support views."
-msgstr "Die Zieldatenbank unterstützt keine Sichten."
-
-#: copytablewizard.src
-msgctxt ""
-"copytablewizard.src\n"
-"STR_CTW_NO_PRIMARY_KEY_SUPPORT\n"
-"string.text"
-msgid "The destination database does not support primary keys."
-msgstr "Die Zieldatenbank unterstützt keine Primärschlüssel."
-
-#: copytablewizard.src
-msgctxt ""
-"copytablewizard.src\n"
-"STR_CTW_INVALID_DATA_ACCESS_DESCRIPTOR\n"
-"string.text"
-msgid "no data access descriptor found, or no data access descriptor able to provide all necessary information"
-msgstr "Kein DataAccess-Descriptor gefunden oder kein DataAccess-Descriptor verfügbar, der alle benötigten Informationen zur Verfügung stellen kann"
-
-#: copytablewizard.src
-msgctxt ""
-"copytablewizard.src\n"
-"STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT\n"
-"string.text"
-msgid "Only tables and queries are supported at the moment."
-msgstr "Zur Zeit werden nur Tabellen und Abfragen unterstützt."
-
-#: copytablewizard.src
-msgctxt ""
-"copytablewizard.src\n"
-"STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS\n"
-"string.text"
-msgid "The copy source's result set must support bookmarks."
-msgstr "Das ResultSet der Quelle für die Kopieroperation muss Lesezeichen unterstützen."
-
-#: copytablewizard.src
-msgctxt ""
-"copytablewizard.src\n"
-"STR_CTW_UNSUPPORTED_COLUMN_TYPE\n"
-"string.text"
-msgid "Unsupported source column type ($type$) at column position $pos$."
-msgstr "Nicht unterstützter Spaltentyp ($type$) bei Quell-Spalte an Position $pos$."
-
-#: copytablewizard.src
-msgctxt ""
-"copytablewizard.src\n"
-"STR_CTW_ILLEGAL_PARAMETER_COUNT\n"
-"string.text"
-msgid "Illegal number of initialization parameters."
-msgstr "Ungültige Anzahl von Initialisierungsparametern."
-
-#: copytablewizard.src
-msgctxt ""
-"copytablewizard.src\n"
-"STR_CTW_ERROR_DURING_INITIALIZATION\n"
-"string.text"
-msgid "An error occurred during initialization."
-msgstr "Während der Initialisierung ist ein Fehler aufgetreten."
-
-#: copytablewizard.src
-msgctxt ""
-"copytablewizard.src\n"
-"STR_CTW_ERROR_UNSUPPORTED_SETTING\n"
-"string.text"
-msgid "Unsupported setting in the copy source descriptor: $name$."
-msgstr "Nicht unterstützte Einstellung im Descriptor der Kopier-Quelle: $name$."
-
-#: copytablewizard.src
-msgctxt ""
-"copytablewizard.src\n"
-"STR_CTW_ERROR_NO_QUERY\n"
-"string.text"
-msgid "To copy a query, your connection must be able to provide queries."
-msgstr "Um eine Abfrage zu kopieren, muss Ihre Quelle Abfragen zur Verfügung stellen können."
-
-#: copytablewizard.src
-msgctxt ""
-"copytablewizard.src\n"
-"STR_CTW_ERROR_INVALID_INTERACTIONHANDLER\n"
-"string.text"
-msgid "The given interaction handler is invalid."
-msgstr "Der angegebene Interaktions-Handler ist ungültig."
diff --git a/source/de/dbaccess/uiconfig/ui.po b/source/de/dbaccess/uiconfig/ui.po
deleted file mode 100644
index 103f6bb3b1f..00000000000
--- a/source/de/dbaccess/uiconfig/ui.po
+++ /dev/null
@@ -1,3434 +0,0 @@
-#. extracted from dbaccess/uiconfig/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-20 02:55+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492656905.000000\n"
-
-#: admindialog.ui
-msgctxt ""
-"admindialog.ui\n"
-"AdminDialog\n"
-"title\n"
-"string.text"
-msgid "Database Properties"
-msgstr "Datenbankeigenschaften"
-
-#: admindialog.ui
-msgctxt ""
-"admindialog.ui\n"
-"advanced\n"
-"label\n"
-"string.text"
-msgid "Advanced Properties"
-msgstr "Erweiterte Eigenschaften"
-
-#: advancedsettingsdialog.ui
-msgctxt ""
-"advancedsettingsdialog.ui\n"
-"AdvancedSettingsDialog\n"
-"title\n"
-"string.text"
-msgid "Advanced Settings"
-msgstr "Erweiterte Einstellungen"
-
-#: advancedsettingsdialog.ui
-msgctxt ""
-"advancedsettingsdialog.ui\n"
-"generated\n"
-"label\n"
-"string.text"
-msgid "Generated Values"
-msgstr "Generierte Werte"
-
-#: advancedsettingsdialog.ui
-msgctxt ""
-"advancedsettingsdialog.ui\n"
-"special\n"
-"label\n"
-"string.text"
-msgid "Special Settings"
-msgstr "Besondere Einstellungen"
-
-#: applycolpage.ui
-msgctxt ""
-"applycolpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Existing Columns"
-msgstr "Vorhandene Spalten"
-
-#: authentificationpage.ui
-msgctxt ""
-"authentificationpage.ui\n"
-"header\n"
-"label\n"
-"string.text"
-msgid "Set up the user authentication"
-msgstr "Benutzer-Authentifizierung eingeben"
-
-#: authentificationpage.ui
-msgctxt ""
-"authentificationpage.ui\n"
-"helptext\n"
-"label\n"
-"string.text"
-msgid "Some databases require you to enter a user name."
-msgstr "Geben Sie bitte jetzt einen Benutzernamen ein, falls die Datenbank zur Verbindungsherstellung einen bestimmten Benutzer erwartet."
-
-#: authentificationpage.ui
-msgctxt ""
-"authentificationpage.ui\n"
-"generalUserNameLabel\n"
-"label\n"
-"string.text"
-msgid "_User name"
-msgstr "_Benutzername"
-
-#: authentificationpage.ui
-msgctxt ""
-"authentificationpage.ui\n"
-"passRequiredCheckbutton\n"
-"label\n"
-"string.text"
-msgid "Password re_quired"
-msgstr "_Kennwort erforderlich"
-
-#: authentificationpage.ui
-msgctxt ""
-"authentificationpage.ui\n"
-"testConnectionButton\n"
-"label\n"
-"string.text"
-msgid "_Test Connection"
-msgstr "_Verbindung testen"
-
-#: autocharsetpage.ui
-msgctxt ""
-"autocharsetpage.ui\n"
-"charsetlabel\n"
-"label\n"
-"string.text"
-msgid "_Character set:"
-msgstr "_Zeichensatz:"
-
-#: autocharsetpage.ui
-msgctxt ""
-"autocharsetpage.ui\n"
-"charsetheader\n"
-"label\n"
-"string.text"
-msgid "Data Conversion"
-msgstr "Datenkonvertierung"
-
-#: backuppage.ui
-msgctxt ""
-"backuppage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Backup Your Document"
-msgstr "Sichern Sie Ihr Dokument"
-
-#: backuppage.ui
-msgctxt ""
-"backuppage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "To allow you to go back to the state before the migration, the database document will be backed up to a location of your choice. Every change done by the wizard will be made to the original document, the backup will stay untouched."
-msgstr "Um den Stand vor der Migration wiederherstellen zu können, wird eine Sicherungskopie des Datenbankdokuments an einer Stelle Ihrer Wahl angelegt. Alle Änderungen des Assistenten werden nur am Originaldokument vorgenommen, die Sicherungskopie bleibt unverändert."
-
-#: backuppage.ui
-msgctxt ""
-"backuppage.ui\n"
-"startmigrate\n"
-"label\n"
-"string.text"
-msgid "Press 'Next' to save a copy of your document, and to begin the migration."
-msgstr "Klicken Sie auf 'Weiter', um eine Sicherungskopie Ihres Dokuments anzulegen und die Migration zu starten."
-
-#: backuppage.ui
-msgctxt ""
-"backuppage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Save to:"
-msgstr "Speichern unter:"
-
-#: backuppage.ui
-msgctxt ""
-"backuppage.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "Browse..."
-msgstr "Durchsuchen..."
-
-#: choosedatasourcedialog.ui
-msgctxt ""
-"choosedatasourcedialog.ui\n"
-"ChooseDataSourceDialog\n"
-"title\n"
-"string.text"
-msgid "Data Source"
-msgstr "Datenquelle"
-
-#: choosedatasourcedialog.ui
-msgctxt ""
-"choosedatasourcedialog.ui\n"
-"organize\n"
-"label\n"
-"string.text"
-msgid "Or_ganize..."
-msgstr "_Verwalten..."
-
-#: choosedatasourcedialog.ui
-msgctxt ""
-"choosedatasourcedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Choose a data source:"
-msgstr "Wählen Sie eine Datenquelle:"
-
-#: collectionviewdialog.ui
-msgctxt ""
-"collectionviewdialog.ui\n"
-"CollectionView\n"
-"title\n"
-"string.text"
-msgid "Save"
-msgstr "Speichern"
-
-#: collectionviewdialog.ui
-msgctxt ""
-"collectionviewdialog.ui\n"
-"ok\n"
-"label\n"
-"string.text"
-msgid "_Save"
-msgstr "_Speichern"
-
-#: collectionviewdialog.ui
-msgctxt ""
-"collectionviewdialog.ui\n"
-"newFolderButton\n"
-"tooltip_text\n"
-"string.text"
-msgid "Create New Directory"
-msgstr "Neuen Ordner erstellen"
-
-#: collectionviewdialog.ui
-msgctxt ""
-"collectionviewdialog.ui\n"
-"upButton\n"
-"tooltip_text\n"
-"string.text"
-msgid "Up One Level"
-msgstr "Aufwärts"
-
-#: collectionviewdialog.ui
-msgctxt ""
-"collectionviewdialog.ui\n"
-"fileNameLabel\n"
-"label\n"
-"string.text"
-msgid "File _name:"
-msgstr "Datei_name:"
-
-#: colwidthdialog.ui
-msgctxt ""
-"colwidthdialog.ui\n"
-"ColWidthDialog\n"
-"title\n"
-"string.text"
-msgid "Column Width"
-msgstr "Spaltenbreite"
-
-#: colwidthdialog.ui
-msgctxt ""
-"colwidthdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Width:"
-msgstr "_Breite:"
-
-#: colwidthdialog.ui
-msgctxt ""
-"colwidthdialog.ui\n"
-"automatic\n"
-"label\n"
-"string.text"
-msgid "_Automatic"
-msgstr "_Automatisch"
-
-#: connectionpage.ui
-msgctxt ""
-"connectionpage.ui\n"
-"browseurllabel\n"
-"label\n"
-"string.text"
-msgid "Path to the dBASE files:"
-msgstr "Pfad zu den dBASE-Dateien:"
-
-#: connectionpage.ui
-msgctxt ""
-"connectionpage.ui\n"
-"create\n"
-"label\n"
-"string.text"
-msgid "_Create New"
-msgstr "_Neu erstellen"
-
-#: connectionpage.ui
-msgctxt ""
-"connectionpage.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "_Browse…"
-msgstr "_Durchsuchen…"
-
-#: connectionpage.ui
-msgctxt ""
-"connectionpage.ui\n"
-"generalLabel\n"
-"label\n"
-"string.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: connectionpage.ui
-msgctxt ""
-"connectionpage.ui\n"
-"userNameLabel\n"
-"label\n"
-"string.text"
-msgid "_User name:"
-msgstr "_Benutzername:"
-
-#: connectionpage.ui
-msgctxt ""
-"connectionpage.ui\n"
-"passCheckbutton\n"
-"label\n"
-"string.text"
-msgid "Password required"
-msgstr "Kennwort erforderlich"
-
-#: connectionpage.ui
-msgctxt ""
-"connectionpage.ui\n"
-"userlabel\n"
-"label\n"
-"string.text"
-msgid "User Authentication"
-msgstr "Benutzer Authentifizierung"
-
-#: connectionpage.ui
-msgctxt ""
-"connectionpage.ui\n"
-"javaDriverLabel\n"
-"label\n"
-"string.text"
-msgid "_JDBC driver class:"
-msgstr "_JDBC-Treiberklasse:"
-
-#: connectionpage.ui
-msgctxt ""
-"connectionpage.ui\n"
-"driverButton\n"
-"label\n"
-"string.text"
-msgid "Test Class"
-msgstr "Klasse testen"
-
-#: connectionpage.ui
-msgctxt ""
-"connectionpage.ui\n"
-"JDBCLabel\n"
-"label\n"
-"string.text"
-msgid "JDBC Properties"
-msgstr "JDBC-Eigenschaften"
-
-#: connectionpage.ui
-msgctxt ""
-"connectionpage.ui\n"
-"connectionButton\n"
-"label\n"
-"string.text"
-msgid "Test Connection"
-msgstr "Verbindung testen"
-
-#: copytablepage.ui
-msgctxt ""
-"copytablepage.ui\n"
-"defdata\n"
-"label\n"
-"string.text"
-msgid "De_finition and data"
-msgstr "Definition und D_aten"
-
-#: copytablepage.ui
-msgctxt ""
-"copytablepage.ui\n"
-"def\n"
-"label\n"
-"string.text"
-msgid "Def_inition"
-msgstr "_Definition"
-
-#: copytablepage.ui
-msgctxt ""
-"copytablepage.ui\n"
-"view\n"
-"label\n"
-"string.text"
-msgid "A_s table view"
-msgstr "Als Tabellen_sicht"
-
-#: copytablepage.ui
-msgctxt ""
-"copytablepage.ui\n"
-"data\n"
-"label\n"
-"string.text"
-msgid "Append _data"
-msgstr "Daten a_nhängen"
-
-#: copytablepage.ui
-msgctxt ""
-"copytablepage.ui\n"
-"firstline\n"
-"label\n"
-"string.text"
-msgid "Use first _line as column names"
-msgstr "Erste _Zeile als Spaltennamen verwenden"
-
-#: copytablepage.ui
-msgctxt ""
-"copytablepage.ui\n"
-"primarykey\n"
-"label\n"
-"string.text"
-msgid "Crea_te new field as primary key"
-msgstr "Neues Feld als Primärschlüssel _erstellen"
-
-#: copytablepage.ui
-msgctxt ""
-"copytablepage.ui\n"
-"keynamelabel\n"
-"label\n"
-"string.text"
-msgid "Name:"
-msgstr "Name:"
-
-#: copytablepage.ui
-msgctxt ""
-"copytablepage.ui\n"
-"infoLabel\n"
-"label\n"
-"string.text"
-msgid "Existing data fields can be set as primary key on the type formatting step (third page) of the wizard."
-msgstr "Existierende Datenfelder können beim Formatierungsschritt Typ (dritte Seite) des Assistenten als Primärschlüssel gesetzt werden."
-
-#: copytablepage.ui
-msgctxt ""
-"copytablepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: copytablepage.ui
-msgctxt ""
-"copytablepage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Ta_ble name:"
-msgstr "_Tabellenname:"
-
-#: dbaseindexdialog.ui
-msgctxt ""
-"dbaseindexdialog.ui\n"
-"DBaseIndexDialog\n"
-"title\n"
-"string.text"
-msgid "Indexes"
-msgstr "Indizes"
-
-#: dbaseindexdialog.ui
-msgctxt ""
-"dbaseindexdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Table:"
-msgstr "_Tabelle:"
-
-#: dbaseindexdialog.ui
-msgctxt ""
-"dbaseindexdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "T_able indexes"
-msgstr "T_abellenindizes"
-
-#: dbaseindexdialog.ui
-msgctxt ""
-"dbaseindexdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Free indexes"
-msgstr "_Freie Indizes"
-
-#: dbaseindexdialog.ui
-msgctxt ""
-"dbaseindexdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Assignment"
-msgstr "Zuweisung"
-
-#: dbasepage.ui
-msgctxt ""
-"dbasepage.ui\n"
-"charsetlabel\n"
-"label\n"
-"string.text"
-msgid "_Character set:"
-msgstr "_Zeichensatz:"
-
-#: dbasepage.ui
-msgctxt ""
-"dbasepage.ui\n"
-"charsetheader\n"
-"label\n"
-"string.text"
-msgid "Data Conversion"
-msgstr "Datenkonvertierung"
-
-#: dbasepage.ui
-msgctxt ""
-"dbasepage.ui\n"
-"showDelRowsCheckbutton\n"
-"label\n"
-"string.text"
-msgid "Display deleted records as well"
-msgstr "Auch gelöschte Datensätze anzeigen"
-
-#: dbasepage.ui
-msgctxt ""
-"dbasepage.ui\n"
-"specMessageLabel\n"
-"label\n"
-"string.text"
-msgid "Note: When deleted, and thus inactive, records are displayed, you will not be able to delete records from the data source."
-msgstr "Achtung: Wenn gelöschte und daher inaktive Datensätze angezeigt werden, können Sie keine Datensätze aus der Datenquelle löschen."
-
-#: dbasepage.ui
-msgctxt ""
-"dbasepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Optional Settings"
-msgstr "Optionale Einstellungen"
-
-#: dbasepage.ui
-msgctxt ""
-"dbasepage.ui\n"
-"indiciesButton\n"
-"label\n"
-"string.text"
-msgid "Indexes..."
-msgstr "Indizes..."
-
-#: dbwizconnectionpage.ui
-msgctxt ""
-"dbwizconnectionpage.ui\n"
-"helptext\n"
-"label\n"
-"string.text"
-msgid "label"
-msgstr "Beschriftung"
-
-#: dbwizconnectionpage.ui
-msgctxt ""
-"dbwizconnectionpage.ui\n"
-"browseurllabel\n"
-"label\n"
-"string.text"
-msgid "Path to the dBASE files:"
-msgstr "Pfad zu den dBASE-Dateien:"
-
-#: dbwizconnectionpage.ui
-msgctxt ""
-"dbwizconnectionpage.ui\n"
-"create\n"
-"label\n"
-"string.text"
-msgid "_Create New"
-msgstr "_Neu erstellen"
-
-#: dbwizconnectionpage.ui
-msgctxt ""
-"dbwizconnectionpage.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "_Browse…"
-msgstr "_Durchsuchen…"
-
-#: dbwizmysqlintropage.ui
-msgctxt ""
-"dbwizmysqlintropage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid ""
-"You can connect to a MySQL database using either ODBC or JDBC.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-"Bitte wählen Sie, ob die Verbindung zur MySQL Datenbank per ODBC oder JDBC hergestellt werden soll.\n"
-"Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
-
-#: dbwizmysqlintropage.ui
-msgctxt ""
-"dbwizmysqlintropage.ui\n"
-"odbc\n"
-"label\n"
-"string.text"
-msgid "Connect using ODBC (Open Database Connectivity)"
-msgstr "Verbindung über ODBC (Open Database Connectivity)"
-
-#: dbwizmysqlintropage.ui
-msgctxt ""
-"dbwizmysqlintropage.ui\n"
-"jdbc\n"
-"label\n"
-"string.text"
-msgid "Connect using JDBC (Java Database Connectivity)"
-msgstr "Verbindung über JDBC (Java Database Connectivity)"
-
-#: dbwizmysqlintropage.ui
-msgctxt ""
-"dbwizmysqlintropage.ui\n"
-"directly\n"
-"label\n"
-"string.text"
-msgid "Connect directly"
-msgstr "Direkte Verbindung"
-
-#: dbwizmysqlintropage.ui
-msgctxt ""
-"dbwizmysqlintropage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "How do you want to connect to your MySQL database?"
-msgstr "Wie möchten Sie sich mit Ihrer Datenbank verbinden?"
-
-#: dbwizmysqlintropage.ui
-msgctxt ""
-"dbwizmysqlintropage.ui\n"
-"header\n"
-"label\n"
-"string.text"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "Verbindung zu einer MySQL-Datenbank einrichten"
-
-#: dbwizmysqlnativepage.ui
-msgctxt ""
-"dbwizmysqlnativepage.ui\n"
-"helptext\n"
-"label\n"
-"string.text"
-msgid "Please enter the required information to connect to a MySQL database."
-msgstr "Bitte geben Sie die benötigten Informationen ein, um eine Verbindung zu einer MySQL-Datenbank herzustellen."
-
-#: dbwizmysqlnativepage.ui
-msgctxt ""
-"dbwizmysqlnativepage.ui\n"
-"header\n"
-"label\n"
-"string.text"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "Verbindung zu einer MySQL-Datenbank einrichten"
-
-#: dbwizspreadsheetpage.ui
-msgctxt ""
-"dbwizspreadsheetpage.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "Browse"
-msgstr "Durchsuchen"
-
-#: dbwizspreadsheetpage.ui
-msgctxt ""
-"dbwizspreadsheetpage.ui\n"
-"create\n"
-"label\n"
-"string.text"
-msgid "Create New"
-msgstr "Neu erstellen"
-
-#: dbwizspreadsheetpage.ui
-msgctxt ""
-"dbwizspreadsheetpage.ui\n"
-"passwordrequired\n"
-"label\n"
-"string.text"
-msgid "_Password required"
-msgstr "_Kennwort erforderlich"
-
-#: dbwiztextpage.ui
-msgctxt ""
-"dbwiztextpage.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "Browse"
-msgstr "Durchsuchen"
-
-#: dbwiztextpage.ui
-msgctxt ""
-"dbwiztextpage.ui\n"
-"create\n"
-"label\n"
-"string.text"
-msgid "Create New"
-msgstr "Neu erstellen"
-
-#: deleteallrowsdialog.ui
-msgctxt ""
-"deleteallrowsdialog.ui\n"
-"DeleteAllRowsDialog\n"
-"text\n"
-"string.text"
-msgid "You are trying to delete all the columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged."
-msgstr "Sie versuchen alle Spalten der Tabelle zu löschen. Ohne Spalten kann eine Tabelle nicht bestehen. Soll die Tabelle aus der Datenbank gelöscht werden? Falls nicht, bleibt die Tabelle unverändert."
-
-#: designsavemodifieddialog.ui
-msgctxt ""
-"designsavemodifieddialog.ui\n"
-"DesignSaveModifiedDialog\n"
-"text\n"
-"string.text"
-msgid "Do you want to save the changes?"
-msgstr "Möchten Sie die Änderungen speichern?"
-
-#: designsavemodifieddialog.ui
-msgctxt ""
-"designsavemodifieddialog.ui\n"
-"DesignSaveModifiedDialog\n"
-"secondary_text\n"
-"string.text"
-msgid "The relation design has been changed."
-msgstr "Die Beziehungen wurden geändert."
-
-#: directsqldialog.ui
-msgctxt ""
-"directsqldialog.ui\n"
-"DirectSQLDialog\n"
-"title\n"
-"string.text"
-msgid "Execute SQL Statement"
-msgstr "SQL-Anweisung ausführen"
-
-#: directsqldialog.ui
-msgctxt ""
-"directsqldialog.ui\n"
-"sql_label\n"
-"label\n"
-"string.text"
-msgid "_Command to execute:"
-msgstr "A_uszuführendes Kommando:"
-
-#: directsqldialog.ui
-msgctxt ""
-"directsqldialog.ui\n"
-"showoutput\n"
-"label\n"
-"string.text"
-msgid "_Show output of \"select\" statements"
-msgstr "Aus_gabe der \"select\"-Anweisung anzeigen"
-
-#: directsqldialog.ui
-msgctxt ""
-"directsqldialog.ui\n"
-"execute\n"
-"label\n"
-"string.text"
-msgid "_Execute"
-msgstr "Au_sführen"
-
-#: directsqldialog.ui
-msgctxt ""
-"directsqldialog.ui\n"
-"sqlhistory_label\n"
-"label\n"
-"string.text"
-msgid "_Previous commands:"
-msgstr "_Vorherige Befehle:"
-
-#: directsqldialog.ui
-msgctxt ""
-"directsqldialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "SQL Command"
-msgstr "SQL-Befehl"
-
-#: directsqldialog.ui
-msgctxt ""
-"directsqldialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Status"
-msgstr "Status"
-
-#: directsqldialog.ui
-msgctxt ""
-"directsqldialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Output"
-msgstr "Ausgabe"
-
-#: fielddialog.ui
-msgctxt ""
-"fielddialog.ui\n"
-"FieldDialog\n"
-"title\n"
-"string.text"
-msgid "Field Format"
-msgstr "Feldformatierung"
-
-#: fielddialog.ui
-msgctxt ""
-"fielddialog.ui\n"
-"format\n"
-"label\n"
-"string.text"
-msgid "Format"
-msgstr "Format"
-
-#: fielddialog.ui
-msgctxt ""
-"fielddialog.ui\n"
-"alignment\n"
-"label\n"
-"string.text"
-msgid "Alignment"
-msgstr "Ausrichtung"
-
-#: fielddialog.ui
-msgctxt ""
-"fielddialog.ui\n"
-"alttitle\n"
-"label\n"
-"string.text"
-msgid "Table Format"
-msgstr "Tabellenformatierung"
-
-#: finalpagewizard.ui
-msgctxt ""
-"finalpagewizard.ui\n"
-"headerText\n"
-"label\n"
-"string.text"
-msgid "Decide How to Proceed After Saving the Database"
-msgstr "Bitte entscheiden Sie, wie Sie fortfahren möchten"
-
-#: finalpagewizard.ui
-msgctxt ""
-"finalpagewizard.ui\n"
-"helpText\n"
-"label\n"
-"string.text"
-msgid "Do you want the wizard to register the database in %PRODUCTNAME?"
-msgstr "Soll der Assistent die Datenbank in %PRODUCTNAME anmelden?"
-
-#: finalpagewizard.ui
-msgctxt ""
-"finalpagewizard.ui\n"
-"yesregister\n"
-"label\n"
-"string.text"
-msgid "_Yes, register the database for me"
-msgstr "_Ja, die Datenbank soll angemeldet werden"
-
-#: finalpagewizard.ui
-msgctxt ""
-"finalpagewizard.ui\n"
-"noregister\n"
-"label\n"
-"string.text"
-msgid "N_o, do not register the database"
-msgstr "_Nein, die Datenbank soll nicht angemeldet werden"
-
-#: finalpagewizard.ui
-msgctxt ""
-"finalpagewizard.ui\n"
-"additionalText\n"
-"label\n"
-"string.text"
-msgid "After the database file has been saved, what do you want to do?"
-msgstr "Wie möchten Sie fortfahren, nachdem die Datenbank gespeichert wurde?"
-
-#: finalpagewizard.ui
-msgctxt ""
-"finalpagewizard.ui\n"
-"openediting\n"
-"label\n"
-"string.text"
-msgid "Open the database for editing"
-msgstr "Die Datenbank zum Bearbeiten öffnen"
-
-#: finalpagewizard.ui
-msgctxt ""
-"finalpagewizard.ui\n"
-"usewizard\n"
-"label\n"
-"string.text"
-msgid "Create tables using the table wizard"
-msgstr "Eine Tabelle mit Hilfe des Tabellen-Assistenten erstellen"
-
-#: finalpagewizard.ui
-msgctxt ""
-"finalpagewizard.ui\n"
-"finishText\n"
-"label\n"
-"string.text"
-msgid "Click 'Finish' to save the database."
-msgstr "Klicken Sie auf 'Fertigstellen', um die Datenbank zu speichern."
-
-#: generalpagedialog.ui
-msgctxt ""
-"generalpagedialog.ui\n"
-"datasourceTypePre\n"
-"label\n"
-"string.text"
-msgid "Select the type of database to which you want to establish a connection."
-msgstr "Bitte wählen Sie den Typ der Datenbank aus, zu der Sie eine Verbindung aufgebaut möchten."
-
-#: generalpagedialog.ui
-msgctxt ""
-"generalpagedialog.ui\n"
-"datasourceTypeLabel\n"
-"label\n"
-"string.text"
-msgid "Database _type:"
-msgstr "Datenbank_typ:"
-
-#: generalpagedialog.ui
-msgctxt ""
-"generalpagedialog.ui\n"
-"datasourceTypeHelp\n"
-"label\n"
-"string.text"
-msgid ""
-"On the following pages, you can make detailed settings for the connection.\n"
-"\n"
-"The new settings you make will overwrite your existing settings."
-msgstr ""
-"Auf den nächsten Seiten können Sie dann detaillierte Verbindungs-Einstellungen vornehmen.\n"
-"\n"
-"Bitte beachten Sie dabei, dass diese neuen Einstellungen Ihre bestehenden überschreiben."
-
-#: generalpagewizard.ui
-msgctxt ""
-"generalpagewizard.ui\n"
-"headerText\n"
-"label\n"
-"string.text"
-msgid "Welcome to the %PRODUCTNAME Database Wizard"
-msgstr "Willkommen beim %PRODUCTNAME Datenbank-Assistenten"
-
-#: generalpagewizard.ui
-msgctxt ""
-"generalpagewizard.ui\n"
-"helpText\n"
-"label\n"
-"string.text"
-msgid "Use the Database Wizard to create a new database, open an existing database file, or connect to a database stored on a server."
-msgstr "Benutzen Sie den Datenbank-Assistenten, um eine neue Datenbank anzulegen, eine bestehende Datenbankdatei zu öffnen oder eine Verbindung zu einer Server-Datenbank herzustellen."
-
-#: generalpagewizard.ui
-msgctxt ""
-"generalpagewizard.ui\n"
-"sourceTypeHeader\n"
-"label\n"
-"string.text"
-msgid "What do you want to do?"
-msgstr "Was möchten Sie tun?"
-
-#: generalpagewizard.ui
-msgctxt ""
-"generalpagewizard.ui\n"
-"createDatabase\n"
-"label\n"
-"string.text"
-msgid "Create a n_ew database"
-msgstr "Eine n_eue Datenbank erstellen"
-
-#: generalpagewizard.ui
-msgctxt ""
-"generalpagewizard.ui\n"
-"embeddeddbLabel\n"
-"label\n"
-"string.text"
-msgid "_Embedded database:"
-msgstr "_Eingebettete Datenbank:"
-
-#: generalpagewizard.ui
-msgctxt ""
-"generalpagewizard.ui\n"
-"openExistingDatabase\n"
-"label\n"
-"string.text"
-msgid "Open an existing database _file"
-msgstr "_Bestehende Datenbankdatei öffnen"
-
-#: generalpagewizard.ui
-msgctxt ""
-"generalpagewizard.ui\n"
-"docListLabel\n"
-"label\n"
-"string.text"
-msgid "_Recently used:"
-msgstr "Zu_letzt benutzt:"
-
-#: generalpagewizard.ui
-msgctxt ""
-"generalpagewizard.ui\n"
-"openDatabase\n"
-"label\n"
-"string.text"
-msgid "Open"
-msgstr "Öffnen"
-
-#: generalpagewizard.ui
-msgctxt ""
-"generalpagewizard.ui\n"
-"connectDatabase\n"
-"label\n"
-"string.text"
-msgid "Connect to an e_xisting database"
-msgstr "_Verbindung zu einer bestehenden Datenbank herstellen"
-
-#: generalspecialjdbcdetailspage.ui
-msgctxt ""
-"generalspecialjdbcdetailspage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Host name:"
-msgstr "_Rechnername:"
-
-#: generalspecialjdbcdetailspage.ui
-msgctxt ""
-"generalspecialjdbcdetailspage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Port number:"
-msgstr "_Portnummer:"
-
-#: generalspecialjdbcdetailspage.ui
-msgctxt ""
-"generalspecialjdbcdetailspage.ui\n"
-"socketLabel\n"
-"label\n"
-"string.text"
-msgid "Socket:"
-msgstr "Socket:"
-
-#: generalspecialjdbcdetailspage.ui
-msgctxt ""
-"generalspecialjdbcdetailspage.ui\n"
-"driverClassLabel\n"
-"label\n"
-"string.text"
-msgid "MySQL JDBC d_river class:"
-msgstr "MySQL JDBC-_Treiberklasse:"
-
-#: generalspecialjdbcdetailspage.ui
-msgctxt ""
-"generalspecialjdbcdetailspage.ui\n"
-"testDriverClassButton\n"
-"label\n"
-"string.text"
-msgid "Test Class"
-msgstr "Klasse testen"
-
-#: generalspecialjdbcdetailspage.ui
-msgctxt ""
-"generalspecialjdbcdetailspage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Connection Settings"
-msgstr "Verbindungseinstellungen"
-
-#: generalspecialjdbcdetailspage.ui
-msgctxt ""
-"generalspecialjdbcdetailspage.ui\n"
-"charsetlabel\n"
-"label\n"
-"string.text"
-msgid "_Character set:"
-msgstr "_Zeichensatz:"
-
-#: generalspecialjdbcdetailspage.ui
-msgctxt ""
-"generalspecialjdbcdetailspage.ui\n"
-"charsetheader\n"
-"label\n"
-"string.text"
-msgid "Data Conversion"
-msgstr "Datenkonvertierung"
-
-#: generatedvaluespage.ui
-msgctxt ""
-"generatedvaluespage.ui\n"
-"autoretrieve\n"
-"label\n"
-"string.text"
-msgid "Re_trieve generated values"
-msgstr "_Generierte Werte berücksichtigen"
-
-#: generatedvaluespage.ui
-msgctxt ""
-"generatedvaluespage.ui\n"
-"statementft\n"
-"label\n"
-"string.text"
-msgid "_Auto-increment statement:"
-msgstr "_Generierte Werte berücksichtigen:"
-
-#: generatedvaluespage.ui
-msgctxt ""
-"generatedvaluespage.ui\n"
-"queryft\n"
-"label\n"
-"string.text"
-msgid "_Query of generated values:"
-msgstr "Abfrage der generierten _Werte:"
-
-#: generatedvaluespage.ui
-msgctxt ""
-"generatedvaluespage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: indexdesigndialog.ui
-msgctxt ""
-"indexdesigndialog.ui\n"
-"IndexDesignDialog\n"
-"title\n"
-"string.text"
-msgid "Indexes"
-msgstr "Indizes"
-
-#: indexdesigndialog.ui
-msgctxt ""
-"indexdesigndialog.ui\n"
-"ID_INDEX_NEW\n"
-"label\n"
-"string.text"
-msgid "New Index"
-msgstr "Neuer Index"
-
-#: indexdesigndialog.ui
-msgctxt ""
-"indexdesigndialog.ui\n"
-"ID_INDEX_DROP\n"
-"label\n"
-"string.text"
-msgid "Delete Current Index"
-msgstr "Aktuellen Index löschen"
-
-#: indexdesigndialog.ui
-msgctxt ""
-"indexdesigndialog.ui\n"
-"ID_INDEX_RENAME\n"
-"label\n"
-"string.text"
-msgid "Rename Current Index"
-msgstr "Aktuellen Index umbenennen"
-
-#: indexdesigndialog.ui
-msgctxt ""
-"indexdesigndialog.ui\n"
-"ID_INDEX_SAVE\n"
-"label\n"
-"string.text"
-msgid "Save Current Index"
-msgstr "Aktuellen Index speichern"
-
-#: indexdesigndialog.ui
-msgctxt ""
-"indexdesigndialog.ui\n"
-"ID_INDEX_RESET\n"
-"label\n"
-"string.text"
-msgid "Reset Current Index"
-msgstr "Aktuellen Index zurücksetzen"
-
-#: indexdesigndialog.ui
-msgctxt ""
-"indexdesigndialog.ui\n"
-"DESC_LABEL\n"
-"label\n"
-"string.text"
-msgid "Index identifier:"
-msgstr "Indexbezeichner:"
-
-#: indexdesigndialog.ui
-msgctxt ""
-"indexdesigndialog.ui\n"
-"UNIQUE\n"
-"label\n"
-"string.text"
-msgid "_Unique"
-msgstr "_Eindeutig"
-
-#: indexdesigndialog.ui
-msgctxt ""
-"indexdesigndialog.ui\n"
-"FIELDS_LABEL\n"
-"label\n"
-"string.text"
-msgid "Fields:"
-msgstr "Felder:"
-
-#: indexdesigndialog.ui
-msgctxt ""
-"indexdesigndialog.ui\n"
-"INDEX_DETAILS\n"
-"label\n"
-"string.text"
-msgid "Index Details"
-msgstr "Index-Details"
-
-#: jdbcconnectionpage.ui
-msgctxt ""
-"jdbcconnectionpage.ui\n"
-"header\n"
-"label\n"
-"string.text"
-msgid "Set Up a Connection to a JDBC Database"
-msgstr "Datenbankverbindung per JDBC einrichten"
-
-#: jdbcconnectionpage.ui
-msgctxt ""
-"jdbcconnectionpage.ui\n"
-"helptext\n"
-"label\n"
-"string.text"
-msgid "Please enter the required information to connect to a JDBC database. Please contact your system administrator if you are unsure about the following settings."
-msgstr "Bitte geben Sie die benötigten Informationen ein, um per JDBC eine Verbindung zu einer Datenbank herzustellen. Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
-
-#: jdbcconnectionpage.ui
-msgctxt ""
-"jdbcconnectionpage.ui\n"
-"browseurllabel\n"
-"label\n"
-"string.text"
-msgid "Path to the dBASE files:"
-msgstr "Pfad zu den dBASE-Dateien:"
-
-#: jdbcconnectionpage.ui
-msgctxt ""
-"jdbcconnectionpage.ui\n"
-"create\n"
-"label\n"
-"string.text"
-msgid "_Create New"
-msgstr "_Neu erstellen"
-
-#: jdbcconnectionpage.ui
-msgctxt ""
-"jdbcconnectionpage.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "_Browse…"
-msgstr "_Durchsuchen…"
-
-#: jdbcconnectionpage.ui
-msgctxt ""
-"jdbcconnectionpage.ui\n"
-"jdbcLabel\n"
-"label\n"
-"string.text"
-msgid "JDBC d_river class:"
-msgstr "JDBC _Treiberklasse:"
-
-#: jdbcconnectionpage.ui
-msgctxt ""
-"jdbcconnectionpage.ui\n"
-"jdbcButton\n"
-"label\n"
-"string.text"
-msgid "_Test Class"
-msgstr "K_lasse testen"
-
-#: joindialog.ui
-msgctxt ""
-"joindialog.ui\n"
-"JoinDialog\n"
-"title\n"
-"string.text"
-msgid "Join Properties"
-msgstr "Verbundeigenschaften"
-
-#: joindialog.ui
-msgctxt ""
-"joindialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Tables Involved"
-msgstr "Beteiligte Tabellen"
-
-#: joindialog.ui
-msgctxt ""
-"joindialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Fields Involved"
-msgstr "Beteiligte Felder"
-
-#: joindialog.ui
-msgctxt ""
-"joindialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "_Type:"
-msgstr "_Typ:"
-
-#: joindialog.ui
-msgctxt ""
-"joindialog.ui\n"
-"natural\n"
-"label\n"
-"string.text"
-msgid "Natural"
-msgstr "Natürlich"
-
-#: joindialog.ui
-msgctxt ""
-"joindialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: joindialog.ui
-msgctxt ""
-"joindialog.ui\n"
-"liststore1\n"
-"0\n"
-"stringlist.text"
-msgid "Inner join"
-msgstr "Innerer Verbund"
-
-#: joindialog.ui
-msgctxt ""
-"joindialog.ui\n"
-"liststore1\n"
-"1\n"
-"stringlist.text"
-msgid "Left join"
-msgstr "Linker Verbund"
-
-#: joindialog.ui
-msgctxt ""
-"joindialog.ui\n"
-"liststore1\n"
-"2\n"
-"stringlist.text"
-msgid "Right join"
-msgstr "Rechter Verbund"
-
-#: joindialog.ui
-msgctxt ""
-"joindialog.ui\n"
-"liststore1\n"
-"3\n"
-"stringlist.text"
-msgid "Full (outer) join"
-msgstr "Voller (äußerer) Verbund"
-
-#: joindialog.ui
-msgctxt ""
-"joindialog.ui\n"
-"liststore1\n"
-"4\n"
-"stringlist.text"
-msgid "Cross join"
-msgstr "Kreuzverbund"
-
-#: jointablemenu.ui
-msgctxt ""
-"jointablemenu.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete"
-msgstr "_Löschen"
-
-#: joinviewmenu.ui
-msgctxt ""
-"joinviewmenu.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete"
-msgstr "_Löschen"
-
-#: joinviewmenu.ui
-msgctxt ""
-"joinviewmenu.ui\n"
-"edit\n"
-"label\n"
-"string.text"
-msgid "Edit..."
-msgstr "Bearbeiten..."
-
-#: keymenu.ui
-msgctxt ""
-"keymenu.ui\n"
-"primarykey\n"
-"label\n"
-"string.text"
-msgid "Primary Key"
-msgstr "Primärschlüssel"
-
-#: ldapconnectionpage.ui
-msgctxt ""
-"ldapconnectionpage.ui\n"
-"header\n"
-"label\n"
-"string.text"
-msgid "Set Up a Connection to an LDAP Directory"
-msgstr "Verbindung zu einem LDAP-Verzeichnis einrichten"
-
-#: ldapconnectionpage.ui
-msgctxt ""
-"ldapconnectionpage.ui\n"
-"helpLabel\n"
-"label\n"
-"string.text"
-msgid "Please enter the required information to connect to an LDAP directory. Please contact your system administrator if you are unsure about the following settings."
-msgstr "Bitte geben Sie die benötigten Information ein, um eine Verbindung zu einem LDAP-Verzeichnis herzustellen. Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
-
-#: ldapconnectionpage.ui
-msgctxt ""
-"ldapconnectionpage.ui\n"
-"hostNameLabel\n"
-"label\n"
-"string.text"
-msgid "_Server:"
-msgstr "_Server:"
-
-#: ldapconnectionpage.ui
-msgctxt ""
-"ldapconnectionpage.ui\n"
-"portNumLabel\n"
-"label\n"
-"string.text"
-msgid "_Port number:"
-msgstr "_Portnummer:"
-
-#: ldapconnectionpage.ui
-msgctxt ""
-"ldapconnectionpage.ui\n"
-"portNumDefLabel\n"
-"label\n"
-"string.text"
-msgid "Default: 389"
-msgstr "Standard: 389"
-
-#: ldapconnectionpage.ui
-msgctxt ""
-"ldapconnectionpage.ui\n"
-"baseDNLabel\n"
-"label\n"
-"string.text"
-msgid "Base _DN:"
-msgstr "Base _DN:"
-
-#: ldapconnectionpage.ui
-msgctxt ""
-"ldapconnectionpage.ui\n"
-"useSSLCheckbutton\n"
-"label\n"
-"string.text"
-msgid "Use _secure connection (SSL)"
-msgstr "_Sichere Verbindung verwenden (SSL)"
-
-#: ldappage.ui
-msgctxt ""
-"ldappage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Base DN:"
-msgstr "_Base DN:"
-
-#: ldappage.ui
-msgctxt ""
-"ldappage.ui\n"
-"useSSLCheckbutton\n"
-"label\n"
-"string.text"
-msgid "Use secure connection (SSL)"
-msgstr "Sichere Verbindung verwenden (SSL)"
-
-#: ldappage.ui
-msgctxt ""
-"ldappage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Port number:"
-msgstr "_Portnummer:"
-
-#: ldappage.ui
-msgctxt ""
-"ldappage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Maximum number of _records:"
-msgstr "Maximale Anzahl an _Datensätzen:"
-
-#: ldappage.ui
-msgctxt ""
-"ldappage.ui\n"
-"charsetheader\n"
-"label\n"
-"string.text"
-msgid "Connection Settings"
-msgstr "Verbindungseinstellungen"
-
-#: migratepage.ui
-msgctxt ""
-"migratepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Migration Progress"
-msgstr "Migrationsfortschritt"
-
-#: migratepage.ui
-msgctxt ""
-"migratepage.ui\n"
-"count\n"
-"label\n"
-"string.text"
-msgid "The database document contains $forms$ form(s) and $reports$ report(s), which are currently being processed:"
-msgstr "Das Datenbankdokument enthält $forms$ Formular(e) und $reports$ Bericht(e), die gerade verarbeitet werden:"
-
-#: migratepage.ui
-msgctxt ""
-"migratepage.ui\n"
-"done\n"
-"label\n"
-"string.text"
-msgid "All forms and reports have been successfully processed. Press 'Next' to show a detailed summary."
-msgstr "Alle Formulare und Berichte wurden erfolgreich verarbeitet. Klicken Sie auf 'Weiter', um eine Zusammenfassung angezeigt zu bekommen."
-
-#: migratepage.ui
-msgctxt ""
-"migratepage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Overall progress:"
-msgstr "Gesamtfortschritt:"
-
-#: migratepage.ui
-msgctxt ""
-"migratepage.ui\n"
-"overall\n"
-"label\n"
-"string.text"
-msgid "document $current$ of $overall$"
-msgstr "Dokument $current$ von $overall$"
-
-#: migratepage.ui
-msgctxt ""
-"migratepage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Current progress:"
-msgstr "Aktueller Fortschritt:"
-
-#: migratepage.ui
-msgctxt ""
-"migratepage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Current object:"
-msgstr "Aktuelles Objekt:"
-
-#: mysqlnativepage.ui
-msgctxt ""
-"mysqlnativepage.ui\n"
-"connectionheader\n"
-"label\n"
-"string.text"
-msgid "Connection Settings"
-msgstr "Verbindungseinstellungen"
-
-#: mysqlnativepage.ui
-msgctxt ""
-"mysqlnativepage.ui\n"
-"usernamelabel\n"
-"label\n"
-"string.text"
-msgid "_User name:"
-msgstr "_Benutzername:"
-
-#: mysqlnativepage.ui
-msgctxt ""
-"mysqlnativepage.ui\n"
-"passwordrequired\n"
-"label\n"
-"string.text"
-msgid "Password required"
-msgstr "Kennwort erforderlich"
-
-#: mysqlnativepage.ui
-msgctxt ""
-"mysqlnativepage.ui\n"
-"userheader\n"
-"label\n"
-"string.text"
-msgid "User Authentication"
-msgstr "Benutzer Authentifizierung"
-
-#: mysqlnativepage.ui
-msgctxt ""
-"mysqlnativepage.ui\n"
-"charsetlabel\n"
-"label\n"
-"string.text"
-msgid "_Character set:"
-msgstr "_Zeichensatz:"
-
-#: mysqlnativepage.ui
-msgctxt ""
-"mysqlnativepage.ui\n"
-"charsetheader\n"
-"label\n"
-"string.text"
-msgid "Data Conversion"
-msgstr "Datenkonvertierung"
-
-#: mysqlnativesettings.ui
-msgctxt ""
-"mysqlnativesettings.ui\n"
-"dbnamelabel\n"
-"label\n"
-"string.text"
-msgid "_Database name:"
-msgstr "Datenbank_name:"
-
-#: mysqlnativesettings.ui
-msgctxt ""
-"mysqlnativesettings.ui\n"
-"hostport\n"
-"label\n"
-"string.text"
-msgid "Se_rver/port"
-msgstr "Se_rver / Port"
-
-#: mysqlnativesettings.ui
-msgctxt ""
-"mysqlnativesettings.ui\n"
-"serverlabel\n"
-"label\n"
-"string.text"
-msgid "_Server:"
-msgstr "_Server:"
-
-#: mysqlnativesettings.ui
-msgctxt ""
-"mysqlnativesettings.ui\n"
-"portlabel\n"
-"label\n"
-"string.text"
-msgid "_Port:"
-msgstr "_Port:"
-
-#: mysqlnativesettings.ui
-msgctxt ""
-"mysqlnativesettings.ui\n"
-"defaultport\n"
-"label\n"
-"string.text"
-msgid "Default: 3306"
-msgstr "Default: 3306"
-
-#: mysqlnativesettings.ui
-msgctxt ""
-"mysqlnativesettings.ui\n"
-"socketlabel\n"
-"label\n"
-"string.text"
-msgid "So_cket:"
-msgstr "So_cket:"
-
-#: mysqlnativesettings.ui
-msgctxt ""
-"mysqlnativesettings.ui\n"
-"namedpipelabel\n"
-"label\n"
-"string.text"
-msgid "Named p_ipe:"
-msgstr "Named p_ipe:"
-
-#: namematchingpage.ui
-msgctxt ""
-"namematchingpage.ui\n"
-"all\n"
-"label\n"
-"string.text"
-msgid "_All"
-msgstr "_Alle"
-
-#: namematchingpage.ui
-msgctxt ""
-"namematchingpage.ui\n"
-"none\n"
-"label\n"
-"string.text"
-msgid "Non_e"
-msgstr "_Keine"
-
-#: namematchingpage.ui
-msgctxt ""
-"namematchingpage.ui\n"
-"leftlabel\n"
-"label\n"
-"string.text"
-msgid "Source table: "
-msgstr "Quelltabelle: "
-
-#: namematchingpage.ui
-msgctxt ""
-"namematchingpage.ui\n"
-"rightlabel\n"
-"label\n"
-"string.text"
-msgid "Destination table: "
-msgstr "Zieltabelle: "
-
-#: odbcpage.ui
-msgctxt ""
-"odbcpage.ui\n"
-"charsetlabel\n"
-"label\n"
-"string.text"
-msgid "_Character set:"
-msgstr "_Zeichensatz:"
-
-#: odbcpage.ui
-msgctxt ""
-"odbcpage.ui\n"
-"charsetheader\n"
-"label\n"
-"string.text"
-msgid "Data Conversion"
-msgstr "Datenkonvertierung"
-
-#: odbcpage.ui
-msgctxt ""
-"odbcpage.ui\n"
-"optionslabel\n"
-"label\n"
-"string.text"
-msgid "ODBC _options:"
-msgstr "_ODBC-Optionen:"
-
-#: odbcpage.ui
-msgctxt ""
-"odbcpage.ui\n"
-"useCatalogCheckbutton\n"
-"label\n"
-"string.text"
-msgid "Use catalog for file-based databases"
-msgstr "Katalog bei dateibasierten Datenbanken verwenden"
-
-#: odbcpage.ui
-msgctxt ""
-"odbcpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Optional Settings"
-msgstr "Optionale Einstellungen"
-
-#: parametersdialog.ui
-msgctxt ""
-"parametersdialog.ui\n"
-"Parameters\n"
-"title\n"
-"string.text"
-msgid "Parameter Input"
-msgstr "Parameter-Eingabe"
-
-#: parametersdialog.ui
-msgctxt ""
-"parametersdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Value:"
-msgstr "W_ert:"
-
-#: parametersdialog.ui
-msgctxt ""
-"parametersdialog.ui\n"
-"next\n"
-"label\n"
-"string.text"
-msgid "_Next"
-msgstr "_Weiter"
-
-#: parametersdialog.ui
-msgctxt ""
-"parametersdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Parameters"
-msgstr "_Parameter"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"PasswordDialog\n"
-"title\n"
-"string.text"
-msgid "Change Password"
-msgstr "Kennwort ändern"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Old p_assword:"
-msgstr "Altes K_ennwort:"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Password:"
-msgstr "_Kennwort:"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Confirm password:"
-msgstr "Kennwort _bestätigen:"
-
-#: password.ui
-msgctxt ""
-"password.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "User “$name$: $”"
-msgstr "Benutzer „$name$: $”"
-
-#: preparepage.ui
-msgctxt ""
-"preparepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Welcome to the Database Macro Migration Wizard"
-msgstr "Willkommen beim Migrationsassistenten für Datenbankmakros"
-
-#: preparepage.ui
-msgctxt ""
-"preparepage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid ""
-"This wizard will guide you through the task of migrating your macros.\n"
-"\n"
-"After you finished it, all macros which were formerly embedded into the forms and reports of the current database document will have been moved to the document itself. In this course, libraries will be renamed as needed.\n"
-"\n"
-"If your forms and reports contain references to those macros, they will be adjusted, where possible.\n"
-"\n"
-"Before the migration can start, all forms, reports, queries and tables belonging to the document must be closed. Press 'Next' to do so."
-msgstr ""
-"Dieser Assistent führt Sie durch die Migration Ihrer Makros.\n"
-"\n"
-"Während der Migration werden alle Makros, die bisher in Formularen und Berichten eingebettet waren, in das Datenbankdokument verschoben. Falls nötig, werden Bibliotheken dabei umbenannt.\n"
-"\n"
-"Sollten Ihre Formulare und Berichte Verweise auf diese Makros enthalten, werden diese soweit möglich angepasst.\n"
-"\n"
-"Alle Formulare, Berichte, Abfragen und Tabellen müssen geschlossen werden, bevor die Migration gestartet werden kann. Klicken Sie auf 'Weiter', um die Objekte zu schließen."
-
-#: preparepage.ui
-msgctxt ""
-"preparepage.ui\n"
-"closedocerror\n"
-"label\n"
-"string.text"
-msgid "Not all objects could be closed. Please close them manually, and re-start the wizard."
-msgstr "Einige Objekte konnten nicht geschlossen werden. Bitte schließen Sie diese manuell und starten Sie den Assistenten danach erneut."
-
-#: querycolmenu.ui
-msgctxt ""
-"querycolmenu.ui\n"
-"width\n"
-"label\n"
-"string.text"
-msgid "Column _Width..."
-msgstr "Spalten_breite..."
-
-#: querycolmenu.ui
-msgctxt ""
-"querycolmenu.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete"
-msgstr "_Löschen"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"QueryFilterDialog\n"
-"title\n"
-"string.text"
-msgid "Standard Filter"
-msgstr "Standardfilter"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Operator"
-msgstr "Verknüpfung"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Field name"
-msgstr "Feldname"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Condition"
-msgstr "Bedingung"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"field1\n"
-"0\n"
-"stringlist.text"
-msgid "- none -"
-msgstr "- keiner -"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"cond1\n"
-"0\n"
-"stringlist.text"
-msgid "="
-msgstr "="
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"cond1\n"
-"1\n"
-"stringlist.text"
-msgid "<>"
-msgstr "<>"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"cond1\n"
-"2\n"
-"stringlist.text"
-msgid "<"
-msgstr "<"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"cond1\n"
-"3\n"
-"stringlist.text"
-msgid "<="
-msgstr "<="
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"cond1\n"
-"4\n"
-"stringlist.text"
-msgid ">"
-msgstr ">"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"cond1\n"
-"5\n"
-"stringlist.text"
-msgid ">="
-msgstr ">="
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"cond1\n"
-"6\n"
-"stringlist.text"
-msgid "like"
-msgstr "wie"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"cond1\n"
-"7\n"
-"stringlist.text"
-msgid "not like"
-msgstr "nicht wie"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"cond1\n"
-"8\n"
-"stringlist.text"
-msgid "null"
-msgstr "leer"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"cond1\n"
-"9\n"
-"stringlist.text"
-msgid "not null"
-msgstr "nicht leer"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"field2\n"
-"0\n"
-"stringlist.text"
-msgid "- none -"
-msgstr "- keiner -"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"field3\n"
-"0\n"
-"stringlist.text"
-msgid "- none -"
-msgstr "- keiner -"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Value"
-msgstr "Wert"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"op2\n"
-"0\n"
-"stringlist.text"
-msgid "AND"
-msgstr "UND"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"op2\n"
-"1\n"
-"stringlist.text"
-msgid "OR"
-msgstr "ODER"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"op3\n"
-"0\n"
-"stringlist.text"
-msgid "AND"
-msgstr "UND"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"op3\n"
-"1\n"
-"stringlist.text"
-msgid "OR"
-msgstr "ODER"
-
-#: queryfilterdialog.ui
-msgctxt ""
-"queryfilterdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Criteria"
-msgstr "Kriterien"
-
-#: queryfuncmenu.ui
-msgctxt ""
-"queryfuncmenu.ui\n"
-"functions\n"
-"label\n"
-"string.text"
-msgid "Functions"
-msgstr "Funktionen"
-
-#: queryfuncmenu.ui
-msgctxt ""
-"queryfuncmenu.ui\n"
-"tablename\n"
-"label\n"
-"string.text"
-msgid "Table Name"
-msgstr "Tabellenname"
-
-#: queryfuncmenu.ui
-msgctxt ""
-"queryfuncmenu.ui\n"
-"alias\n"
-"label\n"
-"string.text"
-msgid "Alias"
-msgstr "Aliasname"
-
-#: queryfuncmenu.ui
-msgctxt ""
-"queryfuncmenu.ui\n"
-"distinct\n"
-"label\n"
-"string.text"
-msgid "Distinct Values"
-msgstr "Eindeutige Werte"
-
-#: querypropertiesdialog.ui
-msgctxt ""
-"querypropertiesdialog.ui\n"
-"QueryPropertiesDialog\n"
-"title\n"
-"string.text"
-msgid "Query Properties"
-msgstr "Abfrageeigenschaften"
-
-#: querypropertiesdialog.ui
-msgctxt ""
-"querypropertiesdialog.ui\n"
-"limit-label\n"
-"label\n"
-"string.text"
-msgid "Limit:"
-msgstr "Limit:"
-
-#: querypropertiesdialog.ui
-msgctxt ""
-"querypropertiesdialog.ui\n"
-"distinct\n"
-"label\n"
-"string.text"
-msgid "Yes"
-msgstr "Ja"
-
-#: querypropertiesdialog.ui
-msgctxt ""
-"querypropertiesdialog.ui\n"
-"nondistinct\n"
-"label\n"
-"string.text"
-msgid "No"
-msgstr "Nein"
-
-#: querypropertiesdialog.ui
-msgctxt ""
-"querypropertiesdialog.ui\n"
-"distinctvalues\n"
-"label\n"
-"string.text"
-msgid "Distinct values:"
-msgstr "Eindeutige Werte:"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"RelationDialog\n"
-"title\n"
-"string.text"
-msgid "Relations"
-msgstr "Relationen"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Tables Involved"
-msgstr "Beteiligte Tabellen"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Fields Involved"
-msgstr "Beteiligte Felder"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"addaction\n"
-"label\n"
-"string.text"
-msgid "_No action"
-msgstr "_Keine Aktion"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"addcascade\n"
-"label\n"
-"string.text"
-msgid "_Update cascade"
-msgstr "K_ask. aktualisieren"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"addnull\n"
-"label\n"
-"string.text"
-msgid "_Set null"
-msgstr "_Null setzen"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"adddefault\n"
-"label\n"
-"string.text"
-msgid "Set _default"
-msgstr "_Standard setzen"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Update Options"
-msgstr "Optionen aktualisieren"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"delaction\n"
-"label\n"
-"string.text"
-msgid "_No action"
-msgstr "_Keine Aktion"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"delcascade\n"
-"label\n"
-"string.text"
-msgid "Delete _cascade"
-msgstr "Ka_sk. löschen"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"delnull\n"
-"label\n"
-"string.text"
-msgid "_Set null"
-msgstr "_Null setzen"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"deldefault\n"
-"label\n"
-"string.text"
-msgid "Set _default"
-msgstr "_Standard setzen"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Delete Options"
-msgstr "Löschoptionen"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"liststore1\n"
-"0\n"
-"stringlist.text"
-msgid "Inner join"
-msgstr "Innerer Verbund"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"liststore1\n"
-"1\n"
-"stringlist.text"
-msgid "Left join"
-msgstr "Linker Verbund"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"liststore1\n"
-"2\n"
-"stringlist.text"
-msgid "Right join"
-msgstr "Rechter Verbund"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"liststore1\n"
-"3\n"
-"stringlist.text"
-msgid "Full (outer) join"
-msgstr "Voller (äußerer) Verbund"
-
-#: relationdialog.ui
-msgctxt ""
-"relationdialog.ui\n"
-"liststore1\n"
-"4\n"
-"stringlist.text"
-msgid "Cross join"
-msgstr "Kreuzverbund"
-
-#: rowheightdialog.ui
-msgctxt ""
-"rowheightdialog.ui\n"
-"RowHeightDialog\n"
-"title\n"
-"string.text"
-msgid "Row Height"
-msgstr "Zeilenhöhe"
-
-#: rowheightdialog.ui
-msgctxt ""
-"rowheightdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Height:"
-msgstr "Höh_e:"
-
-#: rowheightdialog.ui
-msgctxt ""
-"rowheightdialog.ui\n"
-"automatic\n"
-"label\n"
-"string.text"
-msgid "_Automatic"
-msgstr "_Automatisch"
-
-#: rtfcopytabledialog.ui
-msgctxt ""
-"rtfcopytabledialog.ui\n"
-"RTFCopyTable\n"
-"title\n"
-"string.text"
-msgid "Copy RTF Table"
-msgstr "RTF Tabelle kopieren"
-
-#: savedialog.ui
-msgctxt ""
-"savedialog.ui\n"
-"SaveDialog\n"
-"title\n"
-"string.text"
-msgid "Save As"
-msgstr "Speichern unter"
-
-#: savedialog.ui
-msgctxt ""
-"savedialog.ui\n"
-"descriptionft\n"
-"label\n"
-"string.text"
-msgid "Please enter a name for the object to be created:"
-msgstr "Bitte geben Sie einen Namen für das anzulegende Objekt an:"
-
-#: savedialog.ui
-msgctxt ""
-"savedialog.ui\n"
-"catalogft\n"
-"label\n"
-"string.text"
-msgid "_Catalog:"
-msgstr "_Katalog:"
-
-#: savedialog.ui
-msgctxt ""
-"savedialog.ui\n"
-"schemaft\n"
-"label\n"
-"string.text"
-msgid "_Schema:"
-msgstr "_Schema:"
-
-#: saveindexdialog.ui
-msgctxt ""
-"saveindexdialog.ui\n"
-"SaveIndexDialog\n"
-"title\n"
-"string.text"
-msgid "Exit Index Design"
-msgstr "Index-Entwurf verlassen"
-
-#: saveindexdialog.ui
-msgctxt ""
-"saveindexdialog.ui\n"
-"SaveIndexDialog\n"
-"text\n"
-"string.text"
-msgid "Do you want to save the changes made to the current index?"
-msgstr "Möchten Sie die Änderungen am aktuellen Index speichern?"
-
-#: savemodifieddialog.ui
-msgctxt ""
-"savemodifieddialog.ui\n"
-"SaveModifiedDialog\n"
-"text\n"
-"string.text"
-msgid "Do you want to save the changes?"
-msgstr "Möchten Sie die Änderungen speichern?"
-
-#: savemodifieddialog.ui
-msgctxt ""
-"savemodifieddialog.ui\n"
-"SaveModifiedDialog\n"
-"secondary_text\n"
-"string.text"
-msgid "The current record has been changed."
-msgstr "Der aktuelle Datensatz wurde geändert."
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"SortDialog\n"
-"title\n"
-"string.text"
-msgid "Sort Order"
-msgstr "Sortierung"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Operator"
-msgstr "Verknüpfung"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "and then"
-msgstr "Danach"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "and then"
-msgstr "Danach"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Field name"
-msgstr "Feldname"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Order"
-msgstr "Reihenfolge"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"value1\n"
-"0\n"
-"stringlist.text"
-msgid "ascending"
-msgstr "Aufsteigend"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"value1\n"
-"1\n"
-"stringlist.text"
-msgid "descending"
-msgstr "Absteigend"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"value2\n"
-"0\n"
-"stringlist.text"
-msgid "ascending"
-msgstr "Aufsteigend"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"value2\n"
-"1\n"
-"stringlist.text"
-msgid "descending"
-msgstr "Absteigend"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"value3\n"
-"0\n"
-"stringlist.text"
-msgid "ascending"
-msgstr "Aufsteigend"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"value3\n"
-"1\n"
-"stringlist.text"
-msgid "descending"
-msgstr "Absteigend"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Sort Order"
-msgstr "Sortierung"
-
-#: specialjdbcconnectionpage.ui
-msgctxt ""
-"specialjdbcconnectionpage.ui\n"
-"header\n"
-"label\n"
-"string.text"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr "Verbindung zu einer MySQL-Datenbank per JDBC einrichten"
-
-#: specialjdbcconnectionpage.ui
-msgctxt ""
-"specialjdbcconnectionpage.ui\n"
-"helpLabel\n"
-"label\n"
-"string.text"
-msgid "Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
-msgstr "Bitte geben Sie die benötigten Informationen ein, um eine Verbindung per JDBC zu einer MySQL-Datenbank herzustellen. Bitte beachten Sie, dass eine JDBC-Treiberklasse auf ihrem System installiert und %PRODUCTNAME bekannt sein muss. Fragen Sie Ihren Systemadministrator, wenn Sie sich bei den folgenden Einstellungen unsicher sind."
-
-#: specialjdbcconnectionpage.ui
-msgctxt ""
-"specialjdbcconnectionpage.ui\n"
-"dbNameLabel\n"
-"label\n"
-"string.text"
-msgid "_Database name:"
-msgstr "Datenbank_name:"
-
-#: specialjdbcconnectionpage.ui
-msgctxt ""
-"specialjdbcconnectionpage.ui\n"
-"hostNameLabel\n"
-"label\n"
-"string.text"
-msgid "_Server:"
-msgstr "_Server:"
-
-#: specialjdbcconnectionpage.ui
-msgctxt ""
-"specialjdbcconnectionpage.ui\n"
-"portNumLabel\n"
-"label\n"
-"string.text"
-msgid "_Port number:"
-msgstr "_Portnummer:"
-
-#: specialjdbcconnectionpage.ui
-msgctxt ""
-"specialjdbcconnectionpage.ui\n"
-"portNumDefLabel\n"
-"label\n"
-"string.text"
-msgid "Default: 3306"
-msgstr "Default: 3306"
-
-#: specialjdbcconnectionpage.ui
-msgctxt ""
-"specialjdbcconnectionpage.ui\n"
-"jdbcDriverLabel\n"
-"label\n"
-"string.text"
-msgid "MySQL JDBC d_river class:"
-msgstr "MySQL JDBC-_Treiberklasse:"
-
-#: specialjdbcconnectionpage.ui
-msgctxt ""
-"specialjdbcconnectionpage.ui\n"
-"testDriverButton\n"
-"label\n"
-"string.text"
-msgid "_Test Class"
-msgstr "K_lasse testen"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"usesql92\n"
-"label\n"
-"string.text"
-msgid "Use SQL92 naming constraints"
-msgstr "SQL92 Namensbeschränkung verwenden"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"append\n"
-"label\n"
-"string.text"
-msgid "Append the table alias name on SELECT statements"
-msgstr "Den Aliasnamen von Tabellen im SELECT-Ausdruck anhängen"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"useas\n"
-"label\n"
-"string.text"
-msgid "Use keyword AS before table alias names"
-msgstr "Schlüsselwort AS vor Tabellen-Aliasnamen verwenden"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"useoj\n"
-"label\n"
-"string.text"
-msgid "Use Outer Join syntax '{oj }'"
-msgstr "Für Outer Joins die Syntax '{oj }' verwenden"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"ignoreprivs\n"
-"label\n"
-"string.text"
-msgid "Ignore the privileges from the database driver"
-msgstr "Die Rechte vom Datenbanktreiber ignorieren"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"replaceparams\n"
-"label\n"
-"string.text"
-msgid "Replace named parameters with '?'"
-msgstr "Benannte Parameter durch '?' ersetzen"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"displayver\n"
-"label\n"
-"string.text"
-msgid "Display version columns (when available)"
-msgstr "Versionsspalten anzeigen (falls verfügbar)"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"usecatalogname\n"
-"label\n"
-"string.text"
-msgid "Use catalog name in SELECT statements"
-msgstr "Den Katalognamen im SELECT-Ausdruck verwenden"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"useschemaname\n"
-"label\n"
-"string.text"
-msgid "Use schema name in SELECT statements"
-msgstr "Den Schemanamen im SELECT-Ausdruck verwenden."
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"createindex\n"
-"label\n"
-"string.text"
-msgid "Create index with ASC or DESC statement"
-msgstr "Index mit ASC- oder DESC-Befehl erstellen"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"eol\n"
-"label\n"
-"string.text"
-msgid "End text lines with CR+LF"
-msgstr "Textzeilen mit CR+LF beenden"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"ignorecurrency\n"
-"label\n"
-"string.text"
-msgid "Ignore currency field information"
-msgstr "Währungsfeld-Information ignorieren"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"inputchecks\n"
-"label\n"
-"string.text"
-msgid "Form data input checks for required fields"
-msgstr "Formulardaten-Eingabe prüft auf benötigte Felder"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"useodbcliterals\n"
-"label\n"
-"string.text"
-msgid "Use ODBC conformant date/time literals"
-msgstr "ODBC-konforme Datum-/Zeit-Symbole verwenden"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"primarykeys\n"
-"label\n"
-"string.text"
-msgid "Supports primary keys"
-msgstr "Unterstützt Primärschlüssel"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"resulttype\n"
-"label\n"
-"string.text"
-msgid "Respect the result set type from the database driver"
-msgstr "Akzeptieren Sie den angezeigten Satztyps des Datenbanktreibers"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"comparisonft\n"
-"label\n"
-"string.text"
-msgid "Comparison of Boolean values:"
-msgstr "Vergleich von Wahrheitswerten:"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"comparison\n"
-"0\n"
-"stringlist.text"
-msgid "Default"
-msgstr "Standard"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"comparison\n"
-"1\n"
-"stringlist.text"
-msgid "SQL"
-msgstr "SQL"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"comparison\n"
-"2\n"
-"stringlist.text"
-msgid "Mixed"
-msgstr "Gemischt"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"comparison\n"
-"3\n"
-"stringlist.text"
-msgid "MS Access"
-msgstr "MS Access"
-
-#: specialsettingspage.ui
-msgctxt ""
-"specialsettingspage.ui\n"
-"rowsft\n"
-"label\n"
-"string.text"
-msgid "Rows to scan column types:"
-msgstr "Zeilen für Suche nach Spaltentypen:"
-
-#: sqlexception.ui
-msgctxt ""
-"sqlexception.ui\n"
-"SQLExceptionDialog\n"
-"title\n"
-"string.text"
-msgid "Error Details"
-msgstr "Fehlerdetails"
-
-#: sqlexception.ui
-msgctxt ""
-"sqlexception.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Error _list:"
-msgstr "_Fehlerliste:"
-
-#: sqlexception.ui
-msgctxt ""
-"sqlexception.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Description:"
-msgstr "_Beschreibung:"
-
-#: summarypage.ui
-msgctxt ""
-"summarypage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Summary"
-msgstr "Zusammenfassung"
-
-#: summarypage.ui
-msgctxt ""
-"summarypage.ui\n"
-"success\n"
-"label\n"
-"string.text"
-msgid "The migration was successful. Below is a log of the actions which have been taken to your document."
-msgstr "Die Migration war erfolgreich. Unten sehen Sie ein Protokoll der Aktionen, die für Ihr Dokument ausgeführt wurden."
-
-#: summarypage.ui
-msgctxt ""
-"summarypage.ui\n"
-"failure\n"
-"label\n"
-"string.text"
-msgid "The migration was not successful. Examine the migration log below for details."
-msgstr "Die Migration war nicht erfolgreich. Lesen Sie das Migrationsprotokoll für weitere Details."
-
-#: tabledesignrowmenu.ui
-msgctxt ""
-"tabledesignrowmenu.ui\n"
-"cut\n"
-"label\n"
-"string.text"
-msgid "Cu_t"
-msgstr "_Ausschneiden"
-
-#: tabledesignrowmenu.ui
-msgctxt ""
-"tabledesignrowmenu.ui\n"
-"copy\n"
-"label\n"
-"string.text"
-msgid "_Copy"
-msgstr "_Kopieren"
-
-#: tabledesignrowmenu.ui
-msgctxt ""
-"tabledesignrowmenu.ui\n"
-"paste\n"
-"label\n"
-"string.text"
-msgid "_Paste"
-msgstr "E_infügen"
-
-#: tabledesignrowmenu.ui
-msgctxt ""
-"tabledesignrowmenu.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete"
-msgstr "_Löschen"
-
-#: tabledesignrowmenu.ui
-msgctxt ""
-"tabledesignrowmenu.ui\n"
-"insert\n"
-"label\n"
-"string.text"
-msgid "Insert Rows"
-msgstr "Zeilen einfügen"
-
-#: tabledesignrowmenu.ui
-msgctxt ""
-"tabledesignrowmenu.ui\n"
-"primarykey\n"
-"label\n"
-"string.text"
-msgid "Primary Key"
-msgstr "Primärschlüssel"
-
-#: tabledesignsavemodifieddialog.ui
-msgctxt ""
-"tabledesignsavemodifieddialog.ui\n"
-"TableDesignSaveModifiedDialog\n"
-"text\n"
-"string.text"
-msgid "Do you want to save the changes?"
-msgstr "Möchten Sie die Änderungen speichern?"
-
-#: tabledesignsavemodifieddialog.ui
-msgctxt ""
-"tabledesignsavemodifieddialog.ui\n"
-"TableDesignSaveModifiedDialog\n"
-"secondary_text\n"
-"string.text"
-msgid "The table has been changed."
-msgstr "Diese Tabelle wurde geändert."
-
-#: tablesfilterdialog.ui
-msgctxt ""
-"tablesfilterdialog.ui\n"
-"TablesFilterDialog\n"
-"title\n"
-"string.text"
-msgid "Tables Filter"
-msgstr "Tabellenfilter"
-
-#: tablesfilterpage.ui
-msgctxt ""
-"tablesfilterpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Mark the tables that should be visible for the applications."
-msgstr "Markieren Sie diejenigen Tabellen, die für die Anwendungen sichtbar sein sollen."
-
-#: tablesfilterpage.ui
-msgctxt ""
-"tablesfilterpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Tables and Table Filter"
-msgstr "Tabellen und Tabellenfilter"
-
-#: tablesjoindialog.ui
-msgctxt ""
-"tablesjoindialog.ui\n"
-"tables\n"
-"label\n"
-"string.text"
-msgid "Tables"
-msgstr "Tabellen"
-
-#: tablesjoindialog.ui
-msgctxt ""
-"tablesjoindialog.ui\n"
-"queries\n"
-"label\n"
-"string.text"
-msgid "Queries"
-msgstr "Abfragen"
-
-#: tablesjoindialog.ui
-msgctxt ""
-"tablesjoindialog.ui\n"
-"title\n"
-"label\n"
-"string.text"
-msgid "Add Tables"
-msgstr "Tabellen hinzufügen"
-
-#: tablesjoindialog.ui
-msgctxt ""
-"tablesjoindialog.ui\n"
-"alttitle\n"
-"label\n"
-"string.text"
-msgid "Add Table or Query"
-msgstr "Tabelle oder Abfrage hinzufügen"
-
-#: textconnectionsettings.ui
-msgctxt ""
-"textconnectionsettings.ui\n"
-"TextConnectionSettingsDialog\n"
-"title\n"
-"string.text"
-msgid "Text Connection Settings"
-msgstr "Verbindungseinstellungen"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"textfile\n"
-"label\n"
-"string.text"
-msgid "Plain text files (*.txt)"
-msgstr "Einfache Textdateien (*.txt)"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"csvfile\n"
-"label\n"
-"string.text"
-msgid "Comma-separated value files (*.csv)"
-msgstr "Comma separated value-Dateien (*.csv)"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"custom\n"
-"label\n"
-"string.text"
-msgid "Custom:"
-msgstr "Benutzerdefiniert:"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"example\n"
-"label\n"
-"string.text"
-msgid "Custom: *.abc"
-msgstr "Benutzerdefiniert: *.abc"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"extensionheader\n"
-"label\n"
-"string.text"
-msgid "Specify the Type of Files You Want to Access"
-msgstr "Geben Sie den Dateityp an, auf den Sie zugreifen möchten"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"containsheaders\n"
-"label\n"
-"string.text"
-msgid "_Text contains headers"
-msgstr "_Text enthält Kopfzeile"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"fieldlabel\n"
-"label\n"
-"string.text"
-msgid "Field separator:"
-msgstr "Feldtrenner:"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"textlabel\n"
-"label\n"
-"string.text"
-msgid "Text separator:"
-msgstr "Texttrenner:"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"decimallabel\n"
-"label\n"
-"string.text"
-msgid "Decimal separator:"
-msgstr "Dezimaltrennzeichen:"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"thousandslabel\n"
-"label\n"
-"string.text"
-msgid "Thousands separator:"
-msgstr "Tausendertrennzeichen:"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"decimalseparator\n"
-"0\n"
-"stringlist.text"
-msgid "."
-msgstr ","
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"decimalseparator\n"
-"1\n"
-"stringlist.text"
-msgid ","
-msgstr "."
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"decimalseparator\n"
-"2\n"
-"stringlist.text"
-msgid ";"
-msgstr ";"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"decimalseparator\n"
-"3\n"
-"stringlist.text"
-msgid ":"
-msgstr ":"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"thousandsseparator\n"
-"0\n"
-"stringlist.text"
-msgid "."
-msgstr "."
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"thousandsseparator\n"
-"1\n"
-"stringlist.text"
-msgid ","
-msgstr ","
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"formatlabel\n"
-"label\n"
-"string.text"
-msgid "Row Format"
-msgstr "Zeilenformat"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"charsetlabel\n"
-"label\n"
-"string.text"
-msgid "_Character set:"
-msgstr "_Zeichensatz:"
-
-#: textpage.ui
-msgctxt ""
-"textpage.ui\n"
-"charsetheader\n"
-"label\n"
-"string.text"
-msgid "Data Conversion"
-msgstr "Datenkonvertierung"
-
-#: typeselectpage.ui
-msgctxt ""
-"typeselectpage.ui\n"
-"columns\n"
-"label\n"
-"string.text"
-msgid "Column Information"
-msgstr "Spalteninformation"
-
-#: typeselectpage.ui
-msgctxt ""
-"typeselectpage.ui\n"
-"autolabel\n"
-"label\n"
-"string.text"
-msgid "Lines (ma_x.):"
-msgstr "_Zeilen (max.):"
-
-#: typeselectpage.ui
-msgctxt ""
-"typeselectpage.ui\n"
-"autobutton\n"
-"label\n"
-"string.text"
-msgid "_Auto"
-msgstr "_Automatisch"
-
-#: typeselectpage.ui
-msgctxt ""
-"typeselectpage.ui\n"
-"autotype\n"
-"label\n"
-"string.text"
-msgid "Automatic Type Recognition"
-msgstr "Automatische Typerkennung"
-
-#: useradmindialog.ui
-msgctxt ""
-"useradmindialog.ui\n"
-"UserAdminDialog\n"
-"title\n"
-"string.text"
-msgid "User Administration"
-msgstr "Benutzeradministration"
-
-#: useradmindialog.ui
-msgctxt ""
-"useradmindialog.ui\n"
-"settings\n"
-"label\n"
-"string.text"
-msgid "User Settings"
-msgstr "Benutzereinstellungen"
-
-#: useradminpage.ui
-msgctxt ""
-"useradminpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Us_er:"
-msgstr "_Benutzer:"
-
-#: useradminpage.ui
-msgctxt ""
-"useradminpage.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "_Add User..."
-msgstr "Benutzer _hinzufügen..."
-
-#: useradminpage.ui
-msgctxt ""
-"useradminpage.ui\n"
-"changepass\n"
-"label\n"
-"string.text"
-msgid "Change _Password..."
-msgstr "_Kennwort ändern..."
-
-#: useradminpage.ui
-msgctxt ""
-"useradminpage.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete User..."
-msgstr "Benut_zer löschen..."
-
-#: useradminpage.ui
-msgctxt ""
-"useradminpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "User Selection"
-msgstr "Benutzerauswahl"
-
-#: useradminpage.ui
-msgctxt ""
-"useradminpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Access Rights for Selected User"
-msgstr "Zugriffsrechte für ausgewählten Benutzer"
-
-#: userdetailspage.ui
-msgctxt ""
-"userdetailspage.ui\n"
-"hostnameft\n"
-"label\n"
-"string.text"
-msgid "_Host name:"
-msgstr "_Rechnername:"
-
-#: userdetailspage.ui
-msgctxt ""
-"userdetailspage.ui\n"
-"portnumberft\n"
-"label\n"
-"string.text"
-msgid "_Port number:"
-msgstr "_Portnummer:"
-
-#: userdetailspage.ui
-msgctxt ""
-"userdetailspage.ui\n"
-"usecatalog\n"
-"label\n"
-"string.text"
-msgid "_Use catalog"
-msgstr "Katalog _verwenden"
-
-#: userdetailspage.ui
-msgctxt ""
-"userdetailspage.ui\n"
-"optionslabel\n"
-"label\n"
-"string.text"
-msgid "_Driver settings:"
-msgstr "_Treibereinstellungen:"
-
-#: userdetailspage.ui
-msgctxt ""
-"userdetailspage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Connection Settings"
-msgstr "Verbindungseinstellungen"
-
-#: userdetailspage.ui
-msgctxt ""
-"userdetailspage.ui\n"
-"charsetlabel\n"
-"label\n"
-"string.text"
-msgid "_Character set:"
-msgstr "_Zeichensatz:"
-
-#: userdetailspage.ui
-msgctxt ""
-"userdetailspage.ui\n"
-"charsetheader\n"
-"label\n"
-"string.text"
-msgid "Data conversion"
-msgstr "Datenkonvertierung"
diff --git a/source/de/desktop/messages.po b/source/de/desktop/messages.po
new file mode 100644
index 00000000000..e6ef7488ca7
--- /dev/null
+++ b/source/de/desktop/messages.po
@@ -0,0 +1,1177 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"PO-Revision-Date: 2015-07-26 06:05+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1437890709.000000\n"
+
+#. Ea8Mi
+#: desktop.src
+msgctxt "STR_BOOTSTRAP_ERR_CANNOT_START"
+msgid "The application cannot be started. "
+msgstr "Die Anwendung kann nicht gestartet werden. "
+
+#. STFHr
+#: desktop.src
+msgctxt "STR_BOOTSTRAP_ERR_DIR_MISSING"
+msgid "The configuration directory \"$1\" could not be found."
+msgstr "Der Konfigurationspfad \"$1\" wurde nicht gefunden."
+
+#. bGWux
+#: desktop.src
+msgctxt "STR_BOOTSTRAP_ERR_PATH_INVALID"
+msgid "The installation path is invalid."
+msgstr "Der Installationspfad ist ungültig."
+
+#. kdZLA
+#: desktop.src
+msgctxt "STR_BOOTSTRAP_ERR_INTERNAL"
+msgid "An internal error occurred."
+msgstr "Ein interner Fehler ist aufgetreten."
+
+#. yGBza
+#: desktop.src
+msgctxt "STR_BOOTSTRAP_ERR_FILE_CORRUPT"
+msgid "The configuration file \"$1\" is corrupt."
+msgstr "Die Konfigurationsdatei \"$1\" ist beschädigt."
+
+#. CP9Qk
+#: desktop.src
+msgctxt "STR_BOOTSTRAP_ERR_FILE_MISSING"
+msgid "The configuration file \"$1\" was not found."
+msgstr "Die Konfigurationsdatei \"$1\" wurde nicht gefunden."
+
+#. maapb
+#: desktop.src
+msgctxt "STR_BOOTSTRAP_ERR_NO_SUPPORT"
+msgid "The configuration file \"$1\" does not support the current version."
+msgstr "Die Konfigurationsdatei \"$1\" unterstützt nicht diese Version."
+
+#. q2F59
+#: desktop.src
+msgctxt "STR_BOOTSTRAP_ERR_LANGUAGE_MISSING"
+msgid "The user interface language cannot be determined."
+msgstr "Die Sprache der Benutzeroberfläche kann nicht bestimmt werden."
+
+#. UTKHa
+#: desktop.src
+msgctxt "STR_BOOTSTRAP_ERR_USERINSTALL_FAILED"
+msgid "User installation could not be completed. "
+msgstr ""
+"Die benutzerdefinierte Installation konnte nicht abgeschlossen werden."
+
+#. dgxZP
+#: desktop.src
+msgctxt "STR_BOOTSTRAP_ERR_NO_CFG_SERVICE"
+msgid "The configuration service is not available."
+msgstr "Der Konfigurations-Manager kann nicht erzeugt werden."
+
+#. wbj4W
+#: desktop.src
+msgctxt "STR_ASK_START_SETUP_MANUALLY"
+msgid ""
+"Start the setup application to repair the installation from the CD or the "
+"folder containing the installation packages."
+msgstr ""
+"Um Ihre Installation zu reparieren, starten Sie die Setup-Anwendung von CD "
+"aus oder aus dem Verzeichnis, in dem sich die Installationspakete befinden."
+
+#. d3or5
+#: desktop.src
+msgctxt "STR_CONFIG_ERR_ACCESS_GENERAL"
+msgid "A general error occurred while accessing your central configuration. "
+msgstr ""
+"Ein genereller Fehler ist beim Zugriff auf die zentrale Konfiguration "
+"aufgetreten. "
+
+#. TXCKM
+#: desktop.src
+msgctxt "STR_BOOTSTRAP_ERR_CFG_DATAACCESS"
+msgid ""
+"%PRODUCTNAME cannot be started due to an error in accessing the %PRODUCTNAME configuration data.\n"
+"\n"
+"Please contact your system administrator."
+msgstr ""
+"%PRODUCTNAME kann nicht gestartet werden, da beim Zugriff auf die %PRODUCTNAME Konfigurationsdaten ein Fehler aufgetreten ist.\n"
+"\n"
+"Bitte wenden Sie sich an Ihren Systemadministrator."
+
+#. bouaV
+#: desktop.src
+msgctxt "STR_INTERNAL_ERRMSG"
+msgid "The following internal error has occurred: "
+msgstr "Folgender interner Fehler ist aufgetreten: "
+
+#. zBSDM
+#: desktop.src
+msgctxt "STR_LO_MUST_BE_RESTARTED"
+msgid ""
+"%PRODUCTNAME must unfortunately be manually restarted once after "
+"installation or update."
+msgstr ""
+"%PRODUCTNAME muss leider nach einer Installation oder einem Update manuell "
+"neu gestartet werden."
+
+#. NBTfi
+#: desktop.src
+msgctxt "STR_QUERY_USERDATALOCKED"
+msgid ""
+"Either another instance of %PRODUCTNAME is accessing your personal settings or your personal settings are locked.\n"
+"Simultaneous access can lead to inconsistencies in your personal settings. Before continuing, you should make sure user '$u' closes %PRODUCTNAME on host '$h'.\n"
+"\n"
+"Do you really want to continue?"
+msgstr ""
+"Eine andere Instanz von %PRODUCTNAME greift auf Ihre persönlichen Einstellungen zu oder hat diese nicht wieder freigegeben.\n"
+"Der gleichzeitige Zugriff kann zu Inkonsistenzen in Ihren persönlichen Einstellungen führen. Bevor Sie Fortfahren sollten Sie sicher stellen, dass %PRODUCTNAME auf dem Host '$h' vom Benutzer '$u' beendet wird.\n"
+"\n"
+"Möchten Sie wirklich fortfahren?"
+
+#. EB6Yf
+#: desktop.src
+msgctxt "STR_TITLE_USERDATALOCKED"
+msgid "%PRODUCTNAME %PRODUCTVERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#. GiCJZ
+#: desktop.src
+msgctxt "STR_ERR_PRINTDISABLED"
+msgid "Printing is disabled. No documents can be printed."
+msgstr ""
+"Das Drucken ist deaktiviert. Es können keine Dokumente gedruckt werden."
+
+#. VxBTE
+#: desktop.src
+msgctxt "STR_BOOTSTRAP_ERR_NO_PATHSET_SERVICE"
+msgid "The path manager is not available.\n"
+msgstr "Der Pfad-Manager ist nicht verfügbar.\n"
+
+#. TPwk6
+#: desktop.src
+msgctxt "STR_BOOSTRAP_ERR_NOTENOUGHDISKSPACE"
+msgid ""
+"%PRODUCTNAME user installation could not be completed due to insufficient free disk space. Please free more disc space at the following location and restart %PRODUCTNAME:\n"
+"\n"
+msgstr ""
+"Die %PRODUCTNAME Benutzerinstallation konnte nicht abgeschlossen werden, da nicht genügend freier Speicherplatz zur Verfügung steht. Bitte stellen Sie mehr freien Speicher im folgenden Pfad zur Verfügung und starten Sie %PRODUCTNAME neu:\n"
+"\n"
+
+#. 3Vs8M
+#: desktop.src
+msgctxt "STR_BOOSTRAP_ERR_NOACCESSRIGHTS"
+msgid ""
+"%PRODUCTNAME user installation could not be processed due to missing access rights. Please make sure that you have sufficient access rights for the following location and restart %PRODUCTNAME:\n"
+"\n"
+msgstr ""
+"Die %PRODUCTNAME Benutzerinstallation konnte aufgrund fehlender Zugriffsrechte nicht durchgeführt werden. Bitte stellen Sie sicher, dass sie Zugriffsrechte für den folgenden Pfad besitzen und starten Sie %PRODUCTNAME neu:\n"
+"\n"
+
+#. u3kcb
+#: dp_gui_dialog.src
+msgctxt "RID_STR_ADD_PACKAGES"
+msgid "Add Extension(s)"
+msgstr "Extension(s) hinzufügen"
+
+#. DDxFn
+#: dp_gui_dialog.src
+msgctxt "RID_CTX_ITEM_REMOVE"
+msgid "~Remove"
+msgstr "~Entfernen"
+
+#. s6iho
+#: dp_gui_dialog.src
+msgctxt "RID_CTX_ITEM_ENABLE"
+msgid "~Enable"
+msgstr "~Aktivieren"
+
+#. CeKUw
+#: dp_gui_dialog.src
+msgctxt "RID_CTX_ITEM_DISABLE"
+msgid "~Disable"
+msgstr "~Deaktivieren"
+
+#. Z7G4r
+#: dp_gui_dialog.src
+msgctxt "RID_CTX_ITEM_CHECK_UPDATE"
+msgid "~Update..."
+msgstr "~Update..."
+
+#. iFBQd
+#: dp_gui_dialog.src
+msgctxt "RID_STR_ADDING_PACKAGES"
+msgid "Adding %EXTENSION_NAME"
+msgstr "Füge %EXTENSION_NAME hinzu"
+
+#. J5KAU
+#: dp_gui_dialog.src
+msgctxt "RID_STR_REMOVING_PACKAGES"
+msgid "Removing %EXTENSION_NAME"
+msgstr "Entferne %EXTENSION_NAME"
+
+#. A6AzC
+#: dp_gui_dialog.src
+msgctxt "RID_STR_ENABLING_PACKAGES"
+msgid "Enabling %EXTENSION_NAME"
+msgstr "Aktiviere %EXTENSION_NAME"
+
+#. Mh7ag
+#: dp_gui_dialog.src
+msgctxt "RID_STR_DISABLING_PACKAGES"
+msgid "Disabling %EXTENSION_NAME"
+msgstr "Deaktiviere %EXTENSION_NAME"
+
+#. GjgyB
+#: dp_gui_dialog.src
+msgctxt "RID_STR_ACCEPT_LICENSE"
+msgid "Accept license for %EXTENSION_NAME"
+msgstr "Lizenz für %EXTENSION_NAME akzeptieren"
+
+#. buqgv
+#: dp_gui_dialog.src
+msgctxt "RID_STR_ERROR_UNKNOWN_STATUS"
+msgid "Error: The status of this extension is unknown"
+msgstr "Fehler: Der Status der Extension ist nicht bekannt"
+
+#. H6NGb
+#: dp_gui_dialog.src
+msgctxt "RID_STR_CLOSE_BTN"
+msgid "Close"
+msgstr "Schließen"
+
+#. T9Gqg
+#: dp_gui_dialog.src
+msgctxt "RID_STR_EXIT_BTN"
+msgid "Quit"
+msgstr "Beenden"
+
+#. AEv5h
+#: dp_gui_dialog.src
+msgctxt "RID_STR_NO_ADMIN_PRIVILEGE"
+msgid ""
+"%PRODUCTNAME has been updated to a new version. Some shared %PRODUCTNAME extensions are not compatible with this version and need to be updated before %PRODUCTNAME can be started.\n"
+"\n"
+"Updating of shared extension requires administrator privileges. Contact your system administrator to update the following shared extensions:"
+msgstr ""
+"%PRODUCTNAME wurde auf eine neue Version aktualisiert. Einige für alle Anwender installierte %PRODUCTNAME-Extensions sind mit dieser Version nicht kompatibel und müssen aktualisiert werden, bevor %PRODUCTNAME gestartet werden kann.\n"
+"\n"
+"Um für alle Anwender installierte Extensions zu aktualisieren, werden Administratorrechte benötigt. Kontaktieren Sie ihren Administrator, um folgende Extensions zu aktualisieren:"
+
+#. mQAQ9
+#: dp_gui_dialog.src
+msgctxt "RID_STR_ERROR_MISSING_DEPENDENCIES"
+msgid ""
+"The extension cannot be enabled as the following system dependencies are not"
+" fulfilled:"
+msgstr ""
+"Die Erweiterung kann nicht aktiviert werden, da die folgenden "
+"Systemvoraussetzungen nicht erfüllt sind:"
+
+#. X4uSy
+#: dp_gui_dialog.src
+msgctxt "RID_STR_ERROR_MISSING_LICENSE"
+msgid ""
+"This extension is disabled because you haven't accepted the license yet.\n"
+msgstr ""
+"Die Extension ist deaktiviert, da die Lizenz noch nicht akzeptiert wurde.\n"
+
+#. ky6LA
+#: dp_gui_dialog.src
+msgctxt "RID_STR_SHOW_LICENSE_CMD"
+msgid "Show license"
+msgstr "Lizenz anzeigen"
+
+#. xyCf9
+#: dp_gui_dialog.src
+msgctxt "RID_STR_WARNING_INSTALL_EXTENSION"
+msgid ""
+"You are about to install the extension '%NAME'.\n"
+"Click 'OK' to proceed with the installation.\n"
+"Click 'Cancel' to stop the installation."
+msgstr ""
+"Möchten Sie die Extension '%NAME' installieren?\n"
+"Klicken Sie auf 'OK', um mit der Installation fortzufahren.\n"
+"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
+
+#. Y4EHy
+#: dp_gui_dialog.src
+msgctxt "RID_STR_WARNING_INSTALL_EXTENSION_DISABLED"
+msgid ""
+"Extension installation is currently disabled. Please consult your system "
+"administrator for more information."
+msgstr ""
+"Die Installation von Extensions ist derzeit deaktiviert. Bitte wenden Sie "
+"sich an Ihren Systemadministrator für weitere Informationen."
+
+#. LncbY
+#: dp_gui_dialog.src
+msgctxt "RID_STR_WARNING_REMOVE_EXTENSION"
+msgid ""
+"You are about to remove the extension '%NAME'.\n"
+"Click 'OK' to remove the extension.\n"
+"Click 'Cancel' to stop removing the extension."
+msgstr ""
+"Möchten Sie die Extension '%NAME' entfernen?\n"
+"Klicken Sie auf 'OK', um die Extension zu entfernen.\n"
+"Klicken Sie auf 'Abbrechen', um das Entfernen abzubrechen."
+
+#. JiEFG
+#: dp_gui_dialog.src
+msgctxt "RID_STR_WARNING_REMOVE_EXTENSION_DISABLED"
+msgid ""
+"Extension removal is currently disabled. Please consult your system "
+"administrator for more information."
+msgstr ""
+"Das Entfernen von Extensions ist derzeit deaktiviert. Bitte wenden Sie sich "
+"an Ihren Systemadministrator für weitere Informationen."
+
+#. fiYMH
+#: dp_gui_dialog.src
+msgctxt "RID_STR_WARNING_REMOVE_SHARED_EXTENSION"
+msgid ""
+"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
+"Click 'OK' to remove the extension.\n"
+"Click 'Cancel' to stop removing the extension."
+msgstr ""
+"Stellen Sie sicher, dass keine anderen Anwender mit der gleichen %PRODUCTNAME Installation arbeiten, wenn Sie gemeinsam genutzte Extensions in einer Mehrbenutzerumgebung ändern.\n"
+"Klicken Sie 'OK', um die Extension zu entfernen.\n"
+"Klicken Sie 'Abbrechen', um das Entfernen abzubrechen."
+
+#. bQ675
+#: dp_gui_dialog.src
+msgctxt "RID_STR_WARNING_ENABLE_SHARED_EXTENSION"
+msgid ""
+"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
+"Click 'OK' to enable the extension.\n"
+"Click 'Cancel' to stop enabling the extension."
+msgstr ""
+"Stellen Sie sicher, dass keine anderen Anwender mit der gleichen %PRODUCTNAME Installation arbeiten, wenn Sie gemeinsam genutzte Extensions in einer Mehrbenutzerumgebung ändern.\n"
+"Klicken Sie 'OK', um die Extension zu aktivieren.\n"
+"Klicken Sie 'Abbrechen', um die Aktivierung abzubrechen."
+
+#. zEGzE
+#: dp_gui_dialog.src
+msgctxt "RID_STR_WARNING_DISABLE_SHARED_EXTENSION"
+msgid ""
+"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
+"Click 'OK' to disable the extension.\n"
+"Click 'Cancel' to stop disabling the extension."
+msgstr ""
+"Stellen Sie sicher, dass keine anderen Anwender mit der gleichen %PRODUCTNAME Installation arbeiten, wenn Sie gemeinsam genutzte Extensions in einer Mehrbenutzerumgebung ändern.\n"
+"Klicken Sie 'OK', um die Extension zu deaktivieren.\n"
+"Klicken Sie 'Abbrechen', um die Deaktivierung abzubrechen."
+
+#. bfdYH
+#: dp_gui_dialog.src
+msgctxt "RID_STR_UNSUPPORTED_PLATFORM"
+msgid "The extension '%Name' does not work on this computer."
+msgstr "Die Extension '%Name' ist auf diesem Computer nicht lauffähig."
+
+#. J2X2b
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_NONE"
+msgid "No new updates are available."
+msgstr "Es sind keine neuen Updates verfügbar."
+
+#. y7gVg
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_NOINSTALLABLE"
+msgid ""
+"No installable updates are available. To see ignored or disabled updates, "
+"mark the check box 'Show all updates'."
+msgstr ""
+"Es sind keine installierbaren Updates verfügbar. Um ignorierte oder "
+"deaktivierte Updates angezeigt zu bekommen, wählen Sie 'Zeige alle Updates'."
+
+#. rq2Co
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_FAILURE"
+msgid "An error occurred:"
+msgstr "Es ist ein Fehler aufgetreten:"
+
+#. 77Hco
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_UNKNOWNERROR"
+msgid "Unknown error."
+msgstr "Unbekannter Fehler."
+
+#. 7xdom
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_NODESCRIPTION"
+msgid "No more details are available for this update."
+msgstr "Es ist keine Beschreibung für diese Extension verfügbar."
+
+#. NECjC
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_NOINSTALL"
+msgid "The extension cannot be updated because:"
+msgstr "Die Extension kann aus folgendem Grund nicht aktualisiert werden:"
+
+#. BstEF
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_NODEPENDENCY"
+msgid "Required %PRODUCTNAME version doesn't match:"
+msgstr "Die benötigte %PRODUCTNAME-Version stimmt nicht überein:"
+
+#. fz5C3
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_NODEPENDENCY_CUR_VER"
+msgid "You have %PRODUCTNAME %VERSION"
+msgstr "Sie haben %PRODUCTNAME %VERSION installiert"
+
+#. ofeoD
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_BROWSERBASED"
+msgid "browser based update"
+msgstr "Browser-basiertes Update"
+
+#. 4NJkE
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_VERSION"
+msgid "Version"
+msgstr "Version"
+
+#. m6EtT
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_IGNORE"
+msgid "Ignore this Update"
+msgstr "Dieses Update überspringen"
+
+#. thoRv
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_IGNORE_ALL"
+msgid "Ignore all Updates"
+msgstr "Alle Updates überspringen"
+
+#. GBGe5
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_ENABLE"
+msgid "Enable Updates"
+msgstr "Updates ermöglichen"
+
+#. JRSnS
+#: dp_gui_updatedialog.src
+msgctxt "RID_DLG_UPDATE_IGNORED_UPDATE"
+msgid "This update will be ignored.\n"
+msgstr "Dieses Update wird ausgelassen.\n"
+
+#. cGEv7
+#: dp_gui_updateinstalldialog.src
+msgctxt "RID_DLG_UPDATE_INSTALL_INSTALLING"
+msgid "Installing extensions..."
+msgstr "Installieren der Extensions..."
+
+#. TP9Jx
+#: dp_gui_updateinstalldialog.src
+msgctxt "RID_DLG_UPDATE_INSTALL_FINISHED"
+msgid "Installation finished"
+msgstr "Installation beendet"
+
+#. vga5X
+#: dp_gui_updateinstalldialog.src
+msgctxt "RID_DLG_UPDATE_INSTALL_NO_ERRORS"
+msgid "No errors."
+msgstr "Es sind keine Fehler aufgetreten."
+
+#. GtBF5
+#: dp_gui_updateinstalldialog.src
+msgctxt "RID_DLG_UPDATE_INSTALL_ERROR_DOWNLOAD"
+msgid "Error while downloading extension %NAME. "
+msgstr ""
+"Ein Fehler ist während des Herunterladens der Extension %NAME aufgetreten. "
+
+#. 8wV4e
+#: dp_gui_updateinstalldialog.src
+msgctxt "RID_DLG_UPDATE_INSTALL_THIS_ERROR_OCCURRED"
+msgid "The error message is: "
+msgstr "Die Fehlermeldung ist: "
+
+#. vAP5D
+#: dp_gui_updateinstalldialog.src
+msgctxt "RID_DLG_UPDATE_INSTALL_ERROR_INSTALLATION"
+msgid "Error while installing extension %NAME. "
+msgstr ""
+"Ein Fehler ist während der Installation der Extension %NAME aufgetreten. "
+
+#. DNwGS
+#: dp_gui_updateinstalldialog.src
+msgctxt "RID_DLG_UPDATE_INSTALL_ERROR_LIC_DECLINED"
+msgid "The license agreement for extension %NAME was refused. "
+msgstr "Die Lizenzvereinbarung für Extension %NAME wurde abgelehnt. "
+
+#. q4fDv
+#: dp_gui_updateinstalldialog.src
+msgctxt "RID_DLG_UPDATE_INSTALL_EXTENSION_NOINSTALL"
+msgid "The extension will not be installed."
+msgstr "Die Extension wird nicht installiert."
+
+#. dNBtG
+#: dp_gui_versionboxes.src
+msgctxt "RID_STR_WARNING_VERSION_LESS"
+msgid ""
+"You are about to install version $NEW of the extension '$NAME'.\n"
+"The newer version $DEPLOYED is already installed.\n"
+"Click 'OK' to replace the installed extension.\n"
+"Click 'Cancel' to stop the installation."
+msgstr ""
+"Möchten Sie die Version $NEW der Extension '$NAME' installieren?\n"
+"Die neuere Version $DEPLOYED ist bereits installiert.\n"
+"Klicken Sie auf 'OK', um die bereits installierte Version zu ersetzen.\n"
+"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
+
+#. TmQCx
+#: dp_gui_versionboxes.src
+msgctxt "RID_STR_WARNINGBOX_VERSION_LESS_DIFFERENT_NAMES"
+msgid ""
+"You are about to install version $NEW of the extension '$NAME'.\n"
+"The newer version $DEPLOYED, named '$OLDNAME', is already installed.\n"
+"Click 'OK' to replace the installed extension.\n"
+"Click 'Cancel' to stop the installation."
+msgstr ""
+"Möchten Sie die Version $NEW der Extension '$NAME' installieren?\n"
+"Die neuere Version $DEPLOYED, '$OLDNAME', ist bereits installiert.\n"
+"Klicken Sie auf 'OK', um die bereits installierte Version zu ersetzen.\n"
+"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
+
+#. AMTBi
+#: dp_gui_versionboxes.src
+msgctxt "RID_STR_WARNING_VERSION_EQUAL"
+msgid ""
+"You are about to install version $NEW of the extension '$NAME'.\n"
+"That version is already installed.\n"
+"Click 'OK' to replace the installed extension.\n"
+"Click 'Cancel' to stop the installation."
+msgstr ""
+"Möchten Sie die Version $NEW der Extension '$NAME' installieren?\n"
+"Diese Version ist bereits installiert.\n"
+"Klicken Sie auf 'OK', um die bereits installierte Version zu ersetzen.\n"
+"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
+
+#. 5TDnT
+#: dp_gui_versionboxes.src
+msgctxt "RID_STR_WARNINGBOX_VERSION_EQUAL_DIFFERENT_NAMES"
+msgid ""
+"You are about to install version $NEW of the extension '$NAME'.\n"
+"That version, named '$OLDNAME', is already installed.\n"
+"Click 'OK' to replace the installed extension.\n"
+"Click 'Cancel' to stop the installation."
+msgstr ""
+"Möchten Sie die Version $NEW der Extension '$NAME' installieren?\n"
+"Die Version '$OLDNAME' ist bereits installiert.\n"
+"Klicken Sie auf 'OK', um die bereits installierte Version zu ersetzen.\n"
+"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
+
+#. 9wcAB
+#: dp_gui_versionboxes.src
+msgctxt "RID_STR_WARNING_VERSION_GREATER"
+msgid ""
+"You are about to install version $NEW of the extension '$NAME'.\n"
+"The older version $DEPLOYED is already installed.\n"
+"Click 'OK' to replace the installed extension.\n"
+"Click 'Cancel' to stop the installation."
+msgstr ""
+"Möchten Sie die Version $NEW der Extension '$NAME' installieren?\n"
+"Die ältere Version $DEPLOYED ist bereits installiert.\n"
+"Klicken Sie auf 'OK', um die bereits installierte Version zu ersetzen.\n"
+"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
+
+#. 2WQJk
+#: dp_gui_versionboxes.src
+msgctxt "RID_STR_WARNINGBOX_VERSION_GREATER_DIFFERENT_NAMES"
+msgid ""
+"You are about to install version $NEW of the extension '$NAME'.\n"
+"The older version $DEPLOYED, named '$OLDNAME', is already installed.\n"
+"Click 'OK' to replace the installed extension.\n"
+"Click 'Cancel' to stop the installation."
+msgstr ""
+"Möchten Sie die Version $NEW der Extension '$NAME' installieren?\n"
+"Die ältere Version $DEPLOYED, '$OLDNAME', ist bereits installiert.\n"
+"Klicken Sie auf 'OK', um die bereits installierte Version zu ersetzen.\n"
+"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
+
+#. dp8bf
+#: dp_registry.src
+msgctxt "RID_STR_REGISTERING_PACKAGE"
+msgid "Enabling: "
+msgstr "Aktiviere: "
+
+#. xBysg
+#: dp_registry.src
+msgctxt "RID_STR_REVOKING_PACKAGE"
+msgid "Disabling: "
+msgstr "Deaktiviere: "
+
+#. HDgpp
+#: dp_registry.src
+msgctxt "RID_STR_CANNOT_DETECT_MEDIA_TYPE"
+msgid "Cannot detect media-type: "
+msgstr "Medientyp konnte nicht ermittelt werden: "
+
+#. QfGM7
+#: dp_registry.src
+msgctxt "RID_STR_UNSUPPORTED_MEDIA_TYPE"
+msgid "This media-type is not supported: "
+msgstr "Dieser Medientyp wird nicht unterstützt: "
+
+#. VHcMc
+#: dp_registry.src
+msgctxt "RID_STR_ERROR_WHILE_REGISTERING"
+msgid "An error occurred while enabling: "
+msgstr "Fehler beim Aktivieren von: "
+
+#. BqmAM
+#: dp_registry.src
+msgctxt "RID_STR_ERROR_WHILE_REVOKING"
+msgid "An error occurred while disabling: "
+msgstr "Fehler beim Deaktivieren von: "
+
+#. v2iwK
+#: dp_manager.src
+msgctxt "RID_STR_COPYING_PACKAGE"
+msgid "Copying: "
+msgstr "Kopiere: "
+
+#. 2dzDt
+#: dp_manager.src
+msgctxt "RID_STR_ERROR_WHILE_ADDING"
+msgid "Error while adding: "
+msgstr "Fehler beim Hinzufügen von: "
+
+#. CUrtD
+#: dp_manager.src
+msgctxt "RID_STR_ERROR_WHILE_REMOVING"
+msgid "Error while removing: "
+msgstr "Fehler beim Entfernen von: "
+
+#. XyESz
+#: dp_manager.src
+msgctxt "RID_STR_PACKAGE_ALREADY_ADDED"
+msgid "Extension has already been added: "
+msgstr "Extension ist bereits vorhanden: "
+
+#. cuydq
+#: dp_manager.src
+msgctxt "RID_STR_NO_SUCH_PACKAGE"
+msgid "There is no such extension deployed: "
+msgstr "Extension ist nicht bekannt: "
+
+#. wzGYv
+#: dp_manager.src
+msgctxt "RID_STR_SYNCHRONIZING_REPOSITORY"
+msgid "Synchronizing repository for %NAME extensions"
+msgstr "Die Quelle der Extension %NAME wird abgeglichen"
+
+#. uigQN
+#: unopkg.src
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_1"
+msgid "Extension Software License Agreement of $NAME:"
+msgstr "Software-Lizenzvereinbarung für Extension $NAME:"
+
+#. DEkAo
+#: unopkg.src
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_2"
+msgid ""
+"Read the complete License Agreement displayed above. Accept the License "
+"Agreement by typing \"yes\" on the console then press the Return key. Type "
+"\"no\" to decline and to abort the extension setup."
+msgstr ""
+"Lesen Sie den gesamten obigen Lizenzvertrag. Akzeptieren Sie diesen "
+"Lizenzvertrag, indem Sie \"Ja\" auf der Konsole eingeben und abschließend "
+"die Eingabetaste drücken. Geben Sie \"Nein\" ein, um die Installation der "
+"Erweiterung abzubrechen."
+
+#. wANiC
+#: unopkg.src
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_3"
+msgid "[Enter \"yes\" or \"no\"]:"
+msgstr "[\"Ja\" oder \"Nein\" eingeben]:"
+
+#. wEFn2
+#: unopkg.src
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_4"
+msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
+msgstr ""
+"Ihre Eingabe war nicht korrekt. Bitte geben Sie entweder \"Ja\" oder "
+"\"Nein\" ein:"
+
+#. A9CdG
+#: unopkg.src
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_YES"
+msgid "YES"
+msgstr "JA"
+
+#. HLETc
+#: unopkg.src
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_Y"
+msgid "Y"
+msgstr "J"
+
+#. SQ6jd
+#: unopkg.src
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_NO"
+msgid "NO"
+msgstr "NEIN"
+
+#. 6LgGA
+#: unopkg.src
+msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_N"
+msgid "N"
+msgstr "N"
+
+#. aCY73
+#: unopkg.src
+msgctxt "RID_STR_CONCURRENTINSTANCE"
+msgid ""
+"unopkg cannot be started. The lock file indicates it is already running. If "
+"this does not apply, delete the lock file at:"
+msgstr ""
+"unopkg kann nicht gestartet werden. Die Lock-Datei zeigt an, dass unopkg "
+"bereits gestartet ist. Sollte das nicht zutreffen, löschen Sie die Lock-"
+"Datei:"
+
+#. MLhHo
+#: unopkg.src
+msgctxt "RID_STR_UNOPKG_ERROR"
+msgid "ERROR: "
+msgstr "FEHLER: "
+
+#. 2yEGV
+#: dp_misc.src
+msgctxt "RID_DEPLOYMENT_DEPENDENCIES_UNKNOWN"
+msgid "Unknown"
+msgstr "Unbekannt"
+
+#. kGwZa
+#: dp_misc.src
+msgctxt "RID_DEPLOYMENT_DEPENDENCIES_OOO_MIN"
+msgid "Extension requires at least OpenOffice.org reference version %VERSION"
+msgstr ""
+"Die Erweiterung benötigt mindestens OpenOffice.org Referenzversion %VERSION"
+
+#. rcfFe
+#: dp_misc.src
+msgctxt "RID_DEPLOYMENT_DEPENDENCIES_OOO_MAX"
+msgid ""
+"Extension does not support OpenOffice.org reference versions greater than "
+"%VERSION"
+msgstr ""
+"Die Erweiterung unterstützt nicht OpenOffice.org Referenzversionen größer "
+"als %VERSION"
+
+#. 776kM
+#: dp_misc.src
+msgctxt "RID_DEPLOYMENT_DEPENDENCIES_LO_MIN"
+msgid "Extension requires at least %PRODUCTNAME version %VERSION"
+msgstr "Die Erweiterung benötigt mindestens %PRODUCTNAME Version %VERSION"
+
+#. Avii2
+#: dp_configuration.src
+msgctxt "RID_STR_CONF_SCHEMA"
+msgid "Configuration Schema"
+msgstr "Konfigurationsschema"
+
+#. cL9MC
+#: dp_configuration.src
+msgctxt "RID_STR_CONF_DATA"
+msgid "Configuration Data"
+msgstr "Konfigurationsdaten"
+
+#. 5TAZB
+#: dp_component.src
+msgctxt "RID_STR_DYN_COMPONENT"
+msgid "UNO Dynamic Library Component"
+msgstr "UNO Dynamic Library Komponente"
+
+#. SK5Ay
+#: dp_component.src
+msgctxt "RID_STR_JAVA_COMPONENT"
+msgid "UNO Java Component"
+msgstr "UNO Java Komponente"
+
+#. a7o4C
+#: dp_component.src
+msgctxt "RID_STR_PYTHON_COMPONENT"
+msgid "UNO Python Component"
+msgstr "UNO Python Komponente"
+
+#. QyN3F
+#: dp_component.src
+msgctxt "RID_STR_COMPONENTS"
+msgid "UNO Components"
+msgstr "UNO Komponenten"
+
+#. G6LCn
+#: dp_component.src
+msgctxt "RID_STR_RDB_TYPELIB"
+msgid "UNO RDB Type Library"
+msgstr "UNO RDB Type Bibliothek"
+
+#. KcXfh
+#: dp_component.src
+msgctxt "RID_STR_JAVA_TYPELIB"
+msgid "UNO Java Type Library"
+msgstr "UNO Java Type Bibliothek"
+
+#. wBhDU
+#: dp_sfwk.src
+msgctxt "RID_STR_SFWK_LIB"
+msgid "%MACROLANG Library"
+msgstr "%MACROLANG Bibliothek"
+
+#. 3qnyB
+#: dp_script.src
+msgctxt "RID_STR_BASIC_LIB"
+msgid "%PRODUCTNAME Basic Library"
+msgstr "%PRODUCTNAME Basic Bibliothek"
+
+#. Tnphj
+#: dp_script.src
+msgctxt "RID_STR_DIALOG_LIB"
+msgid "Dialog Library"
+msgstr "Dialog Bibliothek"
+
+#. ThJQm
+#: dp_script.src
+msgctxt "RID_STR_CANNOT_DETERMINE_LIBNAME"
+msgid "The library name could not be determined."
+msgstr "Bibliotheks-Name konnte nicht ermittelt werden."
+
+#. k2PBJ
+#: dp_help.src
+msgctxt "RID_STR_HELP"
+msgid "Help"
+msgstr "Hilfe"
+
+#. wPwGt
+#: dp_help.src
+msgctxt "RID_STR_HELPPROCESSING_GENERAL_ERROR"
+msgid "The extension cannot be installed because:\n"
+msgstr "Die Extension kann aus folgendem Grund nicht installiert werden:\n"
+
+#. PBXkt
+#: dp_help.src
+msgctxt "RID_STR_HELPPROCESSING_XMLPARSING_ERROR"
+msgid ""
+"The extension will not be installed because an error occurred in the Help "
+"files:\n"
+msgstr ""
+"Die Extension wird nicht installiert, da ein Fehler in den Hilfe-Dateien "
+"auftrat:\n"
+
+#. G6SqW
+#: dp_package.src
+msgctxt "RID_STR_PACKAGE_BUNDLE"
+msgid "Extension"
+msgstr "Extension"
+
+#. Qcv5A
+#: dependenciesdialog.ui
+msgctxt "dependenciesdialog|Dependencies"
+msgid "System dependencies check"
+msgstr "Überprüfung der Systemvoraussetzungen"
+
+#. JNnsh
+#: dependenciesdialog.ui
+msgctxt "dependenciesdialog|label1"
+msgid ""
+"The extension cannot be installed as the following system dependencies are "
+"not fulfilled:"
+msgstr ""
+"Die Erweiterung kann nicht installiert werden, da die folgenden "
+"Systemvoraussetzungen nicht erfüllt sind:"
+
+#. FfYDj
+#: extensionmanager.ui
+msgctxt "extensionmanager|ExtensionManagerDialog"
+msgid "Extension Manager"
+msgstr "Extension Manager"
+
+#. DLME5
+#: extensionmanager.ui
+msgctxt "extensionmanager|optionsbtn"
+msgid "_Options"
+msgstr "_Optionen"
+
+#. ieiF4
+#: extensionmanager.ui
+msgctxt "extensionmanager|updatebtn"
+msgid "Check for _Updates"
+msgstr "Auf _Updates prüfen"
+
+#. GehiB
+#: extensionmanager.ui
+msgctxt "extensionmanager|addbtn"
+msgid "_Add"
+msgstr "Hin_zufügen"
+
+#. wNCAw
+#: extensionmanager.ui
+msgctxt "extensionmanager|removebtn"
+msgid "_Remove"
+msgstr "_Entfernen"
+
+#. qHMdq
+#: extensionmanager.ui
+msgctxt "extensionmanager|enablebtn"
+msgid "_Enable"
+msgstr "_Aktivieren"
+
+#. gjCkd
+#: extensionmanager.ui
+msgctxt "extensionmanager|shared"
+msgid "Installed for all users"
+msgstr "Systemweite Installation"
+
+#. zhqZT
+#: extensionmanager.ui
+msgctxt "extensionmanager|user"
+msgid "Installed for current user"
+msgstr "Benutzer-Installation"
+
+#. 6wBVk
+#: extensionmanager.ui
+msgctxt "extensionmanager|bundled"
+msgid "Bundled with %PRODUCTNAME"
+msgstr "Mit %PRODUCTNAME ausgeliefert"
+
+#. T8BGR
+#: extensionmanager.ui
+msgctxt "extensionmanager|label1"
+msgid "Display Extensions"
+msgstr "Extensions anzeigen"
+
+#. vz3Ti
+#: extensionmanager.ui
+msgctxt "extensionmanager|progressft"
+msgid "Adding %EXTENSION_NAME"
+msgstr "%EXTENSION_NAME hinzufügen"
+
+#. A33SB
+#: extensionmanager.ui
+msgctxt "extensionmanager|getextensions"
+msgid "Get more extensions online..."
+msgstr "Laden Sie weitere Extensions aus dem Internet herunter..."
+
+#. EGwkP
+#: installforalldialog.ui
+msgctxt "installforalldialog|InstallForAllDialog"
+msgid "For whom do you want to install the extension?"
+msgstr "Für wen möchten Sie die Extension installieren?"
+
+#. bFbLc
+#: installforalldialog.ui
+msgctxt "installforalldialog|InstallForAllDialog"
+msgid ""
+"Make sure that no further users are working with the same %PRODUCTNAME, when"
+" installing an extension for all users in a multi user environment."
+msgstr ""
+"Stellen Sie sicher, dass keine anderen Benutzer mit der gleichen "
+"Installation von %PRODUCTNAME arbeiten, wenn Sie eine Extension für alle "
+"Benutzer in einer Mehrbenutzerumgebung installieren."
+
+#. urmUy
+#: installforalldialog.ui
+msgctxt "installforalldialog|no"
+msgid "_For all users"
+msgstr "_Für alle Benutzer"
+
+#. nPnM4
+#: installforalldialog.ui
+msgctxt "installforalldialog|yes"
+msgid "_Only for me"
+msgstr "_Nur für mich"
+
+#. feAcg
+#: licensedialog.ui
+msgctxt "licensedialog|LicenseDialog"
+msgid "Extension Software License Agreement"
+msgstr "Lizenzvertrag für Extension-Software"
+
+#. Q6dKY
+#: licensedialog.ui
+msgctxt "licensedialog|accept"
+msgid "Accept"
+msgstr "Akzeptieren"
+
+#. zXBFv
+#: licensedialog.ui
+msgctxt "licensedialog|decline"
+msgid "Decline"
+msgstr "Ablehnen"
+
+#. rvo9y
+#: licensedialog.ui
+msgctxt "licensedialog|head"
+msgid ""
+"Please follow these steps to proceed with the installation of the extension:"
+msgstr ""
+"Bitte führen Sie die folgenden Schritte aus, um mit der Installation der "
+"Extension fortzufahren:"
+
+#. tEDSx
+#: licensedialog.ui
+msgctxt "licensedialog|label2"
+msgid "1."
+msgstr "1."
+
+#. NyS5E
+#: licensedialog.ui
+msgctxt "licensedialog|label3"
+msgid "2."
+msgstr "2."
+
+#. 5h4GZ
+#: licensedialog.ui
+msgctxt "licensedialog|label4"
+msgid ""
+"Read the complete License Agreement. Use the scroll bar or the 'Scroll Down'"
+" button in this dialog to view the entire license text."
+msgstr ""
+"Lesen Sie den gesamten Lizenzvertrag. Verwenden Sie die Bildlaufleiste oder "
+"die Schaltfläche 'Blättern' in diesem Dialog, um den gesamten Text sichtbar "
+"zu machen."
+
+#. oyoCK
+#: licensedialog.ui
+msgctxt "licensedialog|label5"
+msgid ""
+"Accept the License Agreement for the extension by pressing the 'Accept' "
+"button."
+msgstr ""
+"Akzeptieren Sie den Lizenzvertrag der Extension, indem Sie die Schaltfläche "
+"'Akzeptieren' anklicken."
+
+#. ydBcE
+#: licensedialog.ui
+msgctxt "licensedialog|down"
+msgid "_Scroll Down"
+msgstr "_Blättern"
+
+#. qquCs
+#: showlicensedialog.ui
+msgctxt "showlicensedialog|ShowLicenseDialog"
+msgid "Extension Software License Agreement"
+msgstr "Lizenzvertrag für Extension-Software"
+
+#. GX3k2
+#: updatedialog.ui
+msgctxt "updatedialog|UpdateDialog"
+msgid "Extension Update"
+msgstr "Extension Update"
+
+#. DmHy5
+#: updatedialog.ui
+msgctxt "updatedialog|INSTALL"
+msgid "_Install"
+msgstr "_Installieren"
+
+#. 3bJwo
+#: updatedialog.ui
+msgctxt "updatedialog|UPDATE_LABEL"
+msgid "_Available extension updates"
+msgstr "_Verfügbare Extension-Updates"
+
+#. 3mtLC
+#: updatedialog.ui
+msgctxt "updatedialog|UPDATE_CHECKING"
+msgid "Checking..."
+msgstr "Suche läuft..."
+
+#. WkYgi
+#: updatedialog.ui
+msgctxt "updatedialog|UPDATE_ALL"
+msgid "_Show all updates"
+msgstr "_Zeige alle Updates"
+
+#. BriDD
+#: updatedialog.ui
+msgctxt "updatedialog|DESCRIPTION_LABEL"
+msgid "Description"
+msgstr "Beschreibung"
+
+#. 7DTtA
+#: updatedialog.ui
+msgctxt "updatedialog|PUBLISHER_LABEL"
+msgid "Publisher:"
+msgstr "Herausgeber:"
+
+#. iaD89
+#: updatedialog.ui
+msgctxt "updatedialog|PUBLISHER_LINK"
+msgid "button"
+msgstr "Schaltfläche"
+
+#. kgLHP
+#: updatedialog.ui
+msgctxt "updatedialog|RELEASE_NOTES_LABEL"
+msgid "What is new:"
+msgstr "Was ist neu:"
+
+#. JqHGH
+#: updatedialog.ui
+msgctxt "updatedialog|RELEASE_NOTES_LINK"
+msgid "Release notes"
+msgstr "Release Hinweise"
+
+#. YEhMN
+#: updateinstalldialog.ui
+msgctxt "updateinstalldialog|UpdateInstallDialog"
+msgid "Download and Installation"
+msgstr "Herunterladen und Installieren"
+
+#. t9MoN
+#: updateinstalldialog.ui
+msgctxt "updateinstalldialog|DOWNLOADING"
+msgid "Downloading extensions..."
+msgstr "Extensions herunterladen..."
+
+#. 3AFnH
+#: updateinstalldialog.ui
+msgctxt "updateinstalldialog|RESULTS"
+msgid "Result"
+msgstr "Ergebnis"
+
+#. Kfhc4
+#: updaterequireddialog.ui
+msgctxt "updaterequireddialog|UpdateRequiredDialog"
+msgid "Extension Update Required"
+msgstr "Extension-Update notwendig"
+
+#. VYnoR
+#: updaterequireddialog.ui
+msgctxt "updaterequireddialog|updatelabel"
+msgid ""
+"%PRODUCTNAME has been updated to a new version. Some installed %PRODUCTNAME "
+"extensions are not compatible with this version and need to be updated "
+"before they can be used."
+msgstr ""
+"%PRODUCTNAME wurde auf eine neue Version aktualisiert. Einige installierte "
+"%PRODUCTNAME-Extensions sind mit dieser Version nicht kompatibel und müssen "
+"aktualisiert werden, bevor sie verwendet werden können."
+
+#. FXDEw
+#: updaterequireddialog.ui
+msgctxt "updaterequireddialog|progresslabel"
+msgid "Adding %EXTENSION_NAME"
+msgstr "%EXTENSION_NAME hinzufügen"
+
+#. bp47k
+#: updaterequireddialog.ui
+msgctxt "updaterequireddialog|check"
+msgid "Check for _Updates..."
+msgstr "Auf _Updates prüfen..."
+
+#. 9S2f3
+#: updaterequireddialog.ui
+msgctxt "updaterequireddialog|disable"
+msgid "Disable all"
+msgstr "Alle deaktivieren"
diff --git a/source/de/desktop/source/app.po b/source/de/desktop/source/app.po
deleted file mode 100644
index a9679a92bd6..00000000000
--- a/source/de/desktop/source/app.po
+++ /dev/null
@@ -1,207 +0,0 @@
-#. extracted from desktop/source/app
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-07-26 06:05+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1437890709.000000\n"
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOTSTRAP_ERR_CANNOT_START\n"
-"string.text"
-msgid "The application cannot be started. "
-msgstr "Die Anwendung kann nicht gestartet werden. "
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOTSTRAP_ERR_DIR_MISSING\n"
-"string.text"
-msgid "The configuration directory \"$1\" could not be found."
-msgstr "Der Konfigurationspfad \"$1\" wurde nicht gefunden."
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOTSTRAP_ERR_PATH_INVALID\n"
-"string.text"
-msgid "The installation path is invalid."
-msgstr "Der Installationspfad ist ungültig."
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOTSTRAP_ERR_INTERNAL\n"
-"string.text"
-msgid "An internal error occurred."
-msgstr "Ein interner Fehler ist aufgetreten."
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOTSTRAP_ERR_FILE_CORRUPT\n"
-"string.text"
-msgid "The configuration file \"$1\" is corrupt."
-msgstr "Die Konfigurationsdatei \"$1\" ist beschädigt."
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOTSTRAP_ERR_FILE_MISSING\n"
-"string.text"
-msgid "The configuration file \"$1\" was not found."
-msgstr "Die Konfigurationsdatei \"$1\" wurde nicht gefunden."
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOTSTRAP_ERR_NO_SUPPORT\n"
-"string.text"
-msgid "The configuration file \"$1\" does not support the current version."
-msgstr "Die Konfigurationsdatei \"$1\" unterstützt nicht diese Version."
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOTSTRAP_ERR_LANGUAGE_MISSING\n"
-"string.text"
-msgid "The user interface language cannot be determined."
-msgstr "Die Sprache der Benutzeroberfläche kann nicht bestimmt werden."
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOTSTRAP_ERR_USERINSTALL_FAILED\n"
-"string.text"
-msgid "User installation could not be completed. "
-msgstr "Die benutzerdefinierte Installation konnte nicht abgeschlossen werden."
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOTSTRAP_ERR_NO_CFG_SERVICE\n"
-"string.text"
-msgid "The configuration service is not available."
-msgstr "Der Konfigurations-Manager kann nicht erzeugt werden."
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_ASK_START_SETUP_MANUALLY\n"
-"string.text"
-msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages."
-msgstr "Um Ihre Installation zu reparieren, starten Sie die Setup-Anwendung von CD aus oder aus dem Verzeichnis, in dem sich die Installationspakete befinden."
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_CONFIG_ERR_ACCESS_GENERAL\n"
-"string.text"
-msgid "A general error occurred while accessing your central configuration. "
-msgstr "Ein genereller Fehler ist beim Zugriff auf die zentrale Konfiguration aufgetreten. "
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOTSTRAP_ERR_CFG_DATAACCESS\n"
-"string.text"
-msgid ""
-"%PRODUCTNAME cannot be started due to an error in accessing the %PRODUCTNAME configuration data.\n"
-"\n"
-"Please contact your system administrator."
-msgstr ""
-"%PRODUCTNAME kann nicht gestartet werden, da beim Zugriff auf die %PRODUCTNAME Konfigurationsdaten ein Fehler aufgetreten ist.\n"
-"\n"
-"Bitte wenden Sie sich an Ihren Systemadministrator."
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_INTERNAL_ERRMSG\n"
-"string.text"
-msgid "The following internal error has occurred: "
-msgstr "Folgender interner Fehler ist aufgetreten: "
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_LO_MUST_BE_RESTARTED\n"
-"string.text"
-msgid "%PRODUCTNAME must unfortunately be manually restarted once after installation or update."
-msgstr "%PRODUCTNAME muss leider nach einer Installation oder einem Update manuell neu gestartet werden."
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_QUERY_USERDATALOCKED\n"
-"string.text"
-msgid ""
-"Either another instance of %PRODUCTNAME is accessing your personal settings or your personal settings are locked.\n"
-"Simultaneous access can lead to inconsistencies in your personal settings. Before continuing, you should make sure user '$u' closes %PRODUCTNAME on host '$h'.\n"
-"\n"
-"Do you really want to continue?"
-msgstr ""
-"Eine andere Instanz von %PRODUCTNAME greift auf Ihre persönlichen Einstellungen zu oder hat diese nicht wieder freigegeben.\n"
-"Der gleichzeitige Zugriff kann zu Inkonsistenzen in Ihren persönlichen Einstellungen führen. Bevor Sie Fortfahren sollten Sie sicher stellen, dass %PRODUCTNAME auf dem Host '$h' vom Benutzer '$u' beendet wird.\n"
-"\n"
-"Möchten Sie wirklich fortfahren?"
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_TITLE_USERDATALOCKED\n"
-"string.text"
-msgid "%PRODUCTNAME %PRODUCTVERSION"
-msgstr "%PRODUCTNAME %PRODUCTVERSION"
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_ERR_PRINTDISABLED\n"
-"string.text"
-msgid "Printing is disabled. No documents can be printed."
-msgstr "Das Drucken ist deaktiviert. Es können keine Dokumente gedruckt werden."
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOTSTRAP_ERR_NO_PATHSET_SERVICE\n"
-"string.text"
-msgid "The path manager is not available.\n"
-msgstr "Der Pfad-Manager ist nicht verfügbar.\n"
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOSTRAP_ERR_NOTENOUGHDISKSPACE\n"
-"string.text"
-msgid ""
-"%PRODUCTNAME user installation could not be completed due to insufficient free disk space. Please free more disc space at the following location and restart %PRODUCTNAME:\n"
-"\n"
-msgstr ""
-"Die %PRODUCTNAME Benutzerinstallation konnte nicht abgeschlossen werden, da nicht genügend freier Speicherplatz zur Verfügung steht. Bitte stellen Sie mehr freien Speicher im folgenden Pfad zur Verfügung und starten Sie %PRODUCTNAME neu:\n"
-"\n"
-
-#: desktop.src
-msgctxt ""
-"desktop.src\n"
-"STR_BOOSTRAP_ERR_NOACCESSRIGHTS\n"
-"string.text"
-msgid ""
-"%PRODUCTNAME user installation could not be processed due to missing access rights. Please make sure that you have sufficient access rights for the following location and restart %PRODUCTNAME:\n"
-"\n"
-msgstr ""
-"Die %PRODUCTNAME Benutzerinstallation konnte aufgrund fehlender Zugriffsrechte nicht durchgeführt werden. Bitte stellen Sie sicher, dass sie Zugriffsrechte für den folgenden Pfad besitzen und starten Sie %PRODUCTNAME neu:\n"
-"\n"
diff --git a/source/de/desktop/source/deployment/gui.po b/source/de/desktop/source/deployment/gui.po
deleted file mode 100644
index c55b231b1ec..00000000000
--- a/source/de/desktop/source/deployment/gui.po
+++ /dev/null
@@ -1,525 +0,0 @@
-#. extracted from desktop/source/deployment/gui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-20 13:55+0200\n"
-"PO-Revision-Date: 2017-06-22 03:21+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1498101718.000000\n"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_ADD_PACKAGES\n"
-"string.text"
-msgid "Add Extension(s)"
-msgstr "Extension(s) hinzufügen"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_CTX_ITEM_REMOVE\n"
-"string.text"
-msgid "~Remove"
-msgstr "~Entfernen"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_CTX_ITEM_ENABLE\n"
-"string.text"
-msgid "~Enable"
-msgstr "~Aktivieren"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_CTX_ITEM_DISABLE\n"
-"string.text"
-msgid "~Disable"
-msgstr "~Deaktivieren"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_CTX_ITEM_CHECK_UPDATE\n"
-"string.text"
-msgid "~Update..."
-msgstr "~Update..."
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_ADDING_PACKAGES\n"
-"string.text"
-msgid "Adding %EXTENSION_NAME"
-msgstr "Füge %EXTENSION_NAME hinzu"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_REMOVING_PACKAGES\n"
-"string.text"
-msgid "Removing %EXTENSION_NAME"
-msgstr "Entferne %EXTENSION_NAME"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_ENABLING_PACKAGES\n"
-"string.text"
-msgid "Enabling %EXTENSION_NAME"
-msgstr "Aktiviere %EXTENSION_NAME"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_DISABLING_PACKAGES\n"
-"string.text"
-msgid "Disabling %EXTENSION_NAME"
-msgstr "Deaktiviere %EXTENSION_NAME"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_ACCEPT_LICENSE\n"
-"string.text"
-msgid "Accept license for %EXTENSION_NAME"
-msgstr "Lizenz für %EXTENSION_NAME akzeptieren"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_ERROR_UNKNOWN_STATUS\n"
-"string.text"
-msgid "Error: The status of this extension is unknown"
-msgstr "Fehler: Der Status der Extension ist nicht bekannt"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_CLOSE_BTN\n"
-"string.text"
-msgid "Close"
-msgstr "Schließen"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_EXIT_BTN\n"
-"string.text"
-msgid "Quit"
-msgstr "Beenden"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_NO_ADMIN_PRIVILEGE\n"
-"string.text"
-msgid ""
-"%PRODUCTNAME has been updated to a new version. Some shared %PRODUCTNAME extensions are not compatible with this version and need to be updated before %PRODUCTNAME can be started.\n"
-"\n"
-"Updating of shared extension requires administrator privileges. Contact your system administrator to update the following shared extensions:"
-msgstr ""
-"%PRODUCTNAME wurde auf eine neue Version aktualisiert. Einige für alle Anwender installierte %PRODUCTNAME-Extensions sind mit dieser Version nicht kompatibel und müssen aktualisiert werden, bevor %PRODUCTNAME gestartet werden kann.\n"
-"\n"
-"Um für alle Anwender installierte Extensions zu aktualisieren, werden Administratorrechte benötigt. Kontaktieren Sie ihren Administrator, um folgende Extensions zu aktualisieren:"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_ERROR_MISSING_DEPENDENCIES\n"
-"string.text"
-msgid "The extension cannot be enabled as the following system dependencies are not fulfilled:"
-msgstr "Die Erweiterung kann nicht aktiviert werden, da die folgenden Systemvoraussetzungen nicht erfüllt sind:"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_ERROR_MISSING_LICENSE\n"
-"string.text"
-msgid "This extension is disabled because you haven't accepted the license yet.\n"
-msgstr "Die Extension ist deaktiviert, da die Lizenz noch nicht akzeptiert wurde.\n"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_SHOW_LICENSE_CMD\n"
-"string.text"
-msgid "Show license"
-msgstr "Lizenz anzeigen"
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_WARNING_INSTALL_EXTENSION\n"
-"string.text"
-msgid ""
-"You are about to install the extension '%NAME'.\n"
-"Click 'OK' to proceed with the installation.\n"
-"Click 'Cancel' to stop the installation."
-msgstr ""
-"Möchten Sie die Extension '%NAME' installieren?\n"
-"Klicken Sie auf 'OK', um mit der Installation fortzufahren.\n"
-"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_WARNING_INSTALL_EXTENSION_DISABLED\n"
-"string.text"
-msgid "Extension installation is currently disabled. Please consult your system administrator for more information."
-msgstr "Die Installation von Extensions ist derzeit deaktiviert. Bitte wenden Sie sich an Ihren Systemadministrator für weitere Informationen."
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_WARNING_REMOVE_EXTENSION\n"
-"string.text"
-msgid ""
-"You are about to remove the extension '%NAME'.\n"
-"Click 'OK' to remove the extension.\n"
-"Click 'Cancel' to stop removing the extension."
-msgstr ""
-"Möchten Sie die Extension '%NAME' entfernen?\n"
-"Klicken Sie auf 'OK', um die Extension zu entfernen.\n"
-"Klicken Sie auf 'Abbrechen', um das Entfernen abzubrechen."
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_WARNING_REMOVE_EXTENSION_DISABLED\n"
-"string.text"
-msgid "Extension removal is currently disabled. Please consult your system administrator for more information."
-msgstr "Das Entfernen von Extensions ist derzeit deaktiviert. Bitte wenden Sie sich an Ihren Systemadministrator für weitere Informationen."
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
-"string.text"
-msgid ""
-"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
-"Click 'OK' to remove the extension.\n"
-"Click 'Cancel' to stop removing the extension."
-msgstr ""
-"Stellen Sie sicher, dass keine anderen Anwender mit der gleichen %PRODUCTNAME Installation arbeiten, wenn Sie gemeinsam genutzte Extensions in einer Mehrbenutzerumgebung ändern.\n"
-"Klicken Sie 'OK', um die Extension zu entfernen.\n"
-"Klicken Sie 'Abbrechen', um das Entfernen abzubrechen."
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_WARNING_ENABLE_SHARED_EXTENSION\n"
-"string.text"
-msgid ""
-"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
-"Click 'OK' to enable the extension.\n"
-"Click 'Cancel' to stop enabling the extension."
-msgstr ""
-"Stellen Sie sicher, dass keine anderen Anwender mit der gleichen %PRODUCTNAME Installation arbeiten, wenn Sie gemeinsam genutzte Extensions in einer Mehrbenutzerumgebung ändern.\n"
-"Klicken Sie 'OK', um die Extension zu aktivieren.\n"
-"Klicken Sie 'Abbrechen', um die Aktivierung abzubrechen."
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_WARNING_DISABLE_SHARED_EXTENSION\n"
-"string.text"
-msgid ""
-"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
-"Click 'OK' to disable the extension.\n"
-"Click 'Cancel' to stop disabling the extension."
-msgstr ""
-"Stellen Sie sicher, dass keine anderen Anwender mit der gleichen %PRODUCTNAME Installation arbeiten, wenn Sie gemeinsam genutzte Extensions in einer Mehrbenutzerumgebung ändern.\n"
-"Klicken Sie 'OK', um die Extension zu deaktivieren.\n"
-"Klicken Sie 'Abbrechen', um die Deaktivierung abzubrechen."
-
-#: dp_gui_dialog.src
-msgctxt ""
-"dp_gui_dialog.src\n"
-"RID_STR_UNSUPPORTED_PLATFORM\n"
-"string.text"
-msgid "The extension '%Name' does not work on this computer."
-msgstr "Die Extension '%Name' ist auf diesem Computer nicht lauffähig."
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_NONE\n"
-"string.text"
-msgid "No new updates are available."
-msgstr "Es sind keine neuen Updates verfügbar."
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_NOINSTALLABLE\n"
-"string.text"
-msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'."
-msgstr "Es sind keine installierbaren Updates verfügbar. Um ignorierte oder deaktivierte Updates angezeigt zu bekommen, wählen Sie 'Zeige alle Updates'."
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_FAILURE\n"
-"string.text"
-msgid "An error occurred:"
-msgstr "Es ist ein Fehler aufgetreten:"
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_UNKNOWNERROR\n"
-"string.text"
-msgid "Unknown error."
-msgstr "Unbekannter Fehler."
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_NODESCRIPTION\n"
-"string.text"
-msgid "No more details are available for this update."
-msgstr "Es ist keine Beschreibung für diese Extension verfügbar."
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_NOINSTALL\n"
-"string.text"
-msgid "The extension cannot be updated because:"
-msgstr "Die Extension kann aus folgendem Grund nicht aktualisiert werden:"
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_NODEPENDENCY\n"
-"string.text"
-msgid "Required %PRODUCTNAME version doesn't match:"
-msgstr "Die benötigte %PRODUCTNAME-Version stimmt nicht überein:"
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_NODEPENDENCY_CUR_VER\n"
-"string.text"
-msgid "You have %PRODUCTNAME %VERSION"
-msgstr "Sie haben %PRODUCTNAME %VERSION installiert"
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_BROWSERBASED\n"
-"string.text"
-msgid "browser based update"
-msgstr "Browser-basiertes Update"
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_VERSION\n"
-"string.text"
-msgid "Version"
-msgstr "Version"
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_IGNORE\n"
-"string.text"
-msgid "Ignore this Update"
-msgstr "Dieses Update überspringen"
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_IGNORE_ALL\n"
-"string.text"
-msgid "Ignore all Updates"
-msgstr "Alle Updates überspringen"
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_ENABLE\n"
-"string.text"
-msgid "Enable Updates"
-msgstr "Updates ermöglichen"
-
-#: dp_gui_updatedialog.src
-msgctxt ""
-"dp_gui_updatedialog.src\n"
-"RID_DLG_UPDATE_IGNORED_UPDATE\n"
-"string.text"
-msgid "This update will be ignored.\n"
-msgstr "Dieses Update wird ausgelassen.\n"
-
-#: dp_gui_updateinstalldialog.src
-msgctxt ""
-"dp_gui_updateinstalldialog.src\n"
-"RID_DLG_UPDATE_INSTALL_INSTALLING\n"
-"string.text"
-msgid "Installing extensions..."
-msgstr "Installieren der Extensions..."
-
-#: dp_gui_updateinstalldialog.src
-msgctxt ""
-"dp_gui_updateinstalldialog.src\n"
-"RID_DLG_UPDATE_INSTALL_FINISHED\n"
-"string.text"
-msgid "Installation finished"
-msgstr "Installation beendet"
-
-#: dp_gui_updateinstalldialog.src
-msgctxt ""
-"dp_gui_updateinstalldialog.src\n"
-"RID_DLG_UPDATE_INSTALL_NO_ERRORS\n"
-"string.text"
-msgid "No errors."
-msgstr "Es sind keine Fehler aufgetreten."
-
-#: dp_gui_updateinstalldialog.src
-msgctxt ""
-"dp_gui_updateinstalldialog.src\n"
-"RID_DLG_UPDATE_INSTALL_ERROR_DOWNLOAD\n"
-"string.text"
-msgid "Error while downloading extension %NAME. "
-msgstr "Ein Fehler ist während des Herunterladens der Extension %NAME aufgetreten. "
-
-#: dp_gui_updateinstalldialog.src
-msgctxt ""
-"dp_gui_updateinstalldialog.src\n"
-"RID_DLG_UPDATE_INSTALL_THIS_ERROR_OCCURRED\n"
-"string.text"
-msgid "The error message is: "
-msgstr "Die Fehlermeldung ist: "
-
-#: dp_gui_updateinstalldialog.src
-msgctxt ""
-"dp_gui_updateinstalldialog.src\n"
-"RID_DLG_UPDATE_INSTALL_ERROR_INSTALLATION\n"
-"string.text"
-msgid "Error while installing extension %NAME. "
-msgstr "Ein Fehler ist während der Installation der Extension %NAME aufgetreten. "
-
-#: dp_gui_updateinstalldialog.src
-msgctxt ""
-"dp_gui_updateinstalldialog.src\n"
-"RID_DLG_UPDATE_INSTALL_ERROR_LIC_DECLINED\n"
-"string.text"
-msgid "The license agreement for extension %NAME was refused. "
-msgstr "Die Lizenzvereinbarung für Extension %NAME wurde abgelehnt. "
-
-#: dp_gui_updateinstalldialog.src
-msgctxt ""
-"dp_gui_updateinstalldialog.src\n"
-"RID_DLG_UPDATE_INSTALL_EXTENSION_NOINSTALL\n"
-"string.text"
-msgid "The extension will not be installed."
-msgstr "Die Extension wird nicht installiert."
-
-#: dp_gui_versionboxes.src
-msgctxt ""
-"dp_gui_versionboxes.src\n"
-"RID_STR_WARNING_VERSION_LESS\n"
-"string.text"
-msgid ""
-"You are about to install version $NEW of the extension '$NAME'.\n"
-"The newer version $DEPLOYED is already installed.\n"
-"Click 'OK' to replace the installed extension.\n"
-"Click 'Cancel' to stop the installation."
-msgstr ""
-"Möchten Sie die Version $NEW der Extension '$NAME' installieren?\n"
-"Die neuere Version $DEPLOYED ist bereits installiert.\n"
-"Klicken Sie auf 'OK', um die bereits installierte Version zu ersetzen.\n"
-"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
-
-#: dp_gui_versionboxes.src
-msgctxt ""
-"dp_gui_versionboxes.src\n"
-"RID_STR_WARNINGBOX_VERSION_LESS_DIFFERENT_NAMES\n"
-"string.text"
-msgid ""
-"You are about to install version $NEW of the extension '$NAME'.\n"
-"The newer version $DEPLOYED, named '$OLDNAME', is already installed.\n"
-"Click 'OK' to replace the installed extension.\n"
-"Click 'Cancel' to stop the installation."
-msgstr ""
-"Möchten Sie die Version $NEW der Extension '$NAME' installieren?\n"
-"Die neuere Version $DEPLOYED, '$OLDNAME', ist bereits installiert.\n"
-"Klicken Sie auf 'OK', um die bereits installierte Version zu ersetzen.\n"
-"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
-
-#: dp_gui_versionboxes.src
-msgctxt ""
-"dp_gui_versionboxes.src\n"
-"RID_STR_WARNING_VERSION_EQUAL\n"
-"string.text"
-msgid ""
-"You are about to install version $NEW of the extension '$NAME'.\n"
-"That version is already installed.\n"
-"Click 'OK' to replace the installed extension.\n"
-"Click 'Cancel' to stop the installation."
-msgstr ""
-"Möchten Sie die Version $NEW der Extension '$NAME' installieren?\n"
-"Diese Version ist bereits installiert.\n"
-"Klicken Sie auf 'OK', um die bereits installierte Version zu ersetzen.\n"
-"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
-
-#: dp_gui_versionboxes.src
-msgctxt ""
-"dp_gui_versionboxes.src\n"
-"RID_STR_WARNINGBOX_VERSION_EQUAL_DIFFERENT_NAMES\n"
-"string.text"
-msgid ""
-"You are about to install version $NEW of the extension '$NAME'.\n"
-"That version, named '$OLDNAME', is already installed.\n"
-"Click 'OK' to replace the installed extension.\n"
-"Click 'Cancel' to stop the installation."
-msgstr ""
-"Möchten Sie die Version $NEW der Extension '$NAME' installieren?\n"
-"Die Version '$OLDNAME' ist bereits installiert.\n"
-"Klicken Sie auf 'OK', um die bereits installierte Version zu ersetzen.\n"
-"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
-
-#: dp_gui_versionboxes.src
-msgctxt ""
-"dp_gui_versionboxes.src\n"
-"RID_STR_WARNING_VERSION_GREATER\n"
-"string.text"
-msgid ""
-"You are about to install version $NEW of the extension '$NAME'.\n"
-"The older version $DEPLOYED is already installed.\n"
-"Click 'OK' to replace the installed extension.\n"
-"Click 'Cancel' to stop the installation."
-msgstr ""
-"Möchten Sie die Version $NEW der Extension '$NAME' installieren?\n"
-"Die ältere Version $DEPLOYED ist bereits installiert.\n"
-"Klicken Sie auf 'OK', um die bereits installierte Version zu ersetzen.\n"
-"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
-
-#: dp_gui_versionboxes.src
-msgctxt ""
-"dp_gui_versionboxes.src\n"
-"RID_STR_WARNINGBOX_VERSION_GREATER_DIFFERENT_NAMES\n"
-"string.text"
-msgid ""
-"You are about to install version $NEW of the extension '$NAME'.\n"
-"The older version $DEPLOYED, named '$OLDNAME', is already installed.\n"
-"Click 'OK' to replace the installed extension.\n"
-"Click 'Cancel' to stop the installation."
-msgstr ""
-"Möchten Sie die Version $NEW der Extension '$NAME' installieren?\n"
-"Die ältere Version $DEPLOYED, '$OLDNAME', ist bereits installiert.\n"
-"Klicken Sie auf 'OK', um die bereits installierte Version zu ersetzen.\n"
-"Klicken Sie auf 'Abbrechen', um die Installation abzubrechen."
diff --git a/source/de/desktop/source/deployment/manager.po b/source/de/desktop/source/deployment/manager.po
deleted file mode 100644
index 91848148a42..00000000000
--- a/source/de/desktop/source/deployment/manager.po
+++ /dev/null
@@ -1,65 +0,0 @@
-#. extracted from desktop/source/deployment/manager
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-06-18 04:37+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1466224676.000000\n"
-
-#: dp_manager.src
-msgctxt ""
-"dp_manager.src\n"
-"RID_STR_COPYING_PACKAGE\n"
-"string.text"
-msgid "Copying: "
-msgstr "Kopiere: "
-
-#: dp_manager.src
-msgctxt ""
-"dp_manager.src\n"
-"RID_STR_ERROR_WHILE_ADDING\n"
-"string.text"
-msgid "Error while adding: "
-msgstr "Fehler beim Hinzufügen von: "
-
-#: dp_manager.src
-msgctxt ""
-"dp_manager.src\n"
-"RID_STR_ERROR_WHILE_REMOVING\n"
-"string.text"
-msgid "Error while removing: "
-msgstr "Fehler beim Entfernen von: "
-
-#: dp_manager.src
-msgctxt ""
-"dp_manager.src\n"
-"RID_STR_PACKAGE_ALREADY_ADDED\n"
-"string.text"
-msgid "Extension has already been added: "
-msgstr "Extension ist bereits vorhanden: "
-
-#: dp_manager.src
-msgctxt ""
-"dp_manager.src\n"
-"RID_STR_NO_SUCH_PACKAGE\n"
-"string.text"
-msgid "There is no such extension deployed: "
-msgstr "Extension ist nicht bekannt: "
-
-#: dp_manager.src
-msgctxt ""
-"dp_manager.src\n"
-"RID_STR_SYNCHRONIZING_REPOSITORY\n"
-"string.text"
-msgid "Synchronizing repository for %NAME extensions"
-msgstr "Die Quelle der Extension %NAME wird abgeglichen"
diff --git a/source/de/desktop/source/deployment/misc.po b/source/de/desktop/source/deployment/misc.po
deleted file mode 100644
index a8b38f4e5e4..00000000000
--- a/source/de/desktop/source/deployment/misc.po
+++ /dev/null
@@ -1,49 +0,0 @@
-#. extracted from desktop/source/deployment/misc
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-05-30 13:09+0200\n"
-"PO-Revision-Date: 2014-05-31 05:45+0000\n"
-"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
-"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1401515110.000000\n"
-
-#: dp_misc.src
-msgctxt ""
-"dp_misc.src\n"
-"RID_DEPLOYMENT_DEPENDENCIES_UNKNOWN\n"
-"string.text"
-msgid "Unknown"
-msgstr "Unbekannt"
-
-#: dp_misc.src
-msgctxt ""
-"dp_misc.src\n"
-"RID_DEPLOYMENT_DEPENDENCIES_OOO_MIN\n"
-"string.text"
-msgid "Extension requires at least OpenOffice.org reference version %VERSION"
-msgstr "Die Erweiterung benötigt mindestens OpenOffice.org Referenzversion %VERSION"
-
-#: dp_misc.src
-msgctxt ""
-"dp_misc.src\n"
-"RID_DEPLOYMENT_DEPENDENCIES_OOO_MAX\n"
-"string.text"
-msgid "Extension does not support OpenOffice.org reference versions greater than %VERSION"
-msgstr "Die Erweiterung unterstützt nicht OpenOffice.org Referenzversionen größer als %VERSION"
-
-#: dp_misc.src
-msgctxt ""
-"dp_misc.src\n"
-"RID_DEPLOYMENT_DEPENDENCIES_LO_MIN\n"
-"string.text"
-msgid "Extension requires at least %PRODUCTNAME version %VERSION"
-msgstr "Die Erweiterung benötigt mindestens %PRODUCTNAME Version %VERSION"
diff --git a/source/de/desktop/source/deployment/registry.po b/source/de/desktop/source/deployment/registry.po
deleted file mode 100644
index 7ed13d9afb1..00000000000
--- a/source/de/desktop/source/deployment/registry.po
+++ /dev/null
@@ -1,65 +0,0 @@
-#. extracted from desktop/source/deployment/registry
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2017-02-23 05:27+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487827634.000000\n"
-
-#: dp_registry.src
-msgctxt ""
-"dp_registry.src\n"
-"RID_STR_REGISTERING_PACKAGE\n"
-"string.text"
-msgid "Enabling: "
-msgstr "Aktiviere: "
-
-#: dp_registry.src
-msgctxt ""
-"dp_registry.src\n"
-"RID_STR_REVOKING_PACKAGE\n"
-"string.text"
-msgid "Disabling: "
-msgstr "Deaktiviere: "
-
-#: dp_registry.src
-msgctxt ""
-"dp_registry.src\n"
-"RID_STR_CANNOT_DETECT_MEDIA_TYPE\n"
-"string.text"
-msgid "Cannot detect media-type: "
-msgstr "Medientyp konnte nicht ermittelt werden: "
-
-#: dp_registry.src
-msgctxt ""
-"dp_registry.src\n"
-"RID_STR_UNSUPPORTED_MEDIA_TYPE\n"
-"string.text"
-msgid "This media-type is not supported: "
-msgstr "Dieser Medientyp wird nicht unterstützt: "
-
-#: dp_registry.src
-msgctxt ""
-"dp_registry.src\n"
-"RID_STR_ERROR_WHILE_REGISTERING\n"
-"string.text"
-msgid "An error occurred while enabling: "
-msgstr "Fehler beim Aktivieren von: "
-
-#: dp_registry.src
-msgctxt ""
-"dp_registry.src\n"
-"RID_STR_ERROR_WHILE_REVOKING\n"
-"string.text"
-msgid "An error occurred while disabling: "
-msgstr "Fehler beim Deaktivieren von: "
diff --git a/source/de/desktop/source/deployment/registry/component.po b/source/de/desktop/source/deployment/registry/component.po
deleted file mode 100644
index 037790b792b..00000000000
--- a/source/de/desktop/source/deployment/registry/component.po
+++ /dev/null
@@ -1,65 +0,0 @@
-#. extracted from desktop/source/deployment/registry/component
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2013-02-24 06:39+0000\n"
-"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
-"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361687957.0\n"
-
-#: dp_component.src
-msgctxt ""
-"dp_component.src\n"
-"RID_STR_DYN_COMPONENT\n"
-"string.text"
-msgid "UNO Dynamic Library Component"
-msgstr "UNO Dynamic Library Komponente"
-
-#: dp_component.src
-msgctxt ""
-"dp_component.src\n"
-"RID_STR_JAVA_COMPONENT\n"
-"string.text"
-msgid "UNO Java Component"
-msgstr "UNO Java Komponente"
-
-#: dp_component.src
-msgctxt ""
-"dp_component.src\n"
-"RID_STR_PYTHON_COMPONENT\n"
-"string.text"
-msgid "UNO Python Component"
-msgstr "UNO Python Komponente"
-
-#: dp_component.src
-msgctxt ""
-"dp_component.src\n"
-"RID_STR_COMPONENTS\n"
-"string.text"
-msgid "UNO Components"
-msgstr "UNO Komponenten"
-
-#: dp_component.src
-msgctxt ""
-"dp_component.src\n"
-"RID_STR_RDB_TYPELIB\n"
-"string.text"
-msgid "UNO RDB Type Library"
-msgstr "UNO RDB Type Bibliothek"
-
-#: dp_component.src
-msgctxt ""
-"dp_component.src\n"
-"RID_STR_JAVA_TYPELIB\n"
-"string.text"
-msgid "UNO Java Type Library"
-msgstr "UNO Java Type Bibliothek"
diff --git a/source/de/desktop/source/deployment/registry/configuration.po b/source/de/desktop/source/deployment/registry/configuration.po
deleted file mode 100644
index bcef22072ca..00000000000
--- a/source/de/desktop/source/deployment/registry/configuration.po
+++ /dev/null
@@ -1,32 +0,0 @@
-#. extracted from desktop/source/deployment/registry/configuration
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2011-04-05 19:27+0200\n"
-"Last-Translator: Jochen <dr@jochenschiffers.de>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
-"X-Accelerator-Marker: ~\n"
-
-#: dp_configuration.src
-msgctxt ""
-"dp_configuration.src\n"
-"RID_STR_CONF_SCHEMA\n"
-"string.text"
-msgid "Configuration Schema"
-msgstr "Konfigurationsschema"
-
-#: dp_configuration.src
-msgctxt ""
-"dp_configuration.src\n"
-"RID_STR_CONF_DATA\n"
-"string.text"
-msgid "Configuration Data"
-msgstr "Konfigurationsdaten"
diff --git a/source/de/desktop/source/deployment/registry/help.po b/source/de/desktop/source/deployment/registry/help.po
deleted file mode 100644
index bf2cc212e98..00000000000
--- a/source/de/desktop/source/deployment/registry/help.po
+++ /dev/null
@@ -1,40 +0,0 @@
-#. extracted from desktop/source/deployment/registry/help
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2011-04-05 19:27+0200\n"
-"Last-Translator: Jochen <dr@jochenschiffers.de>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
-"X-Accelerator-Marker: ~\n"
-
-#: dp_help.src
-msgctxt ""
-"dp_help.src\n"
-"RID_STR_HELP\n"
-"string.text"
-msgid "Help"
-msgstr "Hilfe"
-
-#: dp_help.src
-msgctxt ""
-"dp_help.src\n"
-"RID_STR_HELPPROCESSING_GENERAL_ERROR\n"
-"string.text"
-msgid "The extension cannot be installed because:\n"
-msgstr "Die Extension kann aus folgendem Grund nicht installiert werden:\n"
-
-#: dp_help.src
-msgctxt ""
-"dp_help.src\n"
-"RID_STR_HELPPROCESSING_XMLPARSING_ERROR\n"
-"string.text"
-msgid "The extension will not be installed because an error occurred in the Help files:\n"
-msgstr "Die Extension wird nicht installiert, da ein Fehler in den Hilfe-Dateien auftrat:\n"
diff --git a/source/de/desktop/source/deployment/registry/package.po b/source/de/desktop/source/deployment/registry/package.po
deleted file mode 100644
index 6a1c9316bfb..00000000000
--- a/source/de/desktop/source/deployment/registry/package.po
+++ /dev/null
@@ -1,24 +0,0 @@
-#. extracted from desktop/source/deployment/registry/package
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2011-04-05 19:27+0200\n"
-"Last-Translator: Jochen <dr@jochenschiffers.de>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
-"X-Accelerator-Marker: ~\n"
-
-#: dp_package.src
-msgctxt ""
-"dp_package.src\n"
-"RID_STR_PACKAGE_BUNDLE\n"
-"string.text"
-msgid "Extension"
-msgstr "Extension"
diff --git a/source/de/desktop/source/deployment/registry/script.po b/source/de/desktop/source/deployment/registry/script.po
deleted file mode 100644
index ca53666d8f2..00000000000
--- a/source/de/desktop/source/deployment/registry/script.po
+++ /dev/null
@@ -1,41 +0,0 @@
-#. extracted from desktop/source/deployment/registry/script
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2013-05-23 22:59+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1369349947.000000\n"
-
-#: dp_script.src
-msgctxt ""
-"dp_script.src\n"
-"RID_STR_BASIC_LIB\n"
-"string.text"
-msgid "%PRODUCTNAME Basic Library"
-msgstr "%PRODUCTNAME Basic Bibliothek"
-
-#: dp_script.src
-msgctxt ""
-"dp_script.src\n"
-"RID_STR_DIALOG_LIB\n"
-"string.text"
-msgid "Dialog Library"
-msgstr "Dialog Bibliothek"
-
-#: dp_script.src
-msgctxt ""
-"dp_script.src\n"
-"RID_STR_CANNOT_DETERMINE_LIBNAME\n"
-"string.text"
-msgid "The library name could not be determined."
-msgstr "Bibliotheks-Name konnte nicht ermittelt werden."
diff --git a/source/de/desktop/source/deployment/registry/sfwk.po b/source/de/desktop/source/deployment/registry/sfwk.po
deleted file mode 100644
index ba0584634e8..00000000000
--- a/source/de/desktop/source/deployment/registry/sfwk.po
+++ /dev/null
@@ -1,24 +0,0 @@
-#. extracted from desktop/source/deployment/registry/sfwk
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2011-04-05 19:27+0200\n"
-"Last-Translator: Jochen <dr@jochenschiffers.de>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
-"X-Accelerator-Marker: ~\n"
-
-#: dp_sfwk.src
-msgctxt ""
-"dp_sfwk.src\n"
-"RID_STR_SFWK_LIB\n"
-"string.text"
-msgid "%MACROLANG Library"
-msgstr "%MACROLANG Bibliothek"
diff --git a/source/de/desktop/source/deployment/unopkg.po b/source/de/desktop/source/deployment/unopkg.po
deleted file mode 100644
index 32e9e7989f9..00000000000
--- a/source/de/desktop/source/deployment/unopkg.po
+++ /dev/null
@@ -1,97 +0,0 @@
-#. extracted from desktop/source/deployment/unopkg
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2016-03-11 11:49+0000\n"
-"Last-Translator: Mateusz Zasuwik <mzasuwik@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
-"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1457696983.000000\n"
-
-#: unopkg.src
-msgctxt ""
-"unopkg.src\n"
-"RID_STR_UNOPKG_ACCEPT_LIC_1\n"
-"string.text"
-msgid "Extension Software License Agreement of $NAME:"
-msgstr "Software-Lizenzvereinbarung für Extension $NAME:"
-
-#: unopkg.src
-msgctxt ""
-"unopkg.src\n"
-"RID_STR_UNOPKG_ACCEPT_LIC_2\n"
-"string.text"
-msgid "Read the complete License Agreement displayed above. Accept the License Agreement by typing \"yes\" on the console then press the Return key. Type \"no\" to decline and to abort the extension setup."
-msgstr "Lesen Sie den gesamten obigen Lizenzvertrag. Akzeptieren Sie diesen Lizenzvertrag, indem Sie \"Ja\" auf der Konsole eingeben und abschließend die Eingabetaste drücken. Geben Sie \"Nein\" ein, um die Installation der Erweiterung abzubrechen."
-
-#: unopkg.src
-msgctxt ""
-"unopkg.src\n"
-"RID_STR_UNOPKG_ACCEPT_LIC_3\n"
-"string.text"
-msgid "[Enter \"yes\" or \"no\"]:"
-msgstr "[\"Ja\" oder \"Nein\" eingeben]:"
-
-#: unopkg.src
-msgctxt ""
-"unopkg.src\n"
-"RID_STR_UNOPKG_ACCEPT_LIC_4\n"
-"string.text"
-msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
-msgstr "Ihre Eingabe war nicht korrekt. Bitte geben Sie entweder \"Ja\" oder \"Nein\" ein:"
-
-#: unopkg.src
-msgctxt ""
-"unopkg.src\n"
-"RID_STR_UNOPKG_ACCEPT_LIC_YES\n"
-"string.text"
-msgid "YES"
-msgstr "JA"
-
-#: unopkg.src
-msgctxt ""
-"unopkg.src\n"
-"RID_STR_UNOPKG_ACCEPT_LIC_Y\n"
-"string.text"
-msgid "Y"
-msgstr "J"
-
-#: unopkg.src
-msgctxt ""
-"unopkg.src\n"
-"RID_STR_UNOPKG_ACCEPT_LIC_NO\n"
-"string.text"
-msgid "NO"
-msgstr "NEIN"
-
-#: unopkg.src
-msgctxt ""
-"unopkg.src\n"
-"RID_STR_UNOPKG_ACCEPT_LIC_N\n"
-"string.text"
-msgid "N"
-msgstr "N"
-
-#: unopkg.src
-msgctxt ""
-"unopkg.src\n"
-"RID_STR_CONCURRENTINSTANCE\n"
-"string.text"
-msgid "unopkg cannot be started. The lock file indicates it is already running. If this does not apply, delete the lock file at:"
-msgstr "unopkg kann nicht gestartet werden. Die Lock-Datei zeigt an, dass unopkg bereits gestartet ist. Sollte das nicht zutreffen, löschen Sie die Lock-Datei:"
-
-#: unopkg.src
-msgctxt ""
-"unopkg.src\n"
-"RID_STR_UNOPKG_ERROR\n"
-"string.text"
-msgid "ERROR: "
-msgstr "FEHLER: "
diff --git a/source/de/desktop/uiconfig/ui.po b/source/de/desktop/uiconfig/ui.po
deleted file mode 100644
index e13630929c8..00000000000
--- a/source/de/desktop/uiconfig/ui.po
+++ /dev/null
@@ -1,431 +0,0 @@
-#. extracted from desktop/uiconfig/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: LibO 40l10n\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2016-12-02 16:39+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: none\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1480696744.000000\n"
-
-#: dependenciesdialog.ui
-msgctxt ""
-"dependenciesdialog.ui\n"
-"Dependencies\n"
-"title\n"
-"string.text"
-msgid "System dependencies check"
-msgstr "Überprüfung der Systemvoraussetzungen"
-
-#: dependenciesdialog.ui
-msgctxt ""
-"dependenciesdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "The extension cannot be installed as the following system dependencies are not fulfilled:"
-msgstr "Die Erweiterung kann nicht installiert werden, da die folgenden Systemvoraussetzungen nicht erfüllt sind:"
-
-#: extensionmanager.ui
-msgctxt ""
-"extensionmanager.ui\n"
-"ExtensionManagerDialog\n"
-"title\n"
-"string.text"
-msgid "Extension Manager"
-msgstr "Extension Manager"
-
-#: extensionmanager.ui
-msgctxt ""
-"extensionmanager.ui\n"
-"optionsbtn\n"
-"label\n"
-"string.text"
-msgid "_Options"
-msgstr "_Optionen"
-
-#: extensionmanager.ui
-msgctxt ""
-"extensionmanager.ui\n"
-"updatebtn\n"
-"label\n"
-"string.text"
-msgid "Check for _Updates"
-msgstr "Auf _Updates prüfen"
-
-#: extensionmanager.ui
-msgctxt ""
-"extensionmanager.ui\n"
-"addbtn\n"
-"label\n"
-"string.text"
-msgid "_Add"
-msgstr "Hin_zufügen"
-
-#: extensionmanager.ui
-msgctxt ""
-"extensionmanager.ui\n"
-"removebtn\n"
-"label\n"
-"string.text"
-msgid "_Remove"
-msgstr "_Entfernen"
-
-#: extensionmanager.ui
-msgctxt ""
-"extensionmanager.ui\n"
-"enablebtn\n"
-"label\n"
-"string.text"
-msgid "_Enable"
-msgstr "_Aktivieren"
-
-#: extensionmanager.ui
-msgctxt ""
-"extensionmanager.ui\n"
-"shared\n"
-"label\n"
-"string.text"
-msgid "Installed for all users"
-msgstr "Systemweite Installation"
-
-#: extensionmanager.ui
-msgctxt ""
-"extensionmanager.ui\n"
-"user\n"
-"label\n"
-"string.text"
-msgid "Installed for current user"
-msgstr "Benutzer-Installation"
-
-#: extensionmanager.ui
-msgctxt ""
-"extensionmanager.ui\n"
-"bundled\n"
-"label\n"
-"string.text"
-msgid "Bundled with %PRODUCTNAME"
-msgstr "Mit %PRODUCTNAME ausgeliefert"
-
-#: extensionmanager.ui
-msgctxt ""
-"extensionmanager.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Display Extensions"
-msgstr "Extensions anzeigen"
-
-#: extensionmanager.ui
-msgctxt ""
-"extensionmanager.ui\n"
-"progressft\n"
-"label\n"
-"string.text"
-msgid "Adding %EXTENSION_NAME"
-msgstr "%EXTENSION_NAME hinzufügen"
-
-#: extensionmanager.ui
-msgctxt ""
-"extensionmanager.ui\n"
-"getextensions\n"
-"label\n"
-"string.text"
-msgid "Get more extensions online..."
-msgstr "Laden Sie weitere Extensions aus dem Internet herunter..."
-
-#: installforalldialog.ui
-msgctxt ""
-"installforalldialog.ui\n"
-"InstallForAllDialog\n"
-"text\n"
-"string.text"
-msgid "For whom do you want to install the extension?"
-msgstr "Für wen möchten Sie die Extension installieren?"
-
-#: installforalldialog.ui
-msgctxt ""
-"installforalldialog.ui\n"
-"InstallForAllDialog\n"
-"secondary_text\n"
-"string.text"
-msgid "Make sure that no further users are working with the same %PRODUCTNAME, when installing an extension for all users in a multi user environment."
-msgstr "Stellen Sie sicher, dass keine anderen Benutzer mit der gleichen Installation von %PRODUCTNAME arbeiten, wenn Sie eine Extension für alle Benutzer in einer Mehrbenutzerumgebung installieren."
-
-#: installforalldialog.ui
-msgctxt ""
-"installforalldialog.ui\n"
-"no\n"
-"label\n"
-"string.text"
-msgid "_For all users"
-msgstr "_Für alle Benutzer"
-
-#: installforalldialog.ui
-msgctxt ""
-"installforalldialog.ui\n"
-"yes\n"
-"label\n"
-"string.text"
-msgid "_Only for me"
-msgstr "_Nur für mich"
-
-#: licensedialog.ui
-msgctxt ""
-"licensedialog.ui\n"
-"LicenseDialog\n"
-"title\n"
-"string.text"
-msgid "Extension Software License Agreement"
-msgstr "Lizenzvertrag für Extension-Software"
-
-#: licensedialog.ui
-msgctxt ""
-"licensedialog.ui\n"
-"accept\n"
-"label\n"
-"string.text"
-msgid "Accept"
-msgstr "Akzeptieren"
-
-#: licensedialog.ui
-msgctxt ""
-"licensedialog.ui\n"
-"decline\n"
-"label\n"
-"string.text"
-msgid "Decline"
-msgstr "Ablehnen"
-
-#: licensedialog.ui
-msgctxt ""
-"licensedialog.ui\n"
-"head\n"
-"label\n"
-"string.text"
-msgid "Please follow these steps to proceed with the installation of the extension:"
-msgstr "Bitte führen Sie die folgenden Schritte aus, um mit der Installation der Extension fortzufahren:"
-
-#: licensedialog.ui
-msgctxt ""
-"licensedialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "1."
-msgstr "1."
-
-#: licensedialog.ui
-msgctxt ""
-"licensedialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "2."
-msgstr "2."
-
-#: licensedialog.ui
-msgctxt ""
-"licensedialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Read the complete License Agreement. Use the scroll bar or the 'Scroll Down' button in this dialog to view the entire license text."
-msgstr "Lesen Sie den gesamten Lizenzvertrag. Verwenden Sie die Bildlaufleiste oder die Schaltfläche 'Blättern' in diesem Dialog, um den gesamten Text sichtbar zu machen."
-
-#: licensedialog.ui
-msgctxt ""
-"licensedialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Accept the License Agreement for the extension by pressing the 'Accept' button."
-msgstr "Akzeptieren Sie den Lizenzvertrag der Extension, indem Sie die Schaltfläche 'Akzeptieren' anklicken."
-
-#: licensedialog.ui
-msgctxt ""
-"licensedialog.ui\n"
-"down\n"
-"label\n"
-"string.text"
-msgid "_Scroll Down"
-msgstr "_Blättern"
-
-#: showlicensedialog.ui
-msgctxt ""
-"showlicensedialog.ui\n"
-"ShowLicenseDialog\n"
-"title\n"
-"string.text"
-msgid "Extension Software License Agreement"
-msgstr "Lizenzvertrag für Extension-Software"
-
-#: updatedialog.ui
-msgctxt ""
-"updatedialog.ui\n"
-"UpdateDialog\n"
-"title\n"
-"string.text"
-msgid "Extension Update"
-msgstr "Extension Update"
-
-#: updatedialog.ui
-msgctxt ""
-"updatedialog.ui\n"
-"INSTALL\n"
-"label\n"
-"string.text"
-msgid "_Install"
-msgstr "_Installieren"
-
-#: updatedialog.ui
-msgctxt ""
-"updatedialog.ui\n"
-"UPDATE_LABEL\n"
-"label\n"
-"string.text"
-msgid "_Available extension updates"
-msgstr "_Verfügbare Extension-Updates"
-
-#: updatedialog.ui
-msgctxt ""
-"updatedialog.ui\n"
-"UPDATE_CHECKING\n"
-"label\n"
-"string.text"
-msgid "Checking..."
-msgstr "Suche läuft..."
-
-#: updatedialog.ui
-msgctxt ""
-"updatedialog.ui\n"
-"UPDATE_ALL\n"
-"label\n"
-"string.text"
-msgid "_Show all updates"
-msgstr "_Zeige alle Updates"
-
-#: updatedialog.ui
-msgctxt ""
-"updatedialog.ui\n"
-"DESCRIPTION_LABEL\n"
-"label\n"
-"string.text"
-msgid "Description"
-msgstr "Beschreibung"
-
-#: updatedialog.ui
-msgctxt ""
-"updatedialog.ui\n"
-"PUBLISHER_LABEL\n"
-"label\n"
-"string.text"
-msgid "Publisher:"
-msgstr "Herausgeber:"
-
-#: updatedialog.ui
-msgctxt ""
-"updatedialog.ui\n"
-"PUBLISHER_LINK\n"
-"label\n"
-"string.text"
-msgid "button"
-msgstr "Schaltfläche"
-
-#: updatedialog.ui
-msgctxt ""
-"updatedialog.ui\n"
-"RELEASE_NOTES_LABEL\n"
-"label\n"
-"string.text"
-msgid "What is new:"
-msgstr "Was ist neu:"
-
-#: updatedialog.ui
-msgctxt ""
-"updatedialog.ui\n"
-"RELEASE_NOTES_LINK\n"
-"label\n"
-"string.text"
-msgid "Release notes"
-msgstr "Release Hinweise"
-
-#: updateinstalldialog.ui
-msgctxt ""
-"updateinstalldialog.ui\n"
-"UpdateInstallDialog\n"
-"title\n"
-"string.text"
-msgid "Download and Installation"
-msgstr "Herunterladen und Installieren"
-
-#: updateinstalldialog.ui
-msgctxt ""
-"updateinstalldialog.ui\n"
-"DOWNLOADING\n"
-"label\n"
-"string.text"
-msgid "Downloading extensions..."
-msgstr "Extensions herunterladen..."
-
-#: updateinstalldialog.ui
-msgctxt ""
-"updateinstalldialog.ui\n"
-"RESULTS\n"
-"label\n"
-"string.text"
-msgid "Result"
-msgstr "Ergebnis"
-
-#: updaterequireddialog.ui
-msgctxt ""
-"updaterequireddialog.ui\n"
-"UpdateRequiredDialog\n"
-"title\n"
-"string.text"
-msgid "Extension Update Required"
-msgstr "Extension-Update notwendig"
-
-#: updaterequireddialog.ui
-msgctxt ""
-"updaterequireddialog.ui\n"
-"updatelabel\n"
-"label\n"
-"string.text"
-msgid "%PRODUCTNAME has been updated to a new version. Some installed %PRODUCTNAME extensions are not compatible with this version and need to be updated before they can be used."
-msgstr "%PRODUCTNAME wurde auf eine neue Version aktualisiert. Einige installierte %PRODUCTNAME-Extensions sind mit dieser Version nicht kompatibel und müssen aktualisiert werden, bevor sie verwendet werden können."
-
-#: updaterequireddialog.ui
-msgctxt ""
-"updaterequireddialog.ui\n"
-"progresslabel\n"
-"label\n"
-"string.text"
-msgid "Adding %EXTENSION_NAME"
-msgstr "%EXTENSION_NAME hinzufügen"
-
-#: updaterequireddialog.ui
-msgctxt ""
-"updaterequireddialog.ui\n"
-"check\n"
-"label\n"
-"string.text"
-msgid "Check for _Updates..."
-msgstr "Auf _Updates prüfen..."
-
-#: updaterequireddialog.ui
-msgctxt ""
-"updaterequireddialog.ui\n"
-"disable\n"
-"label\n"
-"string.text"
-msgid "Disable all"
-msgstr "Alle deaktivieren"
diff --git a/source/de/editeng/messages.po b/source/de/editeng/messages.po
new file mode 100644
index 00000000000..7dce2ff74a5
--- /dev/null
+++ b/source/de/editeng/messages.po
@@ -0,0 +1,1605 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"PO-Revision-Date: 2013-05-23 22:59+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369349958.000000\n"
+
+#. SEotA
+#: outliner.src
+msgctxt "RID_OUTLUNDO_DEPTH"
+msgid "Indent"
+msgstr "Einrücken"
+
+#. CjGGD
+#: outliner.src
+msgctxt "RID_OUTLUNDO_EXPAND"
+msgid "Show subpoints"
+msgstr "Unterabsätze zeigen"
+
+#. egnVC
+#: outliner.src
+msgctxt "RID_OUTLUNDO_COLLAPSE"
+msgid "Collapse"
+msgstr "Unterabsätze verstecken"
+
+#. kKFiE
+#: outliner.src
+msgctxt "RID_OUTLUNDO_ATTR"
+msgid "Apply attributes"
+msgstr "Attribute anwenden"
+
+#. YECNh
+#: outliner.src
+msgctxt "RID_OUTLUNDO_INSERT"
+msgid "Insert"
+msgstr "Einfügen"
+
+#. dAvTu
+#: editeng.src
+msgctxt "RID_EDITUNDO_DEL"
+msgid "Delete"
+msgstr "Löschen"
+
+#. Ly5iC
+#: editeng.src
+msgctxt "RID_EDITUNDO_MOVE"
+msgid "Move"
+msgstr "Verschieben"
+
+#. mtncS
+#: editeng.src
+msgctxt "RID_EDITUNDO_INSERT"
+msgid "Insert"
+msgstr "Einfügen"
+
+#. yifiT
+#: editeng.src
+msgctxt "RID_EDITUNDO_REPLACE"
+msgid "Replace"
+msgstr "Ersetzen"
+
+#. zv9mN
+#: editeng.src
+msgctxt "RID_EDITUNDO_SETATTRIBS"
+msgid "Apply attributes"
+msgstr "Attribute anwenden"
+
+#. tys5a
+#: editeng.src
+msgctxt "RID_EDITUNDO_RESETATTRIBS"
+msgid "Reset attributes"
+msgstr "Attribute zurücksetzen"
+
+#. 6mjB7
+#: editeng.src
+msgctxt "RID_EDITUNDO_INDENT"
+msgid "Indent"
+msgstr "Einzug"
+
+#. CGrBx
+#: editeng.src
+msgctxt "RID_EDITUNDO_SETSTYLE"
+msgid "Apply Styles"
+msgstr "Vorlagen zuweisen"
+
+#. M7ADh
+#: editeng.src
+msgctxt "RID_EDITUNDO_TRANSLITERATE"
+msgid "Change Case"
+msgstr "Groß- und Kleinschreibung ändern"
+
+#. uqG6M
+#: editeng.src
+msgctxt "RID_STR_WORD"
+msgid "Word is %x"
+msgstr "Wort ist %x"
+
+#. KeDg8
+#: editeng.src
+msgctxt "RID_STR_PARAGRAPH"
+msgid "Paragraph is %x"
+msgstr "Absatz ist %x"
+
+#. t99SR
+#: editeng.src
+msgctxt "RID_SVXSTR_AUTOMATIC"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. QfjFx
+#: page.src
+msgctxt "RID_SVXSTR_PAPERBIN"
+msgid "Paper tray"
+msgstr "Schacht"
+
+#. ULzBJ
+#: page.src
+msgctxt "RID_SVXSTR_PAPERBIN_SETTINGS"
+msgid "[From printer settings]"
+msgstr "[Aus Druckereinstellung]"
+
+#. CLbNC
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BREAK_NONE"
+msgid "No break"
+msgstr "Kein Umbruch"
+
+#. CMxRB
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BREAK_COLUMN_BEFORE"
+msgid "Break before new column"
+msgstr "Umbruch vor neuer Spalte"
+
+#. fXFDA
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BREAK_COLUMN_AFTER"
+msgid "Break after new column"
+msgstr "Umbruch nach neuer Spalte"
+
+#. Sfxji
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BREAK_COLUMN_BOTH"
+msgid "Break before and after new column"
+msgstr "Umbruch vor und nach neuer Spalte"
+
+#. FxoBE
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BREAK_PAGE_BEFORE"
+msgid "Break before new page"
+msgstr "Umbruch vor neuer Seite"
+
+#. yXDXd
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BREAK_PAGE_AFTER"
+msgid "Break after new page"
+msgstr "Umbruch nach neuer Seite"
+
+#. qbDrm
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BREAK_PAGE_BOTH"
+msgid "Break before and after new page"
+msgstr "Umbruch vor und nach neuer Seite"
+
+#. pqhsi
+#: svxitems.src
+msgctxt "RID_SVXITEMS_SHADOW_NONE"
+msgid "No Shadow"
+msgstr "Kein Schatten"
+
+#. eUjuH
+#: svxitems.src
+msgctxt "RID_SVXITEMS_SHADOW_TOPLEFT"
+msgid "Shadow top left"
+msgstr "Schatten oben links"
+
+#. LxLGN
+#: svxitems.src
+msgctxt "RID_SVXITEMS_SHADOW_TOPRIGHT"
+msgid "Shadow top right"
+msgstr "Schatten oben rechts"
+
+#. Locwt
+#: svxitems.src
+msgctxt "RID_SVXITEMS_SHADOW_BOTTOMLEFT"
+msgid "Shadow bottom left"
+msgstr "Schatten unten links"
+
+#. n8GDU
+#: svxitems.src
+msgctxt "RID_SVXITEMS_SHADOW_BOTTOMRIGHT"
+msgid "Shadow bottom right"
+msgstr "Schatten unten rechts"
+
+#. YkYfG
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR"
+msgid "Color "
+msgstr "Farbe "
+
+#. 9dTn7
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_BLACK"
+msgid "Black"
+msgstr "Schwarz"
+
+#. 87wDW
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_BLUE"
+msgid "Blue"
+msgstr "Blau"
+
+#. EmUBx
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_GREEN"
+msgid "Green"
+msgstr "Grün"
+
+#. GcdtX
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_CYAN"
+msgid "Cyan"
+msgstr "Cyan"
+
+#. g2uVZ
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_RED"
+msgid "Red"
+msgstr "Rot"
+
+#. CytXM
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
+
+#. CJWaK
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_BROWN"
+msgid "Brown"
+msgstr "Braun"
+
+#. QUDGM
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_GRAY"
+msgid "Gray"
+msgstr "Grau"
+
+#. a44zF
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_LIGHTGRAY"
+msgid "Light Gray"
+msgstr "Hellgrau"
+
+#. eMHCE
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_LIGHTBLUE"
+msgid "Light Blue"
+msgstr "Hellblau"
+
+#. X9SfB
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_LIGHTGREEN"
+msgid "Light Green"
+msgstr "Hellgrün"
+
+#. WwA99
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_LIGHTCYAN"
+msgid "Light Cyan"
+msgstr "Hellcyan"
+
+#. BrMFv
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_LIGHTRED"
+msgid "Light Red"
+msgstr "Hellrot"
+
+#. 5kAxU
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "Hellmagenta"
+
+#. Tv2JN
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_YELLOW"
+msgid "Yellow"
+msgstr "Gelb"
+
+#. zmEC7
+#: svxitems.src
+msgctxt "RID_SVXITEMS_COLOR_WHITE"
+msgid "White"
+msgstr "Weiß"
+
+#. YDjFq
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ITALIC_NONE"
+msgid "Not Italic"
+msgstr "Nicht kursiv"
+
+#. xYedE
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ITALIC_OBLIQUE"
+msgid "Oblique italic"
+msgstr "Schräger kursiv"
+
+#. E3nZN
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ITALIC_NORMAL"
+msgid "Italic"
+msgstr "Kursiv"
+
+#. ZPWhD
+#: svxitems.src
+msgctxt "RID_SVXITEMS_WEIGHT_THIN"
+msgid "thin"
+msgstr "dünn"
+
+#. j5otK
+#: svxitems.src
+msgctxt "RID_SVXITEMS_WEIGHT_ULTRALIGHT"
+msgid "ultra thin"
+msgstr "ultra dünn"
+
+#. PZKvF
+#: svxitems.src
+msgctxt "RID_SVXITEMS_WEIGHT_LIGHT"
+msgid "light"
+msgstr "leicht"
+
+#. RP5rT
+#: svxitems.src
+msgctxt "RID_SVXITEMS_WEIGHT_SEMILIGHT"
+msgid "semi light"
+msgstr "halb leicht"
+
+#. EtVi5
+#: svxitems.src
+msgctxt "RID_SVXITEMS_WEIGHT_NORMAL"
+msgid "normal"
+msgstr "normal"
+
+#. sACs7
+#: svxitems.src
+msgctxt "RID_SVXITEMS_WEIGHT_MEDIUM"
+msgid "medium"
+msgstr "mittel"
+
+#. EB8v6
+#: svxitems.src
+msgctxt "RID_SVXITEMS_WEIGHT_SEMIBOLD"
+msgid "semi bold"
+msgstr "halb fett"
+
+#. sCqZ8
+#: svxitems.src
+msgctxt "RID_SVXITEMS_WEIGHT_BOLD"
+msgid "bold"
+msgstr "fett"
+
+#. g2MrK
+#: svxitems.src
+msgctxt "RID_SVXITEMS_WEIGHT_ULTRABOLD"
+msgid "ultra bold"
+msgstr "ultra fett"
+
+#. utjoZ
+#: svxitems.src
+msgctxt "RID_SVXITEMS_WEIGHT_BLACK"
+msgid "black"
+msgstr "schwarz"
+
+#. s5HnZ
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_NONE"
+msgid "No underline"
+msgstr "Nicht unterstrichen"
+
+#. gdq9K
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_SINGLE"
+msgid "Single underline"
+msgstr "Einfach unterstrichen"
+
+#. T6E7G
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_DOUBLE"
+msgid "Double underline"
+msgstr "Doppelt unterstrichen"
+
+#. m94Ri
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_DOTTED"
+msgid "Dotted underline"
+msgstr "Gepunktet unterstrichen"
+
+#. cgND5
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_DONTKNOW"
+msgid "Underline"
+msgstr "Unterstrichen"
+
+#. hw3FY
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_DASH"
+msgid "Underline (dashes)"
+msgstr "Unterstrichen (Strich)"
+
+#. BdCYe
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_LONGDASH"
+msgid "Underline (long dashes)"
+msgstr "Unterstrichen (Strich lang)"
+
+#. fYFcA
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_DASHDOT"
+msgid "Underline (dot dash)"
+msgstr "Unterstrichen (Punkt Strich)"
+
+#. tvEwq
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_DASHDOTDOT"
+msgid "Underline (dot dot dash)"
+msgstr "Unterstrichen (Punkt Punkt Strich)"
+
+#. BJQdt
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_SMALLWAVE"
+msgid "Underline (small wave)"
+msgstr "Unterstrichen (Welle klein)"
+
+#. xUKGy
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_WAVE"
+msgid "Underline (Wave)"
+msgstr "Unterstrichen (Welle)"
+
+#. 48Fip
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_DOUBLEWAVE"
+msgid "Underline (Double wave)"
+msgstr "Unterstrichen (Welle doppelt)"
+
+#. LY5k6
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_BOLD"
+msgid "Underlined (Bold)"
+msgstr "Unterstrichen (fett)"
+
+#. bqzzG
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_BOLDDOTTED"
+msgid "Dotted underline (Bold)"
+msgstr "Gepunktet unterstrichen (fett)"
+
+#. HvRoA
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_BOLDDASH"
+msgid "Underline (Dash bold)"
+msgstr "Unterstrichen (Strich fett)"
+
+#. 2Gomd
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_BOLDLONGDASH"
+msgid "Underline (long dash, bold)"
+msgstr "Unterstrichen (Strich fett lang)"
+
+#. GSndt
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_BOLDDASHDOT"
+msgid "Underline (dot dash, bold)"
+msgstr "Unterstrichen (Punkt Strich fett)"
+
+#. PEdVj
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_BOLDDASHDOTDOT"
+msgid "Underline (dot dot dash, bold)"
+msgstr "Unterstrichen (Punkt Punkt Strich fett)"
+
+#. mroHD
+#: svxitems.src
+msgctxt "RID_SVXITEMS_UL_BOLDWAVE"
+msgid "Underline (wave, bold)"
+msgstr "Unterstrichen (Welle fett)"
+
+#. YDywJ
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_NONE"
+msgid "No overline"
+msgstr "Nicht überstrichen"
+
+#. uaTBW
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_SINGLE"
+msgid "Single overline"
+msgstr "Einfach überstrichen"
+
+#. BFGAx
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_DOUBLE"
+msgid "Double overline"
+msgstr "Doppelt überstrichen"
+
+#. UPHjS
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_DOTTED"
+msgid "Dotted overline"
+msgstr "Gepunktet überstrichen"
+
+#. EfECr
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_DONTKNOW"
+msgid "Overline"
+msgstr "Überstreichen"
+
+#. SA6B9
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_DASH"
+msgid "Overline (dashes)"
+msgstr "Überstrichen (Striche)"
+
+#. zVEMt
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_LONGDASH"
+msgid "Overline (long dashes)"
+msgstr "Überstrichen (Strich lang)"
+
+#. pEpey
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_DASHDOT"
+msgid "Overline (dot dash)"
+msgstr "Überstrichen (Punkt Strich)"
+
+#. 8vy4G
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_DASHDOTDOT"
+msgid "Overline (dot dot dash)"
+msgstr "Überstrichen (Punkt Punkt Strich)"
+
+#. GKBo2
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_SMALLWAVE"
+msgid "Overline (small wave)"
+msgstr "Überstrichen (Welle klein)"
+
+#. iv64s
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_WAVE"
+msgid "Overline (Wave)"
+msgstr "Überstrichen (Welle)"
+
+#. 2KkqW
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_DOUBLEWAVE"
+msgid "Overline (Double wave)"
+msgstr "Überstrichen (Welle doppelt)"
+
+#. jrBwz
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_BOLD"
+msgid "Overlined (Bold)"
+msgstr "Überstrichen (fett)"
+
+#. oDrx7
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_BOLDDOTTED"
+msgid "Dotted overline (Bold)"
+msgstr "Gepunktet überstrichen (fett)"
+
+#. A4RGf
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_BOLDDASH"
+msgid "Overline (Dash bold)"
+msgstr "Überstrichen (Strich fett)"
+
+#. jxvBT
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_BOLDLONGDASH"
+msgid "Overline (long dash, bold)"
+msgstr "Überstrichen (Strich fett lang)"
+
+#. Z95bA
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_BOLDDASHDOT"
+msgid "Overline (dot dash, bold)"
+msgstr "Überstrichen (Punkt Strich fett)"
+
+#. FUcjf
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_BOLDDASHDOTDOT"
+msgid "Overline (dot dot dash, bold)"
+msgstr "Überstrichen (Punkt Punkt Strich fett)"
+
+#. DeEEC
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OL_BOLDWAVE"
+msgid "Overline (wave, bold)"
+msgstr "Überstrichen (Welle fett)"
+
+#. iER8c
+#: svxitems.src
+msgctxt "RID_SVXITEMS_STRIKEOUT_NONE"
+msgid "No strikethrough"
+msgstr "Nicht durchgestrichen"
+
+#. xDUdC
+#: svxitems.src
+msgctxt "RID_SVXITEMS_STRIKEOUT_SINGLE"
+msgid "Single strikethrough"
+msgstr "Einfach durchgestrichen"
+
+#. jRCTc
+#: svxitems.src
+msgctxt "RID_SVXITEMS_STRIKEOUT_DOUBLE"
+msgid "Double strikethrough"
+msgstr "Doppelt durchgestrichen"
+
+#. ezPe8
+#: svxitems.src
+msgctxt "RID_SVXITEMS_STRIKEOUT_BOLD"
+msgid "Bold strikethrough"
+msgstr "Fett durchgestrichen"
+
+#. GWRPK
+#: svxitems.src
+msgctxt "RID_SVXITEMS_STRIKEOUT_SLASH"
+msgid "Strike through with slash"
+msgstr "Durchgestrichen mit /"
+
+#. yDpRT
+#: svxitems.src
+msgctxt "RID_SVXITEMS_STRIKEOUT_X"
+msgid "Strike through with Xes"
+msgstr "Durchgestrichen mit X"
+
+#. 9Cwcw
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CASEMAP_NONE"
+msgid "None"
+msgstr "Keine"
+
+#. DxCYJ
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CASEMAP_VERSALIEN"
+msgid "Caps"
+msgstr "Versalien"
+
+#. DngZG
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CASEMAP_GEMEINE"
+msgid "Lowercase"
+msgstr "Gemeine"
+
+#. 8hLRS
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CASEMAP_TITEL"
+msgid "Title"
+msgstr "Titel"
+
+#. A7PCZ
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CASEMAP_KAPITAELCHEN"
+msgid "Small caps"
+msgstr "Kapitälchen"
+
+#. xiFNC
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ESCAPEMENT_OFF"
+msgid "Normal position"
+msgstr "Normalstellung"
+
+#. Xy3oX
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ESCAPEMENT_SUPER"
+msgid "Superscript "
+msgstr "Hochgestellt "
+
+#. AYvFH
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ESCAPEMENT_SUB"
+msgid "Subscript "
+msgstr "Tiefgestellt "
+
+#. 2qkvs
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ESCAPEMENT_AUTO"
+msgid "automatic"
+msgstr "automatisch"
+
+#. cKopY
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ADJUST_LEFT"
+msgid "Align left"
+msgstr "Linksbündig"
+
+#. kZVff
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ADJUST_RIGHT"
+msgid "Align right"
+msgstr "Rechtsbündig"
+
+#. hyfvV
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ADJUST_BLOCK"
+msgid "Justify"
+msgstr "Blockausrichtung"
+
+#. PDyMM
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ADJUST_CENTER"
+msgid "Centered"
+msgstr "Zentriert"
+
+#. tPG9T
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ADJUST_BLOCKLINE"
+msgid "Justify"
+msgstr "Blockausrichtung"
+
+#. Cm7dF
+#: svxitems.src
+msgctxt "RID_SOLID"
+msgid "Single, solid"
+msgstr "Einfach, durchgehend"
+
+#. CszQA
+#: svxitems.src
+msgctxt "RID_DOTTED"
+msgid "Single, dotted"
+msgstr "Einfach, gepunktet"
+
+#. KQDhy
+#: svxitems.src
+msgctxt "RID_DASHED"
+msgid "Single, dashed"
+msgstr "Einfach, gestrichelt"
+
+#. cFtKq
+#: svxitems.src
+msgctxt "RID_DOUBLE"
+msgid "Double"
+msgstr "Doppelt"
+
+#. WcFi2
+#: svxitems.src
+msgctxt "RID_THINTHICK_SMALLGAP"
+msgid "Double, inside: fine, outside: thick, spacing: small"
+msgstr "Doppelt, Innen: dünn, Außen: dick, Abstand: klein"
+
+#. A5WNh
+#: svxitems.src
+msgctxt "RID_THINTHICK_MEDIUMGAP"
+msgid "Double, inside: fine, outside: thick, spacing: medium"
+msgstr "Doppelt, Innen: dünn, Außen: dick, Abstand: mittel"
+
+#. nvFHD
+#: svxitems.src
+msgctxt "RID_THINTHICK_LARGEGAP"
+msgid "Double, inside: fine, outside: thick, spacing: large"
+msgstr "Doppelt, Innen: dünn, Außen: dick, Abstand: groß"
+
+#. CtueB
+#: svxitems.src
+msgctxt "RID_THICKTHIN_SMALLGAP"
+msgid "Double, inside: thick, outside: fine, spacing: small"
+msgstr "Doppelt, Innen: dick, Außen: dünn, Abstand: klein"
+
+#. V8UfF
+#: svxitems.src
+msgctxt "RID_THICKTHIN_MEDIUMGAP"
+msgid "Double, inside: thick, outside: fine, spacing: medium"
+msgstr "Doppelt, Innen: dick, Außen: dünn, Abstand: mittel"
+
+#. MeSC4
+#: svxitems.src
+msgctxt "RID_THICKTHIN_LARGEGAP"
+msgid "Double, inside: thick, outside: fine, spacing: large"
+msgstr "Doppelt, Innen: dick, Außen: dünn, Abstand: groß"
+
+#. RmYEL
+#: svxitems.src
+msgctxt "RID_EMBOSSED"
+msgid "3D embossed"
+msgstr "3D Erhaben"
+
+#. BXK8h
+#: svxitems.src
+msgctxt "RID_ENGRAVED"
+msgid "3D engraved"
+msgstr "3D Vertieft"
+
+#. xeaGY
+#: svxitems.src
+msgctxt "RID_INSET"
+msgid "Inset"
+msgstr "Innen"
+
+#. oRgMw
+#: svxitems.src
+msgctxt "RID_OUTSET"
+msgid "Outset"
+msgstr "Außen"
+
+#. uqbBB
+#: svxitems.src
+msgctxt "RID_FINE_DASHED"
+msgid "Single, fine dashed"
+msgstr "Einfach, fein gestrichelt"
+
+#. DFgwE
+#: svxitems.src
+msgctxt "RID_DOUBLE_THIN"
+msgid "Double, fixed thin lines"
+msgstr "Doppelt, durchgängige dünne Linien"
+
+#. UPWCE
+#: svxitems.src
+msgctxt "RID_DASH_DOT"
+msgid "Single, dash-dot"
+msgstr "Einfach, Strich Punkt"
+
+#. 2S39y
+#: svxitems.src
+msgctxt "RID_DASH_DOT_DOT"
+msgid "Single, dash-dot-dot"
+msgstr "Einfach, Strich Punkt Punkt"
+
+#. 6g3LZ
+#: svxitems.src
+msgctxt "RID_SVXITEMS_METRIC_MM"
+msgid "mm"
+msgstr "mm"
+
+#. cTMp7
+#: svxitems.src
+msgctxt "RID_SVXITEMS_METRIC_CM"
+msgid "cm"
+msgstr "cm"
+
+#. B7tYY
+#: svxitems.src
+msgctxt "RID_SVXITEMS_METRIC_INCH"
+msgid "inch"
+msgstr "in"
+
+#. QMd2A
+#: svxitems.src
+msgctxt "RID_SVXITEMS_METRIC_POINT"
+msgid "pt"
+msgstr "pt"
+
+#. FsA5C
+#: svxitems.src
+msgctxt "RID_SVXITEMS_METRIC_TWIP"
+msgid "twip"
+msgstr "twip"
+
+#. vUHdC
+#: svxitems.src
+msgctxt "RID_SVXITEMS_METRIC_PIXEL"
+msgid "pixel"
+msgstr "Pixel"
+
+#. ZFU4F
+#: svxitems.src
+msgctxt "RID_SVXITEMS_SHADOWED_TRUE"
+msgid "Shadowed"
+msgstr "Schattiert"
+
+#. NA3be
+#: svxitems.src
+msgctxt "RID_SVXITEMS_SHADOWED_FALSE"
+msgid "Not Shadowed"
+msgstr "Nicht Schattiert"
+
+#. CVMvq
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BLINK_TRUE"
+msgid "Blinking"
+msgstr "Blinkend"
+
+#. 5Ppd6
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BLINK_FALSE"
+msgid "Not Blinking"
+msgstr "Nicht Blinkend"
+
+#. vFzq9
+#: svxitems.src
+msgctxt "RID_SVXITEMS_AUTOKERN_TRUE"
+msgid "Pair Kerning"
+msgstr "Paarweises Kerning"
+
+#. JfEZ3
+#: svxitems.src
+msgctxt "RID_SVXITEMS_AUTOKERN_FALSE"
+msgid "No pair kerning"
+msgstr "Kein Paarweises Kerning"
+
+#. bzpB5
+#: svxitems.src
+msgctxt "RID_SVXITEMS_WORDLINE_TRUE"
+msgid "Individual words"
+msgstr "Wortweise"
+
+#. vMDXk
+#: svxitems.src
+msgctxt "RID_SVXITEMS_WORDLINE_FALSE"
+msgid "Not Words Only"
+msgstr "Nicht Wortweise"
+
+#. JiNzq
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CONTOUR_TRUE"
+msgid "Outline"
+msgstr "Konturschrift"
+
+#. TzuX7
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CONTOUR_FALSE"
+msgid "No Outline"
+msgstr "Keine Konturschrift"
+
+#. iURuD
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PRINT_TRUE"
+msgid "Print"
+msgstr "Drucken"
+
+#. DkRjW
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PRINT_FALSE"
+msgid "Don't print"
+msgstr "Nicht Drucken"
+
+#. EcB3J
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OPAQUE_TRUE"
+msgid "Opaque"
+msgstr "Undurchsichtig"
+
+#. GBqZG
+#: svxitems.src
+msgctxt "RID_SVXITEMS_OPAQUE_FALSE"
+msgid "Not Opaque"
+msgstr "Nicht Undurchsichtig"
+
+#. BQyD6
+#: svxitems.src
+msgctxt "RID_SVXITEMS_FMTKEEP_TRUE"
+msgid "Keep with next paragraph"
+msgstr "Absätze zusammenhalten"
+
+#. oudAG
+#: svxitems.src
+msgctxt "RID_SVXITEMS_FMTKEEP_FALSE"
+msgid "Don't Keep Paragraphs Together"
+msgstr "Absätze nicht zusammenhalten"
+
+#. CCsyg
+#: svxitems.src
+msgctxt "RID_SVXITEMS_FMTSPLIT_TRUE"
+msgid "Split paragraph"
+msgstr "Absatz trennen"
+
+#. h5Vf5
+#: svxitems.src
+msgctxt "RID_SVXITEMS_FMTSPLIT_FALSE"
+msgid "Don't split paragraph"
+msgstr "Absatz nicht trennen"
+
+#. CLP9n
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PROT_CONTENT_TRUE"
+msgid "Contents protected"
+msgstr "Inhalt geschützt"
+
+#. 2RzFv
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PROT_CONTENT_FALSE"
+msgid "Contents not protected"
+msgstr "Inhalt nicht geschützt"
+
+#. 2APmV
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PROT_SIZE_TRUE"
+msgid "Size protected"
+msgstr "Größe geschützt"
+
+#. dEBnK
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PROT_SIZE_FALSE"
+msgid "Size not protected"
+msgstr "Größe nicht geschützt"
+
+#. hHExr
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PROT_POS_TRUE"
+msgid "Position protected"
+msgstr "Position geschützt"
+
+#. GkpHh
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PROT_POS_FALSE"
+msgid "Position not protected"
+msgstr "Position nicht geschützt"
+
+#. UjpRv
+#: svxitems.src
+msgctxt "RID_SVXITEMS_TRANSPARENT_TRUE"
+msgid "Transparent"
+msgstr "Transparent"
+
+#. x8BK4
+#: svxitems.src
+msgctxt "RID_SVXITEMS_TRANSPARENT_FALSE"
+msgid "Not Transparent"
+msgstr "Nicht Transparent"
+
+#. 2DCGC
+#: svxitems.src
+msgctxt "RID_SVXITEMS_HYPHEN_TRUE"
+msgid "Hyphenation"
+msgstr "Silbentrennung"
+
+#. CQt4q
+#: svxitems.src
+msgctxt "RID_SVXITEMS_HYPHEN_FALSE"
+msgid "No hyphenation"
+msgstr "Keine Silbentrennung"
+
+#. x75Cx
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PAGE_END_TRUE"
+msgid "Page End"
+msgstr "Seitenende"
+
+#. r9DgX
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PAGE_END_FALSE"
+msgid "No Page End"
+msgstr "Kein Seitenende"
+
+#. ks8e4
+#: svxitems.src
+msgctxt "RID_SVXITEMS_SIZE_WIDTH"
+msgid "Width: "
+msgstr "Breite: "
+
+#. A6LqG
+#: svxitems.src
+msgctxt "RID_SVXITEMS_SIZE_HEIGHT"
+msgid "Height: "
+msgstr "Höhe: "
+
+#. EhDVf
+#: svxitems.src
+msgctxt "RID_SVXITEMS_LRSPACE_LEFT"
+msgid "Indent left "
+msgstr "Einzug links "
+
+#. 8pKEx
+#: svxitems.src
+msgctxt "RID_SVXITEMS_LRSPACE_FLINE"
+msgid "First Line "
+msgstr "Erste Zeile "
+
+#. 5yfe7
+#: svxitems.src
+msgctxt "RID_SVXITEMS_LRSPACE_RIGHT"
+msgid "Indent right "
+msgstr "Einzug rechts "
+
+#. rHuC8
+#: svxitems.src
+msgctxt "RID_SVXITEMS_SHADOW_COMPLETE"
+msgid "Shadow: "
+msgstr "Schatten: "
+
+#. WAFNF
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BORDER_COMPLETE"
+msgid "Borders "
+msgstr "Umrandung "
+
+#. H7bna
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BORDER_NONE"
+msgid "No border"
+msgstr "Ohne Umrandung"
+
+#. wYwBx
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BORDER_TOP"
+msgid "top "
+msgstr "oben "
+
+#. BuyEy
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BORDER_BOTTOM"
+msgid "bottom "
+msgstr "unten "
+
+#. qAkBD
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BORDER_LEFT"
+msgid "left "
+msgstr "links "
+
+#. EGQai
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BORDER_RIGHT"
+msgid "right "
+msgstr "rechts "
+
+#. vyBZu
+#: svxitems.src
+msgctxt "RID_SVXITEMS_BORDER_DISTANCE"
+msgid "Spacing "
+msgstr "Abstand "
+
+#. AXuCm
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ULSPACE_UPPER"
+msgid "From top "
+msgstr "Von oben "
+
+#. onyB7
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ULSPACE_LOWER"
+msgid "From bottom "
+msgstr "Von unten "
+
+#. Z6CiF
+#: svxitems.src
+msgctxt "RID_SVXITEMS_LINES"
+msgid "%1 Lines"
+msgstr "%1 Zeilen"
+
+#. JLCaB
+#: svxitems.src
+msgctxt "RID_SVXITEMS_WIDOWS_COMPLETE"
+msgid "Widow control"
+msgstr "Schusterjungenregelung"
+
+#. 6aGAq
+#: svxitems.src
+msgctxt "RID_SVXITEMS_ORPHANS_COMPLETE"
+msgid "Orphan control"
+msgstr "Hurenkinderregelung"
+
+#. BEXDt
+#: svxitems.src
+msgctxt "RID_SVXITEMS_HYPHEN_MINLEAD"
+msgid "%1 characters at end of line"
+msgstr "%1 Zeichen am Zeilenende"
+
+#. e8CgU
+#: svxitems.src
+msgctxt "RID_SVXITEMS_HYPHEN_MINTRAIL"
+msgid "%1 characters at beginning of line"
+msgstr "%1 Zeichen am Zeilenanfang"
+
+#. DocFx
+#: svxitems.src
+msgctxt "RID_SVXITEMS_HYPHEN_MAX"
+msgid "%1 hyphens"
+msgstr "%1 Bindestriche"
+
+#. zVxGk
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PAGEMODEL_COMPLETE"
+msgid "Page Style: "
+msgstr "Seitenvorlage: "
+
+#. JgaGz
+#: svxitems.src
+msgctxt "RID_SVXITEMS_KERNING_COMPLETE"
+msgid "Kerning "
+msgstr "Kerning "
+
+#. A7tAE
+#: svxitems.src
+msgctxt "RID_SVXITEMS_KERNING_EXPANDED"
+msgid "locked "
+msgstr "gesperrt "
+
+#. P976r
+#: svxitems.src
+msgctxt "RID_SVXITEMS_KERNING_CONDENSED"
+msgid "Condensed "
+msgstr "Schmal "
+
+#. TYEUj
+#: svxitems.src
+msgctxt "RID_SVXITEMS_GRAPHIC"
+msgid "Graphic"
+msgstr "Bild"
+
+#. Mbwvx
+#: svxitems.src
+msgctxt "RID_SVXITEMS_EMPHASIS_NONE_STYLE"
+msgid "none"
+msgstr "keine"
+
+#. e7UvB
+#: svxitems.src
+msgctxt "RID_SVXITEMS_EMPHASIS_DOT_STYLE"
+msgid "Dots "
+msgstr "Punkte "
+
+#. sSTeu
+#: svxitems.src
+msgctxt "RID_SVXITEMS_EMPHASIS_CIRCLE_STYLE"
+msgid "Circle "
+msgstr "Kreis "
+
+#. znKWc
+#: svxitems.src
+msgctxt "RID_SVXITEMS_EMPHASIS_DISC_STYLE"
+msgid "Filled circle "
+msgstr "Gefüllter Kreis "
+
+#. CEGAg
+#: svxitems.src
+msgctxt "RID_SVXITEMS_EMPHASIS_ACCENT_STYLE"
+msgid "Accent "
+msgstr "Akzent "
+
+#. 2hqEA
+#: svxitems.src
+msgctxt "RID_SVXITEMS_EMPHASIS_ABOVE_POS"
+msgid "Above"
+msgstr "Am Anfang"
+
+#. BY63q
+#: svxitems.src
+msgctxt "RID_SVXITEMS_EMPHASIS_BELOW_POS"
+msgid "Below"
+msgstr "Am Ende"
+
+#. Czxka
+#: svxitems.src
+msgctxt "RID_SVXITEMS_TWOLINES_OFF"
+msgid "Double-lined off"
+msgstr "Doppelzeilig aus"
+
+#. KL5gF
+#: svxitems.src
+msgctxt "RID_SVXITEMS_TWOLINES"
+msgid "Double-lined"
+msgstr "Doppelzeilig"
+
+#. kTzGA
+#: svxitems.src
+msgctxt "RID_SVXITEMS_SCRPTSPC_OFF"
+msgid "No automatic character spacing"
+msgstr "Kein automatischer Zeichenabstand"
+
+#. wWgYZ
+#: svxitems.src
+msgctxt "RID_SVXITEMS_SCRPTSPC_ON"
+msgid "No automatic character spacing"
+msgstr "Kein automatischer Zeichenabstand"
+
+#. ziURW
+#: svxitems.src
+msgctxt "RID_SVXITEMS_HNGPNCT_OFF"
+msgid "No hanging punctuation at line end"
+msgstr "Keine hängende Interpunktion am Zeilenende"
+
+#. SgFE5
+#: svxitems.src
+msgctxt "RID_SVXITEMS_HNGPNCT_ON"
+msgid "Hanging punctuation at line end"
+msgstr "Hängende Interpunktion am Zeilenende"
+
+#. mERAB
+#: svxitems.src
+msgctxt "RID_SVXITEMS_FORBIDDEN_RULE_OFF"
+msgid "Apply list of forbidden characters to beginning and end of lines"
+msgstr "Verbotene Zeichen am Zeilenanfang und -ende berücksichtigen"
+
+#. AJF69
+#: svxitems.src
+msgctxt "RID_SVXITEMS_FORBIDDEN_RULE_ON"
+msgid "Don't apply list of forbidden characters to beginning and end of lines"
+msgstr "Verbotene Zeichen am Zeilenanfang und -ende nicht berücksichtigen"
+
+#. KCoyz
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CHARROTATE_OFF"
+msgid "No rotated characters"
+msgstr "Keine gedrehten Zeichen"
+
+#. pMZnX
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CHARROTATE"
+msgid "Character rotated by $(ARG1)°"
+msgstr "Zeichen um $(ARG1)° gedreht"
+
+#. EzA4x
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CHARROTATE_FITLINE"
+msgid "Fit to line"
+msgstr "An Zeile anpassen"
+
+#. 8DQGe
+#: svxitems.src
+msgctxt "RID_SVXITEMS_TEXTROTATE_OFF"
+msgid "Text is not rotated"
+msgstr "Text ist nicht gedreht"
+
+#. WSt2G
+#: svxitems.src
+msgctxt "RID_SVXITEMS_TEXTROTATE"
+msgid "Text is rotated by $(ARG1)°"
+msgstr "Text ist um $(ARG1)° gedreht"
+
+#. bGvZn
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CHARSCALE"
+msgid "Characters scaled $(ARG1)%"
+msgstr "Zeichenskalierung $(ARG1)%"
+
+#. rXDuA
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CHARSCALE_OFF"
+msgid "No scaled characters"
+msgstr "Keine Zeichenskalierung"
+
+#. DLNSs
+#: svxitems.src
+msgctxt "RID_SVXITEMS_RELIEF_NONE"
+msgid "No relief"
+msgstr "Kein Relief"
+
+#. rq3Ma
+#: svxitems.src
+msgctxt "RID_SVXITEMS_RELIEF_EMBOSSED"
+msgid "Relief"
+msgstr "Relief"
+
+#. M7Huc
+#: svxitems.src
+msgctxt "RID_SVXITEMS_RELIEF_ENGRAVED"
+msgid "Engraved"
+msgstr "Gravur"
+
+#. jmM9f
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PARAVERTALIGN_AUTO"
+msgid "Automatic text alignment"
+msgstr "Textausrichtung automatisch"
+
+#. HCEhG
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PARAVERTALIGN_BASELINE"
+msgid "Text aligned to base line"
+msgstr "Textausrichtung Grundlinie"
+
+#. FBiBq
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PARAVERTALIGN_TOP"
+msgid "Text aligned top"
+msgstr "Textausrichtung oben"
+
+#. KLkUY
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PARAVERTALIGN_CENTER"
+msgid "Text aligned middle"
+msgstr "Textausrichtung zentriert"
+
+#. TTtYF
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PARAVERTALIGN_BOTTOM"
+msgid "Text aligned bottom"
+msgstr "Textausrichtung unten"
+
+#. PQaAE
+#: svxitems.src
+msgctxt "RID_SVXITEMS_FRMDIR_HORI_LEFT_TOP"
+msgid "Text direction left-to-right (horizontal)"
+msgstr "Textfluss Links-nach-rechts (horizontal)"
+
+#. eW3jB
+#: svxitems.src
+msgctxt "RID_SVXITEMS_FRMDIR_HORI_RIGHT_TOP"
+msgid "Text direction right-to-left (horizontal)"
+msgstr "Textfluss Rechts-nach-links (horizontal)"
+
+#. o3Yee
+#: svxitems.src
+msgctxt "RID_SVXITEMS_FRMDIR_VERT_TOP_RIGHT"
+msgid "Text direction right-to-left (vertical)"
+msgstr "Textfluss Rechts-nach-links (vertikal)"
+
+#. GXXF8
+#: svxitems.src
+msgctxt "RID_SVXITEMS_FRMDIR_VERT_TOP_LEFT"
+msgid "Text direction left-to-right (vertical)"
+msgstr "Textfluss Links-nach-rechts (vertikal)"
+
+#. 2XBXr
+#: svxitems.src
+msgctxt "RID_SVXITEMS_FRMDIR_ENVIRONMENT"
+msgid "Use superordinate object text direction setting"
+msgstr "Textfluss-Einstellung des übergeordneten Objektes verwenden"
+
+#. Z9dAu
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PARASNAPTOGRID_ON"
+msgid "Paragraph snaps to text grid (if active)"
+msgstr "Absatz wird am Textgitter gefangen (wenn aktiviert)"
+
+#. nYY6v
+#: svxitems.src
+msgctxt "RID_SVXITEMS_PARASNAPTOGRID_OFF"
+msgid "Paragraph does not snap to text grid"
+msgstr "Absatz wird nicht am Textgitter gefangen"
+
+#. VGGHB
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CHARHIDDEN_FALSE"
+msgid "Not hidden"
+msgstr "Nicht ausgeblendet"
+
+#. XTbkY
+#: svxitems.src
+msgctxt "RID_SVXITEMS_CHARHIDDEN_TRUE"
+msgid "Hidden"
+msgstr "Ausgeblendet"
+
+#. BHYB4
+#: svxitems.src
+msgctxt "RID_SVXITEMS_HORJUST_STANDARD"
+msgid "Horizontal alignment default"
+msgstr "Horizontale Standardausrichtung"
+
+#. htWdf
+#: svxitems.src
+msgctxt "RID_SVXITEMS_HORJUST_LEFT"
+msgid "Align left"
+msgstr "Linksbündig"
+
+#. icuN2
+#: svxitems.src
+msgctxt "RID_SVXITEMS_HORJUST_CENTER"
+msgid "Centered horizontally"
+msgstr "Horizontal zentrieren"
+
+#. JXEo9
+#: svxitems.src
+msgctxt "RID_SVXITEMS_HORJUST_RIGHT"
+msgid "Align right"
+msgstr "Rechtsbündig"
+
+#. XYQW2
+#: svxitems.src
+msgctxt "RID_SVXITEMS_HORJUST_BLOCK"
+msgid "Justify"
+msgstr "Blockausrichtung"
+
+#. DVmUh
+#: svxitems.src
+msgctxt "RID_SVXITEMS_HORJUST_REPEAT"
+msgid "Repeat alignment"
+msgstr "Ausrichtung wiederholen"
+
+#. hMaif
+#: svxitems.src
+msgctxt "RID_SVXITEMS_VERJUST_STANDARD"
+msgid "Vertical alignment default"
+msgstr "Vertikale Standardausrichtung"
+
+#. xy2FG
+#: svxitems.src
+msgctxt "RID_SVXITEMS_VERJUST_TOP"
+msgid "Align to top"
+msgstr "Oben ausrichten"
+
+#. UjmWt
+#: svxitems.src
+msgctxt "RID_SVXITEMS_VERJUST_CENTER"
+msgid "Centered vertically"
+msgstr "Vertikal zentrieren"
+
+#. G3X9R
+#: svxitems.src
+msgctxt "RID_SVXITEMS_VERJUST_BOTTOM"
+msgid "Align to bottom"
+msgstr "Unten ausrichten"
+
+#. Q7BPp
+#: svxitems.src
+msgctxt "RID_SVXITEMS_JUSTMETHOD_AUTO"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. FAUEU
+#: svxitems.src
+msgctxt "RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE"
+msgid "Distributed"
+msgstr "Verteilt"
+
+#. ZQDDe
+#: lingu.src
+msgctxt "RID_SVXSTR_QUERY_CONTINUE"
+msgid "Continue checking at beginning of document?"
+msgstr "Überprüfung am Anfang des Dokumentes fortsetzen?"
+
+#. ZDpxj
+#: lingu.src
+msgctxt "RID_SVXSTR_QUERY_BW_CONTINUE"
+msgid "Continue checking at end of document?"
+msgstr "Überprüfung am Ende des Dokumentes fortsetzen?"
+
+#. vi8uB
+#: lingu.src
+msgctxt "RID_SVXSTR_DIC_ERR_UNKNOWN"
+msgid ""
+"Word cannot be added to dictionary\n"
+"due to unknown reason."
+msgstr ""
+"Das Wort konnte aus einem unbekannten Grund\n"
+"nicht ins Wörterbuch aufgenommen werden."
+
+#. 4HCL4
+#: lingu.src
+msgctxt "RID_SVXSTR_DIC_ERR_FULL"
+msgid "The dictionary is already full."
+msgstr "Das Wörterbuch ist bereits voll."
+
+#. 5G8FX
+#: lingu.src
+msgctxt "RID_SVXSTR_DIC_ERR_READONLY"
+msgid "The dictionary is read-only."
+msgstr "Das Wörterbuch ist schreibgeschützt."
+
+#. JWPVD
+#: accessibility.src
+msgctxt "RID_SVXSTR_A11Y_IMAGEBULLET_DESCRIPTION"
+msgid "Image bullet in paragraph"
+msgstr "Grafisches Aufzählungszeichen im Absatz"
+
+#. hDfLN
+#: accessibility.src
+msgctxt "RID_SVXSTR_A11Y_IMAGEBULLET_NAME"
+msgid "Image bullet"
+msgstr "Grafisches Aufzählungszeichen"
+
+#. wVL8E
+#: accessibility.src
+msgctxt "RID_SVXSTR_A11Y_PARAGRAPH_DESCRIPTION"
+msgid "Paragraph: $(ARG) "
+msgstr "Absatz: $(ARG) "
+
+#. 2Lzx7
+#: spellmenu.ui
+msgctxt "spellmenu|ignore"
+msgid "I_gnore All"
+msgstr "_Alle ignorieren"
+
+#. GNLYJ
+#: spellmenu.ui
+msgctxt "spellmenu|insert"
+msgid "_Add to Dictionary"
+msgstr "_Zum Wörterbuch hinzufügen"
+
+#. PEnQT
+#: spellmenu.ui
+msgctxt "spellmenu|add"
+msgid "_Add to Dictionary"
+msgstr "_Zum Wörterbuch hinzufügen"
+
+#. MFssd
+#: spellmenu.ui
+msgctxt "spellmenu|check"
+msgid "_Spellcheck..."
+msgstr "_Rechtschreibprüfung..."
+
+#. GDu5j
+#: spellmenu.ui
+msgctxt "spellmenu|autocorrect"
+msgid "AutoCorrect _To"
+msgstr "AutoKorrektur _in"
+
+#. 4qA7Z
+#: spellmenu.ui
+msgctxt "spellmenu|autocorrectdlg"
+msgid "Auto_Correct Options..."
+msgstr "AutoKorrektur Optionen..."
diff --git a/source/de/editeng/source/accessibility.po b/source/de/editeng/source/accessibility.po
deleted file mode 100644
index b61f15483e1..00000000000
--- a/source/de/editeng/source/accessibility.po
+++ /dev/null
@@ -1,41 +0,0 @@
-#. extracted from editeng/source/accessibility
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-02-18 18:06+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1424282766.000000\n"
-
-#: accessibility.src
-msgctxt ""
-"accessibility.src\n"
-"RID_SVXSTR_A11Y_IMAGEBULLET_DESCRIPTION\n"
-"string.text"
-msgid "Image bullet in paragraph"
-msgstr "Grafisches Aufzählungszeichen im Absatz"
-
-#: accessibility.src
-msgctxt ""
-"accessibility.src\n"
-"RID_SVXSTR_A11Y_IMAGEBULLET_NAME\n"
-"string.text"
-msgid "Image bullet"
-msgstr "Grafisches Aufzählungszeichen"
-
-#: accessibility.src
-msgctxt ""
-"accessibility.src\n"
-"RID_SVXSTR_A11Y_PARAGRAPH_DESCRIPTION\n"
-"string.text"
-msgid "Paragraph: $(ARG) "
-msgstr "Absatz: $(ARG) "
diff --git a/source/de/editeng/source/editeng.po b/source/de/editeng/source/editeng.po
deleted file mode 100644
index cd75eab6145..00000000000
--- a/source/de/editeng/source/editeng.po
+++ /dev/null
@@ -1,113 +0,0 @@
-#. extracted from editeng/source/editeng
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-06-23 20:00+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1498248023.000000\n"
-
-#: editeng.src
-msgctxt ""
-"editeng.src\n"
-"RID_EDITUNDO_DEL\n"
-"string.text"
-msgid "Delete"
-msgstr "Löschen"
-
-#: editeng.src
-msgctxt ""
-"editeng.src\n"
-"RID_EDITUNDO_MOVE\n"
-"string.text"
-msgid "Move"
-msgstr "Verschieben"
-
-#: editeng.src
-msgctxt ""
-"editeng.src\n"
-"RID_EDITUNDO_INSERT\n"
-"string.text"
-msgid "Insert"
-msgstr "Einfügen"
-
-#: editeng.src
-msgctxt ""
-"editeng.src\n"
-"RID_EDITUNDO_REPLACE\n"
-"string.text"
-msgid "Replace"
-msgstr "Ersetzen"
-
-#: editeng.src
-msgctxt ""
-"editeng.src\n"
-"RID_EDITUNDO_SETATTRIBS\n"
-"string.text"
-msgid "Apply attributes"
-msgstr "Attribute anwenden"
-
-#: editeng.src
-msgctxt ""
-"editeng.src\n"
-"RID_EDITUNDO_RESETATTRIBS\n"
-"string.text"
-msgid "Reset attributes"
-msgstr "Attribute zurücksetzen"
-
-#: editeng.src
-msgctxt ""
-"editeng.src\n"
-"RID_EDITUNDO_INDENT\n"
-"string.text"
-msgid "Indent"
-msgstr "Einzug"
-
-#: editeng.src
-msgctxt ""
-"editeng.src\n"
-"RID_EDITUNDO_SETSTYLE\n"
-"string.text"
-msgid "Apply Styles"
-msgstr "Vorlagen zuweisen"
-
-#: editeng.src
-msgctxt ""
-"editeng.src\n"
-"RID_EDITUNDO_TRANSLITERATE\n"
-"string.text"
-msgid "Change Case"
-msgstr "Groß- und Kleinschreibung ändern"
-
-#: editeng.src
-msgctxt ""
-"editeng.src\n"
-"RID_STR_WORD\n"
-"string.text"
-msgid "Word is %x"
-msgstr "Wort ist %x"
-
-#: editeng.src
-msgctxt ""
-"editeng.src\n"
-"RID_STR_PARAGRAPH\n"
-"string.text"
-msgid "Paragraph is %x"
-msgstr "Absatz ist %x"
-
-#: editeng.src
-msgctxt ""
-"editeng.src\n"
-"RID_SVXSTR_AUTOMATIC\n"
-"string.text"
-msgid "Automatic"
-msgstr "Automatisch"
diff --git a/source/de/editeng/source/items.po b/source/de/editeng/source/items.po
deleted file mode 100644
index 7590f6297fc..00000000000
--- a/source/de/editeng/source/items.po
+++ /dev/null
@@ -1,1882 +0,0 @@
-#. extracted from editeng/source/items
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-29 14:48+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1493477280.000000\n"
-
-#: page.src
-msgctxt ""
-"page.src\n"
-"RID_SVXSTR_PAPERBIN\n"
-"string.text"
-msgid "Paper tray"
-msgstr "Schacht"
-
-#: page.src
-msgctxt ""
-"page.src\n"
-"RID_SVXSTR_PAPERBIN_SETTINGS\n"
-"string.text"
-msgid "[From printer settings]"
-msgstr "[Aus Druckereinstellung]"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BREAK_NONE\n"
-"string.text"
-msgid "No break"
-msgstr "Kein Umbruch"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BREAK_COLUMN_BEFORE\n"
-"string.text"
-msgid "Break before new column"
-msgstr "Umbruch vor neuer Spalte"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BREAK_COLUMN_AFTER\n"
-"string.text"
-msgid "Break after new column"
-msgstr "Umbruch nach neuer Spalte"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BREAK_COLUMN_BOTH\n"
-"string.text"
-msgid "Break before and after new column"
-msgstr "Umbruch vor und nach neuer Spalte"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BREAK_PAGE_BEFORE\n"
-"string.text"
-msgid "Break before new page"
-msgstr "Umbruch vor neuer Seite"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BREAK_PAGE_AFTER\n"
-"string.text"
-msgid "Break after new page"
-msgstr "Umbruch nach neuer Seite"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BREAK_PAGE_BOTH\n"
-"string.text"
-msgid "Break before and after new page"
-msgstr "Umbruch vor und nach neuer Seite"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_SHADOW_NONE\n"
-"string.text"
-msgid "No Shadow"
-msgstr "Kein Schatten"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_SHADOW_TOPLEFT\n"
-"string.text"
-msgid "Shadow top left"
-msgstr "Schatten oben links"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_SHADOW_TOPRIGHT\n"
-"string.text"
-msgid "Shadow top right"
-msgstr "Schatten oben rechts"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_SHADOW_BOTTOMLEFT\n"
-"string.text"
-msgid "Shadow bottom left"
-msgstr "Schatten unten links"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_SHADOW_BOTTOMRIGHT\n"
-"string.text"
-msgid "Shadow bottom right"
-msgstr "Schatten unten rechts"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR\n"
-"string.text"
-msgid "Color "
-msgstr "Farbe "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_BLACK\n"
-"string.text"
-msgid "Black"
-msgstr "Schwarz"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_BLUE\n"
-"string.text"
-msgid "Blue"
-msgstr "Blau"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_GREEN\n"
-"string.text"
-msgid "Green"
-msgstr "Grün"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_CYAN\n"
-"string.text"
-msgid "Cyan"
-msgstr "Cyan"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_RED\n"
-"string.text"
-msgid "Red"
-msgstr "Rot"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_MAGENTA\n"
-"string.text"
-msgid "Magenta"
-msgstr "Magenta"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_BROWN\n"
-"string.text"
-msgid "Brown"
-msgstr "Braun"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_GRAY\n"
-"string.text"
-msgid "Gray"
-msgstr "Grau"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_LIGHTGRAY\n"
-"string.text"
-msgid "Light Gray"
-msgstr "Hellgrau"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_LIGHTBLUE\n"
-"string.text"
-msgid "Light Blue"
-msgstr "Hellblau"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_LIGHTGREEN\n"
-"string.text"
-msgid "Light Green"
-msgstr "Hellgrün"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_LIGHTCYAN\n"
-"string.text"
-msgid "Light Cyan"
-msgstr "Hellcyan"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_LIGHTRED\n"
-"string.text"
-msgid "Light Red"
-msgstr "Hellrot"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_LIGHTMAGENTA\n"
-"string.text"
-msgid "Light Magenta"
-msgstr "Hellmagenta"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_YELLOW\n"
-"string.text"
-msgid "Yellow"
-msgstr "Gelb"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_COLOR_WHITE\n"
-"string.text"
-msgid "White"
-msgstr "Weiß"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ITALIC_NONE\n"
-"string.text"
-msgid "Not Italic"
-msgstr "Nicht kursiv"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ITALIC_OBLIQUE\n"
-"string.text"
-msgid "Oblique italic"
-msgstr "Schräger kursiv"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ITALIC_NORMAL\n"
-"string.text"
-msgid "Italic"
-msgstr "Kursiv"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_WEIGHT_THIN\n"
-"string.text"
-msgid "thin"
-msgstr "dünn"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_WEIGHT_ULTRALIGHT\n"
-"string.text"
-msgid "ultra thin"
-msgstr "ultra dünn"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_WEIGHT_LIGHT\n"
-"string.text"
-msgid "light"
-msgstr "leicht"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_WEIGHT_SEMILIGHT\n"
-"string.text"
-msgid "semi light"
-msgstr "halb leicht"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_WEIGHT_NORMAL\n"
-"string.text"
-msgid "normal"
-msgstr "normal"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_WEIGHT_MEDIUM\n"
-"string.text"
-msgid "medium"
-msgstr "mittel"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_WEIGHT_SEMIBOLD\n"
-"string.text"
-msgid "semi bold"
-msgstr "halb fett"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_WEIGHT_BOLD\n"
-"string.text"
-msgid "bold"
-msgstr "fett"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_WEIGHT_ULTRABOLD\n"
-"string.text"
-msgid "ultra bold"
-msgstr "ultra fett"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_WEIGHT_BLACK\n"
-"string.text"
-msgid "black"
-msgstr "schwarz"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_NONE\n"
-"string.text"
-msgid "No underline"
-msgstr "Nicht unterstrichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_SINGLE\n"
-"string.text"
-msgid "Single underline"
-msgstr "Einfach unterstrichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_DOUBLE\n"
-"string.text"
-msgid "Double underline"
-msgstr "Doppelt unterstrichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_DOTTED\n"
-"string.text"
-msgid "Dotted underline"
-msgstr "Gepunktet unterstrichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_DONTKNOW\n"
-"string.text"
-msgid "Underline"
-msgstr "Unterstrichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_DASH\n"
-"string.text"
-msgid "Underline (dashes)"
-msgstr "Unterstrichen (Strich)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_LONGDASH\n"
-"string.text"
-msgid "Underline (long dashes)"
-msgstr "Unterstrichen (Strich lang)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_DASHDOT\n"
-"string.text"
-msgid "Underline (dot dash)"
-msgstr "Unterstrichen (Punkt Strich)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_DASHDOTDOT\n"
-"string.text"
-msgid "Underline (dot dot dash)"
-msgstr "Unterstrichen (Punkt Punkt Strich)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_SMALLWAVE\n"
-"string.text"
-msgid "Underline (small wave)"
-msgstr "Unterstrichen (Welle klein)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_WAVE\n"
-"string.text"
-msgid "Underline (Wave)"
-msgstr "Unterstrichen (Welle)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_DOUBLEWAVE\n"
-"string.text"
-msgid "Underline (Double wave)"
-msgstr "Unterstrichen (Welle doppelt)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_BOLD\n"
-"string.text"
-msgid "Underlined (Bold)"
-msgstr "Unterstrichen (fett)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_BOLDDOTTED\n"
-"string.text"
-msgid "Dotted underline (Bold)"
-msgstr "Gepunktet unterstrichen (fett)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_BOLDDASH\n"
-"string.text"
-msgid "Underline (Dash bold)"
-msgstr "Unterstrichen (Strich fett)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_BOLDLONGDASH\n"
-"string.text"
-msgid "Underline (long dash, bold)"
-msgstr "Unterstrichen (Strich fett lang)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_BOLDDASHDOT\n"
-"string.text"
-msgid "Underline (dot dash, bold)"
-msgstr "Unterstrichen (Punkt Strich fett)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_BOLDDASHDOTDOT\n"
-"string.text"
-msgid "Underline (dot dot dash, bold)"
-msgstr "Unterstrichen (Punkt Punkt Strich fett)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_UL_BOLDWAVE\n"
-"string.text"
-msgid "Underline (wave, bold)"
-msgstr "Unterstrichen (Welle fett)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_NONE\n"
-"string.text"
-msgid "No overline"
-msgstr "Nicht überstrichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_SINGLE\n"
-"string.text"
-msgid "Single overline"
-msgstr "Einfach überstrichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_DOUBLE\n"
-"string.text"
-msgid "Double overline"
-msgstr "Doppelt überstrichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_DOTTED\n"
-"string.text"
-msgid "Dotted overline"
-msgstr "Gepunktet überstrichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_DONTKNOW\n"
-"string.text"
-msgid "Overline"
-msgstr "Überstreichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_DASH\n"
-"string.text"
-msgid "Overline (dashes)"
-msgstr "Überstrichen (Striche)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_LONGDASH\n"
-"string.text"
-msgid "Overline (long dashes)"
-msgstr "Überstrichen (Strich lang)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_DASHDOT\n"
-"string.text"
-msgid "Overline (dot dash)"
-msgstr "Überstrichen (Punkt Strich)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_DASHDOTDOT\n"
-"string.text"
-msgid "Overline (dot dot dash)"
-msgstr "Überstrichen (Punkt Punkt Strich)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_SMALLWAVE\n"
-"string.text"
-msgid "Overline (small wave)"
-msgstr "Überstrichen (Welle klein)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_WAVE\n"
-"string.text"
-msgid "Overline (Wave)"
-msgstr "Überstrichen (Welle)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_DOUBLEWAVE\n"
-"string.text"
-msgid "Overline (Double wave)"
-msgstr "Überstrichen (Welle doppelt)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_BOLD\n"
-"string.text"
-msgid "Overlined (Bold)"
-msgstr "Überstrichen (fett)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_BOLDDOTTED\n"
-"string.text"
-msgid "Dotted overline (Bold)"
-msgstr "Gepunktet überstrichen (fett)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_BOLDDASH\n"
-"string.text"
-msgid "Overline (Dash bold)"
-msgstr "Überstrichen (Strich fett)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_BOLDLONGDASH\n"
-"string.text"
-msgid "Overline (long dash, bold)"
-msgstr "Überstrichen (Strich fett lang)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_BOLDDASHDOT\n"
-"string.text"
-msgid "Overline (dot dash, bold)"
-msgstr "Überstrichen (Punkt Strich fett)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_BOLDDASHDOTDOT\n"
-"string.text"
-msgid "Overline (dot dot dash, bold)"
-msgstr "Überstrichen (Punkt Punkt Strich fett)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OL_BOLDWAVE\n"
-"string.text"
-msgid "Overline (wave, bold)"
-msgstr "Überstrichen (Welle fett)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_STRIKEOUT_NONE\n"
-"string.text"
-msgid "No strikethrough"
-msgstr "Nicht durchgestrichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_STRIKEOUT_SINGLE\n"
-"string.text"
-msgid "Single strikethrough"
-msgstr "Einfach durchgestrichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_STRIKEOUT_DOUBLE\n"
-"string.text"
-msgid "Double strikethrough"
-msgstr "Doppelt durchgestrichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_STRIKEOUT_BOLD\n"
-"string.text"
-msgid "Bold strikethrough"
-msgstr "Fett durchgestrichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_STRIKEOUT_SLASH\n"
-"string.text"
-msgid "Strike through with slash"
-msgstr "Durchgestrichen mit /"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_STRIKEOUT_X\n"
-"string.text"
-msgid "Strike through with Xes"
-msgstr "Durchgestrichen mit X"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CASEMAP_NONE\n"
-"string.text"
-msgid "None"
-msgstr "Keine"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CASEMAP_VERSALIEN\n"
-"string.text"
-msgid "Caps"
-msgstr "Versalien"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CASEMAP_GEMEINE\n"
-"string.text"
-msgid "Lowercase"
-msgstr "Gemeine"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CASEMAP_TITEL\n"
-"string.text"
-msgid "Title"
-msgstr "Titel"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CASEMAP_KAPITAELCHEN\n"
-"string.text"
-msgid "Small caps"
-msgstr "Kapitälchen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ESCAPEMENT_OFF\n"
-"string.text"
-msgid "Normal position"
-msgstr "Normalstellung"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ESCAPEMENT_SUPER\n"
-"string.text"
-msgid "Superscript "
-msgstr "Hochgestellt "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ESCAPEMENT_SUB\n"
-"string.text"
-msgid "Subscript "
-msgstr "Tiefgestellt "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ESCAPEMENT_AUTO\n"
-"string.text"
-msgid "automatic"
-msgstr "automatisch"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ADJUST_LEFT\n"
-"string.text"
-msgid "Align left"
-msgstr "Linksbündig"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ADJUST_RIGHT\n"
-"string.text"
-msgid "Align right"
-msgstr "Rechtsbündig"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ADJUST_BLOCK\n"
-"string.text"
-msgid "Justify"
-msgstr "Blockausrichtung"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ADJUST_CENTER\n"
-"string.text"
-msgid "Centered"
-msgstr "Zentriert"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ADJUST_BLOCKLINE\n"
-"string.text"
-msgid "Justify"
-msgstr "Blockausrichtung"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SOLID\n"
-"string.text"
-msgid "Single, solid"
-msgstr "Einfach, durchgehend"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_DOTTED\n"
-"string.text"
-msgid "Single, dotted"
-msgstr "Einfach, gepunktet"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_DASHED\n"
-"string.text"
-msgid "Single, dashed"
-msgstr "Einfach, gestrichelt"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_DOUBLE\n"
-"string.text"
-msgid "Double"
-msgstr "Doppelt"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_THINTHICK_SMALLGAP\n"
-"string.text"
-msgid "Double, inside: fine, outside: thick, spacing: small"
-msgstr "Doppelt, Innen: dünn, Außen: dick, Abstand: klein"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_THINTHICK_MEDIUMGAP\n"
-"string.text"
-msgid "Double, inside: fine, outside: thick, spacing: medium"
-msgstr "Doppelt, Innen: dünn, Außen: dick, Abstand: mittel"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_THINTHICK_LARGEGAP\n"
-"string.text"
-msgid "Double, inside: fine, outside: thick, spacing: large"
-msgstr "Doppelt, Innen: dünn, Außen: dick, Abstand: groß"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_THICKTHIN_SMALLGAP\n"
-"string.text"
-msgid "Double, inside: thick, outside: fine, spacing: small"
-msgstr "Doppelt, Innen: dick, Außen: dünn, Abstand: klein"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_THICKTHIN_MEDIUMGAP\n"
-"string.text"
-msgid "Double, inside: thick, outside: fine, spacing: medium"
-msgstr "Doppelt, Innen: dick, Außen: dünn, Abstand: mittel"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_THICKTHIN_LARGEGAP\n"
-"string.text"
-msgid "Double, inside: thick, outside: fine, spacing: large"
-msgstr "Doppelt, Innen: dick, Außen: dünn, Abstand: groß"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_EMBOSSED\n"
-"string.text"
-msgid "3D embossed"
-msgstr "3D Erhaben"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_ENGRAVED\n"
-"string.text"
-msgid "3D engraved"
-msgstr "3D Vertieft"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_INSET\n"
-"string.text"
-msgid "Inset"
-msgstr "Innen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_OUTSET\n"
-"string.text"
-msgid "Outset"
-msgstr "Außen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_FINE_DASHED\n"
-"string.text"
-msgid "Single, fine dashed"
-msgstr "Einfach, fein gestrichelt"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_DOUBLE_THIN\n"
-"string.text"
-msgid "Double, fixed thin lines"
-msgstr "Doppelt, durchgängige dünne Linien"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_DASH_DOT\n"
-"string.text"
-msgid "Single, dash-dot"
-msgstr "Einfach, Strich Punkt"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_DASH_DOT_DOT\n"
-"string.text"
-msgid "Single, dash-dot-dot"
-msgstr "Einfach, Strich Punkt Punkt"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_METRIC_MM\n"
-"string.text"
-msgid "mm"
-msgstr "mm"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_METRIC_CM\n"
-"string.text"
-msgid "cm"
-msgstr "cm"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_METRIC_INCH\n"
-"string.text"
-msgid "inch"
-msgstr "in"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_METRIC_POINT\n"
-"string.text"
-msgid "pt"
-msgstr "pt"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_METRIC_TWIP\n"
-"string.text"
-msgid "twip"
-msgstr "twip"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_METRIC_PIXEL\n"
-"string.text"
-msgid "pixel"
-msgstr "Pixel"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_SHADOWED_TRUE\n"
-"string.text"
-msgid "Shadowed"
-msgstr "Schattiert"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_SHADOWED_FALSE\n"
-"string.text"
-msgid "Not Shadowed"
-msgstr "Nicht Schattiert"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BLINK_TRUE\n"
-"string.text"
-msgid "Blinking"
-msgstr "Blinkend"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BLINK_FALSE\n"
-"string.text"
-msgid "Not Blinking"
-msgstr "Nicht Blinkend"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_AUTOKERN_TRUE\n"
-"string.text"
-msgid "Pair Kerning"
-msgstr "Paarweises Kerning"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_AUTOKERN_FALSE\n"
-"string.text"
-msgid "No pair kerning"
-msgstr "Kein Paarweises Kerning"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_WORDLINE_TRUE\n"
-"string.text"
-msgid "Individual words"
-msgstr "Wortweise"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_WORDLINE_FALSE\n"
-"string.text"
-msgid "Not Words Only"
-msgstr "Nicht Wortweise"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CONTOUR_TRUE\n"
-"string.text"
-msgid "Outline"
-msgstr "Konturschrift"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CONTOUR_FALSE\n"
-"string.text"
-msgid "No Outline"
-msgstr "Keine Konturschrift"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PRINT_TRUE\n"
-"string.text"
-msgid "Print"
-msgstr "Drucken"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PRINT_FALSE\n"
-"string.text"
-msgid "Don't print"
-msgstr "Nicht Drucken"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OPAQUE_TRUE\n"
-"string.text"
-msgid "Opaque"
-msgstr "Undurchsichtig"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_OPAQUE_FALSE\n"
-"string.text"
-msgid "Not Opaque"
-msgstr "Nicht Undurchsichtig"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_FMTKEEP_TRUE\n"
-"string.text"
-msgid "Keep with next paragraph"
-msgstr "Absätze zusammenhalten"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_FMTKEEP_FALSE\n"
-"string.text"
-msgid "Don't Keep Paragraphs Together"
-msgstr "Absätze nicht zusammenhalten"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_FMTSPLIT_TRUE\n"
-"string.text"
-msgid "Split paragraph"
-msgstr "Absatz trennen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_FMTSPLIT_FALSE\n"
-"string.text"
-msgid "Don't split paragraph"
-msgstr "Absatz nicht trennen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PROT_CONTENT_TRUE\n"
-"string.text"
-msgid "Contents protected"
-msgstr "Inhalt geschützt"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PROT_CONTENT_FALSE\n"
-"string.text"
-msgid "Contents not protected"
-msgstr "Inhalt nicht geschützt"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PROT_SIZE_TRUE\n"
-"string.text"
-msgid "Size protected"
-msgstr "Größe geschützt"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PROT_SIZE_FALSE\n"
-"string.text"
-msgid "Size not protected"
-msgstr "Größe nicht geschützt"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PROT_POS_TRUE\n"
-"string.text"
-msgid "Position protected"
-msgstr "Position geschützt"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PROT_POS_FALSE\n"
-"string.text"
-msgid "Position not protected"
-msgstr "Position nicht geschützt"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_TRANSPARENT_TRUE\n"
-"string.text"
-msgid "Transparent"
-msgstr "Transparent"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_TRANSPARENT_FALSE\n"
-"string.text"
-msgid "Not Transparent"
-msgstr "Nicht Transparent"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_HYPHEN_TRUE\n"
-"string.text"
-msgid "Hyphenation"
-msgstr "Silbentrennung"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_HYPHEN_FALSE\n"
-"string.text"
-msgid "No hyphenation"
-msgstr "Keine Silbentrennung"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PAGE_END_TRUE\n"
-"string.text"
-msgid "Page End"
-msgstr "Seitenende"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PAGE_END_FALSE\n"
-"string.text"
-msgid "No Page End"
-msgstr "Kein Seitenende"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_SIZE_WIDTH\n"
-"string.text"
-msgid "Width: "
-msgstr "Breite: "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_SIZE_HEIGHT\n"
-"string.text"
-msgid "Height: "
-msgstr "Höhe: "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_LRSPACE_LEFT\n"
-"string.text"
-msgid "Indent left "
-msgstr "Einzug links "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_LRSPACE_FLINE\n"
-"string.text"
-msgid "First Line "
-msgstr "Erste Zeile "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_LRSPACE_RIGHT\n"
-"string.text"
-msgid "Indent right "
-msgstr "Einzug rechts "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_SHADOW_COMPLETE\n"
-"string.text"
-msgid "Shadow: "
-msgstr "Schatten: "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BORDER_COMPLETE\n"
-"string.text"
-msgid "Borders "
-msgstr "Umrandung "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BORDER_NONE\n"
-"string.text"
-msgid "No border"
-msgstr "Ohne Umrandung"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BORDER_TOP\n"
-"string.text"
-msgid "top "
-msgstr "oben "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BORDER_BOTTOM\n"
-"string.text"
-msgid "bottom "
-msgstr "unten "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BORDER_LEFT\n"
-"string.text"
-msgid "left "
-msgstr "links "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BORDER_RIGHT\n"
-"string.text"
-msgid "right "
-msgstr "rechts "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_BORDER_DISTANCE\n"
-"string.text"
-msgid "Spacing "
-msgstr "Abstand "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ULSPACE_UPPER\n"
-"string.text"
-msgid "From top "
-msgstr "Von oben "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ULSPACE_LOWER\n"
-"string.text"
-msgid "From bottom "
-msgstr "Von unten "
-
-#. pb: %1 == will be replaced by the number of lines
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_LINES\n"
-"string.text"
-msgid "%1 Lines"
-msgstr "%1 Zeilen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_WIDOWS_COMPLETE\n"
-"string.text"
-msgid "Widow control"
-msgstr "Schusterjungenregelung"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_ORPHANS_COMPLETE\n"
-"string.text"
-msgid "Orphan control"
-msgstr "Hurenkinderregelung"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_HYPHEN_MINLEAD\n"
-"string.text"
-msgid "%1 characters at end of line"
-msgstr "%1 Zeichen am Zeilenende"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_HYPHEN_MINTRAIL\n"
-"string.text"
-msgid "%1 characters at beginning of line"
-msgstr "%1 Zeichen am Zeilenanfang"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_HYPHEN_MAX\n"
-"string.text"
-msgid "%1 hyphens"
-msgstr "%1 Bindestriche"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PAGEMODEL_COMPLETE\n"
-"string.text"
-msgid "Page Style: "
-msgstr "Seitenvorlage: "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_KERNING_COMPLETE\n"
-"string.text"
-msgid "Kerning "
-msgstr "Kerning "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_KERNING_EXPANDED\n"
-"string.text"
-msgid "locked "
-msgstr "gesperrt "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_KERNING_CONDENSED\n"
-"string.text"
-msgid "Condensed "
-msgstr "Schmal "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_GRAPHIC\n"
-"string.text"
-msgid "Graphic"
-msgstr "Bild"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_EMPHASIS_NONE_STYLE\n"
-"string.text"
-msgid "none"
-msgstr "keine"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_EMPHASIS_DOT_STYLE\n"
-"string.text"
-msgid "Dots "
-msgstr "Punkte "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_EMPHASIS_CIRCLE_STYLE\n"
-"string.text"
-msgid "Circle "
-msgstr "Kreis "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_EMPHASIS_DISC_STYLE\n"
-"string.text"
-msgid "Filled circle "
-msgstr "Gefüllter Kreis "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_EMPHASIS_ACCENT_STYLE\n"
-"string.text"
-msgid "Accent "
-msgstr "Akzent "
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_EMPHASIS_ABOVE_POS\n"
-"string.text"
-msgid "Above"
-msgstr "Am Anfang"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_EMPHASIS_BELOW_POS\n"
-"string.text"
-msgid "Below"
-msgstr "Am Ende"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_TWOLINES_OFF\n"
-"string.text"
-msgid "Double-lined off"
-msgstr "Doppelzeilig aus"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_TWOLINES\n"
-"string.text"
-msgid "Double-lined"
-msgstr "Doppelzeilig"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_SCRPTSPC_OFF\n"
-"string.text"
-msgid "No automatic character spacing"
-msgstr "Kein automatischer Zeichenabstand"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_SCRPTSPC_ON\n"
-"string.text"
-msgid "No automatic character spacing"
-msgstr "Kein automatischer Zeichenabstand"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_HNGPNCT_OFF\n"
-"string.text"
-msgid "No hanging punctuation at line end"
-msgstr "Keine hängende Interpunktion am Zeilenende"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_HNGPNCT_ON\n"
-"string.text"
-msgid "Hanging punctuation at line end"
-msgstr "Hängende Interpunktion am Zeilenende"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_FORBIDDEN_RULE_OFF\n"
-"string.text"
-msgid "Apply list of forbidden characters to beginning and end of lines"
-msgstr "Verbotene Zeichen am Zeilenanfang und -ende berücksichtigen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_FORBIDDEN_RULE_ON\n"
-"string.text"
-msgid "Don't apply list of forbidden characters to beginning and end of lines"
-msgstr "Verbotene Zeichen am Zeilenanfang und -ende nicht berücksichtigen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CHARROTATE_OFF\n"
-"string.text"
-msgid "No rotated characters"
-msgstr "Keine gedrehten Zeichen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CHARROTATE\n"
-"string.text"
-msgid "Character rotated by $(ARG1)°"
-msgstr "Zeichen um $(ARG1)° gedreht"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CHARROTATE_FITLINE\n"
-"string.text"
-msgid "Fit to line"
-msgstr "An Zeile anpassen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_TEXTROTATE_OFF\n"
-"string.text"
-msgid "Text is not rotated"
-msgstr "Text ist nicht gedreht"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_TEXTROTATE\n"
-"string.text"
-msgid "Text is rotated by $(ARG1)°"
-msgstr "Text ist um $(ARG1)° gedreht"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CHARSCALE\n"
-"string.text"
-msgid "Characters scaled $(ARG1)%"
-msgstr "Zeichenskalierung $(ARG1)%"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CHARSCALE_OFF\n"
-"string.text"
-msgid "No scaled characters"
-msgstr "Keine Zeichenskalierung"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_RELIEF_NONE\n"
-"string.text"
-msgid "No relief"
-msgstr "Kein Relief"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_RELIEF_EMBOSSED\n"
-"string.text"
-msgid "Relief"
-msgstr "Relief"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_RELIEF_ENGRAVED\n"
-"string.text"
-msgid "Engraved"
-msgstr "Gravur"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PARAVERTALIGN_AUTO\n"
-"string.text"
-msgid "Automatic text alignment"
-msgstr "Textausrichtung automatisch"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PARAVERTALIGN_BASELINE\n"
-"string.text"
-msgid "Text aligned to base line"
-msgstr "Textausrichtung Grundlinie"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PARAVERTALIGN_TOP\n"
-"string.text"
-msgid "Text aligned top"
-msgstr "Textausrichtung oben"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PARAVERTALIGN_CENTER\n"
-"string.text"
-msgid "Text aligned middle"
-msgstr "Textausrichtung zentriert"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PARAVERTALIGN_BOTTOM\n"
-"string.text"
-msgid "Text aligned bottom"
-msgstr "Textausrichtung unten"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_FRMDIR_HORI_LEFT_TOP\n"
-"string.text"
-msgid "Text direction left-to-right (horizontal)"
-msgstr "Textfluss Links-nach-rechts (horizontal)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_FRMDIR_HORI_RIGHT_TOP\n"
-"string.text"
-msgid "Text direction right-to-left (horizontal)"
-msgstr "Textfluss Rechts-nach-links (horizontal)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_FRMDIR_VERT_TOP_RIGHT\n"
-"string.text"
-msgid "Text direction right-to-left (vertical)"
-msgstr "Textfluss Rechts-nach-links (vertikal)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_FRMDIR_VERT_TOP_LEFT\n"
-"string.text"
-msgid "Text direction left-to-right (vertical)"
-msgstr "Textfluss Links-nach-rechts (vertikal)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_FRMDIR_ENVIRONMENT\n"
-"string.text"
-msgid "Use superordinate object text direction setting"
-msgstr "Textfluss-Einstellung des übergeordneten Objektes verwenden"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PARASNAPTOGRID_ON\n"
-"string.text"
-msgid "Paragraph snaps to text grid (if active)"
-msgstr "Absatz wird am Textgitter gefangen (wenn aktiviert)"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_PARASNAPTOGRID_OFF\n"
-"string.text"
-msgid "Paragraph does not snap to text grid"
-msgstr "Absatz wird nicht am Textgitter gefangen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CHARHIDDEN_FALSE\n"
-"string.text"
-msgid "Not hidden"
-msgstr "Nicht ausgeblendet"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_CHARHIDDEN_TRUE\n"
-"string.text"
-msgid "Hidden"
-msgstr "Ausgeblendet"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_HORJUST_STANDARD\n"
-"string.text"
-msgid "Horizontal alignment default"
-msgstr "Horizontale Standardausrichtung"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_HORJUST_LEFT\n"
-"string.text"
-msgid "Align left"
-msgstr "Linksbündig"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_HORJUST_CENTER\n"
-"string.text"
-msgid "Centered horizontally"
-msgstr "Horizontal zentrieren"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_HORJUST_RIGHT\n"
-"string.text"
-msgid "Align right"
-msgstr "Rechtsbündig"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_HORJUST_BLOCK\n"
-"string.text"
-msgid "Justify"
-msgstr "Blockausrichtung"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_HORJUST_REPEAT\n"
-"string.text"
-msgid "Repeat alignment"
-msgstr "Ausrichtung wiederholen"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_VERJUST_STANDARD\n"
-"string.text"
-msgid "Vertical alignment default"
-msgstr "Vertikale Standardausrichtung"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_VERJUST_TOP\n"
-"string.text"
-msgid "Align to top"
-msgstr "Oben ausrichten"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_VERJUST_CENTER\n"
-"string.text"
-msgid "Centered vertically"
-msgstr "Vertikal zentrieren"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_VERJUST_BOTTOM\n"
-"string.text"
-msgid "Align to bottom"
-msgstr "Unten ausrichten"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_JUSTMETHOD_AUTO\n"
-"string.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: svxitems.src
-msgctxt ""
-"svxitems.src\n"
-"RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE\n"
-"string.text"
-msgid "Distributed"
-msgstr "Verteilt"
diff --git a/source/de/editeng/source/misc.po b/source/de/editeng/source/misc.po
deleted file mode 100644
index 7e3b7ace543..00000000000
--- a/source/de/editeng/source/misc.po
+++ /dev/null
@@ -1,61 +0,0 @@
-#. extracted from editeng/source/misc
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-06-20 05:26+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1434778014.000000\n"
-
-#: lingu.src
-msgctxt ""
-"lingu.src\n"
-"RID_SVXSTR_QUERY_CONTINUE\n"
-"string.text"
-msgid "Continue checking at beginning of document?"
-msgstr "Überprüfung am Anfang des Dokumentes fortsetzen?"
-
-#: lingu.src
-msgctxt ""
-"lingu.src\n"
-"RID_SVXSTR_QUERY_BW_CONTINUE\n"
-"string.text"
-msgid "Continue checking at end of document?"
-msgstr "Überprüfung am Ende des Dokumentes fortsetzen?"
-
-#: lingu.src
-msgctxt ""
-"lingu.src\n"
-"RID_SVXSTR_DIC_ERR_UNKNOWN\n"
-"string.text"
-msgid ""
-"Word cannot be added to dictionary\n"
-"due to unknown reason."
-msgstr ""
-"Das Wort konnte aus einem unbekannten Grund\n"
-"nicht ins Wörterbuch aufgenommen werden."
-
-#: lingu.src
-msgctxt ""
-"lingu.src\n"
-"RID_SVXSTR_DIC_ERR_FULL\n"
-"string.text"
-msgid "The dictionary is already full."
-msgstr "Das Wörterbuch ist bereits voll."
-
-#: lingu.src
-msgctxt ""
-"lingu.src\n"
-"RID_SVXSTR_DIC_ERR_READONLY\n"
-"string.text"
-msgid "The dictionary is read-only."
-msgstr "Das Wörterbuch ist schreibgeschützt."
diff --git a/source/de/editeng/source/outliner.po b/source/de/editeng/source/outliner.po
deleted file mode 100644
index 3ff47f7646a..00000000000
--- a/source/de/editeng/source/outliner.po
+++ /dev/null
@@ -1,57 +0,0 @@
-#. extracted from editeng/source/outliner
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2013-05-23 22:59+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1369349958.000000\n"
-
-#: outliner.src
-msgctxt ""
-"outliner.src\n"
-"RID_OUTLUNDO_DEPTH\n"
-"string.text"
-msgid "Indent"
-msgstr "Einrücken"
-
-#: outliner.src
-msgctxt ""
-"outliner.src\n"
-"RID_OUTLUNDO_EXPAND\n"
-"string.text"
-msgid "Show subpoints"
-msgstr "Unterabsätze zeigen"
-
-#: outliner.src
-msgctxt ""
-"outliner.src\n"
-"RID_OUTLUNDO_COLLAPSE\n"
-"string.text"
-msgid "Collapse"
-msgstr "Unterabsätze verstecken"
-
-#: outliner.src
-msgctxt ""
-"outliner.src\n"
-"RID_OUTLUNDO_ATTR\n"
-"string.text"
-msgid "Apply attributes"
-msgstr "Attribute anwenden"
-
-#: outliner.src
-msgctxt ""
-"outliner.src\n"
-"RID_OUTLUNDO_INSERT\n"
-"string.text"
-msgid "Insert"
-msgstr "Einfügen"
diff --git a/source/de/editeng/uiconfig/ui.po b/source/de/editeng/uiconfig/ui.po
deleted file mode 100644
index 63fa7901653..00000000000
--- a/source/de/editeng/uiconfig/ui.po
+++ /dev/null
@@ -1,71 +0,0 @@
-#. extracted from editeng/uiconfig/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-20 02:56+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492656975.000000\n"
-
-#: spellmenu.ui
-msgctxt ""
-"spellmenu.ui\n"
-"ignore\n"
-"label\n"
-"string.text"
-msgid "I_gnore All"
-msgstr "_Alle ignorieren"
-
-#: spellmenu.ui
-msgctxt ""
-"spellmenu.ui\n"
-"insert\n"
-"label\n"
-"string.text"
-msgid "_Add to Dictionary"
-msgstr "_Zum Wörterbuch hinzufügen"
-
-#: spellmenu.ui
-msgctxt ""
-"spellmenu.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "_Add to Dictionary"
-msgstr "_Zum Wörterbuch hinzufügen"
-
-#: spellmenu.ui
-msgctxt ""
-"spellmenu.ui\n"
-"check\n"
-"label\n"
-"string.text"
-msgid "_Spellcheck..."
-msgstr "_Rechtschreibprüfung..."
-
-#: spellmenu.ui
-msgctxt ""
-"spellmenu.ui\n"
-"autocorrect\n"
-"label\n"
-"string.text"
-msgid "AutoCorrect _To"
-msgstr "AutoKorrektur _in"
-
-#: spellmenu.ui
-msgctxt ""
-"spellmenu.ui\n"
-"autocorrectdlg\n"
-"label\n"
-"string.text"
-msgid "Auto_Correct Options..."
-msgstr "AutoKorrektur Optionen..."
diff --git a/source/de/extensions/messages.po b/source/de/extensions/messages.po
new file mode 100644
index 00000000000..f82f2782652
--- /dev/null
+++ b/source/de/extensions/messages.po
@@ -0,0 +1,4156 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2015-06-24 17:05+0200\n"
+"PO-Revision-Date: 2015-06-26 19:10+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.7\n"
+"X-POOTLE-MTIME: 1435345847.000000\n"
+
+#. gBtAM
+#: strings.src
+msgctxt "STR_COULD_NOT_BE_INIT"
+msgid "The SANE interface could not be initialized. Scanning is not possible."
+msgstr ""
+"Das SANE Interface konnte nicht initialisiert werden. Es kann kein "
+"Scanvorgang stattfinden."
+
+#. AQZW2
+#: strings.src
+msgctxt "STR_SLOW_PREVIEW"
+msgid ""
+"The device does not offer a preview option. Therefore, a normal scan will be"
+" used as a preview instead. This may take a considerable amount of time."
+msgstr ""
+"Das Gerät ist nicht für die Erzeugung einer Vorschau eingerichtet. "
+"Stattdessen wird als Vorschau ein normaler Scan verwendet. Dieser kann "
+"deutlich länger dauern."
+
+#. S8o4P
+#: strings.src
+msgctxt "STR_ERROR_SCAN"
+msgid "An error occurred while scanning."
+msgstr "Während des Scans ist ein Fehler aufgetreten."
+
+#. hEFtD
+#: strings.src
+msgctxt "STR_DEVICE_DESC"
+msgid ""
+"Device: %s\n"
+"Vendor: %s\n"
+"Model: %s\n"
+"Type: %s"
+msgstr ""
+"Gerät: %s\n"
+"Hersteller: %s\n"
+"Modell: %s\n"
+"Typ: %s"
+
+#. ARuMw
+#: abspilot.src
+msgctxt "RID_STR_ABSOURCEDIALOGTITLE"
+msgid "Address Book Data Source Wizard"
+msgstr "Adressdatenquellen-Assistent"
+
+#. xmG72
+#: abspilot.src
+msgctxt "RID_STR_SELECT_ABTYPE"
+msgid "Address book type"
+msgstr "Adressbuchtyp"
+
+#. bB7Gx
+#: abspilot.src
+msgctxt "RID_STR_INVOKE_ADMIN_DIALOG"
+msgid "Connection Settings"
+msgstr "Verbindungs-Einstellungen"
+
+#. FS6Gr
+#: abspilot.src
+msgctxt "RID_STR_TABLE_SELECTION"
+msgid "Table selection"
+msgstr "Tabellenauswahl"
+
+#. cwcQa
+#: abspilot.src
+msgctxt "RID_STR_MANUAL_FIELD_MAPPING"
+msgid "Field Assignment"
+msgstr "Feldzuordnung"
+
+#. fMAkh
+#: abspilot.src
+msgctxt "RID_STR_FINAL_CONFIRM"
+msgid "Data Source Title"
+msgstr "Datenquellen Titel"
+
+#. wM2xw
+#: abspilot.src
+msgctxt "RID_STR_NEEDTYPESELECTION"
+msgid "Please select a type of address book."
+msgstr "Bitte wählen sie einen Adressbuch-Typ aus."
+
+#. DYKQN
+#: abspilot.src
+msgctxt "RID_STR_QRY_NOTABLES"
+msgid ""
+"The data source does not contain any tables.\n"
+"Do you want to set it up as an address data source, anyway?"
+msgstr ""
+"Die Datenquelle enthält keine Tabelle.\n"
+"Möchten Sie diese trotzdem als Adressdatenquelle einrichten?"
+
+#. SrEGe
+#: abspilot.src
+msgctxt "RID_STR_QRY_NO_EVO_GW"
+msgid ""
+"You don't seem to have any GroupWise account configured in Evolution.\n"
+"Do you want to set it up as an address data source, anyway?"
+msgstr ""
+"Sie haben wahrscheinlich keinen GroupWise-Account in Evolution erstellt.\n"
+"Möchten Sie diesen trotzdem als Adress-Datenquelle einrichten?"
+
+#. NAMjn
+#: abspilot.src
+msgctxt "RID_STR_DEFAULT_NAME"
+msgid "Addresses"
+msgstr "Adressen"
+
+#. 8Be9q
+#: abspilot.src
+msgctxt "RID_STR_ADMINDIALOGTITLE"
+msgid "Create Address Data Source"
+msgstr "Adressdatenquelle anlegen"
+
+#. pR34p
+#: abspilot.src
+msgctxt "RID_STR_NOCONNECTION"
+msgid "The connection could not be established."
+msgstr "Die Verbindung konnte nicht hergestellt werden."
+
+#. CmBks
+#: abspilot.src
+msgctxt "RID_STR_PLEASECHECKSETTINGS"
+msgid "Please check the settings made for the data source."
+msgstr "Bitte überprüfen Sie die Einstellungen für die Datenquelle."
+
+#. SEkjm
+#: abspilot.src
+msgctxt "RID_STR_FIELDDIALOGTITLE"
+msgid "Address Data - Field Assignment"
+msgstr "Adress Daten - Feldzuordnung"
+
+#. BMVTU
+#: abspilot.src
+msgctxt "RID_STR_NOFIELDSASSIGNED"
+msgid ""
+"There are no fields assigned at this time.\n"
+"You can either assign fields now or do so later by first choosing:\n"
+"\"File - Template - Address Book Source...\""
+msgstr ""
+"Im Augenblick sind keine Felder zugeordnet.\n"
+"Sie können die Zuordnung jetzt treffen, oder dies später nachholen:\n"
+"Wählen Sie im Menü \"Datei - Dokumentvorlage - Adressbuch-Quelle...\""
+
+#. mzYeP
+#: bib.src
+msgctxt "RID_BIB_STR_FRAME_TITLE"
+msgid "Bibliography Database"
+msgstr "Literaturdatenbank"
+
+#. qx7AN
+#: bib.src
+msgctxt "RID_MAP_QUESTION"
+msgid "Do you want to edit the column arrangement?"
+msgstr "Möchten Sie die Spaltenzuordnung bearbeiten?"
+
+#. 7PCsa
+#: bib.src
+msgctxt "RID_BIB_STR_NONE"
+msgid "<none>"
+msgstr "<kein>"
+
+#. FpFQy
+#: sections.src
+msgctxt "ST_ERROR_PREFIX"
+msgid "The following column names could not be assigned:\n"
+msgstr "Die folgenden Spaltennamen konnten nicht zugeordnet werden:\n"
+
+#. MYDFK
+#: sections.src
+msgctxt "ST_TYPE_ARTICLE"
+msgid "Article"
+msgstr "Artikel"
+
+#. oUGdW
+#: sections.src
+msgctxt "ST_TYPE_BOOK"
+msgid "Book"
+msgstr "Buch"
+
+#. Kb4CR
+#: sections.src
+msgctxt "ST_TYPE_BOOKLET"
+msgid "Brochures"
+msgstr "Broschüre"
+
+#. 9Xf89
+#: sections.src
+msgctxt "ST_TYPE_CONFERENCE"
+msgid "Conference proceedings article (BiBTeX)"
+msgstr "Konferenzberichtsartikel (BiBTeX)"
+
+#. ntDkF
+#: sections.src
+msgctxt "ST_TYPE_INBOOK"
+msgid "Book excerpt"
+msgstr "Buchauszug"
+
+#. Y9mNw
+#: sections.src
+msgctxt "ST_TYPE_INCOLLECTION"
+msgid "Book excerpt with title"
+msgstr "Buchauszug mit Titel"
+
+#. BPpGB
+#: sections.src
+msgctxt "ST_TYPE_INPROCEEDINGS"
+msgid "Conference proceedings article"
+msgstr "Konferenzberichtesartikel"
+
+#. 3d3D8
+#: sections.src
+msgctxt "ST_TYPE_JOURNAL"
+msgid "Journal"
+msgstr "Zeitschrift"
+
+#. fFKKN
+#: sections.src
+msgctxt "ST_TYPE_MANUAL"
+msgid "Techn. documentation"
+msgstr "Techn. Dokumentation"
+
+#. o9sxJ
+#: sections.src
+msgctxt "ST_TYPE_MASTERSTHESIS"
+msgid "Thesis"
+msgstr "Diplomarbeit"
+
+#. DWDtX
+#: sections.src
+msgctxt "ST_TYPE_MISC"
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
+
+#. yDjZG
+#: sections.src
+msgctxt "ST_TYPE_PHDTHESIS"
+msgid "Dissertation"
+msgstr "Dissertation"
+
+#. n3qwk
+#: sections.src
+msgctxt "ST_TYPE_PROCEEDINGS"
+msgid "Conference proceedings"
+msgstr "Konferenzberichte"
+
+#. TMFrD
+#: sections.src
+msgctxt "ST_TYPE_TECHREPORT"
+msgid "Research report"
+msgstr "Forschungsbericht"
+
+#. E3Bt7
+#: sections.src
+msgctxt "ST_TYPE_UNPUBLISHED"
+msgid "Unpublished"
+msgstr "Unveröffentlicht"
+
+#. CBChe
+#: sections.src
+msgctxt "ST_TYPE_EMAIL"
+msgid "E-mail"
+msgstr "E-Mail"
+
+#. DQX8t
+#: sections.src
+msgctxt "ST_TYPE_WWW"
+msgid "WWW document"
+msgstr "WWW-Dokument"
+
+#. wdKpu
+#: sections.src
+msgctxt "ST_TYPE_CUSTOM1"
+msgid "User-defined1"
+msgstr "Benutzertyp1"
+
+#. x5LCm
+#: sections.src
+msgctxt "ST_TYPE_CUSTOM2"
+msgid "User-defined2"
+msgstr "Benutzertyp2"
+
+#. SbEEw
+#: sections.src
+msgctxt "ST_TYPE_CUSTOM3"
+msgid "User-defined3"
+msgstr "Benutzertyp3"
+
+#. s4ffr
+#: sections.src
+msgctxt "ST_TYPE_CUSTOM4"
+msgid "User-defined4"
+msgstr "Benutzertyp4"
+
+#. ZgVkp
+#: sections.src
+msgctxt "ST_TYPE_CUSTOM5"
+msgid "User-defined5"
+msgstr "Benutzertyp5"
+
+#. TNvqv
+#: sections.src
+msgctxt "ST_TYPE_TITLE"
+msgid "General"
+msgstr "Allgemein"
+
+#. kg8vp
+#: commonpagesdbp.src
+msgctxt "RID_STR_OPTION_DB_FIELD_TITLE"
+msgid "Database Field"
+msgstr "Datenbankfeld"
+
+#. KMgGK
+#: commonpagesdbp.src
+msgctxt "RID_STR_TYPE_TABLE"
+msgid "Table"
+msgstr "Tabelle"
+
+#. g8gXs
+#: commonpagesdbp.src
+msgctxt "RID_STR_TYPE_QUERY"
+msgid "Query"
+msgstr "Abfrage"
+
+#. B5utG
+#: commonpagesdbp.src
+msgctxt "RID_STR_TYPE_COMMAND"
+msgid "SQL command"
+msgstr "SQL-Befehl"
+
+#. iiBKZ
+#: dbpilots.src
+msgctxt "RID_STR_GROUPWIZARD_TITLE"
+msgid "Group Element Wizard"
+msgstr "Gruppenelement-Assistent"
+
+#. 97Evr
+#: dbpilots.src
+msgctxt "RID_STR_GRIDWIZARD_TITLE"
+msgid "Table Element Wizard"
+msgstr "Tabellenelement-Assistent"
+
+#. 3cAJq
+#: dbpilots.src
+msgctxt "RID_STR_LISTWIZARD_TITLE"
+msgid "List Box Wizard"
+msgstr "Listenfeld-Assistent"
+
+#. DYg5X
+#: dbpilots.src
+msgctxt "RID_STR_COMBOWIZARD_TITLE"
+msgid "Combo Box Wizard"
+msgstr "Kombinationsfeld-Assistent"
+
+#. BG3Ch
+#: dbpilots.src
+msgctxt "RID_STR_COULDNOTOPENTABLE"
+msgid "The table connection to the data source could not be established."
+msgstr ""
+"Die Tabelle Verbindung zur Datenquelle konnte nicht hergestellt werden."
+
+#. LypDu
+#: gridpages.src
+msgctxt "RID_STR_DATEPOSTFIX"
+msgid " (Date)"
+msgstr " (Datum)"
+
+#. FVeYy
+#: gridpages.src
+msgctxt "RID_STR_TIMEPOSTFIX"
+msgid " (Time)"
+msgstr " (Zeit)"
+
+#. 2QUFE
+#: groupboxpages.src
+msgctxt "RID_STR_GROUPWIZ_DBFIELD"
+msgid ""
+"You can either save the value of the option group in a database field or use"
+" it for a later action."
+msgstr ""
+"Sie können den Wert der Optionsgruppe entweder in einem Datenbankfeld "
+"speichern oder ihn für eine spätere Aktion verwenden."
+
+#. XPCgZ
+#: listcombopages.src
+msgctxt "RID_STR_FIELDINFO_COMBOBOX"
+msgid ""
+"The contents of the field selected will be shown in the combo box list."
+msgstr ""
+"Der Inhalt des ausgewählten Feldes wird in der Liste des Kombinationsfeldes "
+"angezeigt."
+
+#. 3XqRi
+#: listcombopages.src
+msgctxt "RID_STR_FIELDINFO_LISTBOX"
+msgid ""
+"The contents of the selected field will be shown in the list box if the "
+"linked fields are identical."
+msgstr ""
+"Der Inhalt des ausgewählten Feldes wird in dem Listenfeld angezeigt, wenn "
+"die verknüpften Felder übereinstimmen."
+
+#. sy3UG
+#: listcombopages.src
+msgctxt "RID_STR_COMBOWIZ_DBFIELD"
+msgid ""
+"You can either save the value of the combo box in a database field or use it"
+" for display purposes."
+msgstr ""
+"Sie können den Wert des Kombinationsfeldes entweder in einem Datenbankfeld "
+"speichern oder ihn nur zum Anzeigen verwenden."
+
+#. LyDfr
+#: formlinkdialog.src
+msgctxt "STR_DETAIL_FORM"
+msgid "Sub Form"
+msgstr "Unterformular"
+
+#. cCpUd
+#: formlinkdialog.src
+msgctxt "STR_MASTER_FORM"
+msgid "Master Form"
+msgstr "Hauptformular"
+
+#. FzU2g
+#: formlinkdialog.src
+msgctxt "STR_ERROR_RETRIEVING_COLUMNS"
+msgid "The columns of '#' could not be retrieved."
+msgstr "Die Spalten für '#' konnten nicht ermittelt werden."
+
+#. qpwWD
+#: formres.src
+msgctxt "RID_STR_EDITMASK"
+msgid "Edit mask"
+msgstr "Eingabemaske"
+
+#. zjVEo
+#: formres.src
+msgctxt "RID_STR_LITERALMASK"
+msgid "Literal mask"
+msgstr "Zeichenmaske"
+
+#. N7AFg
+#: formres.src
+msgctxt "RID_STR_READONLY"
+msgid "Read-only"
+msgstr "Nur lesen"
+
+#. Vmbbd
+#: formres.src
+msgctxt "RID_STR_ENABLED"
+msgid "Enabled"
+msgstr "Aktiviert"
+
+#. CfMHM
+#: formres.src
+msgctxt "RID_STR_ENABLE_VISIBLE"
+msgid "Visible"
+msgstr "Sichtbar"
+
+#. gAuWS
+#: formres.src
+msgctxt "RID_STR_AUTOCOMPLETE"
+msgid "AutoFill"
+msgstr "Automatisch füllen"
+
+#. e9ghL
+#: formres.src
+msgctxt "RID_STR_LINECOUNT"
+msgid "Line count"
+msgstr "Anzahl der Zeilen"
+
+#. auFfe
+#: formres.src
+msgctxt "RID_STR_MAXTEXTLEN"
+msgid "Max. text length"
+msgstr "Max. Textlänge"
+
+#. M3S2R
+#: formres.src
+msgctxt "RID_STR_SPIN"
+msgid "Spin Button"
+msgstr "Drehfeld"
+
+#. L45LN
+#: formres.src
+msgctxt "RID_STR_STRICTFORMAT"
+msgid "Strict format"
+msgstr "Formatüberprüfung"
+
+#. qQLhA
+#: formres.src
+msgctxt "RID_STR_SHOWTHOUSANDSEP"
+msgid "Thousands separator"
+msgstr "Tausender-Trennzeichen"
+
+#. Q9amQ
+#: formres.src
+msgctxt "RID_STR_PRINTABLE"
+msgid "Printable"
+msgstr "Druckbar"
+
+#. EBE9n
+#: formres.src
+msgctxt "RID_STR_TARGET_URL"
+msgid "URL"
+msgstr "URL"
+
+#. Xq3GZ
+#: formres.src
+msgctxt "RID_STR_TARGET_FRAME"
+msgid "Frame"
+msgstr "Frame"
+
+#. NbCEN
+#: formres.src
+msgctxt "RID_STR_HELPTEXT"
+msgid "Help text"
+msgstr "Hilfetext"
+
+#. MANFA
+#: formres.src
+msgctxt "RID_STR_HELPURL"
+msgid "Help URL"
+msgstr "Hilfe URL"
+
+#. YsPAD
+#: formres.src
+msgctxt "RID_STR_TAG"
+msgid "Additional information"
+msgstr "Zusatzinformation"
+
+#. eACth
+#: formres.src
+msgctxt "RID_STR_ECHO_CHAR"
+msgid "Password character"
+msgstr "Zeichen für Kennwörter"
+
+#. G8AE8
+#: formres.src
+msgctxt "RID_STR_TRISTATE"
+msgid "Tristate"
+msgstr "Dreifacher Status"
+
+#. XEaFs
+#: formres.src
+msgctxt "RID_STR_EMPTY_IS_NULL"
+msgid "Empty string is NULL"
+msgstr "Leere Zeichenkette ist NULL"
+
+#. G4nJY
+#: formres.src
+msgctxt "RID_STR_DECIMAL_ACCURACY"
+msgid "Decimal accuracy"
+msgstr "Nachkommastellen"
+
+#. oxaBV
+#: formres.src
+msgctxt "RID_STR_IMAGE_URL"
+msgid "Graphics"
+msgstr "Bilder"
+
+#. AJhGf
+#: formres.src
+msgctxt "RID_STR_DEFAULT_SELECT_SEQ"
+msgid "Default selection"
+msgstr "Standardauswahl"
+
+#. CxD54
+#: formres.src
+msgctxt "RID_STR_DEFAULT_BUTTON"
+msgid "Default button"
+msgstr "Standardschaltfläche"
+
+#. xC6rd
+#: formres.src
+msgctxt "RID_STR_LABELCONTROL"
+msgid "Label Field"
+msgstr "Beschriftungsfeld"
+
+#. pr5zY
+#: formres.src
+msgctxt "RID_STR_LABEL"
+msgid "Label"
+msgstr "Titel"
+
+#. zBrzN
+#: formres.src
+msgctxt "RID_STR_ALIGN"
+msgid "Alignment"
+msgstr "Ausrichtung"
+
+#. 5FoyY
+#: formres.src
+msgctxt "RID_STR_VERTICAL_ALIGN"
+msgid "Vert. Alignment"
+msgstr "Vertikale Ausrichtung"
+
+#. jtRex
+#: formres.src
+msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
+msgid "Top"
+msgstr "Oben"
+
+#. dKUAY
+#: formres.src
+msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
+msgid "Middle"
+msgstr "Mitte"
+
+#. zrn8B
+#: formres.src
+msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
+msgid "Bottom"
+msgstr "Unten"
+
+#. zbCdE
+#: formres.src
+msgctxt "RID_STR_IMAGEPOSITION"
+msgid "Graphics alignment"
+msgstr "Bildausrichtung"
+
+#. A22EF
+#: formres.src
+msgctxt "RID_STR_FONT"
+msgid "Font"
+msgstr "Schrift"
+
+#. Lnf24
+#: formres.src
+msgctxt "RID_STR_BACKGROUNDCOLOR"
+msgid "Background color"
+msgstr "Hintergrundfarbe"
+
+#. oCdK3
+#: formres.src
+msgctxt "RID_STR_BORDER"
+msgid "Border"
+msgstr "Rahmen"
+
+#. fZGDw
+#: formres.src
+msgctxt "RID_STR_ICONSIZE"
+msgid "Icon size"
+msgstr "Symbolgröße"
+
+#. 9sD4A
+#: formres.src
+msgctxt "RID_RSC_ENUM_ICONSIZE_TYPE"
+msgid "Small"
+msgstr "Klein"
+
+#. Xqy9X
+#: formres.src
+msgctxt "RID_RSC_ENUM_ICONSIZE_TYPE"
+msgid "Large"
+msgstr "Groß"
+
+#. B3egn
+#: formres.src
+msgctxt "RID_STR_SHOW_POSITION"
+msgid "Positioning"
+msgstr "Positionierung"
+
+#. fGkps
+#: formres.src
+msgctxt "RID_STR_SHOW_NAVIGATION"
+msgid "Navigation"
+msgstr "Navigation"
+
+#. 6MSNt
+#: formres.src
+msgctxt "RID_STR_SHOW_RECORDACTIONS"
+msgid "Acting on a record"
+msgstr "Datensatzaktionen"
+
+#. ssfbB
+#: formres.src
+msgctxt "RID_STR_SHOW_FILTERSORT"
+msgid "Filtering / Sorting"
+msgstr "Filter / Sortierung"
+
+#. 9uqXs
+#: formres.src
+msgctxt "RID_STR_HSCROLL"
+msgid "Horizontal scroll bar"
+msgstr "Horizontale Bildlaufleiste"
+
+#. E4RcH
+#: formres.src
+msgctxt "RID_STR_VSCROLL"
+msgid "Vertical scroll bar"
+msgstr "Vertikale Bildlaufleiste"
+
+#. 9VgN2
+#: formres.src
+msgctxt "RID_STR_WORDBREAK"
+msgid "Word break"
+msgstr "Wortumbruch"
+
+#. BtyAC
+#: formres.src
+msgctxt "RID_STR_MULTILINE"
+msgid "Multiline input"
+msgstr "Mehrzeilig"
+
+#. Nb3ii
+#: formres.src
+msgctxt "RID_STR_MULTISELECTION"
+msgid "Multiselection"
+msgstr "Mehrfachauswahl"
+
+#. nEBee
+#: formres.src
+msgctxt "RID_STR_NAME"
+msgid "Name"
+msgstr "Name"
+
+#. iDqEB
+#: formres.src
+msgctxt "RID_STR_GROUP_NAME"
+msgid "Group name"
+msgstr "Gruppenname"
+
+#. UV8bW
+#: formres.src
+msgctxt "RID_STR_TABINDEX"
+msgid "Tab order"
+msgstr "Aktivierungsreihenfolge"
+
+#. pAcjw
+#: formres.src
+msgctxt "RID_STR_WHEEL_BEHAVIOR"
+msgid "Mouse wheel scroll"
+msgstr "Mausradverhalten"
+
+#. eykyF
+#: formres.src
+msgctxt "RID_STR_FILTER"
+msgid "Filter"
+msgstr "Filter"
+
+#. ftrCG
+#: formres.src
+msgctxt "RID_STR_SORT_CRITERIA"
+msgid "Sort"
+msgstr "Sortierung"
+
+#. B8a85
+#: formres.src
+msgctxt "RID_STR_RECORDMARKER"
+msgid "Record marker"
+msgstr "Datensatzmarkierer"
+
+#. BXFUC
+#: formres.src
+msgctxt "RID_STR_FILTERPROPOSAL"
+msgid "Filter proposal"
+msgstr "Filtervorschlag"
+
+#. HDAj8
+#: formres.src
+msgctxt "RID_STR_NAVIGATION"
+msgid "Navigation bar"
+msgstr "Symbolleiste Navigation"
+
+#. DSC4U
+#: formres.src
+msgctxt "RID_STR_CYCLE"
+msgid "Cycle"
+msgstr "Zyklus"
+
+#. hKt8F
+#: formres.src
+msgctxt "RID_STR_TABSTOP"
+msgid "Tabstop"
+msgstr "Tabstop"
+
+#. 4kjXk
+#: formres.src
+msgctxt "RID_STR_CONTROLSOURCE"
+msgid "Data field"
+msgstr "Datenfeld"
+
+#. jY5NK
+#: formres.src
+msgctxt "RID_STR_DROPDOWN"
+msgid "Dropdown"
+msgstr "Aufklappbar"
+
+#. WVFxL
+#: formres.src
+msgctxt "RID_STR_BOUNDCOLUMN"
+msgid "Bound field"
+msgstr "Gebundenes Feld"
+
+#. hB7Mj
+#: formres.src
+msgctxt "RID_STR_LISTSOURCE"
+msgid "List content"
+msgstr "Listeninhalt"
+
+#. CBbZP
+#: formres.src
+msgctxt "RID_STR_LISTSOURCETYPE"
+msgid "Type of list contents"
+msgstr "Art des Listeninhalts"
+
+#. fWxqr
+#: formres.src
+msgctxt "RID_STR_CURSORSOURCE"
+msgid "Content"
+msgstr "Inhalt"
+
+#. Nzoe5
+#: formres.src
+msgctxt "RID_STR_CURSORSOURCETYPE"
+msgid "Content type"
+msgstr "Art des Inhaltes"
+
+#. SQuEr
+#: formres.src
+msgctxt "RID_STR_ALLOW_ADDITIONS"
+msgid "Allow additions"
+msgstr "Daten hinzufügen"
+
+#. sGmuS
+#: formres.src
+msgctxt "RID_STR_ALLOW_DELETIONS"
+msgid "Allow deletions"
+msgstr "Daten löschen"
+
+#. aDAcN
+#: formres.src
+msgctxt "RID_STR_ALLOW_EDITS"
+msgid "Allow modifications"
+msgstr "Daten ändern"
+
+#. Nj4tN
+#: formres.src
+msgctxt "RID_STR_DATAENTRY"
+msgid "Add data only"
+msgstr "Nur Daten hinzufügen"
+
+#. ZBgMm
+#: formres.src
+msgctxt "RID_STR_DATASOURCE"
+msgid "Data source"
+msgstr "Datenquelle"
+
+#. zM78b
+#: formres.src
+msgctxt "RID_STR_MASTERFIELDS"
+msgid "Link master fields"
+msgstr "Verknüpfen von"
+
+#. Uqp7a
+#: formres.src
+msgctxt "RID_STR_SLAVEFIELDS"
+msgid "Link slave fields"
+msgstr "Verknüpfen nach"
+
+#. H8wCL
+#: formres.src
+msgctxt "RID_STR_VALUEMIN"
+msgid "Value min."
+msgstr "Min. Wert"
+
+#. bMBsj
+#: formres.src
+msgctxt "RID_STR_VALUEMAX"
+msgid "Value max."
+msgstr "Max. Wert"
+
+#. UbLFp
+#: formres.src
+msgctxt "RID_STR_VALUESTEP"
+msgid "Incr./decrement value"
+msgstr "Intervall"
+
+#. FG24h
+#: formres.src
+msgctxt "RID_STR_CURRENCYSYMBOL"
+msgid "Currency symbol"
+msgstr "Währungssymbol"
+
+#. jGLNo
+#: formres.src
+msgctxt "RID_STR_DATEMIN"
+msgid "Date min."
+msgstr "Min. Datum"
+
+#. 9RDE8
+#: formres.src
+msgctxt "RID_STR_DATEMAX"
+msgid "Date max."
+msgstr "Max. Datum"
+
+#. K2vki
+#: formres.src
+msgctxt "RID_STR_DATEFORMAT"
+msgid "Date format"
+msgstr "Datumsformat"
+
+#. 3os2t
+#: formres.src
+msgctxt "RID_STR_SELECTEDITEMS"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. tEcAF
+#: formres.src
+msgctxt "RID_STR_TIMEMIN"
+msgid "Time min."
+msgstr "Min. Zeit"
+
+#. 45V2v
+#: formres.src
+msgctxt "RID_STR_TIMEMAX"
+msgid "Time max."
+msgstr "Max. Zeit"
+
+#. BpCwK
+#: formres.src
+msgctxt "RID_STR_TIMEFORMAT"
+msgid "Time format"
+msgstr "Zeitformat"
+
+#. NUTwz
+#: formres.src
+msgctxt "RID_STR_CURRSYM_POSITION"
+msgid "Prefix symbol"
+msgstr "Symbol voranstellen"
+
+#. hH8tr
+#: formres.src
+msgctxt "RID_STR_VALUE"
+msgid "Value"
+msgstr "Wert"
+
+#. BBmGj
+#: formres.src
+msgctxt "RID_STR_FORMATKEY"
+msgid "Formatting"
+msgstr "Formatierung"
+
+#. DD4EJ
+#: formres.src
+msgctxt "RID_STR_CLASSID"
+msgid "Class ID"
+msgstr "Klassenindex"
+
+#. GkcPB
+#: formres.src
+msgctxt "RID_STR_HEIGHT"
+msgid "Height"
+msgstr "Höhe"
+
+#. 7CmQE
+#: formres.src
+msgctxt "RID_STR_WIDTH"
+msgid "Width"
+msgstr "Breite"
+
+#. QHhCz
+#: formres.src
+msgctxt "RID_STR_LISTINDEX"
+msgid "List index"
+msgstr "ListIndex"
+
+#. LKVvD
+#: formres.src
+msgctxt "RID_STR_ROWHEIGHT"
+msgid "Row height"
+msgstr "Zeilenhöhe"
+
+#. bDeXi
+#: formres.src
+msgctxt "RID_STR_FILLCOLOR"
+msgid "Fill color"
+msgstr "Füllfarbe"
+
+#. g8XyV
+#: formres.src
+msgctxt "RID_STR_LINECOLOR"
+msgid "Line color"
+msgstr "Linienfarbe"
+
+#. 4myGE
+#: formres.src
+msgctxt "RID_STR_REFVALUE"
+msgid "Reference value (on)"
+msgstr "Referenzwert (ein)"
+
+#. MHrgg
+#: formres.src
+msgctxt "RID_STR_UNCHECKEDREFVALUE"
+msgid "Reference value (off)"
+msgstr "Referenzwert (aus)"
+
+#. MqTXJ
+#: formres.src
+msgctxt "RID_STR_STRINGITEMLIST"
+msgid "List entries"
+msgstr "Listen-Einträge"
+
+#. FNaAE
+#: formres.src
+msgctxt "RID_STR_BUTTONTYPE"
+msgid "Action"
+msgstr "Aktion"
+
+#. AhdCi
+#: formres.src
+msgctxt "RID_STR_SUBMIT_ACTION"
+msgid "URL"
+msgstr "URL"
+
+#. SBDs3
+#: formres.src
+msgctxt "RID_STR_SUBMIT_METHOD"
+msgid "Type of submission"
+msgstr "Art des Submits"
+
+#. pQPY9
+#: formres.src
+msgctxt "RID_STR_DEFAULT_STATE"
+msgid "Default status"
+msgstr "Standardstatus"
+
+#. 7PXL5
+#: formres.src
+msgctxt "RID_STR_SUBMIT_ENCODING"
+msgid "Submission encoding"
+msgstr "Kodierung beim Submit"
+
+#. eaUUN
+#: formres.src
+msgctxt "RID_STR_DEFAULTVALUE"
+msgid "Default value"
+msgstr "Standardwert"
+
+#. CMMC4
+#: formres.src
+msgctxt "RID_STR_DEFAULTTEXT"
+msgid "Default text"
+msgstr "Standardtext"
+
+#. CPa5h
+#: formres.src
+msgctxt "RID_STR_DEFAULTDATE"
+msgid "Default date"
+msgstr "Standarddatum"
+
+#. YKckN
+#: formres.src
+msgctxt "RID_STR_DEFAULTTIME"
+msgid "Default time"
+msgstr "Standardzeit"
+
+#. GA9tS
+#: formres.src
+msgctxt "RID_STR_SUBMIT_TARGET"
+msgid "Frame"
+msgstr "Frame"
+
+#. 5ACyV
+#: formres.src
+msgctxt "RID_RSC_ENUM_BORDER_TYPE"
+msgid "Without frame"
+msgstr "Ohne Rahmen"
+
+#. ozfAi
+#: formres.src
+msgctxt "RID_RSC_ENUM_BORDER_TYPE"
+msgid "3D look"
+msgstr "3D-Darstellung"
+
+#. zv7ER
+#: formres.src
+msgctxt "RID_RSC_ENUM_BORDER_TYPE"
+msgid "Flat"
+msgstr "Flach"
+
+#. hLCDu
+#: formres.src
+msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
+msgid "Valuelist"
+msgstr "Werteliste"
+
+#. uEHqn
+#: formres.src
+msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
+msgid "Table"
+msgstr "Tabelle"
+
+#. GxEC7
+#: formres.src
+msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
+msgid "Query"
+msgstr "Abfrage"
+
+#. Espc7
+#: formres.src
+msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
+msgid "Sql"
+msgstr "SQL"
+
+#. GCQne
+#: formres.src
+msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
+msgid "Sql [Native]"
+msgstr "SQL [Nativ]"
+
+#. kMQfy
+#: formres.src
+msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
+msgid "Tablefields"
+msgstr "Tabellenfelder"
+
+#. LXToU
+#: formres.src
+msgctxt "RID_RSC_ENUM_ALIGNMENT"
+msgid "Left"
+msgstr "Links"
+
+#. GdfD5
+#: formres.src
+msgctxt "RID_RSC_ENUM_ALIGNMENT"
+msgid "Center"
+msgstr "Zentriert"
+
+#. CavSj
+#: formres.src
+msgctxt "RID_RSC_ENUM_ALIGNMENT"
+msgid "Right"
+msgstr "Rechts"
+
+#. nAV82
+#: formres.src
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "None"
+msgstr "Keine"
+
+#. FcKuk
+#: formres.src
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Submit form"
+msgstr "Formular übertragen"
+
+#. sUzBS
+#: formres.src
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Reset form"
+msgstr "Formular zurücksetzen"
+
+#. dvtFb
+#: formres.src
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Open document/web page"
+msgstr "Dokument/Webseite öffnen"
+
+#. PfTdk
+#: formres.src
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "First record"
+msgstr "Erster Datensatz"
+
+#. arZzt
+#: formres.src
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Previous record"
+msgstr "Voriger Datensatz"
+
+#. wBVrm
+#: formres.src
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Next record"
+msgstr "Nächster Datensatz"
+
+#. MeCez
+#: formres.src
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Last record"
+msgstr "Letzter Datensatz"
+
+#. DRGF8
+#: formres.src
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Save record"
+msgstr "Datensatz speichern"
+
+#. qA9DX
+#: formres.src
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Undo data entry"
+msgstr "Dateneingabe rückgängig machen"
+
+#. b6Es8
+#: formres.src
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "New record"
+msgstr "Neuer Datensatz"
+
+#. GYDro
+#: formres.src
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Delete record"
+msgstr "Datensatz löschen"
+
+#. Xr2KA
+#: formres.src
+msgctxt "RID_RSC_ENUM_BUTTONTYPE"
+msgid "Refresh form"
+msgstr "Formular aktualisieren"
+
+#. 5vCEP
+#: formres.src
+msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
+msgid "Get"
+msgstr "Abrufen"
+
+#. BJD3u
+#: formres.src
+msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
+msgid "Post"
+msgstr "Senden"
+
+#. o9DBE
+#: formres.src
+msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
+msgid "URL"
+msgstr "URL"
+
+#. 3pmDf
+#: formres.src
+msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
+msgid "Multipart"
+msgstr "Mehrteilig"
+
+#. pBQpv
+#: formres.src
+msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
+msgid "Text"
+msgstr "Text"
+
+#. jDMbK
+#: formres.src
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "Standard (short)"
+msgstr "Standard (kurz)"
+
+#. 22W6Q
+#: formres.src
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "Standard (short YY)"
+msgstr "Standard (kurz JJ)"
+
+#. HDau6
+#: formres.src
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "Standard (short YYYY)"
+msgstr "Standard (kurz JJJJ)"
+
+#. DCJNC
+#: formres.src
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "Standard (long)"
+msgstr "Standard (lang)"
+
+#. DmUmW
+#: formres.src
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "DD/MM/YY"
+msgstr "TT/MM/JJ"
+
+#. GyoSx
+#: formres.src
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "MM/DD/YY"
+msgstr "MM/TT/JJ"
+
+#. PHRWs
+#: formres.src
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "YY/MM/DD"
+msgstr "JJ/MM/TT"
+
+#. 5EDt6
+#: formres.src
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "DD/MM/YYYY"
+msgstr "TT/MM/JJJJ"
+
+#. FdnkZ
+#: formres.src
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "MM/DD/YYYY"
+msgstr "MM/TT/JJJJ"
+
+#. VATg7
+#: formres.src
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "YYYY/MM/DD"
+msgstr "JJJJ/MM/TT"
+
+#. rUJHq
+#: formres.src
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "YY-MM-DD"
+msgstr "JJ-MM-TT"
+
+#. 7vYP9
+#: formres.src
+msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
+msgid "YYYY-MM-DD"
+msgstr "JJJJ-MM-TT"
+
+#. E9sny
+#: formres.src
+msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
+msgid "13:45"
+msgstr "13:45"
+
+#. d2sW3
+#: formres.src
+msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
+msgid "13:45:00"
+msgstr "13:45:00"
+
+#. v6Dq4
+#: formres.src
+msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
+msgid "01:45 PM"
+msgstr "01:45 PM"
+
+#. dSe7J
+#: formres.src
+msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
+msgid "01:45:00 PM"
+msgstr "01:45:00 PM"
+
+#. XzT95
+#: formres.src
+msgctxt "RID_RSC_ENUM_CHECKED"
+msgid "Not Selected"
+msgstr "Nicht ausgewählt"
+
+#. sJ8zY
+#: formres.src
+msgctxt "RID_RSC_ENUM_CHECKED"
+msgid "Selected"
+msgstr "Ausgewählt"
+
+#. aHu75
+#: formres.src
+msgctxt "RID_RSC_ENUM_CHECKED"
+msgid "Not Defined"
+msgstr "Nicht definiert"
+
+#. mhVDA
+#: formres.src
+msgctxt "RID_RSC_ENUM_CYCLE"
+msgid "All records"
+msgstr "Alle Datensätze"
+
+#. eA5iU
+#: formres.src
+msgctxt "RID_RSC_ENUM_CYCLE"
+msgid "Active record"
+msgstr "Aktueller Datensatz"
+
+#. Vkvj9
+#: formres.src
+msgctxt "RID_RSC_ENUM_CYCLE"
+msgid "Current page"
+msgstr "Aktuelle Seite"
+
+#. KhEqV
+#: formres.src
+msgctxt "RID_RSC_ENUM_NAVIGATION"
+msgid "No"
+msgstr "Nein"
+
+#. qS8rc
+#: formres.src
+msgctxt "RID_RSC_ENUM_NAVIGATION"
+msgid "Yes"
+msgstr "Ja"
+
+#. aJXyh
+#: formres.src
+msgctxt "RID_RSC_ENUM_NAVIGATION"
+msgid "Parent Form"
+msgstr "Übergeordnetes Formular"
+
+#. SiMYZ
+#: formres.src
+msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
+msgid "_blank"
+msgstr "_blank"
+
+#. AcsCf
+#: formres.src
+msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
+msgid "_parent"
+msgstr "_parent"
+
+#. pQZAG
+#: formres.src
+msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
+msgid "_self"
+msgstr "_self"
+
+#. FwYDV
+#: formres.src
+msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
+msgid "_top"
+msgstr "_top"
+
+#. UEAHA
+#: formres.src
+msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
+msgid "None"
+msgstr "Keine"
+
+#. YnZQA
+#: formres.src
+msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
+msgid "Single"
+msgstr "Einfach"
+
+#. EMYwE
+#: formres.src
+msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
+msgid "Multi"
+msgstr "Mehrfach"
+
+#. 2x8ru
+#: formres.src
+msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
+msgid "Range"
+msgstr "Bereich"
+
+#. PVVwo
+#: formres.src
+msgctxt "RID_STR_EVT_APPROVEPARAMETER"
+msgid "Fill parameters"
+msgstr "Parameter füllen"
+
+#. 2Equg
+#: formres.src
+msgctxt "RID_STR_EVT_ACTIONPERFORMED"
+msgid "Execute action"
+msgstr "Aktion ausführen"
+
+#. 8zYjm
+#: formres.src
+msgctxt "RID_STR_EVT_AFTERUPDATE"
+msgid "After updating"
+msgstr "Nach dem Aktualisieren"
+
+#. GYfhy
+#: formres.src
+msgctxt "RID_STR_EVT_BEFOREUPDATE"
+msgid "Before updating"
+msgstr "Vor dem Aktualisieren"
+
+#. dY5sz
+#: formres.src
+msgctxt "RID_STR_EVT_APPROVEROWCHANGE"
+msgid "Before record action"
+msgstr "Vor der Datensatzaktion"
+
+#. dMUbv
+#: formres.src
+msgctxt "RID_STR_EVT_ROWCHANGE"
+msgid "After record action"
+msgstr "Nach der Datensatzaktion"
+
+#. hwdPA
+#: formres.src
+msgctxt "RID_STR_EVT_CONFIRMDELETE"
+msgid "Confirm deletion"
+msgstr "Löschen bestätigen"
+
+#. 9AsbQ
+#: formres.src
+msgctxt "RID_STR_EVT_ERROROCCURRED"
+msgid "Error occurred"
+msgstr "Fehler aufgetreten"
+
+#. DnjE2
+#: formres.src
+msgctxt "RID_STR_EVT_FOCUSGAINED"
+msgid "When receiving focus"
+msgstr "Bei Fokuserhalt"
+
+#. eCKWw
+#: formres.src
+msgctxt "RID_STR_EVT_FOCUSLOST"
+msgid "When losing focus"
+msgstr "Bei Fokusverlust"
+
+#. 3d7Bg
+#: formres.src
+msgctxt "RID_STR_EVT_ITEMSTATECHANGED"
+msgid "Item status changed"
+msgstr "Status geändert"
+
+#. LBsFA
+#: formres.src
+msgctxt "RID_STR_EVT_KEYTYPED"
+msgid "Key pressed"
+msgstr "Taste gedrückt"
+
+#. DYKVm
+#: formres.src
+msgctxt "RID_STR_EVT_KEYUP"
+msgid "Key released"
+msgstr "Taste losgelassen"
+
+#. uBXKv
+#: formres.src
+msgctxt "RID_STR_EVT_LOADED"
+msgid "When loading"
+msgstr "Beim Laden"
+
+#. Ugzij
+#: formres.src
+msgctxt "RID_STR_EVT_RELOADING"
+msgid "Before reloading"
+msgstr "Vor dem erneuten Laden"
+
+#. zDeoS
+#: formres.src
+msgctxt "RID_STR_EVT_RELOADED"
+msgid "When reloading"
+msgstr "Beim erneuten Laden"
+
+#. yCrwv
+#: formres.src
+msgctxt "RID_STR_EVT_MOUSEDRAGGED"
+msgid "Mouse moved while key pressed"
+msgstr "Mausbewegung bei Tastendruck"
+
+#. BNfWE
+#: formres.src
+msgctxt "RID_STR_EVT_MOUSEENTERED"
+msgid "Mouse inside"
+msgstr "Maus innerhalb"
+
+#. MgEpA
+#: formres.src
+msgctxt "RID_STR_EVT_MOUSEEXITED"
+msgid "Mouse outside"
+msgstr "Maus außerhalb"
+
+#. QYT5q
+#: formres.src
+msgctxt "RID_STR_EVT_MOUSEMOVED"
+msgid "Mouse moved"
+msgstr "Mausbewegung"
+
+#. GFtYU
+#: formres.src
+msgctxt "RID_STR_EVT_MOUSEPRESSED"
+msgid "Mouse button pressed"
+msgstr "Maustaste gedrückt"
+
+#. wpTwF
+#: formres.src
+msgctxt "RID_STR_EVT_MOUSERELEASED"
+msgid "Mouse button released"
+msgstr "Maustaste losgelassen"
+
+#. 8u2x3
+#: formres.src
+msgctxt "RID_STR_EVT_POSITIONING"
+msgid "Before record change"
+msgstr "Vor dem Datensatzwechsel"
+
+#. EpU4C
+#: formres.src
+msgctxt "RID_STR_EVT_POSITIONED"
+msgid "After record change"
+msgstr "Nach dem Datensatzwechsel"
+
+#. idGKb
+#: formres.src
+msgctxt "RID_STR_EVT_RESETTED"
+msgid "After resetting"
+msgstr "Nach dem Zurücksetzen"
+
+#. QfBws
+#: formres.src
+msgctxt "RID_STR_EVT_APPROVERESETTED"
+msgid "Prior to reset"
+msgstr "Vor dem Zurücksetzen"
+
+#. mkNYF
+#: formres.src
+msgctxt "RID_STR_EVT_APPROVEACTIONPERFORMED"
+msgid "Approve action"
+msgstr "Aktion bestätigen"
+
+#. CzJTo
+#: formres.src
+msgctxt "RID_STR_EVT_SUBMITTED"
+msgid "Before submitting"
+msgstr "Vor dem Submit"
+
+#. DG7uB
+#: formres.src
+msgctxt "RID_STR_EVT_TEXTCHANGED"
+msgid "Text modified"
+msgstr "Text modifiziert"
+
+#. RmUub
+#: formres.src
+msgctxt "RID_STR_EVT_UNLOADING"
+msgid "Before unloading"
+msgstr "Vor dem Entladen"
+
+#. B6LHh
+#: formres.src
+msgctxt "RID_STR_EVT_UNLOADED"
+msgid "When unloading"
+msgstr "Beim Entladen"
+
+#. GLDZA
+#: formres.src
+msgctxt "RID_STR_EVT_CHANGED"
+msgid "Changed"
+msgstr "Modifiziert"
+
+#. AV5cw
+#: formres.src
+msgctxt "RID_STR_EVENTS"
+msgid "Events"
+msgstr "Ereignisse"
+
+#. fDtsB
+#: formres.src
+msgctxt "RID_STR_ESCAPE_PROCESSING"
+msgid "Analyze SQL command"
+msgstr "SQL-Befehl analysieren"
+
+#. cjrCr
+#: formres.src
+msgctxt "RID_STR_POSITIONX"
+msgid "PositionX"
+msgstr "PositionX"
+
+#. Ne7ig
+#: formres.src
+msgctxt "RID_STR_POSITIONY"
+msgid "PositionY"
+msgstr "PositionY"
+
+#. eMYyj
+#: formres.src
+msgctxt "RID_STR_TITLE"
+msgid "Title"
+msgstr "Titel"
+
+#. LRwrC
+#: formres.src
+msgctxt "RID_STR_STEP"
+msgid "Page (step)"
+msgstr "Seite (Step)"
+
+#. FqFGA
+#: formres.src
+msgctxt "RID_STR_PROGRESSVALUE"
+msgid "Progress value"
+msgstr "Fortschrittswert"
+
+#. ANNqu
+#: formres.src
+msgctxt "RID_STR_PROGRESSVALUE_MIN"
+msgid "Progress value min."
+msgstr "Min. Fortschrittswert"
+
+#. FbTmE
+#: formres.src
+msgctxt "RID_STR_PROGRESSVALUE_MAX"
+msgid "Progress value max."
+msgstr "Max. Fortschrittswert"
+
+#. RjzXS
+#: formres.src
+msgctxt "RID_STR_SCROLLVALUE"
+msgid "Scroll value"
+msgstr "Bildlaufwert"
+
+#. hyc56
+#: formres.src
+msgctxt "RID_STR_SCROLLVALUE_MAX"
+msgid "Scroll value max."
+msgstr "Max. Bildlaufwert"
+
+#. dnBH5
+#: formres.src
+msgctxt "RID_STR_SCROLLVALUE_MIN"
+msgid "Scroll value min."
+msgstr "Min. Bildlaufwert"
+
+#. ZZCg2
+#: formres.src
+msgctxt "RID_STR_SCROLL_WIDTH"
+msgid "Scroll width"
+msgstr "Bildlaufbreite"
+
+#. TeXcA
+#: formres.src
+msgctxt "RID_STR_SCROLL_HEIGHT"
+msgid "Scroll height"
+msgstr "Bildlaufhöhe"
+
+#. AbLFF
+#: formres.src
+msgctxt "RID_STR_SCROLL_TOP"
+msgid "Scroll top"
+msgstr "Nach oben rollen"
+
+#. MNqpF
+#: formres.src
+msgctxt "RID_STR_SCROLL_LEFT"
+msgid "Scroll left"
+msgstr "Nach links rollen"
+
+#. AiiGJ
+#: formres.src
+msgctxt "RID_STR_DEFAULT_SCROLLVALUE"
+msgid "Default scroll value"
+msgstr "Standard Bildlaufwert"
+
+#. UYujs
+#: formres.src
+msgctxt "RID_STR_LINEINCREMENT"
+msgid "Small change"
+msgstr "Kleine Änderung"
+
+#. JVkgq
+#: formres.src
+msgctxt "RID_STR_BLOCKINCREMENT"
+msgid "Large change"
+msgstr "Große Änderung"
+
+#. UM49A
+#: formres.src
+msgctxt "RID_STR_REPEAT_DELAY"
+msgid "Delay"
+msgstr "Verzögerung"
+
+#. fLtpy
+#: formres.src
+msgctxt "RID_STR_REPEAT"
+msgid "Repeat"
+msgstr "Wiederholung"
+
+#. EBBEn
+#: formres.src
+msgctxt "RID_STR_VISIBLESIZE"
+msgid "Visible size"
+msgstr "Sichtbare Größe"
+
+#. NrRgw
+#: formres.src
+msgctxt "RID_STR_ORIENTATION"
+msgid "Orientation"
+msgstr "Ausrichtung"
+
+#. 8dCg5
+#: formres.src
+msgctxt "RID_RSC_ENUM_ORIENTATION"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#. Z5BR2
+#: formres.src
+msgctxt "RID_RSC_ENUM_ORIENTATION"
+msgid "Vertical"
+msgstr "Vertikal"
+
+#. N3cQC
+#: formres.src
+msgctxt "RID_STR_EVT_ADJUSTMENTVALUECHANGED"
+msgid "While adjusting"
+msgstr "Beim Justieren"
+
+#. dySsR
+#: formres.src
+msgctxt "RID_STR_DATE"
+msgid "Date"
+msgstr "Datum"
+
+#. 8rygd
+#: formres.src
+msgctxt "RID_STR_STATE"
+msgid "State"
+msgstr "Status"
+
+#. ESC4H
+#: formres.src
+msgctxt "RID_STR_TIME"
+msgid "Time"
+msgstr "Zeit"
+
+#. bpNxN
+#: formres.src
+msgctxt "RID_STR_SCALEIMAGE"
+msgid "Scale"
+msgstr "Skalieren"
+
+#. WHJwh
+#: formres.src
+msgctxt "RID_STR_PUSHBUTTONTYPE"
+msgid "Button type"
+msgstr "Art der Schaltfläche"
+
+#. BFfMD
+#: formres.src
+msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
+msgid "Default"
+msgstr "Standard"
+
+#. eponH
+#: formres.src
+msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
+msgid "OK"
+msgstr "OK"
+
+#. UkTKy
+#: formres.src
+msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#. yG859
+#: formres.src
+msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
+msgid "Help"
+msgstr "Hilfe"
+
+#. 9QDWr
+#: formres.src
+msgctxt "RID_STR_UNABLETOCONNECT"
+msgid "The connection to the data source \"$name$\" could not be established."
+msgstr ""
+"Die Verbindung zur Datenquelle \"$name$\" konnte nicht hergestellt werden."
+
+#. q3GEA
+#: formres.src
+msgctxt "RID_STR_TEXT"
+msgid "Text"
+msgstr "Text"
+
+#. 2dY2G
+#: formres.src
+msgctxt "RID_STR_BOUND_CELL"
+msgid "Linked cell"
+msgstr "Verknüpfte Zelle"
+
+#. PPw9L
+#: formres.src
+msgctxt "RID_STR_LIST_CELL_RANGE"
+msgid "Source cell range"
+msgstr "Quellzellenbereich"
+
+#. Fmnnf
+#: formres.src
+msgctxt "RID_STR_CELL_EXCHANGE_TYPE"
+msgid "Contents of the linked cell"
+msgstr "Inhalt der verknüpften Zelle"
+
+#. vgkaF
+#: formres.src
+msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
+msgid "The selected entry"
+msgstr "Der ausgewählte Eintrag"
+
+#. pEAGX
+#: formres.src
+msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
+msgid "Position of the selected entry"
+msgstr "Position des ausgewählten Eintrags"
+
+#. ohCkB
+#: formres.src
+msgctxt "RID_STR_SHOW_SCROLLBARS"
+msgid "Scrollbars"
+msgstr "Bildlaufleisten"
+
+#. Z2Rwm
+#: formres.src
+msgctxt "RID_RSC_ENUM_TEXTTYPE"
+msgid "Single-line"
+msgstr "Einzeilig"
+
+#. 7MQto
+#: formres.src
+msgctxt "RID_RSC_ENUM_TEXTTYPE"
+msgid "Multi-line"
+msgstr "Mehrzeilig"
+
+#. 6D2rQ
+#: formres.src
+msgctxt "RID_RSC_ENUM_TEXTTYPE"
+msgid "Multi-line with formatting"
+msgstr "Mehrzeilig mit Formatierung"
+
+#. MkadC
+#: formres.src
+msgctxt "RID_STR_SYMBOLCOLOR"
+msgid "Symbol color"
+msgstr "Symbolfarbe"
+
+#. vdiaB
+#: formres.src
+msgctxt "RID_STR_LINEEND_FORMAT"
+msgid "Text lines end with"
+msgstr "Textzeilen enden mit"
+
+#. NkEBb
+#: formres.src
+msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
+msgid "LF (Unix)"
+msgstr "LF (Unix)"
+
+#. FfSEG
+#: formres.src
+msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
+msgid "CR+LF (Windows)"
+msgstr "CR+LF (Windows)"
+
+#. A4N7i
+#: formres.src
+msgctxt "RID_RSC_ENUM_SCROLLBARS"
+msgid "None"
+msgstr "Keine"
+
+#. ghkcH
+#: formres.src
+msgctxt "RID_RSC_ENUM_SCROLLBARS"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#. YNNCf
+#: formres.src
+msgctxt "RID_RSC_ENUM_SCROLLBARS"
+msgid "Vertical"
+msgstr "Vertikal"
+
+#. gWynn
+#: formres.src
+msgctxt "RID_RSC_ENUM_SCROLLBARS"
+msgid "Both"
+msgstr "Beide"
+
+#. cBx8W
+#: formres.src
+msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
+msgid "Table"
+msgstr "Tabelle"
+
+#. 8SwUG
+#: formres.src
+msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
+msgid "Query"
+msgstr "Abfrage"
+
+#. FrQBJ
+#: formres.src
+msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
+msgid "SQL command"
+msgstr "SQL-Befehl"
+
+#. E46nt
+#: formres.src
+msgctxt "RID_STR_TOGGLE"
+msgid "Toggle"
+msgstr "Umschalten"
+
+#. 2RSKH
+#: formres.src
+msgctxt "RID_STR_FOCUSONCLICK"
+msgid "Take Focus on Click"
+msgstr "Fokussieren bei Klick"
+
+#. 9aMBC
+#: formres.src
+msgctxt "RID_STR_HIDEINACTIVESELECTION"
+msgid "Hide selection"
+msgstr "Auswahl verstecken"
+
+#. H44GG
+#: formres.src
+msgctxt "RID_STR_VISUALEFFECT"
+msgid "Style"
+msgstr "Stil"
+
+#. GLuPa
+#: formres.src
+msgctxt "RID_RSC_ENUM_VISUALEFFECT"
+msgid "3D"
+msgstr "3D"
+
+#. TFnZJ
+#: formres.src
+msgctxt "RID_RSC_ENUM_VISUALEFFECT"
+msgid "Flat"
+msgstr "Flach"
+
+#. wwWir
+#: formres.src
+msgctxt "RID_STR_BORDERCOLOR"
+msgid "Border color"
+msgstr "Umrandungsfarbe"
+
+#. PmSDw
+#: formres.src
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Left top"
+msgstr "Links oben"
+
+#. j3mHa
+#: formres.src
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Left centered"
+msgstr "Links mittig"
+
+#. FinKD
+#: formres.src
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Left bottom"
+msgstr "Links unten"
+
+#. EgCsU
+#: formres.src
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Right top"
+msgstr "Rechts oben"
+
+#. t54wS
+#: formres.src
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Right centered"
+msgstr "Rechts mittig"
+
+#. H8u3j
+#: formres.src
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Right bottom"
+msgstr "Rechts unten"
+
+#. jhRkY
+#: formres.src
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Above left"
+msgstr "Oben links"
+
+#. dmgVh
+#: formres.src
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Above centered"
+msgstr "Oben zentriert"
+
+#. AGtAi
+#: formres.src
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Above right"
+msgstr "Oben rechts"
+
+#. F2XCu
+#: formres.src
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Below left"
+msgstr "Unten links"
+
+#. 4JdJh
+#: formres.src
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Below centered"
+msgstr "Unten zentriert"
+
+#. chEB2
+#: formres.src
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Below right"
+msgstr "Unten rechts"
+
+#. GBHDS
+#: formres.src
+msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
+msgid "Centered"
+msgstr "Zentriert"
+
+#. DV4DC
+#: formres.src
+msgctxt "RID_STR_AUTOLINEBREAK"
+msgid "Wrap text automatically"
+msgstr "Automatischer Zeilenumbruch"
+
+#. z75U5
+#: formres.src
+msgctxt "RID_STR_TEXTTYPE"
+msgid "Text type"
+msgstr "Text-Typ"
+
+#. hEBQd
+#: formres.src
+msgctxt "RID_RSC_ENUM_SHOWHIDE"
+msgid "Hide"
+msgstr "Verbergen"
+
+#. 6NMuP
+#: formres.src
+msgctxt "RID_RSC_ENUM_SHOWHIDE"
+msgid "Show"
+msgstr "Zeigen"
+
+#. o6UBB
+#: formres.src
+msgctxt "RID_STR_XML_DATA_MODEL"
+msgid "XML data model"
+msgstr "XML-Datenmodell"
+
+#. ssMM9
+#: formres.src
+msgctxt "RID_STR_BIND_EXPRESSION"
+msgid "Binding expression"
+msgstr "Bindungsausdruck"
+
+#. JFffE
+#: formres.src
+msgctxt "RID_STR_XSD_REQUIRED"
+msgid "Required"
+msgstr "Erforderlich"
+
+#. 4xTLb
+#: formres.src
+msgctxt "RID_STR_LIST_BINDING"
+msgid "List entry source"
+msgstr "Listeneinträge aus"
+
+#. iFFKB
+#: formres.src
+msgctxt "RID_STR_XSD_RELEVANT"
+msgid "Relevant"
+msgstr "Relevant"
+
+#. HAoCU
+#: formres.src
+msgctxt "RID_STR_XSD_READONLY"
+msgid "Read-only"
+msgstr "Nur lesen"
+
+#. woANr
+#: formres.src
+msgctxt "RID_STR_XSD_CONSTRAINT"
+msgid "Constraint"
+msgstr "Bedingung"
+
+#. vQtAK
+#: formres.src
+msgctxt "RID_STR_XSD_CALCULATION"
+msgid "Calculation"
+msgstr "Berechnung"
+
+#. foAEA
+#: formres.src
+msgctxt "RID_STR_XSD_DATA_TYPE"
+msgid "Data type"
+msgstr "Datentyp"
+
+#. jtrXQ
+#: formres.src
+msgctxt "RID_STR_XSD_WHITESPACES"
+msgid "Whitespaces"
+msgstr "Leerzeichen"
+
+#. tB6AD
+#: formres.src
+msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
+msgid "Preserve"
+msgstr "Erhalten"
+
+#. CABAr
+#: formres.src
+msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
+msgid "Replace"
+msgstr "Ersetzen"
+
+#. MQHED
+#: formres.src
+msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
+msgid "Collapse"
+msgstr "Zusammenfassen"
+
+#. JQ2uu
+#: formres.src
+msgctxt "RID_STR_XSD_PATTERN"
+msgid "Pattern"
+msgstr "Muster"
+
+#. 6wdkA
+#: formres.src
+msgctxt "RID_STR_XSD_LENGTH"
+msgid "Length"
+msgstr "Länge"
+
+#. 8ejNn
+#: formres.src
+msgctxt "RID_STR_XSD_MIN_LENGTH"
+msgid "Length (at least)"
+msgstr "Länge (mindestens)"
+
+#. boExf
+#: formres.src
+msgctxt "RID_STR_XSD_MAX_LENGTH"
+msgid "Length (at most)"
+msgstr "Länge (höchstens)"
+
+#. Wa9rP
+#: formres.src
+msgctxt "RID_STR_XSD_TOTAL_DIGITS"
+msgid "Digits (total)"
+msgstr "Ziffern (gesamt)"
+
+#. sDFSL
+#: formres.src
+msgctxt "RID_STR_XSD_FRACTION_DIGITS"
+msgid "Digits (fraction)"
+msgstr "(Nachkomma-) Stellen"
+
+#. wQDr6
+#: formres.src
+msgctxt "RID_STR_XSD_MAX_INCLUSIVE"
+msgid "Max. (inclusive)"
+msgstr "Max. (einschl.)"
+
+#. 3jQPD
+#: formres.src
+msgctxt "RID_STR_XSD_MAX_EXCLUSIVE"
+msgid "Max. (exclusive)"
+msgstr "Max. (ausschl.)"
+
+#. NMYbW
+#: formres.src
+msgctxt "RID_STR_XSD_MIN_INCLUSIVE"
+msgid "Min. (inclusive)"
+msgstr "Min. (einschl.)"
+
+#. VnnDf
+#: formres.src
+msgctxt "RID_STR_XSD_MIN_EXCLUSIVE"
+msgid "Min. (exclusive)"
+msgstr "Min. (ausschl.)"
+
+#. xdhhB
+#: formres.src
+msgctxt "RID_STR_SUBMISSION_ID"
+msgid "Submission"
+msgstr "Submission"
+
+#. AmzAA
+#: formres.src
+msgctxt "RID_STR_BINDING_UI_NAME"
+msgid "Binding"
+msgstr "Bindung"
+
+#. iFT5m
+#: formres.src
+msgctxt "RID_STR_SELECTION_TYPE"
+msgid "Selection type"
+msgstr "Auswahlart"
+
+#. JEmJF
+#: formres.src
+msgctxt "RID_STR_ROOT_DISPLAYED"
+msgid "Root displayed"
+msgstr "Wurzel anzeigen"
+
+#. CSyBv
+#: formres.src
+msgctxt "RID_STR_SHOWS_HANDLES"
+msgid "Show handles"
+msgstr "Linien anzeigen"
+
+#. cEG7h
+#: formres.src
+msgctxt "RID_STR_SHOWS_ROOT_HANDLES"
+msgid "Show root handles"
+msgstr "Linien für Wurzel anzeigen"
+
+#. zWTZe
+#: formres.src
+msgctxt "RID_STR_EDITABLE"
+msgid "Editable"
+msgstr "Bearbeitbar"
+
+#. BS3Fi
+#: formres.src
+msgctxt "RID_STR_INVOKES_STOP_NOT_EDITING"
+msgid "Invokes stop node editing"
+msgstr "Geänderte Knoten speichern"
+
+#. Cb7FA
+#: formres.src
+msgctxt "RID_STR_DECORATION"
+msgid "With title bar"
+msgstr "Mit Titelleiste"
+
+#. 6wGA6
+#: formres.src
+msgctxt "RID_STR_NOLABEL"
+msgid "No Label"
+msgstr "Kein Bezeichner"
+
+#. 2Kaax
+#: formres.src
+msgctxt "RID_RSC_ENUM_SCALE_MODE"
+msgid "No"
+msgstr "Nein"
+
+#. aKBSe
+#: formres.src
+msgctxt "RID_RSC_ENUM_SCALE_MODE"
+msgid "Keep Ratio"
+msgstr "Größenverhältnis beibehalten"
+
+#. FHmy6
+#: formres.src
+msgctxt "RID_RSC_ENUM_SCALE_MODE"
+msgid "Fit to Size"
+msgstr "Automatische Größe"
+
+#. NmK7c
+#: formres.src
+msgctxt "RID_STR_INPUT_REQUIRED"
+msgid "Input required"
+msgstr "Eingabe erforderlich"
+
+#. ePSCX
+#: formres.src
+msgctxt "RID_STR_WRITING_MODE"
+msgid "Text direction"
+msgstr "Textfluss"
+
+#. 9YCAp
+#: formres.src
+msgctxt "RID_RSC_ENUM_WRITING_MODE"
+msgid "Left-to-right"
+msgstr "Links-nach-Rechts"
+
+#. xGDY3
+#: formres.src
+msgctxt "RID_RSC_ENUM_WRITING_MODE"
+msgid "Right-to-left"
+msgstr "Rechts-nach-Links"
+
+#. 4qSdq
+#: formres.src
+msgctxt "RID_RSC_ENUM_WRITING_MODE"
+msgid "Use superordinate object settings"
+msgstr "Einstellungen des übergeordneten Objekts verwenden"
+
+#. LZ36B
+#: formres.src
+msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
+msgid "Never"
+msgstr "Nie"
+
+#. cGY5n
+#: formres.src
+msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
+msgid "When focused"
+msgstr "Wenn ausgewählt"
+
+#. YXySA
+#: formres.src
+msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
+msgid "Always"
+msgstr "Immer"
+
+#. YoyL2
+#: formres.src
+msgctxt "RID_STR_ANCHOR_TYPE"
+msgid "Anchor"
+msgstr "Verankerung"
+
+#. kFhs9
+#: formres.src
+msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
+msgid "To Paragraph"
+msgstr "Am Absatz"
+
+#. WZ2Yp
+#: formres.src
+msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
+msgid "As Character"
+msgstr "Als Zeichen"
+
+#. CXbfQ
+#: formres.src
+msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
+msgid "To Page"
+msgstr "An der Seite"
+
+#. cQn8Y
+#: formres.src
+msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
+msgid "To Frame"
+msgstr "Am Rahmen"
+
+#. 5nPDY
+#: formres.src
+msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
+msgid "To Character"
+msgstr "Am Zeichen"
+
+#. SrTFR
+#: formres.src
+msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
+msgid "To Page"
+msgstr "An der Seite"
+
+#. UyCfS
+#: formres.src
+msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
+msgid "To Cell"
+msgstr "An der Zelle"
+
+#. 6ZJaR
+#: formres.src
+msgctxt "RID_STR_FONTSTYLE_REGULAR"
+msgid "Regular"
+msgstr "Standard"
+
+#. Jq54X
+#: formres.src
+msgctxt "RID_STR_FONTSTYLE_BOLD_ITALIC"
+msgid "Bold Italic"
+msgstr "Fett Kursiv"
+
+#. 2PqQ2
+#: formres.src
+msgctxt "RID_STR_FONTSTYLE_ITALIC"
+msgid "Italic"
+msgstr "Kursiv"
+
+#. J6f4C
+#: formres.src
+msgctxt "RID_STR_FONTSTYLE_BOLD"
+msgid "Bold"
+msgstr "Fett"
+
+#. gWAyM
+#: formres.src
+msgctxt "RID_STR_FONT_DEFAULT"
+msgid "(Default)"
+msgstr "(Standard)"
+
+#. AnnUr
+#: pcrmiscres.src
+msgctxt "RID_STR_CONFIRM_DELETE_DATA_TYPE"
+msgid ""
+"Do you want to delete the data type '#type#' from the model?\n"
+"Please note that this will affect all controls which are bound to this data type."
+msgstr ""
+"Möchten Sie den Datentype '#type#' aus dem Modell löschen?\n"
+"Beachten Sie, dass alle Steuerelemente betroffen sein werden, die mit diesem Datentyp verbunden sind."
+
+#. zaduD
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Button"
+msgstr "Schaltfläche"
+
+#. TreFC
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr "Optionsfeld"
+
+#. CBmAL
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_CHECKBOX"
+msgid "Check Box"
+msgstr "Markierfeld"
+
+#. NFysA
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr "Beschriftungsfeld"
+
+#. E5mMK
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr "Gruppierungsrahmen"
+
+#. ZGDAr
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr "Textfeld"
+
+#. DEn9D
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr "Formatiertes Feld"
+
+#. WiNUf
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_LISTBOX"
+msgid "List Box"
+msgstr "Listenfeld"
+
+#. xwuJF
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr "Kombinationsfeld"
+
+#. 5474w
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr "Grafische Schaltfläche"
+
+#. ypu3s
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_HIDDENCONTROL"
+msgid "Hidden Control"
+msgstr "Verstecktes Steuerelement"
+
+#. oXGS4
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_UNKNOWNCONTROL"
+msgid "Control (unknown type)"
+msgstr "Steuerelement (unbekannter Typ)"
+
+#. qT2Ed
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr "Grafisches Steuerelement"
+
+#. 6Qvho
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "Dateiauswahl"
+
+#. a7gAj
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_DATEFIELD"
+msgid "Date Field"
+msgstr "Datumsfeld"
+
+#. EaBTj
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
+msgid "Time Field"
+msgstr "Zeitfeld"
+
+#. DWfsm
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
+msgid "Numeric Field"
+msgstr "Numerisches Feld"
+
+#. TYjnr
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
+msgid "Currency Field"
+msgstr "Währungsfeld"
+
+#. B6MEP
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
+msgid "Pattern Field"
+msgstr "Maskiertes Feld"
+
+#. uEYBR
+#: pcrmiscres.src
+msgctxt "RID_STR_PROPTITLE_DBGRID"
+msgid "Table Control "
+msgstr "Tabellen-Kontrollfeld "
+
+#. r6Tmp
+#: propres.src
+msgctxt "RID_STR_STANDARD"
+msgid "Default"
+msgstr "Standard"
+
+#. NaDFE
+#: propres.src
+msgctxt "RID_STR_PROPPAGE_DEFAULT"
+msgid "General"
+msgstr "Allgemein"
+
+#. TkocD
+#: propres.src
+msgctxt "RID_STR_PROPPAGE_DATA"
+msgid "Data"
+msgstr "Daten"
+
+#. D7TVx
+#: propres.src
+msgctxt "RID_RSC_ENUM_YESNO"
+msgid "No"
+msgstr "Nein"
+
+#. QDUNB
+#: propres.src
+msgctxt "RID_RSC_ENUM_YESNO"
+msgid "Yes"
+msgstr "Ja"
+
+#. Axmi5
+#: propres.src
+msgctxt "RID_STR_HELP_SECTION_LABEL"
+msgid "Help"
+msgstr "Hilfe"
+
+#. PXnH5
+#: propres.src
+msgctxt "RID_EMBED_IMAGE_PLACEHOLDER"
+msgid "<Embedded-Image>"
+msgstr "<Eingebettetes Bild>"
+
+#. jTsR3
+#: propres.src
+msgctxt "RID_STR_TEXT_FORMAT"
+msgid "Text"
+msgstr "Text"
+
+#. w4wm8
+#: selectlabeldialog.src
+msgctxt "RID_STR_FORMS"
+msgid "Forms"
+msgstr "Formulare"
+
+#. nU8Np
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_CHECKING"
+msgid "Checking..."
+msgstr "Suche läuft..."
+
+#. iLLX8
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_CHECKING_ERR"
+msgid "Checking for an update failed."
+msgstr "Die Suche nach einem Update ist fehlgeschlagen."
+
+#. sefJb
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_NO_UPD_FOUND"
+msgid "%PRODUCTNAME %PRODUCTVERSION is up to date."
+msgstr "%PRODUCTNAME %PRODUCTVERSION ist auf dem neuesten Stand."
+
+#. QWgtQ
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_UPD_FOUND"
+msgid ""
+"%PRODUCTNAME %NEXTVERSION is available.\n"
+"\n"
+"The installed version is %PRODUCTNAME %PRODUCTVERSION.\n"
+"\n"
+"Note: Before downloading an update, please ensure that you have sufficient access rights to install it.\n"
+"A password, usually the administrator's or root password, may be required."
+msgstr ""
+"%PRODUCTNAME %NEXTVERSION ist verfügbar.\n"
+"\n"
+"Die installierte Version ist %PRODUCTNAME %PRODUCTVERSION.\n"
+"\n"
+"Hinweis: Bevor Sie ein Update herunterladen, vergewissern Sie sich, dass Sie die benötigten Rechte zur Installation haben.\n"
+"Ein Kennwort, normalerweise das Administrator-Kennwort oder das root-Kennwort, könnte erforderlich sein."
+
+#. aPRNZ
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_DLG_TITLE"
+msgid "Check for Updates"
+msgstr "Suche nach Updates"
+
+#. CFVDi
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_DOWNLOAD_PAUSE"
+msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
+msgstr "Herunterladen von %PRODUCTNAME %NEXTVERSION angehalten bei..."
+
+#. cjcFw
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_DOWNLOAD_ERR"
+msgid "Downloading %PRODUCTNAME %NEXTVERSION stalled at"
+msgstr "Herunterladen von %PRODUCTNAME %NEXTVERSION unterbrochen bei"
+
+#. a5cGp
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_DOWNLOAD_WARN"
+msgid ""
+"The download location is: %DOWNLOAD_PATH.\n"
+"\n"
+"Under Tools – Options... - %PRODUCTNAME – Online Update you can change the download location."
+msgstr ""
+"Der Speicherort ist: %DOWNLOAD_PATH.\n"
+"\n"
+"Sie können den Speicherort unter Extras – Optionen... - %PRODUCTNAME – Online Update ändern."
+
+#. rjSF9
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_DOWNLOAD_DESCR"
+msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH."
+msgstr "%FILE_NAME wurde nach %DOWNLOAD_PATH herunter geladen."
+
+#. Q7mtx
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_DOWNLOAD_UNAVAIL"
+msgid ""
+"The automatic download of the update is currently not available.\n"
+"\n"
+"Click 'Download...' to download %PRODUCTNAME %NEXTVERSION manually from the web site."
+msgstr ""
+"Das automatische Herunterladen des Updates ist momentan nicht verfügbar.\n"
+"\n"
+"Klicken Sie auf 'Herunterladen...', um %PRODUCTNAME %NEXTVERSION manuell herunterzuladen."
+
+#. D9AH2
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_DOWNLOADING"
+msgid "Downloading %PRODUCTNAME %NEXTVERSION..."
+msgstr "Herunterladen von %PRODUCTNAME %NEXTVERSION..."
+
+#. VFs93
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_READY_INSTALL"
+msgid ""
+"Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
+msgstr ""
+"Das Herunterladen von %PRODUCTNAME %NEXTVERSION ist abgeschlossen. Bereit "
+"zur Installation."
+
+#. eZFLV
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_CANCEL_TITLE"
+msgid "%PRODUCTNAME %PRODUCTVERSION"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
+
+#. J4owe
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_CANCEL_DOWNLOAD"
+msgid "Do you really want to cancel the download?"
+msgstr "Möchten Sie das Herunterladen wirklich abbrechen?"
+
+#. LSVZ5
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_BEGIN_INSTALL"
+msgid ""
+"To install the update, %PRODUCTNAME %PRODUCTVERSION needs to be closed. Do "
+"you want to install the update now?"
+msgstr ""
+"Zur Installation des Updates wird %PRODUCTNAME %PRODUCTVERSION beendet. "
+"Möchten Sie das Update jetzt installieren?"
+
+#. qELsa
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_INSTALL_NOW"
+msgid "Install ~now"
+msgstr "~Jetzt installieren"
+
+#. FHBFE
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_INSTALL_LATER"
+msgid "Install ~later"
+msgstr "~Später installieren"
+
+#. Z8pFW
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_INSTALL_ERROR"
+msgid ""
+"Could not run the installer application, please run %FILE_NAME in "
+"%DOWNLOAD_PATH manually."
+msgstr ""
+"Das Installationsprogramm konnte nicht gestartet werden, bitte starten Sie "
+"%FILE_NAME im Verzeichnis %DOWNLOAD_PATH manuell."
+
+#. uDjTe
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_OVERWRITE_WARNING"
+msgid ""
+"A file with that name already exists! Do you want to overwrite the existing "
+"file?"
+msgstr ""
+"Es existiert bereits eine Datei mit gleichem Namen. Möchten Sie die "
+"bestehende Datei überschreiben?"
+
+#. 5trUL
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_RELOAD_WARNING"
+msgid ""
+"A file with the name '%FILENAME' already exists in '%DOWNLOAD_PATH'! Do you "
+"want to continue with the download or delete and reload the file?"
+msgstr ""
+"Es existiert bereits eine Datei '%FILENAME' im Verzeichnis '%DOWNLOAD_PATH'!"
+" Möchten Sie das Herunterladen fortsetzen oder die Datei löschen und erneut "
+"herunterladen?"
+
+#. mPGGT
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_RELOAD_RELOAD"
+msgid "Reload File"
+msgstr "Erneut laden"
+
+#. TAJ5i
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_RELOAD_CONTINUE"
+msgid "Continue"
+msgstr "Fortsetzen"
+
+#. BvXvR
+#: updatehdl.src
+msgctxt "RID_UPDATE_STR_PERCENT"
+msgid "%PERCENT%"
+msgstr "%PERCENT%"
+
+#. A39YA
+#: updatehdl.src
+msgctxt "RID_UPDATE_FT_STATUS"
+msgid "Status"
+msgstr "Status"
+
+#. KY5rL
+#: updatehdl.src
+msgctxt "RID_UPDATE_FT_DESCRIPTION"
+msgid "Description"
+msgstr "Beschreibung"
+
+#. kMGPq
+#: updatehdl.src
+msgctxt "RID_UPDATE_BTN_CLOSE"
+msgid "Close"
+msgstr "Schließen"
+
+#. 8LjZV
+#: updatehdl.src
+msgctxt "RID_UPDATE_BTN_DOWNLOAD"
+msgid "~Download"
+msgstr "~Herunterladen"
+
+#. B4EXd
+#: updatehdl.src
+msgctxt "RID_UPDATE_BTN_INSTALL"
+msgid "~Install"
+msgstr "~Installieren"
+
+#. 5KFYF
+#: updatehdl.src
+msgctxt "RID_UPDATE_BTN_PAUSE"
+msgid "~Pause"
+msgstr "~Anhalten"
+
+#. aigD7
+#: updatehdl.src
+msgctxt "RID_UPDATE_BTN_RESUME"
+msgid "~Resume"
+msgstr "~Fortsetzen"
+
+#. 6bYDx
+#: updatehdl.src
+msgctxt "RID_UPDATE_BTN_CANCEL"
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#. BgG4k
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_T_UPDATE_AVAIL"
+msgid "%PRODUCTNAME update available"
+msgstr "%PRODUCTNAME-Update verfügbar"
+
+#. DrftP
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_UPDATE_AVAIL"
+msgid "Click the icon to start the download."
+msgstr "Klicken Sie auf das Symbol, um das Herunterzuladen zu starten."
+
+#. 6Jk7H
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_T_UPDATE_NO_DOWN"
+msgid "%PRODUCTNAME update available"
+msgstr "%PRODUCTNAME-Update verfügbar"
+
+#. vHn6r
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_UPDATE_NO_DOWN"
+msgid "Click the icon for more information."
+msgstr "Klicken Sie auf das Symbol, um mehr Informationen zu erhalten."
+
+#. Fd2FE
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_T_AUTO_START"
+msgid "%PRODUCTNAME update available"
+msgstr "%PRODUCTNAME-Update verfügbar"
+
+#. Q86DD
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_AUTO_START"
+msgid "Download of update begins."
+msgstr "Herunterladen des Updates beginnt."
+
+#. MoGgC
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOADING"
+msgid "Download of update in progress"
+msgstr "Herunterladen des Updates in Arbeit"
+
+#. 2LH9V
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED"
+msgid "Download of update paused"
+msgstr "Herunterladen des Updates angehalten"
+
+#. 7YgAT
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_DOWNLOAD_PAUSED"
+msgid "Click the icon to resume."
+msgstr "Klicken Sie auf das Symbol, um fortzusetzen."
+
+#. 9jAgi
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_T_ERROR_DOWNLOADING"
+msgid "Download of update stalled"
+msgstr "Herunterladen des Updates unterbrochen"
+
+#. BMJfF
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_ERROR_DOWNLOADING"
+msgid "Click the icon for more information."
+msgstr "Klicken Sie auf das Symbol, um mehr Informationen zu erhalten."
+
+#. RmhyN
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOAD_AVAIL"
+msgid "Download of update completed"
+msgstr "Herunterladen des Updates abgeschlossen"
+
+#. 9fD6Q
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_DOWNLOAD_AVAIL"
+msgid "Click the icon to start the installation."
+msgstr "Klicken Sie auf das Symbol, um die Installation zu starten."
+
+#. PeAde
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_T_EXT_UPD_AVAIL"
+msgid "Updates for extensions available"
+msgstr "Updates für Extensions verfügbar"
+
+#. C7C6c
+#: updatehdl.src
+msgctxt "RID_UPDATE_BUBBLE_EXT_UPD_AVAIL"
+msgid "Click the icon for more information."
+msgstr "Klicken Sie auf das Symbol, um mehr Informationen zu erhalten."
+
+#. cBnXC
+#: contentfieldpage.ui
+msgctxt "contentfieldpage|label1"
+msgid "Existing fields"
+msgstr "Vorhandene Felder"
+
+#. pa3Dg
+#: contentfieldpage.ui
+msgctxt "contentfieldpage|label3"
+msgid "Display field"
+msgstr "Feld anzeigen"
+
+#. FBECK
+#: contenttablepage.ui
+msgctxt "contenttablepage|datasourcelabel"
+msgid "Data source"
+msgstr "Datenquelle"
+
+#. dmvMc
+#: contenttablepage.ui
+msgctxt "contenttablepage|contenttypelabel"
+msgid "Content type"
+msgstr "Art des Inhaltes"
+
+#. EGEyr
+#: contenttablepage.ui
+msgctxt "contenttablepage|formtablelabel"
+msgid "Content"
+msgstr "Inhalt"
+
+#. 7DaPr
+#: contenttablepage.ui
+msgctxt "contenttablepage|formsettings"
+msgid "Form"
+msgstr "Formular"
+
+#. cyVXt
+#: contenttablepage.ui
+msgctxt "contenttablepage|label3"
+msgid ""
+"On the right side, you see all the tables from the data source of the form.\n"
+"\n"
+"\n"
+"Choose the table from which the data should be used as basis for the list content:"
+msgstr ""
+"Auf der rechten Seite sehen Sie alle Tabellen der Datenquelle des Formulars.\n"
+"\n"
+"\n"
+"Wählen Sie bitte die Tabelle, deren Daten die Grundlage für den Listeninhalt bilden sollen:"
+
+#. ovzSX
+#: contenttablepage.ui
+msgctxt "contenttablepage|label2"
+msgid "Control"
+msgstr "Steuerelement"
+
+#. 3pJRv
+#: datasourcepage.ui
+msgctxt "datasourcepage|label2"
+msgid ""
+"That was all the information necessary to integrate your address data into %PRODUCTNAME.\n"
+"\n"
+"Now, just enter the name under which you want to register the data source in %PRODUCTNAME."
+msgstr ""
+"Das waren alle Angaben, die zur Integration Ihrer Adressdaten in %PRODUCTNAME benötigt werden.\n"
+"\n"
+"Geben Sie jetzt noch den Namen an, unter dem die Datenquelle in %PRODUCTNAME registriert werden soll."
+
+#. LaR7Y
+#: datasourcepage.ui
+msgctxt "datasourcepage|embed"
+msgid "Embed this address book definition into the current document."
+msgstr "Bettet diese Adressbuch-Definition in das aktuelle Dokument ein."
+
+#. jcF56
+#: datasourcepage.ui
+msgctxt "datasourcepage|locationft"
+msgid "Location"
+msgstr "Pfad"
+
+#. nKyUL
+#: datasourcepage.ui
+msgctxt "datasourcepage|browse"
+msgid "Browse..."
+msgstr "Durchsuchen..."
+
+#. 6LtJa
+#: datasourcepage.ui
+msgctxt "datasourcepage|available"
+msgid "Make this address book available to all modules in %PRODUCTNAME."
+msgstr "Adressbuch in allen Modulen von %PRODUCTNAME zur Verfügung stellen."
+
+#. jbrum
+#: datasourcepage.ui
+msgctxt "datasourcepage|nameft"
+msgid "Address book name"
+msgstr "Name des Adressbuches"
+
+#. iHrkL
+#: datasourcepage.ui
+msgctxt "datasourcepage|warning"
+msgid ""
+"Another data source already has this name. As data sources have to have "
+"globally unique names, you need to choose another one."
+msgstr ""
+"Es existiert schon eine andere Datenquelle mit diesem Namen. Da "
+"Datenquellennamen global eindeutig sein müssen, wählen Sie bitte einen "
+"anderen."
+
+#. CWNrs
+#: defaultfieldselectionpage.ui
+msgctxt "defaultfieldselectionpage|label1"
+msgid "Should one option field be selected as a default?"
+msgstr "Soll ein Optionsfeld standardmäßig ausgewählt sein?"
+
+#. aoU8V
+#: defaultfieldselectionpage.ui
+msgctxt "defaultfieldselectionpage|defaultselectionyes"
+msgid "_Yes, the following:"
+msgstr "_Ja, und zwar folgendes:"
+
+#. gWYi6
+#: defaultfieldselectionpage.ui
+msgctxt "defaultfieldselectionpage|defaultselectionno"
+msgid "No, one particular field is not going to be selected."
+msgstr "Nein, kein Feld soll ausgewählt sein."
+
+#. CiCym
+#: fieldassignpage.ui
+msgctxt "fieldassignpage|label2"
+msgid ""
+"To incorporate the address data in your templates, %PRODUCTNAME has to know which fields contain which data.\n"
+"\n"
+"For instance, you could have stored the e-mail addresses in a field named \"email\", or \"E-mail\" or \"EM\" - or something completely different.\n"
+"\n"
+"Click the button below to open another dialog where you can enter the settings for your data source."
+msgstr ""
+"Um die Adress-Daten in Ihren Vorlagen benutzen zu können, muss %PRODUCTNAME wissen, welche Felder welche konkreten Daten enthalten.\n"
+"\n"
+"Zum Beispiel könnten Sie die E-Mail-Adressen in einem Feld \"E-Mail\", \"Mail\" oder \"EM\" - oder unter einem völlig anderem Namen - gespeichert haben.\n"
+"\n"
+"Klicken Sie auf die Schaltfläche unten, um einen weiteren Dialog zu öffnen, in dem Sie die Einstellungen für Ihre Datenquelle vornehmen können."
+
+#. RkyNf
+#: fieldassignpage.ui
+msgctxt "fieldassignpage|assign"
+msgid "Field Assignment"
+msgstr "Feldzuordnung"
+
+#. j8AYS
+#: fieldlinkpage.ui
+msgctxt "fieldlinkpage|desc"
+msgid ""
+"This is where you select fields with matching contents so that the value "
+"from the display field will be shown."
+msgstr ""
+"Wählen Sie hier die Felder aus, deren Inhalt übereinstimmen muss, damit der "
+"Wert aus dem Anzeigefeld angezeigt wird."
+
+#. cWGwU
+#: fieldlinkpage.ui
+msgctxt "fieldlinkpage|label2"
+msgid "Field from the _Value Table"
+msgstr "Feld aus der _Wertetabelle"
+
+#. rp7PU
+#: fieldlinkpage.ui
+msgctxt "fieldlinkpage|label3"
+msgid "Field from the _List Table"
+msgstr "Feld aus der _Listentabelle"
+
+#. GDXGP
+#: gridfieldsselectionpage.ui
+msgctxt "gridfieldsselectionpage|datasourcelabel"
+msgid "Data source"
+msgstr "Datenquelle"
+
+#. YZrBU
+#: gridfieldsselectionpage.ui
+msgctxt "gridfieldsselectionpage|contenttypelabel"
+msgid "Content type"
+msgstr "Art des Inhaltes"
+
+#. F7JFv
+#: gridfieldsselectionpage.ui
+msgctxt "gridfieldsselectionpage|formtablelabel"
+msgid "Content"
+msgstr "Inhalt"
+
+#. yhVwQ
+#: gridfieldsselectionpage.ui
+msgctxt "gridfieldsselectionpage|formsettings"
+msgid "Form"
+msgstr "Formular"
+
+#. fPEjf
+#: gridfieldsselectionpage.ui
+msgctxt "gridfieldsselectionpage|label3"
+msgid "Selected fields"
+msgstr "Ausgewählte Felder"
+
+#. FGByi
+#: gridfieldsselectionpage.ui
+msgctxt "gridfieldsselectionpage|fieldright"
+msgid "->"
+msgstr "->"
+
+#. 7NBrQ
+#: gridfieldsselectionpage.ui
+msgctxt "gridfieldsselectionpage|allfieldsright"
+msgid "=>>"
+msgstr "=>>"
+
+#. SRogG
+#: gridfieldsselectionpage.ui
+msgctxt "gridfieldsselectionpage|fieldleft"
+msgid "<-"
+msgstr "<-"
+
+#. crA2q
+#: gridfieldsselectionpage.ui
+msgctxt "gridfieldsselectionpage|allfieldsleft"
+msgid "<<="
+msgstr "<<="
+
+#. 25yKb
+#: gridfieldsselectionpage.ui
+msgctxt "gridfieldsselectionpage|label1"
+msgid "Existing fields"
+msgstr "Vorhandene Felder"
+
+#. ToNEj
+#: gridfieldsselectionpage.ui
+msgctxt "gridfieldsselectionpage|label2"
+msgid "Table element"
+msgstr "Tabellenelement"
+
+#. Xk7cV
+#: groupradioselectionpage.ui
+msgctxt "groupradioselectionpage|datasourcelabel"
+msgid "Data source"
+msgstr "Datenquelle"
+
+#. vr3WF
+#: groupradioselectionpage.ui
+msgctxt "groupradioselectionpage|contenttypelabel"
+msgid "Content type"
+msgstr "Art des Inhaltes"
+
+#. YWdU3
+#: groupradioselectionpage.ui
+msgctxt "groupradioselectionpage|formtablelabel"
+msgid "Content"
+msgstr "Inhalt"
+
+#. EJE6S
+#: groupradioselectionpage.ui
+msgctxt "groupradioselectionpage|formsettings"
+msgid "Form"
+msgstr "Formular"
+
+#. jePf2
+#: groupradioselectionpage.ui
+msgctxt "groupradioselectionpage|label3"
+msgid "_Option fields"
+msgstr "_Optionsfelder"
+
+#. CYqUP
+#: groupradioselectionpage.ui
+msgctxt "groupradioselectionpage|toright"
+msgid "_>>"
+msgstr "_>>"
+
+#. HZc38
+#: groupradioselectionpage.ui
+msgctxt "groupradioselectionpage|toleft"
+msgid "_<<"
+msgstr "_<<"
+
+#. HYXrA
+#: groupradioselectionpage.ui
+msgctxt "groupradioselectionpage|label1"
+msgid "Which _names do you want to give the option fields?"
+msgstr "Welche _Bezeichnungen sollen die Optionsfelder erhalten?"
+
+#. 4skyv
+#: groupradioselectionpage.ui
+msgctxt "groupradioselectionpage|label2"
+msgid "Table element"
+msgstr "Tabellenelement"
+
+#. 3dtcD
+#: invokeadminpage.ui
+msgctxt "invokeadminpage|label2"
+msgid ""
+"To set up the new data source, additional information is required.\n"
+"\n"
+"Click the following button to open another dialog in which you then enter the necessary information."
+msgstr ""
+"Zur Einrichtung der neuen Datenquelle sind noch weitergehende Angaben notwendig.\n"
+"\n"
+"Die folgende Schaltfläche öffnet einen weiteren Dialog, in dem Sie die fehlenden Informationen eingeben können."
+
+#. vpt2q
+#: invokeadminpage.ui
+msgctxt "invokeadminpage|settings"
+msgid "Settings"
+msgstr "Einstellungen"
+
+#. CAjBt
+#: invokeadminpage.ui
+msgctxt "invokeadminpage|warning"
+msgid ""
+"The connection to the data source could not be established.\n"
+"Before you proceed, please check the settings made, or (on the previous page) choose another address data source type."
+msgstr ""
+"Die Verbindung zur Datenquelle konnte nicht hergestellt werden.\n"
+"Bitte überprüfen Sie die gemachten Einstellungen, bevor Sie fortfahren, oder wählen Sie (auf der vorigen Seite) einen anderen Typ für Ihre Adressdatenquelle."
+
+#. MdQKb
+#: optiondbfieldpage.ui
+msgctxt "optiondbfieldpage|label1"
+msgid "Do you want to save the value in a database field?"
+msgstr "Möchten Sie den Wert in einem Datenbankfeld speichern?"
+
+#. wh2jE
+#: optiondbfieldpage.ui
+msgctxt "optiondbfieldpage|yesRadiobutton"
+msgid "_Yes, I want to save it in the following database field:"
+msgstr "_Ja, und zwar in folgendem Datenbankfeld:"
+
+#. Kw48Z
+#: optiondbfieldpage.ui
+msgctxt "optiondbfieldpage|noRadiobutton"
+msgid "_No, I only want to save the value in the form."
+msgstr "_Nein, ich möchte den Wert nur im Formular speichern."
+
+#. 7BkQQ
+#: optionsfinalpage.ui
+msgctxt "optionsfinalpage|label1"
+msgid "Which _caption is to be given to your option group?"
+msgstr "Welche _Beschriftung soll Ihre Optionsgruppe haben?"
+
+#. aDe59
+#: optionsfinalpage.ui
+msgctxt "optionsfinalpage|label2"
+msgid "These were all details needed to create the option group."
+msgstr ""
+"Dies waren alle Angaben, die zur Erstellung der Optionsgruppe notwendig "
+"waren."
+
+#. Wcsuy
+#: optionvaluespage.ui
+msgctxt "optionvaluespage|label1"
+msgid "When you select an option, the option group is given a specific value."
+msgstr ""
+"Wenn Sie eine Option auswählen, wird der Optionsgruppe ein bestimmter Wert "
+"zugewiesen."
+
+#. XA4df
+#: optionvaluespage.ui
+msgctxt "optionvaluespage|label2"
+msgid "Which _value do you want to assign to each option?"
+msgstr "Welchen _Wert möchten Sie jeder Option zuweisen?"
+
+#. qGELF
+#: optionvaluespage.ui
+msgctxt "optionvaluespage|label3"
+msgid "_Option fields"
+msgstr "_Optionsfelder"
+
+#. AneBw
+#: selecttablepage.ui
+msgctxt "selecttablepage|label2"
+msgid ""
+"The external data source you have chosen contains more than one address book.\n"
+"Please select the one you mainly want to work with:"
+msgstr ""
+"Die von Ihnen gewählte externe Datenquelle enthält mehrere Adress-Bestände.\n"
+"Bitte wählen Sie denjenigen aus, mit dem Sie hauptsächlich arbeiten möchten:"
+
+#. GHAY9
+#: selecttypepage.ui
+msgctxt "selecttypepage|evolution"
+msgid "Evolution"
+msgstr "Evolution"
+
+#. F6JYD
+#: selecttypepage.ui
+msgctxt "selecttypepage|groupwise"
+msgid "Groupwise"
+msgstr "Groupwise"
+
+#. cuXRp
+#: selecttypepage.ui
+msgctxt "selecttypepage|evoldap"
+msgid "Evolution LDAP"
+msgstr "Evolution LDAP"
+
+#. YeBuK
+#: selecttypepage.ui
+msgctxt "selecttypepage|firefox"
+msgid "Firefox/Iceweasel"
+msgstr "Firefox/Iceweasel"
+
+#. cSkee
+#: selecttypepage.ui
+msgctxt "selecttypepage|thunderbird"
+msgid "Thunderbird/Icedove"
+msgstr "Thunderbird/Icedove"
+
+#. su4jz
+#: selecttypepage.ui
+msgctxt "selecttypepage|kde"
+msgid "KDE address book"
+msgstr "KDE-Adressbuch"
+
+#. 2Psrm
+#: selecttypepage.ui
+msgctxt "selecttypepage|macosx"
+msgid "Mac OS X address book"
+msgstr "Mac OS X-Adressbuch"
+
+#. 3EnZE
+#: selecttypepage.ui
+msgctxt "selecttypepage|other"
+msgid "Other external data source"
+msgstr "Andere externe Datenquelle"
+
+#. DDjR6
+#: selecttypepage.ui
+msgctxt "selecttypepage|label1"
+msgid "Please Select the Type of Your External Address Book"
+msgstr "Bitte wählen Sie den Typ Ihres externen Adressbuches aus"
+
+#. bCndk
+#: selecttypepage.ui
+msgctxt "selecttypepage|label2"
+msgid ""
+"%PRODUCTNAME lets you access address data already present in your system. To do this, a %PRODUCTNAME data source will be created in which your address data is available in tabular form.\n"
+"\n"
+"This wizard helps you create the data source."
+msgstr ""
+"%PRODUCTNAME bietet Ihnen die Möglichkeit, auf bereits in Ihrem System vorhandene Adressdaten zuzugreifen. Dazu wird eine %PRODUCTNAME Datenquelle angelegt, unter der Ihre Adressbücher als Tabellen zugänglich sind.\n"
+"\n"
+"Dieser Assistent unterstützt Sie bei der Einrichtung dieser Datenquelle."
+
+#. f33Eh
+#: tableselectionpage.ui
+msgctxt "tableselectionpage|label3"
+msgid ""
+"Currently, the form the control belongs to is not (or not completely) bound to a data source.\n"
+"\n"
+"Please choose a data source and a table.\n"
+"\n"
+"\n"
+"Please note that the settings made on this page will take effect immediately upon leaving the page."
+msgstr ""
+"Das Formular, zu dem das Steuerelement gehört, ist im Augenblick noch nicht (oder noch nicht vollständig) an eine Datenquelle gebunden.\n"
+"\n"
+"Bitte wählen Sie eine Datenquelle und eine Tabelle aus.\n"
+"\n"
+"\n"
+"Bitte beachten Sie, dass die Einstellungen, die Sie auf dieser Seite für das Formular vornehmen, sofort beim Verlassen der Seite wirksam werden."
+
+#. PLVnx
+#: tableselectionpage.ui
+msgctxt "tableselectionpage|datasourcelabel"
+msgid "_Data source:"
+msgstr "_Datenquelle:"
+
+#. DZ3pT
+#: tableselectionpage.ui
+msgctxt "tableselectionpage|search"
+msgid "_..."
+msgstr "_..."
+
+#. 6jyEV
+#: tableselectionpage.ui
+msgctxt "tableselectionpage|tablelabel"
+msgid "_Table / Query:"
+msgstr "_Tabelle / Abfrage:"
+
+#. YvYuw
+#: tableselectionpage.ui
+msgctxt "tableselectionpage|label1"
+msgid "Data"
+msgstr "Daten"
+
+#. b84Zp
+#: controlfontdialog.ui
+msgctxt "controlfontdialog|ControlFontDialog"
+msgid "Character"
+msgstr "Zeichen"
+
+#. pAwku
+#: controlfontdialog.ui
+msgctxt "controlfontdialog|font"
+msgid "Font"
+msgstr "Schriftart"
+
+#. VhLFn
+#: controlfontdialog.ui
+msgctxt "controlfontdialog|fonteffects"
+msgid "Font Effects"
+msgstr "Schrifteffekte"
+
+#. TLgDg
+#: datatypedialog.ui
+msgctxt "datatypedialog|DataTypeDialog"
+msgid "New Data Type"
+msgstr "Neuer Datentyp"
+
+#. oURoA
+#: datatypedialog.ui
+msgctxt "datatypedialog|label"
+msgid "Type a name for the new data type:"
+msgstr "Geben Sie einen Namen für den neuen Datentyp an:"
+
+#. emBq6
+#: formlinksdialog.ui
+msgctxt "formlinksdialog|FormLinks"
+msgid "Link fields"
+msgstr "Felder verknüpfen"
+
+#. jsbRq
+#: formlinksdialog.ui
+msgctxt "formlinksdialog|suggestButton"
+msgid "Suggest"
+msgstr "Vorschlagen"
+
+#. JkJ9F
+#: formlinksdialog.ui
+msgctxt "formlinksdialog|explanationLabel"
+msgid ""
+"Sub forms can be used to display detailed data about the current record of "
+"the master form. To do this, you can specify which columns in the sub form "
+"match which columns in the master form."
+msgstr ""
+"Unterformulare können benutzt werden, um Detaildaten zu dem aktuellen "
+"Datensatz des Hauptformulars anzuzeigen. Dazu können Sie festlegen, welche "
+"Spalten sich jeweils entsprechen sollen."
+
+#. XkJm4
+#: formlinksdialog.ui
+msgctxt "formlinksdialog|detailLabel"
+msgid "label"
+msgstr "Beschriftung"
+
+#. PuKkA
+#: formlinksdialog.ui
+msgctxt "formlinksdialog|masterLabel"
+msgid "label"
+msgstr "Beschriftung"
+
+#. JJkdg
+#: labelselectiondialog.ui
+msgctxt "labelselectiondialog|LabelSelectionDialog"
+msgid "Label Field Selection"
+msgstr "Auswahl Beschriftungsfeld"
+
+#. aEYXg
+#: labelselectiondialog.ui
+msgctxt "labelselectiondialog|label"
+msgid ""
+"These are control fields that can be used as label fields for the "
+"$controlclass$ $controlname$."
+msgstr ""
+"Dies sind alle Steuerelement, die dem $controlclass$ $controlname$ als "
+"Beschriftungsfeld zugeordnet werden können."
+
+#. GLFYG
+#: labelselectiondialog.ui
+msgctxt "labelselectiondialog|noassignment"
+msgid "_No assignment"
+msgstr "_Keine Zuordnung"
+
+#. urhSS
+#: taborder.ui
+msgctxt "taborder|TabOrderDialog"
+msgid "Tab Order"
+msgstr "Register-Reihenfolge"
+
+#. WGPX4
+#: taborder.ui
+msgctxt "taborder|upB"
+msgid "_Move Up"
+msgstr "Nach o_ben verschieben"
+
+#. LNZFB
+#: taborder.ui
+msgctxt "taborder|downB"
+msgid "Move _Down"
+msgstr "Nach _unten verschieben"
+
+#. zAGWY
+#: taborder.ui
+msgctxt "taborder|autoB"
+msgid "_Automatic Sort"
+msgstr "Automatische _Sortierung"
+
+#. nQDDz
+#: taborder.ui
+msgctxt "taborder|label2"
+msgid "Controls"
+msgstr "Bedienelemente"
+
+#. AFbU5
+#: griddialog.ui
+msgctxt "griddialog|resetTypeCombobox"
+msgid "Linear ascending"
+msgstr "Linear steigend"
+
+#. kLhvJ
+#: griddialog.ui
+msgctxt "griddialog|resetTypeCombobox"
+msgid "Linear descending"
+msgstr "Linear fallend"
+
+#. y8ByE
+#: griddialog.ui
+msgctxt "griddialog|resetTypeCombobox"
+msgid "Original values"
+msgstr "Originalwerte"
+
+#. izGbM
+#: griddialog.ui
+msgctxt "griddialog|resetTypeCombobox"
+msgid "Exponential increasing"
+msgstr "Exponentiell wachsend"
+
+#. is6k5
+#: griddialog.ui
+msgctxt "griddialog|resetButton"
+msgid "_Set"
+msgstr "_Setzen"
+
+#. DEE74
+#: sanedialog.ui
+msgctxt "sanedialog|SaneDialog"
+msgid "Scanner"
+msgstr "Scanner"
+
+#. gFREe
+#: sanedialog.ui
+msgctxt "sanedialog|label3"
+msgid "_Left:"
+msgstr "_Links:"
+
+#. ErDB4
+#: sanedialog.ui
+msgctxt "sanedialog|label4"
+msgid "To_p:"
+msgstr "_Oben:"
+
+#. bSfBR
+#: sanedialog.ui
+msgctxt "sanedialog|label5"
+msgid "_Right:"
+msgstr "_Rechts:"
+
+#. NGDq3
+#: sanedialog.ui
+msgctxt "sanedialog|label6"
+msgid "_Bottom:"
+msgstr "_Unten:"
+
+#. rj9GD
+#: sanedialog.ui
+msgctxt "sanedialog|label1"
+msgid "Scan area"
+msgstr "Scanbereich"
+
+#. FZ7Vw
+#: sanedialog.ui
+msgctxt "sanedialog|label2"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. EiiLN
+#: sanedialog.ui
+msgctxt "sanedialog|label7"
+msgid "Device _used"
+msgstr "Verwendetes _Gerät"
+
+#. W6hNP
+#: sanedialog.ui
+msgctxt "sanedialog|label8"
+msgid "Resolution [_DPI]"
+msgstr "Auflösung [_DPI]"
+
+#. t3Tuq
+#: sanedialog.ui
+msgctxt "sanedialog|advancedCheckbutton"
+msgid "Show advanced options"
+msgstr "Erweiterte Optionen anzeigen"
+
+#. gneMZ
+#: sanedialog.ui
+msgctxt "sanedialog|label10"
+msgid "Options:"
+msgstr "Optionen:"
+
+#. VDQay
+#: sanedialog.ui
+msgctxt "sanedialog|optionsButton"
+msgid "Se_t"
+msgstr "Sa_tz"
+
+#. bNTfS
+#: sanedialog.ui
+msgctxt "sanedialog|vectorLabel"
+msgid "Vector element"
+msgstr "Vektorelement"
+
+#. 8aFBr
+#: sanedialog.ui
+msgctxt "sanedialog|deviceInfoButton"
+msgid "About Dev_ice"
+msgstr "Über das Ge_rät"
+
+#. 3EeXn
+#: sanedialog.ui
+msgctxt "sanedialog|previewButton"
+msgid "Create Previe_w"
+msgstr "_Vorschau erstellen"
+
+#. ihLsf
+#: sanedialog.ui
+msgctxt "sanedialog|scanButton"
+msgid "_Scan"
+msgstr "_Scannen"
+
+#. DNyMZ
+#: choosedatasourcedialog.ui
+msgctxt "choosedatasourcedialog|ChooseDataSourceDialog"
+msgid "Choose Data Source"
+msgstr "Datenquelle auswählen"
+
+#. pxT9v
+#: choosedatasourcedialog.ui
+msgctxt "choosedatasourcedialog|label1"
+msgid "Entry"
+msgstr "Eintrag"
+
+#. CPjNs
+#: generalpage.ui
+msgctxt "generalpage|shortname"
+msgid "_Short name"
+msgstr "_Kurzbezeichnung"
+
+#. vaKMR
+#: generalpage.ui
+msgctxt "generalpage|authtype"
+msgid "_Type"
+msgstr "_Typ"
+
+#. G73uW
+#: generalpage.ui
+msgctxt "generalpage|authors"
+msgid "Author(s)"
+msgstr "Autor(en)"
+
+#. 8azaC
+#: generalpage.ui
+msgctxt "generalpage|publisher"
+msgid "_Publisher"
+msgstr "Heraus_geber"
+
+#. xQfCE
+#: generalpage.ui
+msgctxt "generalpage|chapter"
+msgid "_Chapter"
+msgstr "_Kapitel"
+
+#. TC6kG
+#: generalpage.ui
+msgctxt "generalpage|title"
+msgid "Tit_le"
+msgstr "Tite_l"
+
+#. R9FbR
+#: generalpage.ui
+msgctxt "generalpage|address"
+msgid "A_ddress"
+msgstr "A_dresse"
+
+#. p4Qk5
+#: generalpage.ui
+msgctxt "generalpage|pages"
+msgid "Pa_ge(s)"
+msgstr "_Seite(n)"
+
+#. yA7zD
+#: generalpage.ui
+msgctxt "generalpage|year"
+msgid "_Year"
+msgstr "_Jahr"
+
+#. FBFh5
+#: generalpage.ui
+msgctxt "generalpage|isbn"
+msgid "_ISBN"
+msgstr "_ISBN"
+
+#. HBcbt
+#: generalpage.ui
+msgctxt "generalpage|editor"
+msgid "Editor"
+msgstr "Herausgeber"
+
+#. c5WHH
+#: generalpage.ui
+msgctxt "generalpage|booktitle"
+msgid "_Book title"
+msgstr "Bu_chtitel"
+
+#. tfGGx
+#: generalpage.ui
+msgctxt "generalpage|edition"
+msgid "Ed_ition"
+msgstr "Aus_gabe"
+
+#. 2ZCVj
+#: generalpage.ui
+msgctxt "generalpage|volume"
+msgid "Volume"
+msgstr "Band"
+
+#. Tpxov
+#: generalpage.ui
+msgctxt "generalpage|institution"
+msgid "Instit_ution"
+msgstr "Instit_ution"
+
+#. DY7iB
+#: generalpage.ui
+msgctxt "generalpage|month"
+msgid "_Month"
+msgstr "_Monat"
+
+#. 6XJ26
+#: generalpage.ui
+msgctxt "generalpage|publicationtype"
+msgid "Publication t_ype"
+msgstr "Au_sgabeart"
+
+#. Trxvk
+#: generalpage.ui
+msgctxt "generalpage|university"
+msgid "University"
+msgstr "Universität"
+
+#. r3F5p
+#: generalpage.ui
+msgctxt "generalpage|reporttype"
+msgid "Type of re_port"
+msgstr "_Berichtsart"
+
+#. vsfLN
+#: generalpage.ui
+msgctxt "generalpage|organization"
+msgid "Organi_zation"
+msgstr "Or_ganisation"
+
+#. 2Fna4
+#: generalpage.ui
+msgctxt "generalpage|journal"
+msgid "_Journal"
+msgstr "_Journal"
+
+#. DA5HP
+#: generalpage.ui
+msgctxt "generalpage|annotation"
+msgid "Ann_otation"
+msgstr "A_nmerkung"
+
+#. DZxid
+#: generalpage.ui
+msgctxt "generalpage|number"
+msgid "Numb_er"
+msgstr "N_ummer"
+
+#. Nspi2
+#: generalpage.ui
+msgctxt "generalpage|note"
+msgid "_Note"
+msgstr "_Notiz"
+
+#. DVS8w
+#: generalpage.ui
+msgctxt "generalpage|series"
+msgid "Se_ries"
+msgstr "Se_rien"
+
+#. JfqNT
+#: generalpage.ui
+msgctxt "generalpage|url"
+msgid "URL"
+msgstr "URL"
+
+#. hjJFW
+#: generalpage.ui
+msgctxt "generalpage|custom1"
+msgid "User-defined field _1"
+msgstr "Benutzerfeld _1"
+
+#. ZgVyG
+#: generalpage.ui
+msgctxt "generalpage|custom4"
+msgid "User-defined field _4"
+msgstr "Benutzerfeld _4"
+
+#. aDQFC
+#: generalpage.ui
+msgctxt "generalpage|custom2"
+msgid "User-defined field _2"
+msgstr "Benutzerfeld _2"
+
+#. X8g3V
+#: generalpage.ui
+msgctxt "generalpage|custom5"
+msgid "User-defined field _5"
+msgstr "Benutzerfeld _5"
+
+#. ctDaZ
+#: generalpage.ui
+msgctxt "generalpage|custom3"
+msgid "User-defined field _3"
+msgstr "Benutzerfeld _3"
+
+#. 7sTCu
+#: mappingdialog.ui
+msgctxt "mappingdialog|MappingDialog"
+msgid "Column Layout for Table %1"
+msgstr "Spaltenzuordnung für Tabelle %1"
+
+#. ZttGm
+#: mappingdialog.ui
+msgctxt "mappingdialog|label2"
+msgid "_Short name"
+msgstr "_Kurzbezeichnung"
+
+#. PcPgF
+#: mappingdialog.ui
+msgctxt "mappingdialog|label3"
+msgid "_Author(s)"
+msgstr "A_utor(en)"
+
+#. DBBiK
+#: mappingdialog.ui
+msgctxt "mappingdialog|label4"
+msgid "_Publisher"
+msgstr "_Verlag"
+
+#. 4TG3U
+#: mappingdialog.ui
+msgctxt "mappingdialog|label5"
+msgid "_Chapter"
+msgstr "_Kapitel"
+
+#. DZwft
+#: mappingdialog.ui
+msgctxt "mappingdialog|label6"
+msgid "Editor"
+msgstr "Herausgeber"
+
+#. pEBaZ
+#: mappingdialog.ui
+msgctxt "mappingdialog|label7"
+msgid "_Type"
+msgstr "_Typ"
+
+#. TxEfY
+#: mappingdialog.ui
+msgctxt "mappingdialog|label8"
+msgid "_Year"
+msgstr "_Jahr"
+
+#. qLU7E
+#: mappingdialog.ui
+msgctxt "mappingdialog|label9"
+msgid "Tit_le"
+msgstr "Tite_l"
+
+#. F26mM
+#: mappingdialog.ui
+msgctxt "mappingdialog|label10"
+msgid "A_ddress"
+msgstr "A_dresse"
+
+#. kBvqk
+#: mappingdialog.ui
+msgctxt "mappingdialog|label11"
+msgid "_ISBN"
+msgstr "_ISBN"
+
+#. aeCGS
+#: mappingdialog.ui
+msgctxt "mappingdialog|label12"
+msgid "Pa_ge(s)"
+msgstr "Sei_te(n)"
+
+#. N4Cx2
+#: mappingdialog.ui
+msgctxt "mappingdialog|label13"
+msgid "Ed_ition"
+msgstr "Au_sgabe"
+
+#. CXnVD
+#: mappingdialog.ui
+msgctxt "mappingdialog|label14"
+msgid "_Book title"
+msgstr "Bu_chtitel"
+
+#. FEe9P
+#: mappingdialog.ui
+msgctxt "mappingdialog|label15"
+msgid "Volume"
+msgstr "Band"
+
+#. T6Eu3
+#: mappingdialog.ui
+msgctxt "mappingdialog|label16"
+msgid "Publication t_ype"
+msgstr "Au_sgabeart"
+
+#. KVHpY
+#: mappingdialog.ui
+msgctxt "mappingdialog|label17"
+msgid "Organi_zation"
+msgstr "Or_ganisation"
+
+#. GNoEJ
+#: mappingdialog.ui
+msgctxt "mappingdialog|label18"
+msgid "Instit_ution"
+msgstr "Ein_richtung"
+
+#. ZU7AT
+#: mappingdialog.ui
+msgctxt "mappingdialog|label19"
+msgid "Uni_versity"
+msgstr "Uni_versität"
+
+#. AeYEo
+#: mappingdialog.ui
+msgctxt "mappingdialog|label20"
+msgid "Type of re_port"
+msgstr "_Berichtsart"
+
+#. NaFZM
+#: mappingdialog.ui
+msgctxt "mappingdialog|label21"
+msgid "_Month"
+msgstr "_Monat"
+
+#. EacrE
+#: mappingdialog.ui
+msgctxt "mappingdialog|label22"
+msgid "_Journal"
+msgstr "_Journal"
+
+#. 98xrV
+#: mappingdialog.ui
+msgctxt "mappingdialog|label23"
+msgid "Numb_er"
+msgstr "An_zahl"
+
+#. ssYBx
+#: mappingdialog.ui
+msgctxt "mappingdialog|label24"
+msgid "Se_ries"
+msgstr "Se_rien"
+
+#. kGM4q
+#: mappingdialog.ui
+msgctxt "mappingdialog|label25"
+msgid "Ann_otation"
+msgstr "An_merkung"
+
+#. 8xMvD
+#: mappingdialog.ui
+msgctxt "mappingdialog|label26"
+msgid "_Note"
+msgstr "_Notiz"
+
+#. t7JGr
+#: mappingdialog.ui
+msgctxt "mappingdialog|label27"
+msgid "URL"
+msgstr "URL"
+
+#. STBDL
+#: mappingdialog.ui
+msgctxt "mappingdialog|label28"
+msgid "User-defined field _1"
+msgstr "Benutzerfeld _1"
+
+#. FDtfJ
+#: mappingdialog.ui
+msgctxt "mappingdialog|label29"
+msgid "User-defined field _2"
+msgstr "Benutzerfeld _2"
+
+#. EPoqo
+#: mappingdialog.ui
+msgctxt "mappingdialog|label30"
+msgid "User-defined field _3"
+msgstr "Benutzerfeld _3"
+
+#. LzUki
+#: mappingdialog.ui
+msgctxt "mappingdialog|label31"
+msgid "User-defined field _4"
+msgstr "Benutzerfeld _4"
+
+#. jY3cj
+#: mappingdialog.ui
+msgctxt "mappingdialog|label32"
+msgid "User-defined field _5"
+msgstr "Benutzerfeld _5"
+
+#. wkCw6
+#: mappingdialog.ui
+msgctxt "mappingdialog|label1"
+msgid "Column Names"
+msgstr "Spaltennamen"
+
+#. 3GFkT
+#: toolbar.ui
+msgctxt "toolbar|TBC_FT_SOURCE"
+msgid "Table"
+msgstr "Tabelle"
+
+#. bgZyU
+#: toolbar.ui
+msgctxt "toolbar|TBC_FT_QUERY"
+msgid "Search Key"
+msgstr "Suchbegriff"
+
+#. EeiLg
+#: toolbar.ui
+msgctxt "toolbar|TBC_BT_AUTOFILTER"
+msgid "AutoFilter"
+msgstr "AutoFilter"
+
+#. Xbpge
+#: toolbar.ui
+msgctxt "toolbar|TBC_BT_FILTERCRIT"
+msgid "Standard Filter"
+msgstr "Standardfilter"
+
+#. 9qFEc
+#: toolbar.ui
+msgctxt "toolbar|TBC_BT_REMOVEFILTER"
+msgid "Reset Filter"
+msgstr "Filter zurücksetzen"
+
+#. C3Tuk
+#: toolbar.ui
+msgctxt "toolbar|TBC_BT_COL_ASSIGN"
+msgid "Column Arrangement"
+msgstr "Spaltenzuordnung"
+
+#. YFwPR
+#: toolbar.ui
+msgctxt "toolbar|TBC_BT_CHANGESOURCE"
+msgid "Data Source"
+msgstr "Datenquelle"
diff --git a/source/de/extensions/source/abpilot.po b/source/de/extensions/source/abpilot.po
deleted file mode 100644
index e3ba0f5fdd2..00000000000
--- a/source/de/extensions/source/abpilot.po
+++ /dev/null
@@ -1,151 +0,0 @@
-#. extracted from extensions/source/abpilot
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-11-22 08:08+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479802093.000000\n"
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_ABSOURCEDIALOGTITLE\n"
-"string.text"
-msgid "Address Book Data Source Wizard"
-msgstr "Adressdatenquellen-Assistent"
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_SELECT_ABTYPE\n"
-"string.text"
-msgid "Address book type"
-msgstr "Adressbuchtyp"
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_INVOKE_ADMIN_DIALOG\n"
-"string.text"
-msgid "Connection Settings"
-msgstr "Verbindungs-Einstellungen"
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_TABLE_SELECTION\n"
-"string.text"
-msgid "Table selection"
-msgstr "Tabellenauswahl"
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_MANUAL_FIELD_MAPPING\n"
-"string.text"
-msgid "Field Assignment"
-msgstr "Feldzuordnung"
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_FINAL_CONFIRM\n"
-"string.text"
-msgid "Data Source Title"
-msgstr "Datenquellen Titel"
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_NEEDTYPESELECTION\n"
-"string.text"
-msgid "Please select a type of address book."
-msgstr "Bitte wählen sie einen Adressbuch-Typ aus."
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_QRY_NOTABLES\n"
-"string.text"
-msgid ""
-"The data source does not contain any tables.\n"
-"Do you want to set it up as an address data source, anyway?"
-msgstr ""
-"Die Datenquelle enthält keine Tabelle.\n"
-"Möchten Sie diese trotzdem als Adressdatenquelle einrichten?"
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_QRY_NO_EVO_GW\n"
-"string.text"
-msgid ""
-"You don't seem to have any GroupWise account configured in Evolution.\n"
-"Do you want to set it up as an address data source, anyway?"
-msgstr ""
-"Sie haben wahrscheinlich keinen GroupWise-Account in Evolution erstellt.\n"
-"Möchten Sie diesen trotzdem als Adress-Datenquelle einrichten?"
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_DEFAULT_NAME\n"
-"string.text"
-msgid "Addresses"
-msgstr "Adressen"
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_ADMINDIALOGTITLE\n"
-"string.text"
-msgid "Create Address Data Source"
-msgstr "Adressdatenquelle anlegen"
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_NOCONNECTION\n"
-"string.text"
-msgid "The connection could not be established."
-msgstr "Die Verbindung konnte nicht hergestellt werden."
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_PLEASECHECKSETTINGS\n"
-"string.text"
-msgid "Please check the settings made for the data source."
-msgstr "Bitte überprüfen Sie die Einstellungen für die Datenquelle."
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_FIELDDIALOGTITLE\n"
-"string.text"
-msgid "Address Data - Field Assignment"
-msgstr "Adress Daten - Feldzuordnung"
-
-#: abspilot.src
-msgctxt ""
-"abspilot.src\n"
-"RID_STR_NOFIELDSASSIGNED\n"
-"string.text"
-msgid ""
-"There are no fields assigned at this time.\n"
-"You can either assign fields now or do so later by first choosing:\n"
-"\"File - Template - Address Book Source...\""
-msgstr ""
-"Im Augenblick sind keine Felder zugeordnet.\n"
-"Sie können die Zuordnung jetzt treffen, oder dies später nachholen:\n"
-"Wählen Sie im Menü \"Datei - Dokumentvorlage - Adressbuch-Quelle...\""
diff --git a/source/de/extensions/source/bibliography.po b/source/de/extensions/source/bibliography.po
deleted file mode 100644
index 15dbbb00de2..00000000000
--- a/source/de/extensions/source/bibliography.po
+++ /dev/null
@@ -1,233 +0,0 @@
-#. extracted from extensions/source/bibliography
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-11-15 12:23+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1479212620.000000\n"
-
-#: bib.src
-msgctxt ""
-"bib.src\n"
-"RID_BIB_STR_FRAME_TITLE\n"
-"string.text"
-msgid "Bibliography Database"
-msgstr "Literaturdatenbank"
-
-#: bib.src
-msgctxt ""
-"bib.src\n"
-"RID_MAP_QUESTION\n"
-"string.text"
-msgid "Do you want to edit the column arrangement?"
-msgstr "Möchten Sie die Spaltenzuordnung bearbeiten?"
-
-#: bib.src
-msgctxt ""
-"bib.src\n"
-"RID_BIB_STR_NONE\n"
-"string.text"
-msgid "<none>"
-msgstr "<kein>"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_ERROR_PREFIX\n"
-"string.text"
-msgid "The following column names could not be assigned:\n"
-msgstr "Die folgenden Spaltennamen konnten nicht zugeordnet werden:\n"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_ARTICLE\n"
-"string.text"
-msgid "Article"
-msgstr "Artikel"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_BOOK\n"
-"string.text"
-msgid "Book"
-msgstr "Buch"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_BOOKLET\n"
-"string.text"
-msgid "Brochures"
-msgstr "Broschüre"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_CONFERENCE\n"
-"string.text"
-msgid "Conference proceedings article (BiBTeX)"
-msgstr "Konferenzberichtsartikel (BiBTeX)"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_INBOOK\n"
-"string.text"
-msgid "Book excerpt"
-msgstr "Buchauszug"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_INCOLLECTION\n"
-"string.text"
-msgid "Book excerpt with title"
-msgstr "Buchauszug mit Titel"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_INPROCEEDINGS\n"
-"string.text"
-msgid "Conference proceedings article"
-msgstr "Konferenzberichtesartikel"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_JOURNAL\n"
-"string.text"
-msgid "Journal"
-msgstr "Zeitschrift"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_MANUAL\n"
-"string.text"
-msgid "Techn. documentation"
-msgstr "Techn. Dokumentation"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_MASTERSTHESIS\n"
-"string.text"
-msgid "Thesis"
-msgstr "Diplomarbeit"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_MISC\n"
-"string.text"
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_PHDTHESIS\n"
-"string.text"
-msgid "Dissertation"
-msgstr "Dissertation"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_PROCEEDINGS\n"
-"string.text"
-msgid "Conference proceedings"
-msgstr "Konferenzberichte"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_TECHREPORT\n"
-"string.text"
-msgid "Research report"
-msgstr "Forschungsbericht"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_UNPUBLISHED\n"
-"string.text"
-msgid "Unpublished"
-msgstr "Unveröffentlicht"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_EMAIL\n"
-"string.text"
-msgid "E-mail"
-msgstr "E-Mail"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_WWW\n"
-"string.text"
-msgid "WWW document"
-msgstr "WWW-Dokument"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_CUSTOM1\n"
-"string.text"
-msgid "User-defined1"
-msgstr "Benutzertyp1"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_CUSTOM2\n"
-"string.text"
-msgid "User-defined2"
-msgstr "Benutzertyp2"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_CUSTOM3\n"
-"string.text"
-msgid "User-defined3"
-msgstr "Benutzertyp3"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_CUSTOM4\n"
-"string.text"
-msgid "User-defined4"
-msgstr "Benutzertyp4"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_CUSTOM5\n"
-"string.text"
-msgid "User-defined5"
-msgstr "Benutzertyp5"
-
-#: sections.src
-msgctxt ""
-"sections.src\n"
-"ST_TYPE_TITLE\n"
-"string.text"
-msgid "General"
-msgstr "Allgemein"
diff --git a/source/de/extensions/source/dbpilots.po b/source/de/extensions/source/dbpilots.po
deleted file mode 100644
index cebc4208e6d..00000000000
--- a/source/de/extensions/source/dbpilots.po
+++ /dev/null
@@ -1,137 +0,0 @@
-#. extracted from extensions/source/dbpilots
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-11-19 15:56+0000\n"
-"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.5.1\n"
-"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416412613.000000\n"
-
-#: commonpagesdbp.src
-msgctxt ""
-"commonpagesdbp.src\n"
-"RID_STR_OPTION_DB_FIELD_TITLE\n"
-"string.text"
-msgid "Database Field"
-msgstr "Datenbankfeld"
-
-#: commonpagesdbp.src
-msgctxt ""
-"commonpagesdbp.src\n"
-"RID_STR_TYPE_TABLE\n"
-"string.text"
-msgid "Table"
-msgstr "Tabelle"
-
-#: commonpagesdbp.src
-msgctxt ""
-"commonpagesdbp.src\n"
-"RID_STR_TYPE_QUERY\n"
-"string.text"
-msgid "Query"
-msgstr "Abfrage"
-
-#: commonpagesdbp.src
-msgctxt ""
-"commonpagesdbp.src\n"
-"RID_STR_TYPE_COMMAND\n"
-"string.text"
-msgid "SQL command"
-msgstr "SQL-Befehl"
-
-#: dbpilots.src
-msgctxt ""
-"dbpilots.src\n"
-"RID_STR_GROUPWIZARD_TITLE\n"
-"string.text"
-msgid "Group Element Wizard"
-msgstr "Gruppenelement-Assistent"
-
-#: dbpilots.src
-msgctxt ""
-"dbpilots.src\n"
-"RID_STR_GRIDWIZARD_TITLE\n"
-"string.text"
-msgid "Table Element Wizard"
-msgstr "Tabellenelement-Assistent"
-
-#: dbpilots.src
-msgctxt ""
-"dbpilots.src\n"
-"RID_STR_LISTWIZARD_TITLE\n"
-"string.text"
-msgid "List Box Wizard"
-msgstr "Listenfeld-Assistent"
-
-#: dbpilots.src
-msgctxt ""
-"dbpilots.src\n"
-"RID_STR_COMBOWIZARD_TITLE\n"
-"string.text"
-msgid "Combo Box Wizard"
-msgstr "Kombinationsfeld-Assistent"
-
-#: dbpilots.src
-msgctxt ""
-"dbpilots.src\n"
-"RID_STR_COULDNOTOPENTABLE\n"
-"string.text"
-msgid "The table connection to the data source could not be established."
-msgstr "Die Tabelle Verbindung zur Datenquelle konnte nicht hergestellt werden."
-
-#: gridpages.src
-msgctxt ""
-"gridpages.src\n"
-"RID_STR_DATEPOSTFIX\n"
-"string.text"
-msgid " (Date)"
-msgstr " (Datum)"
-
-#: gridpages.src
-msgctxt ""
-"gridpages.src\n"
-"RID_STR_TIMEPOSTFIX\n"
-"string.text"
-msgid " (Time)"
-msgstr " (Zeit)"
-
-#: groupboxpages.src
-msgctxt ""
-"groupboxpages.src\n"
-"RID_STR_GROUPWIZ_DBFIELD\n"
-"string.text"
-msgid "You can either save the value of the option group in a database field or use it for a later action."
-msgstr "Sie können den Wert der Optionsgruppe entweder in einem Datenbankfeld speichern oder ihn für eine spätere Aktion verwenden."
-
-#: listcombopages.src
-msgctxt ""
-"listcombopages.src\n"
-"RID_STR_FIELDINFO_COMBOBOX\n"
-"string.text"
-msgid "The contents of the field selected will be shown in the combo box list."
-msgstr "Der Inhalt des ausgewählten Feldes wird in der Liste des Kombinationsfeldes angezeigt."
-
-#: listcombopages.src
-msgctxt ""
-"listcombopages.src\n"
-"RID_STR_FIELDINFO_LISTBOX\n"
-"string.text"
-msgid "The contents of the selected field will be shown in the list box if the linked fields are identical."
-msgstr "Der Inhalt des ausgewählten Feldes wird in dem Listenfeld angezeigt, wenn die verknüpften Felder übereinstimmen."
-
-#: listcombopages.src
-msgctxt ""
-"listcombopages.src\n"
-"RID_STR_COMBOWIZ_DBFIELD\n"
-"string.text"
-msgid "You can either save the value of the combo box in a database field or use it for display purposes."
-msgstr "Sie können den Wert des Kombinationsfeldes entweder in einem Datenbankfeld speichern oder ihn nur zum Anzeigen verwenden."
diff --git a/source/de/extensions/source/propctrlr.po b/source/de/extensions/source/propctrlr.po
deleted file mode 100644
index 43b33f9028d..00000000000
--- a/source/de/extensions/source/propctrlr.po
+++ /dev/null
@@ -1,3128 +0,0 @@
-#. extracted from extensions/source/propctrlr
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-06-09 04:38+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1496983108.000000\n"
-
-#: formlinkdialog.src
-msgctxt ""
-"formlinkdialog.src\n"
-"STR_DETAIL_FORM\n"
-"string.text"
-msgid "Sub Form"
-msgstr "Unterformular"
-
-#: formlinkdialog.src
-msgctxt ""
-"formlinkdialog.src\n"
-"STR_MASTER_FORM\n"
-"string.text"
-msgid "Master Form"
-msgstr "Hauptformular"
-
-#. # will be replace with a name.
-#: formlinkdialog.src
-msgctxt ""
-"formlinkdialog.src\n"
-"STR_ERROR_RETRIEVING_COLUMNS\n"
-"string.text"
-msgid "The columns of '#' could not be retrieved."
-msgstr "Die Spalten für '#' konnten nicht ermittelt werden."
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EDITMASK\n"
-"string.text"
-msgid "Edit mask"
-msgstr "Eingabemaske"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_LITERALMASK\n"
-"string.text"
-msgid "Literal mask"
-msgstr "Zeichenmaske"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_READONLY\n"
-"string.text"
-msgid "Read-only"
-msgstr "Nur lesen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_ENABLED\n"
-"string.text"
-msgid "Enabled"
-msgstr "Aktiviert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_ENABLE_VISIBLE\n"
-"string.text"
-msgid "Visible"
-msgstr "Sichtbar"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_AUTOCOMPLETE\n"
-"string.text"
-msgid "AutoFill"
-msgstr "Automatisch füllen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_LINECOUNT\n"
-"string.text"
-msgid "Line count"
-msgstr "Anzahl der Zeilen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_MAXTEXTLEN\n"
-"string.text"
-msgid "Max. text length"
-msgstr "Max. Textlänge"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SPIN\n"
-"string.text"
-msgid "Spin Button"
-msgstr "Drehfeld"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_STRICTFORMAT\n"
-"string.text"
-msgid "Strict format"
-msgstr "Formatüberprüfung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SHOWTHOUSANDSEP\n"
-"string.text"
-msgid "Thousands separator"
-msgstr "Tausender-Trennzeichen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_PRINTABLE\n"
-"string.text"
-msgid "Printable"
-msgstr "Druckbar"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TARGET_URL\n"
-"string.text"
-msgid "URL"
-msgstr "URL"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TARGET_FRAME\n"
-"string.text"
-msgid "Frame"
-msgstr "Frame"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_HELPTEXT\n"
-"string.text"
-msgid "Help text"
-msgstr "Hilfetext"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_HELPURL\n"
-"string.text"
-msgid "Help URL"
-msgstr "Hilfe URL"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TAG\n"
-"string.text"
-msgid "Additional information"
-msgstr "Zusatzinformation"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_ECHO_CHAR\n"
-"string.text"
-msgid "Password character"
-msgstr "Zeichen für Kennwörter"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TRISTATE\n"
-"string.text"
-msgid "Tristate"
-msgstr "Dreifacher Status"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EMPTY_IS_NULL\n"
-"string.text"
-msgid "Empty string is NULL"
-msgstr "Leere Zeichenkette ist NULL"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DECIMAL_ACCURACY\n"
-"string.text"
-msgid "Decimal accuracy"
-msgstr "Nachkommastellen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_IMAGE_URL\n"
-"string.text"
-msgid "Graphics"
-msgstr "Bilder"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DEFAULT_SELECT_SEQ\n"
-"string.text"
-msgid "Default selection"
-msgstr "Standardauswahl"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DEFAULT_BUTTON\n"
-"string.text"
-msgid "Default button"
-msgstr "Standardschaltfläche"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_LABELCONTROL\n"
-"string.text"
-msgid "Label Field"
-msgstr "Beschriftungsfeld"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_LABEL\n"
-"string.text"
-msgid "Label"
-msgstr "Titel"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_ALIGN\n"
-"string.text"
-msgid "Alignment"
-msgstr "Ausrichtung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_VERTICAL_ALIGN\n"
-"string.text"
-msgid "Vert. Alignment"
-msgstr "Vertikale Ausrichtung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_VERTICAL_ALIGN\n"
-"Top\n"
-"itemlist.text"
-msgid "Top"
-msgstr "Oben"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_VERTICAL_ALIGN\n"
-"Middle\n"
-"itemlist.text"
-msgid "Middle"
-msgstr "Mitte"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_VERTICAL_ALIGN\n"
-"Bottom\n"
-"itemlist.text"
-msgid "Bottom"
-msgstr "Unten"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_IMAGEPOSITION\n"
-"string.text"
-msgid "Graphics alignment"
-msgstr "Bildausrichtung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_FONT\n"
-"string.text"
-msgid "Font"
-msgstr "Schrift"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_BACKGROUNDCOLOR\n"
-"string.text"
-msgid "Background color"
-msgstr "Hintergrundfarbe"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_BORDER\n"
-"string.text"
-msgid "Border"
-msgstr "Rahmen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_ICONSIZE\n"
-"string.text"
-msgid "Icon size"
-msgstr "Symbolgröße"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_ICONSIZE_TYPE\n"
-"Small\n"
-"itemlist.text"
-msgid "Small"
-msgstr "Klein"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_ICONSIZE_TYPE\n"
-"Large\n"
-"itemlist.text"
-msgid "Large"
-msgstr "Groß"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SHOW_POSITION\n"
-"string.text"
-msgid "Positioning"
-msgstr "Positionierung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SHOW_NAVIGATION\n"
-"string.text"
-msgid "Navigation"
-msgstr "Navigation"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SHOW_RECORDACTIONS\n"
-"string.text"
-msgid "Acting on a record"
-msgstr "Datensatzaktionen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SHOW_FILTERSORT\n"
-"string.text"
-msgid "Filtering / Sorting"
-msgstr "Filter / Sortierung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_HSCROLL\n"
-"string.text"
-msgid "Horizontal scroll bar"
-msgstr "Horizontale Bildlaufleiste"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_VSCROLL\n"
-"string.text"
-msgid "Vertical scroll bar"
-msgstr "Vertikale Bildlaufleiste"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_WORDBREAK\n"
-"string.text"
-msgid "Word break"
-msgstr "Wortumbruch"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_MULTILINE\n"
-"string.text"
-msgid "Multiline input"
-msgstr "Mehrzeilig"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_MULTISELECTION\n"
-"string.text"
-msgid "Multiselection"
-msgstr "Mehrfachauswahl"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_NAME\n"
-"string.text"
-msgid "Name"
-msgstr "Name"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_GROUP_NAME\n"
-"string.text"
-msgid "Group name"
-msgstr "Gruppenname"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TABINDEX\n"
-"string.text"
-msgid "Tab order"
-msgstr "Aktivierungsreihenfolge"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_WHEEL_BEHAVIOR\n"
-"string.text"
-msgid "Mouse wheel scroll"
-msgstr "Mausradverhalten"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_FILTER\n"
-"string.text"
-msgid "Filter"
-msgstr "Filter"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SORT_CRITERIA\n"
-"string.text"
-msgid "Sort"
-msgstr "Sortierung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_RECORDMARKER\n"
-"string.text"
-msgid "Record marker"
-msgstr "Datensatzmarkierer"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_FILTERPROPOSAL\n"
-"string.text"
-msgid "Filter proposal"
-msgstr "Filtervorschlag"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_NAVIGATION\n"
-"string.text"
-msgid "Navigation bar"
-msgstr "Symbolleiste Navigation"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_CYCLE\n"
-"string.text"
-msgid "Cycle"
-msgstr "Zyklus"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TABSTOP\n"
-"string.text"
-msgid "Tabstop"
-msgstr "Tabstop"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_CONTROLSOURCE\n"
-"string.text"
-msgid "Data field"
-msgstr "Datenfeld"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DROPDOWN\n"
-"string.text"
-msgid "Dropdown"
-msgstr "Aufklappbar"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_BOUNDCOLUMN\n"
-"string.text"
-msgid "Bound field"
-msgstr "Gebundenes Feld"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_LISTSOURCE\n"
-"string.text"
-msgid "List content"
-msgstr "Listeninhalt"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_LISTSOURCETYPE\n"
-"string.text"
-msgid "Type of list contents"
-msgstr "Art des Listeninhalts"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_CURSORSOURCE\n"
-"string.text"
-msgid "Content"
-msgstr "Inhalt"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_CURSORSOURCETYPE\n"
-"string.text"
-msgid "Content type"
-msgstr "Art des Inhaltes"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_ALLOW_ADDITIONS\n"
-"string.text"
-msgid "Allow additions"
-msgstr "Daten hinzufügen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_ALLOW_DELETIONS\n"
-"string.text"
-msgid "Allow deletions"
-msgstr "Daten löschen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_ALLOW_EDITS\n"
-"string.text"
-msgid "Allow modifications"
-msgstr "Daten ändern"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DATAENTRY\n"
-"string.text"
-msgid "Add data only"
-msgstr "Nur Daten hinzufügen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DATASOURCE\n"
-"string.text"
-msgid "Data source"
-msgstr "Datenquelle"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_MASTERFIELDS\n"
-"string.text"
-msgid "Link master fields"
-msgstr "Verknüpfen von"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SLAVEFIELDS\n"
-"string.text"
-msgid "Link slave fields"
-msgstr "Verknüpfen nach"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_VALUEMIN\n"
-"string.text"
-msgid "Value min."
-msgstr "Min. Wert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_VALUEMAX\n"
-"string.text"
-msgid "Value max."
-msgstr "Max. Wert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_VALUESTEP\n"
-"string.text"
-msgid "Incr./decrement value"
-msgstr "Intervall"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_CURRENCYSYMBOL\n"
-"string.text"
-msgid "Currency symbol"
-msgstr "Währungssymbol"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DATEMIN\n"
-"string.text"
-msgid "Date min."
-msgstr "Min. Datum"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DATEMAX\n"
-"string.text"
-msgid "Date max."
-msgstr "Max. Datum"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DATEFORMAT\n"
-"string.text"
-msgid "Date format"
-msgstr "Datumsformat"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SELECTEDITEMS\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TIMEMIN\n"
-"string.text"
-msgid "Time min."
-msgstr "Min. Zeit"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TIMEMAX\n"
-"string.text"
-msgid "Time max."
-msgstr "Max. Zeit"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TIMEFORMAT\n"
-"string.text"
-msgid "Time format"
-msgstr "Zeitformat"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_CURRSYM_POSITION\n"
-"string.text"
-msgid "Prefix symbol"
-msgstr "Symbol voranstellen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_VALUE\n"
-"string.text"
-msgid "Value"
-msgstr "Wert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_FORMATKEY\n"
-"string.text"
-msgid "Formatting"
-msgstr "Formatierung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_CLASSID\n"
-"string.text"
-msgid "Class ID"
-msgstr "Klassenindex"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_HEIGHT\n"
-"string.text"
-msgid "Height"
-msgstr "Höhe"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_WIDTH\n"
-"string.text"
-msgid "Width"
-msgstr "Breite"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_LISTINDEX\n"
-"string.text"
-msgid "List index"
-msgstr "ListIndex"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_ROWHEIGHT\n"
-"string.text"
-msgid "Row height"
-msgstr "Zeilenhöhe"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_FILLCOLOR\n"
-"string.text"
-msgid "Fill color"
-msgstr "Füllfarbe"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_LINECOLOR\n"
-"string.text"
-msgid "Line color"
-msgstr "Linienfarbe"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_REFVALUE\n"
-"string.text"
-msgid "Reference value (on)"
-msgstr "Referenzwert (ein)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_UNCHECKEDREFVALUE\n"
-"string.text"
-msgid "Reference value (off)"
-msgstr "Referenzwert (aus)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_STRINGITEMLIST\n"
-"string.text"
-msgid "List entries"
-msgstr "Listen-Einträge"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_BUTTONTYPE\n"
-"string.text"
-msgid "Action"
-msgstr "Aktion"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SUBMIT_ACTION\n"
-"string.text"
-msgid "URL"
-msgstr "URL"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SUBMIT_METHOD\n"
-"string.text"
-msgid "Type of submission"
-msgstr "Art des Submits"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DEFAULT_STATE\n"
-"string.text"
-msgid "Default status"
-msgstr "Standardstatus"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SUBMIT_ENCODING\n"
-"string.text"
-msgid "Submission encoding"
-msgstr "Kodierung beim Submit"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DEFAULTVALUE\n"
-"string.text"
-msgid "Default value"
-msgstr "Standardwert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DEFAULTTEXT\n"
-"string.text"
-msgid "Default text"
-msgstr "Standardtext"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DEFAULTDATE\n"
-"string.text"
-msgid "Default date"
-msgstr "Standarddatum"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DEFAULTTIME\n"
-"string.text"
-msgid "Default time"
-msgstr "Standardzeit"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SUBMIT_TARGET\n"
-"string.text"
-msgid "Frame"
-msgstr "Frame"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BORDER_TYPE\n"
-"Without frame\n"
-"itemlist.text"
-msgid "Without frame"
-msgstr "Ohne Rahmen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BORDER_TYPE\n"
-"3D look\n"
-"itemlist.text"
-msgid "3D look"
-msgstr "3D-Darstellung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BORDER_TYPE\n"
-"Flat\n"
-"itemlist.text"
-msgid "Flat"
-msgstr "Flach"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_LISTSOURCE_TYPE\n"
-"Valuelist\n"
-"itemlist.text"
-msgid "Valuelist"
-msgstr "Werteliste"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_LISTSOURCE_TYPE\n"
-"Table\n"
-"itemlist.text"
-msgid "Table"
-msgstr "Tabelle"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_LISTSOURCE_TYPE\n"
-"Query\n"
-"itemlist.text"
-msgid "Query"
-msgstr "Abfrage"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_LISTSOURCE_TYPE\n"
-"Sql\n"
-"itemlist.text"
-msgid "Sql"
-msgstr "SQL"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_LISTSOURCE_TYPE\n"
-"Sql [Native]\n"
-"itemlist.text"
-msgid "Sql [Native]"
-msgstr "SQL [Nativ]"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_LISTSOURCE_TYPE\n"
-"Tablefields\n"
-"itemlist.text"
-msgid "Tablefields"
-msgstr "Tabellenfelder"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_ALIGNMENT\n"
-"Left\n"
-"itemlist.text"
-msgid "Left"
-msgstr "Links"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_ALIGNMENT\n"
-"Center\n"
-"itemlist.text"
-msgid "Center"
-msgstr "Zentriert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_ALIGNMENT\n"
-"Right\n"
-"itemlist.text"
-msgid "Right"
-msgstr "Rechts"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BUTTONTYPE\n"
-"None\n"
-"itemlist.text"
-msgid "None"
-msgstr "Keine"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BUTTONTYPE\n"
-"Submit form\n"
-"itemlist.text"
-msgid "Submit form"
-msgstr "Formular übertragen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BUTTONTYPE\n"
-"Reset form\n"
-"itemlist.text"
-msgid "Reset form"
-msgstr "Formular zurücksetzen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BUTTONTYPE\n"
-"Open document/web page\n"
-"itemlist.text"
-msgid "Open document/web page"
-msgstr "Dokument/Webseite öffnen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BUTTONTYPE\n"
-"First record\n"
-"itemlist.text"
-msgid "First record"
-msgstr "Erster Datensatz"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BUTTONTYPE\n"
-"Previous record\n"
-"itemlist.text"
-msgid "Previous record"
-msgstr "Voriger Datensatz"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BUTTONTYPE\n"
-"Next record\n"
-"itemlist.text"
-msgid "Next record"
-msgstr "Nächster Datensatz"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BUTTONTYPE\n"
-"Last record\n"
-"itemlist.text"
-msgid "Last record"
-msgstr "Letzter Datensatz"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BUTTONTYPE\n"
-"Save record\n"
-"itemlist.text"
-msgid "Save record"
-msgstr "Datensatz speichern"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BUTTONTYPE\n"
-"Undo data entry\n"
-"itemlist.text"
-msgid "Undo data entry"
-msgstr "Dateneingabe rückgängig machen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BUTTONTYPE\n"
-"New record\n"
-"itemlist.text"
-msgid "New record"
-msgstr "Neuer Datensatz"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BUTTONTYPE\n"
-"Delete record\n"
-"itemlist.text"
-msgid "Delete record"
-msgstr "Datensatz löschen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_BUTTONTYPE\n"
-"Refresh form\n"
-"itemlist.text"
-msgid "Refresh form"
-msgstr "Formular aktualisieren"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SUBMIT_METHOD\n"
-"Get\n"
-"itemlist.text"
-msgid "Get"
-msgstr "Abrufen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SUBMIT_METHOD\n"
-"Post\n"
-"itemlist.text"
-msgid "Post"
-msgstr "Senden"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SUBMIT_ENCODING\n"
-"URL\n"
-"itemlist.text"
-msgid "URL"
-msgstr "URL"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SUBMIT_ENCODING\n"
-"Multipart\n"
-"itemlist.text"
-msgid "Multipart"
-msgstr "Mehrteilig"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SUBMIT_ENCODING\n"
-"Text\n"
-"itemlist.text"
-msgid "Text"
-msgstr "Text"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_DATEFORMAT_LIST\n"
-"Standard (short)\n"
-"itemlist.text"
-msgid "Standard (short)"
-msgstr "Standard (kurz)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_DATEFORMAT_LIST\n"
-"Standard (short YY)\n"
-"itemlist.text"
-msgid "Standard (short YY)"
-msgstr "Standard (kurz JJ)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_DATEFORMAT_LIST\n"
-"Standard (short YYYY)\n"
-"itemlist.text"
-msgid "Standard (short YYYY)"
-msgstr "Standard (kurz JJJJ)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_DATEFORMAT_LIST\n"
-"Standard (long)\n"
-"itemlist.text"
-msgid "Standard (long)"
-msgstr "Standard (lang)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_DATEFORMAT_LIST\n"
-"DD/MM/YY\n"
-"itemlist.text"
-msgid "DD/MM/YY"
-msgstr "TT/MM/JJ"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_DATEFORMAT_LIST\n"
-"MM/DD/YY\n"
-"itemlist.text"
-msgid "MM/DD/YY"
-msgstr "MM/TT/JJ"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_DATEFORMAT_LIST\n"
-"YY/MM/DD\n"
-"itemlist.text"
-msgid "YY/MM/DD"
-msgstr "JJ/MM/TT"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_DATEFORMAT_LIST\n"
-"DD/MM/YYYY\n"
-"itemlist.text"
-msgid "DD/MM/YYYY"
-msgstr "TT/MM/JJJJ"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_DATEFORMAT_LIST\n"
-"MM/DD/YYYY\n"
-"itemlist.text"
-msgid "MM/DD/YYYY"
-msgstr "MM/TT/JJJJ"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_DATEFORMAT_LIST\n"
-"YYYY/MM/DD\n"
-"itemlist.text"
-msgid "YYYY/MM/DD"
-msgstr "JJJJ/MM/TT"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_DATEFORMAT_LIST\n"
-"YY-MM-DD\n"
-"itemlist.text"
-msgid "YY-MM-DD"
-msgstr "JJ-MM-TT"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_DATEFORMAT_LIST\n"
-"YYYY-MM-DD\n"
-"itemlist.text"
-msgid "YYYY-MM-DD"
-msgstr "JJJJ-MM-TT"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_TIMEFORMAT_LIST\n"
-"13:45\n"
-"itemlist.text"
-msgid "13:45"
-msgstr "13:45"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_TIMEFORMAT_LIST\n"
-"13:45:00\n"
-"itemlist.text"
-msgid "13:45:00"
-msgstr "13:45:00"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_TIMEFORMAT_LIST\n"
-"01:45 PM\n"
-"itemlist.text"
-msgid "01:45 PM"
-msgstr "01:45 PM"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_TIMEFORMAT_LIST\n"
-"01:45:00 PM\n"
-"itemlist.text"
-msgid "01:45:00 PM"
-msgstr "01:45:00 PM"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_CHECKED\n"
-"Not Selected\n"
-"itemlist.text"
-msgid "Not Selected"
-msgstr "Nicht ausgewählt"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_CHECKED\n"
-"Selected\n"
-"itemlist.text"
-msgid "Selected"
-msgstr "Ausgewählt"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_CHECKED\n"
-"Not Defined\n"
-"itemlist.text"
-msgid "Not Defined"
-msgstr "Nicht definiert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_CYCLE\n"
-"All records\n"
-"itemlist.text"
-msgid "All records"
-msgstr "Alle Datensätze"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_CYCLE\n"
-"Active record\n"
-"itemlist.text"
-msgid "Active record"
-msgstr "Aktueller Datensatz"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_CYCLE\n"
-"Current page\n"
-"itemlist.text"
-msgid "Current page"
-msgstr "Aktuelle Seite"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_NAVIGATION\n"
-"No\n"
-"itemlist.text"
-msgid "No"
-msgstr "Nein"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_NAVIGATION\n"
-"Yes\n"
-"itemlist.text"
-msgid "Yes"
-msgstr "Ja"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_NAVIGATION\n"
-"Parent Form\n"
-"itemlist.text"
-msgid "Parent Form"
-msgstr "Übergeordnetes Formular"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SUBMIT_TARGET\n"
-"_blank\n"
-"itemlist.text"
-msgid "_blank"
-msgstr "_blank"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SUBMIT_TARGET\n"
-"_parent\n"
-"itemlist.text"
-msgid "_parent"
-msgstr "_parent"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SUBMIT_TARGET\n"
-"_self\n"
-"itemlist.text"
-msgid "_self"
-msgstr "_self"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SUBMIT_TARGET\n"
-"_top\n"
-"itemlist.text"
-msgid "_top"
-msgstr "_top"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SELECTION_TYPE\n"
-"None\n"
-"itemlist.text"
-msgid "None"
-msgstr "Keine"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SELECTION_TYPE\n"
-"Single\n"
-"itemlist.text"
-msgid "Single"
-msgstr "Einfach"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SELECTION_TYPE\n"
-"Multi\n"
-"itemlist.text"
-msgid "Multi"
-msgstr "Mehrfach"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SELECTION_TYPE\n"
-"Range\n"
-"itemlist.text"
-msgid "Range"
-msgstr "Bereich"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_APPROVEPARAMETER\n"
-"string.text"
-msgid "Fill parameters"
-msgstr "Parameter füllen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_ACTIONPERFORMED\n"
-"string.text"
-msgid "Execute action"
-msgstr "Aktion ausführen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_AFTERUPDATE\n"
-"string.text"
-msgid "After updating"
-msgstr "Nach dem Aktualisieren"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_BEFOREUPDATE\n"
-"string.text"
-msgid "Before updating"
-msgstr "Vor dem Aktualisieren"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_APPROVEROWCHANGE\n"
-"string.text"
-msgid "Before record action"
-msgstr "Vor der Datensatzaktion"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_ROWCHANGE\n"
-"string.text"
-msgid "After record action"
-msgstr "Nach der Datensatzaktion"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_CONFIRMDELETE\n"
-"string.text"
-msgid "Confirm deletion"
-msgstr "Löschen bestätigen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_ERROROCCURRED\n"
-"string.text"
-msgid "Error occurred"
-msgstr "Fehler aufgetreten"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_FOCUSGAINED\n"
-"string.text"
-msgid "When receiving focus"
-msgstr "Bei Fokuserhalt"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_FOCUSLOST\n"
-"string.text"
-msgid "When losing focus"
-msgstr "Bei Fokusverlust"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_ITEMSTATECHANGED\n"
-"string.text"
-msgid "Item status changed"
-msgstr "Status geändert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_KEYTYPED\n"
-"string.text"
-msgid "Key pressed"
-msgstr "Taste gedrückt"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_KEYUP\n"
-"string.text"
-msgid "Key released"
-msgstr "Taste losgelassen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_LOADED\n"
-"string.text"
-msgid "When loading"
-msgstr "Beim Laden"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_RELOADING\n"
-"string.text"
-msgid "Before reloading"
-msgstr "Vor dem erneuten Laden"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_RELOADED\n"
-"string.text"
-msgid "When reloading"
-msgstr "Beim erneuten Laden"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_MOUSEDRAGGED\n"
-"string.text"
-msgid "Mouse moved while key pressed"
-msgstr "Mausbewegung bei Tastendruck"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_MOUSEENTERED\n"
-"string.text"
-msgid "Mouse inside"
-msgstr "Maus innerhalb"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_MOUSEEXITED\n"
-"string.text"
-msgid "Mouse outside"
-msgstr "Maus außerhalb"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_MOUSEMOVED\n"
-"string.text"
-msgid "Mouse moved"
-msgstr "Mausbewegung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_MOUSEPRESSED\n"
-"string.text"
-msgid "Mouse button pressed"
-msgstr "Maustaste gedrückt"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_MOUSERELEASED\n"
-"string.text"
-msgid "Mouse button released"
-msgstr "Maustaste losgelassen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_POSITIONING\n"
-"string.text"
-msgid "Before record change"
-msgstr "Vor dem Datensatzwechsel"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_POSITIONED\n"
-"string.text"
-msgid "After record change"
-msgstr "Nach dem Datensatzwechsel"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_RESETTED\n"
-"string.text"
-msgid "After resetting"
-msgstr "Nach dem Zurücksetzen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_APPROVERESETTED\n"
-"string.text"
-msgid "Prior to reset"
-msgstr "Vor dem Zurücksetzen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_APPROVEACTIONPERFORMED\n"
-"string.text"
-msgid "Approve action"
-msgstr "Aktion bestätigen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_SUBMITTED\n"
-"string.text"
-msgid "Before submitting"
-msgstr "Vor dem Submit"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_TEXTCHANGED\n"
-"string.text"
-msgid "Text modified"
-msgstr "Text modifiziert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_UNLOADING\n"
-"string.text"
-msgid "Before unloading"
-msgstr "Vor dem Entladen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_UNLOADED\n"
-"string.text"
-msgid "When unloading"
-msgstr "Beim Entladen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_CHANGED\n"
-"string.text"
-msgid "Changed"
-msgstr "Modifiziert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVENTS\n"
-"string.text"
-msgid "Events"
-msgstr "Ereignisse"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_ESCAPE_PROCESSING\n"
-"string.text"
-msgid "Analyze SQL command"
-msgstr "SQL-Befehl analysieren"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_POSITIONX\n"
-"string.text"
-msgid "PositionX"
-msgstr "PositionX"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_POSITIONY\n"
-"string.text"
-msgid "PositionY"
-msgstr "PositionY"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TITLE\n"
-"string.text"
-msgid "Title"
-msgstr "Titel"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_STEP\n"
-"string.text"
-msgid "Page (step)"
-msgstr "Seite (Step)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_PROGRESSVALUE\n"
-"string.text"
-msgid "Progress value"
-msgstr "Fortschrittswert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_PROGRESSVALUE_MIN\n"
-"string.text"
-msgid "Progress value min."
-msgstr "Min. Fortschrittswert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_PROGRESSVALUE_MAX\n"
-"string.text"
-msgid "Progress value max."
-msgstr "Max. Fortschrittswert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SCROLLVALUE\n"
-"string.text"
-msgid "Scroll value"
-msgstr "Bildlaufwert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SCROLLVALUE_MAX\n"
-"string.text"
-msgid "Scroll value max."
-msgstr "Max. Bildlaufwert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SCROLLVALUE_MIN\n"
-"string.text"
-msgid "Scroll value min."
-msgstr "Min. Bildlaufwert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SCROLL_WIDTH\n"
-"string.text"
-msgid "Scroll width"
-msgstr "Bildlaufbreite"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SCROLL_HEIGHT\n"
-"string.text"
-msgid "Scroll height"
-msgstr "Bildlaufhöhe"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SCROLL_TOP\n"
-"string.text"
-msgid "Scroll top"
-msgstr "Nach oben rollen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SCROLL_LEFT\n"
-"string.text"
-msgid "Scroll left"
-msgstr "Nach links rollen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DEFAULT_SCROLLVALUE\n"
-"string.text"
-msgid "Default scroll value"
-msgstr "Standard Bildlaufwert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_LINEINCREMENT\n"
-"string.text"
-msgid "Small change"
-msgstr "Kleine Änderung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_BLOCKINCREMENT\n"
-"string.text"
-msgid "Large change"
-msgstr "Große Änderung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_REPEAT_DELAY\n"
-"string.text"
-msgid "Delay"
-msgstr "Verzögerung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_REPEAT\n"
-"string.text"
-msgid "Repeat"
-msgstr "Wiederholung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_VISIBLESIZE\n"
-"string.text"
-msgid "Visible size"
-msgstr "Sichtbare Größe"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_ORIENTATION\n"
-"string.text"
-msgid "Orientation"
-msgstr "Ausrichtung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_ORIENTATION\n"
-"Horizontal\n"
-"itemlist.text"
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_ORIENTATION\n"
-"Vertical\n"
-"itemlist.text"
-msgid "Vertical"
-msgstr "Vertikal"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EVT_ADJUSTMENTVALUECHANGED\n"
-"string.text"
-msgid "While adjusting"
-msgstr "Beim Justieren"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DATE\n"
-"string.text"
-msgid "Date"
-msgstr "Datum"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_STATE\n"
-"string.text"
-msgid "State"
-msgstr "Status"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TIME\n"
-"string.text"
-msgid "Time"
-msgstr "Zeit"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SCALEIMAGE\n"
-"string.text"
-msgid "Scale"
-msgstr "Skalieren"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_PUSHBUTTONTYPE\n"
-"string.text"
-msgid "Button type"
-msgstr "Art der Schaltfläche"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_PUSHBUTTONTYPE\n"
-"Default\n"
-"itemlist.text"
-msgid "Default"
-msgstr "Standard"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_PUSHBUTTONTYPE\n"
-"OK\n"
-"itemlist.text"
-msgid "OK"
-msgstr "OK"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_PUSHBUTTONTYPE\n"
-"Cancel\n"
-"itemlist.text"
-msgid "Cancel"
-msgstr "Abbrechen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_PUSHBUTTONTYPE\n"
-"Help\n"
-"itemlist.text"
-msgid "Help"
-msgstr "Hilfe"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_UNABLETOCONNECT\n"
-"string.text"
-msgid "The connection to the data source \"$name$\" could not be established."
-msgstr "Die Verbindung zur Datenquelle \"$name$\" konnte nicht hergestellt werden."
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TEXT\n"
-"string.text"
-msgid "Text"
-msgstr "Text"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_BOUND_CELL\n"
-"string.text"
-msgid "Linked cell"
-msgstr "Verknüpfte Zelle"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_LIST_CELL_RANGE\n"
-"string.text"
-msgid "Source cell range"
-msgstr "Quellzellenbereich"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_CELL_EXCHANGE_TYPE\n"
-"string.text"
-msgid "Contents of the linked cell"
-msgstr "Inhalt der verknüpften Zelle"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_CELL_EXCHANGE_TYPE\n"
-"The selected entry\n"
-"itemlist.text"
-msgid "The selected entry"
-msgstr "Der ausgewählte Eintrag"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_CELL_EXCHANGE_TYPE\n"
-"Position of the selected entry\n"
-"itemlist.text"
-msgid "Position of the selected entry"
-msgstr "Position des ausgewählten Eintrags"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SHOW_SCROLLBARS\n"
-"string.text"
-msgid "Scrollbars"
-msgstr "Bildlaufleisten"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_TEXTTYPE\n"
-"Single-line\n"
-"itemlist.text"
-msgid "Single-line"
-msgstr "Einzeilig"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_TEXTTYPE\n"
-"Multi-line\n"
-"itemlist.text"
-msgid "Multi-line"
-msgstr "Mehrzeilig"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_TEXTTYPE\n"
-"Multi-line with formatting\n"
-"itemlist.text"
-msgid "Multi-line with formatting"
-msgstr "Mehrzeilig mit Formatierung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SYMBOLCOLOR\n"
-"string.text"
-msgid "Symbol color"
-msgstr "Symbolfarbe"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_LINEEND_FORMAT\n"
-"string.text"
-msgid "Text lines end with"
-msgstr "Textzeilen enden mit"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_LINEEND_FORMAT\n"
-"LF (Unix)\n"
-"itemlist.text"
-msgid "LF (Unix)"
-msgstr "LF (Unix)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_LINEEND_FORMAT\n"
-"CR+LF (Windows)\n"
-"itemlist.text"
-msgid "CR+LF (Windows)"
-msgstr "CR+LF (Windows)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SCROLLBARS\n"
-"None\n"
-"itemlist.text"
-msgid "None"
-msgstr "Keine"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SCROLLBARS\n"
-"Horizontal\n"
-"itemlist.text"
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SCROLLBARS\n"
-"Vertical\n"
-"itemlist.text"
-msgid "Vertical"
-msgstr "Vertikal"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SCROLLBARS\n"
-"Both\n"
-"itemlist.text"
-msgid "Both"
-msgstr "Beide"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_COMMAND_TYPE\n"
-"Table\n"
-"itemlist.text"
-msgid "Table"
-msgstr "Tabelle"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_COMMAND_TYPE\n"
-"Query\n"
-"itemlist.text"
-msgid "Query"
-msgstr "Abfrage"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_COMMAND_TYPE\n"
-"SQL command\n"
-"itemlist.text"
-msgid "SQL command"
-msgstr "SQL-Befehl"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TOGGLE\n"
-"string.text"
-msgid "Toggle"
-msgstr "Umschalten"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_FOCUSONCLICK\n"
-"string.text"
-msgid "Take Focus on Click"
-msgstr "Fokussieren bei Klick"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_HIDEINACTIVESELECTION\n"
-"string.text"
-msgid "Hide selection"
-msgstr "Auswahl verstecken"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_VISUALEFFECT\n"
-"string.text"
-msgid "Style"
-msgstr "Stil"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_VISUALEFFECT\n"
-"3D\n"
-"itemlist.text"
-msgid "3D"
-msgstr "3D"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_VISUALEFFECT\n"
-"Flat\n"
-"itemlist.text"
-msgid "Flat"
-msgstr "Flach"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_BORDERCOLOR\n"
-"string.text"
-msgid "Border color"
-msgstr "Umrandungsfarbe"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_IMAGE_POSITION\n"
-"Left top\n"
-"itemlist.text"
-msgid "Left top"
-msgstr "Links oben"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_IMAGE_POSITION\n"
-"Left centered\n"
-"itemlist.text"
-msgid "Left centered"
-msgstr "Links mittig"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_IMAGE_POSITION\n"
-"Left bottom\n"
-"itemlist.text"
-msgid "Left bottom"
-msgstr "Links unten"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_IMAGE_POSITION\n"
-"Right top\n"
-"itemlist.text"
-msgid "Right top"
-msgstr "Rechts oben"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_IMAGE_POSITION\n"
-"Right centered\n"
-"itemlist.text"
-msgid "Right centered"
-msgstr "Rechts mittig"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_IMAGE_POSITION\n"
-"Right bottom\n"
-"itemlist.text"
-msgid "Right bottom"
-msgstr "Rechts unten"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_IMAGE_POSITION\n"
-"Above left\n"
-"itemlist.text"
-msgid "Above left"
-msgstr "Oben links"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_IMAGE_POSITION\n"
-"Above centered\n"
-"itemlist.text"
-msgid "Above centered"
-msgstr "Oben zentriert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_IMAGE_POSITION\n"
-"Above right\n"
-"itemlist.text"
-msgid "Above right"
-msgstr "Oben rechts"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_IMAGE_POSITION\n"
-"Below left\n"
-"itemlist.text"
-msgid "Below left"
-msgstr "Unten links"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_IMAGE_POSITION\n"
-"Below centered\n"
-"itemlist.text"
-msgid "Below centered"
-msgstr "Unten zentriert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_IMAGE_POSITION\n"
-"Below right\n"
-"itemlist.text"
-msgid "Below right"
-msgstr "Unten rechts"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_IMAGE_POSITION\n"
-"Centered\n"
-"itemlist.text"
-msgid "Centered"
-msgstr "Zentriert"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_AUTOLINEBREAK\n"
-"string.text"
-msgid "Wrap text automatically"
-msgstr "Automatischer Zeilenumbruch"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_TEXTTYPE\n"
-"string.text"
-msgid "Text type"
-msgstr "Text-Typ"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SHOWHIDE\n"
-"Hide\n"
-"itemlist.text"
-msgid "Hide"
-msgstr "Verbergen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SHOWHIDE\n"
-"Show\n"
-"itemlist.text"
-msgid "Show"
-msgstr "Zeigen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XML_DATA_MODEL\n"
-"string.text"
-msgid "XML data model"
-msgstr "XML-Datenmodell"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_BIND_EXPRESSION\n"
-"string.text"
-msgid "Binding expression"
-msgstr "Bindungsausdruck"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_REQUIRED\n"
-"string.text"
-msgid "Required"
-msgstr "Erforderlich"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_LIST_BINDING\n"
-"string.text"
-msgid "List entry source"
-msgstr "Listeneinträge aus"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_RELEVANT\n"
-"string.text"
-msgid "Relevant"
-msgstr "Relevant"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_READONLY\n"
-"string.text"
-msgid "Read-only"
-msgstr "Nur lesen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_CONSTRAINT\n"
-"string.text"
-msgid "Constraint"
-msgstr "Bedingung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_CALCULATION\n"
-"string.text"
-msgid "Calculation"
-msgstr "Berechnung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_DATA_TYPE\n"
-"string.text"
-msgid "Data type"
-msgstr "Datentyp"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_WHITESPACES\n"
-"string.text"
-msgid "Whitespaces"
-msgstr "Leerzeichen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_WHITESPACE_HANDLING\n"
-"Preserve\n"
-"itemlist.text"
-msgid "Preserve"
-msgstr "Erhalten"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_WHITESPACE_HANDLING\n"
-"Replace\n"
-"itemlist.text"
-msgid "Replace"
-msgstr "Ersetzen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_WHITESPACE_HANDLING\n"
-"Collapse\n"
-"itemlist.text"
-msgid "Collapse"
-msgstr "Zusammenfassen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_PATTERN\n"
-"string.text"
-msgid "Pattern"
-msgstr "Muster"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_LENGTH\n"
-"string.text"
-msgid "Length"
-msgstr "Länge"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_MIN_LENGTH\n"
-"string.text"
-msgid "Length (at least)"
-msgstr "Länge (mindestens)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_MAX_LENGTH\n"
-"string.text"
-msgid "Length (at most)"
-msgstr "Länge (höchstens)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_TOTAL_DIGITS\n"
-"string.text"
-msgid "Digits (total)"
-msgstr "Ziffern (gesamt)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_FRACTION_DIGITS\n"
-"string.text"
-msgid "Digits (fraction)"
-msgstr "(Nachkomma-) Stellen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_MAX_INCLUSIVE\n"
-"string.text"
-msgid "Max. (inclusive)"
-msgstr "Max. (einschl.)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_MAX_EXCLUSIVE\n"
-"string.text"
-msgid "Max. (exclusive)"
-msgstr "Max. (ausschl.)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_MIN_INCLUSIVE\n"
-"string.text"
-msgid "Min. (inclusive)"
-msgstr "Min. (einschl.)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_XSD_MIN_EXCLUSIVE\n"
-"string.text"
-msgid "Min. (exclusive)"
-msgstr "Min. (ausschl.)"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SUBMISSION_ID\n"
-"string.text"
-msgid "Submission"
-msgstr "Submission"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_BINDING_UI_NAME\n"
-"string.text"
-msgid "Binding"
-msgstr "Bindung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SELECTION_TYPE\n"
-"string.text"
-msgid "Selection type"
-msgstr "Auswahlart"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_ROOT_DISPLAYED\n"
-"string.text"
-msgid "Root displayed"
-msgstr "Wurzel anzeigen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SHOWS_HANDLES\n"
-"string.text"
-msgid "Show handles"
-msgstr "Linien anzeigen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_SHOWS_ROOT_HANDLES\n"
-"string.text"
-msgid "Show root handles"
-msgstr "Linien für Wurzel anzeigen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_EDITABLE\n"
-"string.text"
-msgid "Editable"
-msgstr "Bearbeitbar"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_INVOKES_STOP_NOT_EDITING\n"
-"string.text"
-msgid "Invokes stop node editing"
-msgstr "Geänderte Knoten speichern"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_DECORATION\n"
-"string.text"
-msgid "With title bar"
-msgstr "Mit Titelleiste"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_NOLABEL\n"
-"string.text"
-msgid "No Label"
-msgstr "Kein Bezeichner"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SCALE_MODE\n"
-"No\n"
-"itemlist.text"
-msgid "No"
-msgstr "Nein"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SCALE_MODE\n"
-"Keep Ratio\n"
-"itemlist.text"
-msgid "Keep Ratio"
-msgstr "Größenverhältnis beibehalten"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SCALE_MODE\n"
-"Fit to Size\n"
-"itemlist.text"
-msgid "Fit to Size"
-msgstr "Automatische Größe"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_INPUT_REQUIRED\n"
-"string.text"
-msgid "Input required"
-msgstr "Eingabe erforderlich"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_WRITING_MODE\n"
-"string.text"
-msgid "Text direction"
-msgstr "Textfluss"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_WRITING_MODE\n"
-"Left-to-right\n"
-"itemlist.text"
-msgid "Left-to-right"
-msgstr "Links-nach-Rechts"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_WRITING_MODE\n"
-"Right-to-left\n"
-"itemlist.text"
-msgid "Right-to-left"
-msgstr "Rechts-nach-Links"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_WRITING_MODE\n"
-"Use superordinate object settings\n"
-"itemlist.text"
-msgid "Use superordinate object settings"
-msgstr "Einstellungen des übergeordneten Objekts verwenden"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_WHEEL_BEHAVIOR\n"
-"Never\n"
-"itemlist.text"
-msgid "Never"
-msgstr "Nie"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_WHEEL_BEHAVIOR\n"
-"When focused\n"
-"itemlist.text"
-msgid "When focused"
-msgstr "Wenn ausgewählt"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_WHEEL_BEHAVIOR\n"
-"Always\n"
-"itemlist.text"
-msgid "Always"
-msgstr "Immer"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_ANCHOR_TYPE\n"
-"string.text"
-msgid "Anchor"
-msgstr "Verankerung"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_TEXT_ANCHOR_TYPE\n"
-"To Paragraph\n"
-"itemlist.text"
-msgid "To Paragraph"
-msgstr "Am Absatz"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_TEXT_ANCHOR_TYPE\n"
-"As Character\n"
-"itemlist.text"
-msgid "As Character"
-msgstr "Als Zeichen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_TEXT_ANCHOR_TYPE\n"
-"To Page\n"
-"itemlist.text"
-msgid "To Page"
-msgstr "An der Seite"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_TEXT_ANCHOR_TYPE\n"
-"To Frame\n"
-"itemlist.text"
-msgid "To Frame"
-msgstr "Am Rahmen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_TEXT_ANCHOR_TYPE\n"
-"To Character\n"
-"itemlist.text"
-msgid "To Character"
-msgstr "Am Zeichen"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SHEET_ANCHOR_TYPE\n"
-"To Page\n"
-"itemlist.text"
-msgid "To Page"
-msgstr "An der Seite"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_RSC_ENUM_SHEET_ANCHOR_TYPE\n"
-"To Cell\n"
-"itemlist.text"
-msgid "To Cell"
-msgstr "An der Zelle"
-
-#. That's the 'Regular' as used for a font style (as opposed to 'italic' and 'bold'), so please use a consistent translation.
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_FONTSTYLE_REGULAR\n"
-"string.text"
-msgid "Regular"
-msgstr "Standard"
-
-#. That's the 'Bold Italic' as used for a font style, so please use a consistent translation.
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_FONTSTYLE_BOLD_ITALIC\n"
-"string.text"
-msgid "Bold Italic"
-msgstr "Fett Kursiv"
-
-#. That's the 'Italic' as used for a font style, so please use a consistent translation.
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_FONTSTYLE_ITALIC\n"
-"string.text"
-msgid "Italic"
-msgstr "Kursiv"
-
-#. That's the 'Bold' as used for a font style, so please use a consistent translation.
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_FONTSTYLE_BOLD\n"
-"string.text"
-msgid "Bold"
-msgstr "Fett"
-
-#: formres.src
-msgctxt ""
-"formres.src\n"
-"RID_STR_FONT_DEFAULT\n"
-"string.text"
-msgid "(Default)"
-msgstr "(Standard)"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_CONFIRM_DELETE_DATA_TYPE\n"
-"string.text"
-msgid ""
-"Do you want to delete the data type '#type#' from the model?\n"
-"Please note that this will affect all controls which are bound to this data type."
-msgstr ""
-"Möchten Sie den Datentype '#type#' aus dem Modell löschen?\n"
-"Beachten Sie, dass alle Steuerelemente betroffen sein werden, die mit diesem Datentyp verbunden sind."
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_PUSHBUTTON\n"
-"string.text"
-msgid "Button"
-msgstr "Schaltfläche"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_RADIOBUTTON\n"
-"string.text"
-msgid "Option Button"
-msgstr "Optionsfeld"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_CHECKBOX\n"
-"string.text"
-msgid "Check Box"
-msgstr "Markierfeld"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_FIXEDTEXT\n"
-"string.text"
-msgid "Label Field"
-msgstr "Beschriftungsfeld"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_GROUPBOX\n"
-"string.text"
-msgid "Group Box"
-msgstr "Gruppierungsrahmen"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_EDIT\n"
-"string.text"
-msgid "Text Box"
-msgstr "Textfeld"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_FORMATTED\n"
-"string.text"
-msgid "Formatted Field"
-msgstr "Formatiertes Feld"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_LISTBOX\n"
-"string.text"
-msgid "List Box"
-msgstr "Listenfeld"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_COMBOBOX\n"
-"string.text"
-msgid "Combo Box"
-msgstr "Kombinationsfeld"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_IMAGEBUTTON\n"
-"string.text"
-msgid "Image Button"
-msgstr "Grafische Schaltfläche"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_HIDDENCONTROL\n"
-"string.text"
-msgid "Hidden Control"
-msgstr "Verstecktes Steuerelement"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_UNKNOWNCONTROL\n"
-"string.text"
-msgid "Control (unknown type)"
-msgstr "Steuerelement (unbekannter Typ)"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_IMAGECONTROL\n"
-"string.text"
-msgid "Image Control"
-msgstr "Grafisches Steuerelement"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_FILECONTROL\n"
-"string.text"
-msgid "File Selection"
-msgstr "Dateiauswahl"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_DATEFIELD\n"
-"string.text"
-msgid "Date Field"
-msgstr "Datumsfeld"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_TIMEFIELD\n"
-"string.text"
-msgid "Time Field"
-msgstr "Zeitfeld"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_NUMERICFIELD\n"
-"string.text"
-msgid "Numeric Field"
-msgstr "Numerisches Feld"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_CURRENCYFIELD\n"
-"string.text"
-msgid "Currency Field"
-msgstr "Währungsfeld"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_PATTERNFIELD\n"
-"string.text"
-msgid "Pattern Field"
-msgstr "Maskiertes Feld"
-
-#: pcrmiscres.src
-msgctxt ""
-"pcrmiscres.src\n"
-"RID_STR_PROPTITLE_DBGRID\n"
-"string.text"
-msgid "Table Control "
-msgstr "Tabellen-Kontrollfeld "
-
-#: propres.src
-msgctxt ""
-"propres.src\n"
-"RID_STR_STANDARD\n"
-"string.text"
-msgid "Default"
-msgstr "Standard"
-
-#: propres.src
-msgctxt ""
-"propres.src\n"
-"RID_STR_PROPPAGE_DEFAULT\n"
-"string.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: propres.src
-msgctxt ""
-"propres.src\n"
-"RID_STR_PROPPAGE_DATA\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: propres.src
-msgctxt ""
-"propres.src\n"
-"RID_RSC_ENUM_YESNO\n"
-"No\n"
-"itemlist.text"
-msgid "No"
-msgstr "Nein"
-
-#: propres.src
-msgctxt ""
-"propres.src\n"
-"RID_RSC_ENUM_YESNO\n"
-"Yes\n"
-"itemlist.text"
-msgid "Yes"
-msgstr "Ja"
-
-#: propres.src
-msgctxt ""
-"propres.src\n"
-"RID_STR_HELP_SECTION_LABEL\n"
-"string.text"
-msgid "Help"
-msgstr "Hilfe"
-
-#: propres.src
-msgctxt ""
-"propres.src\n"
-"RID_EMBED_IMAGE_PLACEHOLDER\n"
-"string.text"
-msgid "<Embedded-Image>"
-msgstr "<Eingebettetes Bild>"
-
-#: propres.src
-msgctxt ""
-"propres.src\n"
-"RID_STR_TEXT_FORMAT\n"
-"string.text"
-msgid "Text"
-msgstr "Text"
-
-#: selectlabeldialog.src
-msgctxt ""
-"selectlabeldialog.src\n"
-"RID_STR_FORMS\n"
-"string.text"
-msgid "Forms"
-msgstr "Formulare"
diff --git a/source/de/extensions/source/scanner.po b/source/de/extensions/source/scanner.po
deleted file mode 100644
index 5afa9cc3da7..00000000000
--- a/source/de/extensions/source/scanner.po
+++ /dev/null
@@ -1,57 +0,0 @@
-#. extracted from extensions/source/scanner
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2015-06-26 19:10+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
-"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435345847.000000\n"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"STR_COULD_NOT_BE_INIT\n"
-"string.text"
-msgid "The SANE interface could not be initialized. Scanning is not possible."
-msgstr "Das SANE Interface konnte nicht initialisiert werden. Es kann kein Scanvorgang stattfinden."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"STR_SLOW_PREVIEW\n"
-"string.text"
-msgid "The device does not offer a preview option. Therefore, a normal scan will be used as a preview instead. This may take a considerable amount of time."
-msgstr "Das Gerät ist nicht für die Erzeugung einer Vorschau eingerichtet. Stattdessen wird als Vorschau ein normaler Scan verwendet. Dieser kann deutlich länger dauern."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"STR_ERROR_SCAN\n"
-"string.text"
-msgid "An error occurred while scanning."
-msgstr "Während des Scans ist ein Fehler aufgetreten."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"STR_DEVICE_DESC\n"
-"string.text"
-msgid ""
-"Device: %s\n"
-"Vendor: %s\n"
-"Model: %s\n"
-"Type: %s"
-msgstr ""
-"Gerät: %s\n"
-"Hersteller: %s\n"
-"Modell: %s\n"
-"Typ: %s"
diff --git a/source/de/extensions/source/update/check.po b/source/de/extensions/source/update/check.po
deleted file mode 100644
index 2ce6e7345a1..00000000000
--- a/source/de/extensions/source/update/check.po
+++ /dev/null
@@ -1,409 +0,0 @@
-#. extracted from extensions/source/update/check
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-05-23 21:37+0200\n"
-"PO-Revision-Date: 2016-03-13 10:55+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457866532.000000\n"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_CHECKING\n"
-"string.text"
-msgid "Checking..."
-msgstr "Suche läuft..."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_CHECKING_ERR\n"
-"string.text"
-msgid "Checking for an update failed."
-msgstr "Die Suche nach einem Update ist fehlgeschlagen."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_NO_UPD_FOUND\n"
-"string.text"
-msgid "%PRODUCTNAME %PRODUCTVERSION is up to date."
-msgstr "%PRODUCTNAME %PRODUCTVERSION ist auf dem neuesten Stand."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_UPD_FOUND\n"
-"string.text"
-msgid ""
-"%PRODUCTNAME %NEXTVERSION is available.\n"
-"\n"
-"The installed version is %PRODUCTNAME %PRODUCTVERSION.\n"
-"\n"
-"Note: Before downloading an update, please ensure that you have sufficient access rights to install it.\n"
-"A password, usually the administrator's or root password, may be required."
-msgstr ""
-"%PRODUCTNAME %NEXTVERSION ist verfügbar.\n"
-"\n"
-"Die installierte Version ist %PRODUCTNAME %PRODUCTVERSION.\n"
-"\n"
-"Hinweis: Bevor Sie ein Update herunterladen, vergewissern Sie sich, dass Sie die benötigten Rechte zur Installation haben.\n"
-"Ein Kennwort, normalerweise das Administrator-Kennwort oder das root-Kennwort, könnte erforderlich sein."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_DLG_TITLE\n"
-"string.text"
-msgid "Check for Updates"
-msgstr "Suche nach Updates"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_DOWNLOAD_PAUSE\n"
-"string.text"
-msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
-msgstr "Herunterladen von %PRODUCTNAME %NEXTVERSION angehalten bei..."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_DOWNLOAD_ERR\n"
-"string.text"
-msgid "Downloading %PRODUCTNAME %NEXTVERSION stalled at"
-msgstr "Herunterladen von %PRODUCTNAME %NEXTVERSION unterbrochen bei"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_DOWNLOAD_WARN\n"
-"string.text"
-msgid ""
-"The download location is: %DOWNLOAD_PATH.\n"
-"\n"
-"Under Tools – Options... - %PRODUCTNAME – Online Update you can change the download location."
-msgstr ""
-"Der Speicherort ist: %DOWNLOAD_PATH.\n"
-"\n"
-"Sie können den Speicherort unter Extras – Optionen... - %PRODUCTNAME – Online Update ändern."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_DOWNLOAD_DESCR\n"
-"string.text"
-msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH."
-msgstr "%FILE_NAME wurde nach %DOWNLOAD_PATH herunter geladen."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_DOWNLOAD_UNAVAIL\n"
-"string.text"
-msgid ""
-"The automatic download of the update is currently not available.\n"
-"\n"
-"Click 'Download...' to download %PRODUCTNAME %NEXTVERSION manually from the web site."
-msgstr ""
-"Das automatische Herunterladen des Updates ist momentan nicht verfügbar.\n"
-"\n"
-"Klicken Sie auf 'Herunterladen...', um %PRODUCTNAME %NEXTVERSION manuell herunterzuladen."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_DOWNLOADING\n"
-"string.text"
-msgid "Downloading %PRODUCTNAME %NEXTVERSION..."
-msgstr "Herunterladen von %PRODUCTNAME %NEXTVERSION..."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_READY_INSTALL\n"
-"string.text"
-msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
-msgstr "Das Herunterladen von %PRODUCTNAME %NEXTVERSION ist abgeschlossen. Bereit zur Installation."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_CANCEL_TITLE\n"
-"string.text"
-msgid "%PRODUCTNAME %PRODUCTVERSION"
-msgstr "%PRODUCTNAME %PRODUCTVERSION"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_CANCEL_DOWNLOAD\n"
-"string.text"
-msgid "Do you really want to cancel the download?"
-msgstr "Möchten Sie das Herunterladen wirklich abbrechen?"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_BEGIN_INSTALL\n"
-"string.text"
-msgid "To install the update, %PRODUCTNAME %PRODUCTVERSION needs to be closed. Do you want to install the update now?"
-msgstr "Zur Installation des Updates wird %PRODUCTNAME %PRODUCTVERSION beendet. Möchten Sie das Update jetzt installieren?"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_INSTALL_NOW\n"
-"string.text"
-msgid "Install ~now"
-msgstr "~Jetzt installieren"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_INSTALL_LATER\n"
-"string.text"
-msgid "Install ~later"
-msgstr "~Später installieren"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_INSTALL_ERROR\n"
-"string.text"
-msgid "Could not run the installer application, please run %FILE_NAME in %DOWNLOAD_PATH manually."
-msgstr "Das Installationsprogramm konnte nicht gestartet werden, bitte starten Sie %FILE_NAME im Verzeichnis %DOWNLOAD_PATH manuell."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_OVERWRITE_WARNING\n"
-"string.text"
-msgid "A file with that name already exists! Do you want to overwrite the existing file?"
-msgstr "Es existiert bereits eine Datei mit gleichem Namen. Möchten Sie die bestehende Datei überschreiben?"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_RELOAD_WARNING\n"
-"string.text"
-msgid "A file with the name '%FILENAME' already exists in '%DOWNLOAD_PATH'! Do you want to continue with the download or delete and reload the file?"
-msgstr "Es existiert bereits eine Datei '%FILENAME' im Verzeichnis '%DOWNLOAD_PATH'! Möchten Sie das Herunterladen fortsetzen oder die Datei löschen und erneut herunterladen?"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_RELOAD_RELOAD\n"
-"string.text"
-msgid "Reload File"
-msgstr "Erneut laden"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_RELOAD_CONTINUE\n"
-"string.text"
-msgid "Continue"
-msgstr "Fortsetzen"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_STR_PERCENT\n"
-"string.text"
-msgid "%PERCENT%"
-msgstr "%PERCENT%"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_FT_STATUS\n"
-"string.text"
-msgid "Status"
-msgstr "Status"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_FT_DESCRIPTION\n"
-"string.text"
-msgid "Description"
-msgstr "Beschreibung"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BTN_CLOSE\n"
-"string.text"
-msgid "Close"
-msgstr "Schließen"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BTN_DOWNLOAD\n"
-"string.text"
-msgid "~Download"
-msgstr "~Herunterladen"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BTN_INSTALL\n"
-"string.text"
-msgid "~Install"
-msgstr "~Installieren"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BTN_PAUSE\n"
-"string.text"
-msgid "~Pause"
-msgstr "~Anhalten"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BTN_RESUME\n"
-"string.text"
-msgid "~Resume"
-msgstr "~Fortsetzen"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BTN_CANCEL\n"
-"string.text"
-msgid "Cancel"
-msgstr "Abbrechen"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_T_UPDATE_AVAIL\n"
-"string.text"
-msgid "%PRODUCTNAME update available"
-msgstr "%PRODUCTNAME-Update verfügbar"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_UPDATE_AVAIL\n"
-"string.text"
-msgid "Click the icon to start the download."
-msgstr "Klicken Sie auf das Symbol, um das Herunterzuladen zu starten."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_T_UPDATE_NO_DOWN\n"
-"string.text"
-msgid "%PRODUCTNAME update available"
-msgstr "%PRODUCTNAME-Update verfügbar"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_UPDATE_NO_DOWN\n"
-"string.text"
-msgid "Click the icon for more information."
-msgstr "Klicken Sie auf das Symbol, um mehr Informationen zu erhalten."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_T_AUTO_START\n"
-"string.text"
-msgid "%PRODUCTNAME update available"
-msgstr "%PRODUCTNAME-Update verfügbar"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_AUTO_START\n"
-"string.text"
-msgid "Download of update begins."
-msgstr "Herunterladen des Updates beginnt."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_T_DOWNLOADING\n"
-"string.text"
-msgid "Download of update in progress"
-msgstr "Herunterladen des Updates in Arbeit"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED\n"
-"string.text"
-msgid "Download of update paused"
-msgstr "Herunterladen des Updates angehalten"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_DOWNLOAD_PAUSED\n"
-"string.text"
-msgid "Click the icon to resume."
-msgstr "Klicken Sie auf das Symbol, um fortzusetzen."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_T_ERROR_DOWNLOADING\n"
-"string.text"
-msgid "Download of update stalled"
-msgstr "Herunterladen des Updates unterbrochen"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_ERROR_DOWNLOADING\n"
-"string.text"
-msgid "Click the icon for more information."
-msgstr "Klicken Sie auf das Symbol, um mehr Informationen zu erhalten."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_T_DOWNLOAD_AVAIL\n"
-"string.text"
-msgid "Download of update completed"
-msgstr "Herunterladen des Updates abgeschlossen"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_DOWNLOAD_AVAIL\n"
-"string.text"
-msgid "Click the icon to start the installation."
-msgstr "Klicken Sie auf das Symbol, um die Installation zu starten."
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_T_EXT_UPD_AVAIL\n"
-"string.text"
-msgid "Updates for extensions available"
-msgstr "Updates für Extensions verfügbar"
-
-#: updatehdl.src
-msgctxt ""
-"updatehdl.src\n"
-"RID_UPDATE_BUBBLE_EXT_UPD_AVAIL\n"
-"string.text"
-msgid "Click the icon for more information."
-msgstr "Klicken Sie auf das Symbol, um mehr Informationen zu erhalten."
diff --git a/source/de/extensions/uiconfig/sabpilot/ui.po b/source/de/extensions/uiconfig/sabpilot/ui.po
deleted file mode 100644
index ecc8c5e24da..00000000000
--- a/source/de/extensions/uiconfig/sabpilot/ui.po
+++ /dev/null
@@ -1,703 +0,0 @@
-#. extracted from extensions/uiconfig/sabpilot/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2017-02-21 04:07+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487650038.000000\n"
-
-#: contentfieldpage.ui
-msgctxt ""
-"contentfieldpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Existing fields"
-msgstr "Vorhandene Felder"
-
-#: contentfieldpage.ui
-msgctxt ""
-"contentfieldpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Display field"
-msgstr "Feld anzeigen"
-
-#: contenttablepage.ui
-msgctxt ""
-"contenttablepage.ui\n"
-"datasourcelabel\n"
-"label\n"
-"string.text"
-msgid "Data source"
-msgstr "Datenquelle"
-
-#: contenttablepage.ui
-msgctxt ""
-"contenttablepage.ui\n"
-"contenttypelabel\n"
-"label\n"
-"string.text"
-msgid "Content type"
-msgstr "Art des Inhaltes"
-
-#: contenttablepage.ui
-msgctxt ""
-"contenttablepage.ui\n"
-"formtablelabel\n"
-"label\n"
-"string.text"
-msgid "Content"
-msgstr "Inhalt"
-
-#: contenttablepage.ui
-msgctxt ""
-"contenttablepage.ui\n"
-"formsettings\n"
-"label\n"
-"string.text"
-msgid "Form"
-msgstr "Formular"
-
-#: contenttablepage.ui
-msgctxt ""
-"contenttablepage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid ""
-"On the right side, you see all the tables from the data source of the form.\n"
-"\n"
-"\n"
-"Choose the table from which the data should be used as basis for the list content:"
-msgstr ""
-"Auf der rechten Seite sehen Sie alle Tabellen der Datenquelle des Formulars.\n"
-"\n"
-"\n"
-"Wählen Sie bitte die Tabelle, deren Daten die Grundlage für den Listeninhalt bilden sollen:"
-
-#: contenttablepage.ui
-msgctxt ""
-"contenttablepage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Control"
-msgstr "Steuerelement"
-
-#: datasourcepage.ui
-msgctxt ""
-"datasourcepage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid ""
-"That was all the information necessary to integrate your address data into %PRODUCTNAME.\n"
-"\n"
-"Now, just enter the name under which you want to register the data source in %PRODUCTNAME."
-msgstr ""
-"Das waren alle Angaben, die zur Integration Ihrer Adressdaten in %PRODUCTNAME benötigt werden.\n"
-"\n"
-"Geben Sie jetzt noch den Namen an, unter dem die Datenquelle in %PRODUCTNAME registriert werden soll."
-
-#: datasourcepage.ui
-msgctxt ""
-"datasourcepage.ui\n"
-"embed\n"
-"label\n"
-"string.text"
-msgid "Embed this address book definition into the current document."
-msgstr "Bettet diese Adressbuch-Definition in das aktuelle Dokument ein."
-
-#: datasourcepage.ui
-msgctxt ""
-"datasourcepage.ui\n"
-"locationft\n"
-"label\n"
-"string.text"
-msgid "Location"
-msgstr "Pfad"
-
-#: datasourcepage.ui
-msgctxt ""
-"datasourcepage.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "Browse..."
-msgstr "Durchsuchen..."
-
-#: datasourcepage.ui
-msgctxt ""
-"datasourcepage.ui\n"
-"available\n"
-"label\n"
-"string.text"
-msgid "Make this address book available to all modules in %PRODUCTNAME."
-msgstr "Adressbuch in allen Modulen von %PRODUCTNAME zur Verfügung stellen."
-
-#: datasourcepage.ui
-msgctxt ""
-"datasourcepage.ui\n"
-"nameft\n"
-"label\n"
-"string.text"
-msgid "Address book name"
-msgstr "Name des Adressbuches"
-
-#: datasourcepage.ui
-msgctxt ""
-"datasourcepage.ui\n"
-"warning\n"
-"label\n"
-"string.text"
-msgid "Another data source already has this name. As data sources have to have globally unique names, you need to choose another one."
-msgstr "Es existiert schon eine andere Datenquelle mit diesem Namen. Da Datenquellennamen global eindeutig sein müssen, wählen Sie bitte einen anderen."
-
-#: defaultfieldselectionpage.ui
-msgctxt ""
-"defaultfieldselectionpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Should one option field be selected as a default?"
-msgstr "Soll ein Optionsfeld standardmäßig ausgewählt sein?"
-
-#: defaultfieldselectionpage.ui
-msgctxt ""
-"defaultfieldselectionpage.ui\n"
-"defaultselectionyes\n"
-"label\n"
-"string.text"
-msgid "_Yes, the following:"
-msgstr "_Ja, und zwar folgendes:"
-
-#: defaultfieldselectionpage.ui
-msgctxt ""
-"defaultfieldselectionpage.ui\n"
-"defaultselectionno\n"
-"label\n"
-"string.text"
-msgid "No, one particular field is not going to be selected."
-msgstr "Nein, kein Feld soll ausgewählt sein."
-
-#: fieldassignpage.ui
-msgctxt ""
-"fieldassignpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid ""
-"To incorporate the address data in your templates, %PRODUCTNAME has to know which fields contain which data.\n"
-"\n"
-"For instance, you could have stored the e-mail addresses in a field named \"email\", or \"E-mail\" or \"EM\" - or something completely different.\n"
-"\n"
-"Click the button below to open another dialog where you can enter the settings for your data source."
-msgstr ""
-"Um die Adress-Daten in Ihren Vorlagen benutzen zu können, muss %PRODUCTNAME wissen, welche Felder welche konkreten Daten enthalten.\n"
-"\n"
-"Zum Beispiel könnten Sie die E-Mail-Adressen in einem Feld \"E-Mail\", \"Mail\" oder \"EM\" - oder unter einem völlig anderem Namen - gespeichert haben.\n"
-"\n"
-"Klicken Sie auf die Schaltfläche unten, um einen weiteren Dialog zu öffnen, in dem Sie die Einstellungen für Ihre Datenquelle vornehmen können."
-
-#: fieldassignpage.ui
-msgctxt ""
-"fieldassignpage.ui\n"
-"assign\n"
-"label\n"
-"string.text"
-msgid "Field Assignment"
-msgstr "Feldzuordnung"
-
-#: fieldlinkpage.ui
-msgctxt ""
-"fieldlinkpage.ui\n"
-"desc\n"
-"label\n"
-"string.text"
-msgid "This is where you select fields with matching contents so that the value from the display field will be shown."
-msgstr "Wählen Sie hier die Felder aus, deren Inhalt übereinstimmen muss, damit der Wert aus dem Anzeigefeld angezeigt wird."
-
-#: fieldlinkpage.ui
-msgctxt ""
-"fieldlinkpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Field from the _Value Table"
-msgstr "Feld aus der _Wertetabelle"
-
-#: fieldlinkpage.ui
-msgctxt ""
-"fieldlinkpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Field from the _List Table"
-msgstr "Feld aus der _Listentabelle"
-
-#: gridfieldsselectionpage.ui
-msgctxt ""
-"gridfieldsselectionpage.ui\n"
-"datasourcelabel\n"
-"label\n"
-"string.text"
-msgid "Data source"
-msgstr "Datenquelle"
-
-#: gridfieldsselectionpage.ui
-msgctxt ""
-"gridfieldsselectionpage.ui\n"
-"contenttypelabel\n"
-"label\n"
-"string.text"
-msgid "Content type"
-msgstr "Art des Inhaltes"
-
-#: gridfieldsselectionpage.ui
-msgctxt ""
-"gridfieldsselectionpage.ui\n"
-"formtablelabel\n"
-"label\n"
-"string.text"
-msgid "Content"
-msgstr "Inhalt"
-
-#: gridfieldsselectionpage.ui
-msgctxt ""
-"gridfieldsselectionpage.ui\n"
-"formsettings\n"
-"label\n"
-"string.text"
-msgid "Form"
-msgstr "Formular"
-
-#: gridfieldsselectionpage.ui
-msgctxt ""
-"gridfieldsselectionpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Selected fields"
-msgstr "Ausgewählte Felder"
-
-#: gridfieldsselectionpage.ui
-msgctxt ""
-"gridfieldsselectionpage.ui\n"
-"fieldright\n"
-"label\n"
-"string.text"
-msgid "->"
-msgstr "->"
-
-#: gridfieldsselectionpage.ui
-msgctxt ""
-"gridfieldsselectionpage.ui\n"
-"allfieldsright\n"
-"label\n"
-"string.text"
-msgid "=>>"
-msgstr "=>>"
-
-#: gridfieldsselectionpage.ui
-msgctxt ""
-"gridfieldsselectionpage.ui\n"
-"fieldleft\n"
-"label\n"
-"string.text"
-msgid "<-"
-msgstr "<-"
-
-#: gridfieldsselectionpage.ui
-msgctxt ""
-"gridfieldsselectionpage.ui\n"
-"allfieldsleft\n"
-"label\n"
-"string.text"
-msgid "<<="
-msgstr "<<="
-
-#: gridfieldsselectionpage.ui
-msgctxt ""
-"gridfieldsselectionpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Existing fields"
-msgstr "Vorhandene Felder"
-
-#: gridfieldsselectionpage.ui
-msgctxt ""
-"gridfieldsselectionpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Table element"
-msgstr "Tabellenelement"
-
-#: groupradioselectionpage.ui
-msgctxt ""
-"groupradioselectionpage.ui\n"
-"datasourcelabel\n"
-"label\n"
-"string.text"
-msgid "Data source"
-msgstr "Datenquelle"
-
-#: groupradioselectionpage.ui
-msgctxt ""
-"groupradioselectionpage.ui\n"
-"contenttypelabel\n"
-"label\n"
-"string.text"
-msgid "Content type"
-msgstr "Art des Inhaltes"
-
-#: groupradioselectionpage.ui
-msgctxt ""
-"groupradioselectionpage.ui\n"
-"formtablelabel\n"
-"label\n"
-"string.text"
-msgid "Content"
-msgstr "Inhalt"
-
-#: groupradioselectionpage.ui
-msgctxt ""
-"groupradioselectionpage.ui\n"
-"formsettings\n"
-"label\n"
-"string.text"
-msgid "Form"
-msgstr "Formular"
-
-#: groupradioselectionpage.ui
-msgctxt ""
-"groupradioselectionpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Option fields"
-msgstr "_Optionsfelder"
-
-#: groupradioselectionpage.ui
-msgctxt ""
-"groupradioselectionpage.ui\n"
-"toright\n"
-"label\n"
-"string.text"
-msgid "_>>"
-msgstr "_>>"
-
-#: groupradioselectionpage.ui
-msgctxt ""
-"groupradioselectionpage.ui\n"
-"toleft\n"
-"label\n"
-"string.text"
-msgid "_<<"
-msgstr "_<<"
-
-#: groupradioselectionpage.ui
-msgctxt ""
-"groupradioselectionpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Which _names do you want to give the option fields?"
-msgstr "Welche _Bezeichnungen sollen die Optionsfelder erhalten?"
-
-#: groupradioselectionpage.ui
-msgctxt ""
-"groupradioselectionpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Table element"
-msgstr "Tabellenelement"
-
-#: invokeadminpage.ui
-msgctxt ""
-"invokeadminpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid ""
-"To set up the new data source, additional information is required.\n"
-"\n"
-"Click the following button to open another dialog in which you then enter the necessary information."
-msgstr ""
-"Zur Einrichtung der neuen Datenquelle sind noch weitergehende Angaben notwendig.\n"
-"\n"
-"Die folgende Schaltfläche öffnet einen weiteren Dialog, in dem Sie die fehlenden Informationen eingeben können."
-
-#: invokeadminpage.ui
-msgctxt ""
-"invokeadminpage.ui\n"
-"settings\n"
-"label\n"
-"string.text"
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: invokeadminpage.ui
-msgctxt ""
-"invokeadminpage.ui\n"
-"warning\n"
-"label\n"
-"string.text"
-msgid ""
-"The connection to the data source could not be established.\n"
-"Before you proceed, please check the settings made, or (on the previous page) choose another address data source type."
-msgstr ""
-"Die Verbindung zur Datenquelle konnte nicht hergestellt werden.\n"
-"Bitte überprüfen Sie die gemachten Einstellungen, bevor Sie fortfahren, oder wählen Sie (auf der vorigen Seite) einen anderen Typ für Ihre Adressdatenquelle."
-
-#: optiondbfieldpage.ui
-msgctxt ""
-"optiondbfieldpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Do you want to save the value in a database field?"
-msgstr "Möchten Sie den Wert in einem Datenbankfeld speichern?"
-
-#: optiondbfieldpage.ui
-msgctxt ""
-"optiondbfieldpage.ui\n"
-"yesRadiobutton\n"
-"label\n"
-"string.text"
-msgid "_Yes, I want to save it in the following database field:"
-msgstr "_Ja, und zwar in folgendem Datenbankfeld:"
-
-#: optiondbfieldpage.ui
-msgctxt ""
-"optiondbfieldpage.ui\n"
-"noRadiobutton\n"
-"label\n"
-"string.text"
-msgid "_No, I only want to save the value in the form."
-msgstr "_Nein, ich möchte den Wert nur im Formular speichern."
-
-#: optionsfinalpage.ui
-msgctxt ""
-"optionsfinalpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Which _caption is to be given to your option group?"
-msgstr "Welche _Beschriftung soll Ihre Optionsgruppe haben?"
-
-#: optionsfinalpage.ui
-msgctxt ""
-"optionsfinalpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "These were all details needed to create the option group."
-msgstr "Dies waren alle Angaben, die zur Erstellung der Optionsgruppe notwendig waren."
-
-#: optionvaluespage.ui
-msgctxt ""
-"optionvaluespage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "When you select an option, the option group is given a specific value."
-msgstr "Wenn Sie eine Option auswählen, wird der Optionsgruppe ein bestimmter Wert zugewiesen."
-
-#: optionvaluespage.ui
-msgctxt ""
-"optionvaluespage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Which _value do you want to assign to each option?"
-msgstr "Welchen _Wert möchten Sie jeder Option zuweisen?"
-
-#: optionvaluespage.ui
-msgctxt ""
-"optionvaluespage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Option fields"
-msgstr "_Optionsfelder"
-
-#: selecttablepage.ui
-msgctxt ""
-"selecttablepage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid ""
-"The external data source you have chosen contains more than one address book.\n"
-"Please select the one you mainly want to work with:"
-msgstr ""
-"Die von Ihnen gewählte externe Datenquelle enthält mehrere Adress-Bestände.\n"
-"Bitte wählen Sie denjenigen aus, mit dem Sie hauptsächlich arbeiten möchten:"
-
-#: selecttypepage.ui
-msgctxt ""
-"selecttypepage.ui\n"
-"evolution\n"
-"label\n"
-"string.text"
-msgid "Evolution"
-msgstr "Evolution"
-
-#: selecttypepage.ui
-msgctxt ""
-"selecttypepage.ui\n"
-"groupwise\n"
-"label\n"
-"string.text"
-msgid "Groupwise"
-msgstr "Groupwise"
-
-#: selecttypepage.ui
-msgctxt ""
-"selecttypepage.ui\n"
-"evoldap\n"
-"label\n"
-"string.text"
-msgid "Evolution LDAP"
-msgstr "Evolution LDAP"
-
-#: selecttypepage.ui
-msgctxt ""
-"selecttypepage.ui\n"
-"firefox\n"
-"label\n"
-"string.text"
-msgid "Firefox/Iceweasel"
-msgstr "Firefox/Iceweasel"
-
-#: selecttypepage.ui
-msgctxt ""
-"selecttypepage.ui\n"
-"thunderbird\n"
-"label\n"
-"string.text"
-msgid "Thunderbird/Icedove"
-msgstr "Thunderbird/Icedove"
-
-#: selecttypepage.ui
-msgctxt ""
-"selecttypepage.ui\n"
-"kde\n"
-"label\n"
-"string.text"
-msgid "KDE address book"
-msgstr "KDE-Adressbuch"
-
-#: selecttypepage.ui
-msgctxt ""
-"selecttypepage.ui\n"
-"macosx\n"
-"label\n"
-"string.text"
-msgid "Mac OS X address book"
-msgstr "Mac OS X-Adressbuch"
-
-#: selecttypepage.ui
-msgctxt ""
-"selecttypepage.ui\n"
-"other\n"
-"label\n"
-"string.text"
-msgid "Other external data source"
-msgstr "Andere externe Datenquelle"
-
-#: selecttypepage.ui
-msgctxt ""
-"selecttypepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Please Select the Type of Your External Address Book"
-msgstr "Bitte wählen Sie den Typ Ihres externen Adressbuches aus"
-
-#: selecttypepage.ui
-msgctxt ""
-"selecttypepage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid ""
-"%PRODUCTNAME lets you access address data already present in your system. To do this, a %PRODUCTNAME data source will be created in which your address data is available in tabular form.\n"
-"\n"
-"This wizard helps you create the data source."
-msgstr ""
-"%PRODUCTNAME bietet Ihnen die Möglichkeit, auf bereits in Ihrem System vorhandene Adressdaten zuzugreifen. Dazu wird eine %PRODUCTNAME Datenquelle angelegt, unter der Ihre Adressbücher als Tabellen zugänglich sind.\n"
-"\n"
-"Dieser Assistent unterstützt Sie bei der Einrichtung dieser Datenquelle."
-
-#: tableselectionpage.ui
-msgctxt ""
-"tableselectionpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid ""
-"Currently, the form the control belongs to is not (or not completely) bound to a data source.\n"
-"\n"
-"Please choose a data source and a table.\n"
-"\n"
-"\n"
-"Please note that the settings made on this page will take effect immediately upon leaving the page."
-msgstr ""
-"Das Formular, zu dem das Steuerelement gehört, ist im Augenblick noch nicht (oder noch nicht vollständig) an eine Datenquelle gebunden.\n"
-"\n"
-"Bitte wählen Sie eine Datenquelle und eine Tabelle aus.\n"
-"\n"
-"\n"
-"Bitte beachten Sie, dass die Einstellungen, die Sie auf dieser Seite für das Formular vornehmen, sofort beim Verlassen der Seite wirksam werden."
-
-#: tableselectionpage.ui
-msgctxt ""
-"tableselectionpage.ui\n"
-"datasourcelabel\n"
-"label\n"
-"string.text"
-msgid "_Data source:"
-msgstr "_Datenquelle:"
-
-#: tableselectionpage.ui
-msgctxt ""
-"tableselectionpage.ui\n"
-"search\n"
-"label\n"
-"string.text"
-msgid "_..."
-msgstr "_..."
-
-#: tableselectionpage.ui
-msgctxt ""
-"tableselectionpage.ui\n"
-"tablelabel\n"
-"label\n"
-"string.text"
-msgid "_Table / Query:"
-msgstr "_Tabelle / Abfrage:"
-
-#: tableselectionpage.ui
-msgctxt ""
-"tableselectionpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
diff --git a/source/de/extensions/uiconfig/sbibliography/ui.po b/source/de/extensions/uiconfig/sbibliography/ui.po
deleted file mode 100644
index bc212bd5fd4..00000000000
--- a/source/de/extensions/uiconfig/sbibliography/ui.po
+++ /dev/null
@@ -1,674 +0,0 @@
-#. extracted from extensions/uiconfig/sbibliography/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-03-09 20:49+0100\n"
-"PO-Revision-Date: 2016-03-13 10:56+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
-"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1457866577.000000\n"
-
-#: choosedatasourcedialog.ui
-msgctxt ""
-"choosedatasourcedialog.ui\n"
-"ChooseDataSourceDialog\n"
-"title\n"
-"string.text"
-msgid "Choose Data Source"
-msgstr "Datenquelle auswählen"
-
-#: choosedatasourcedialog.ui
-msgctxt ""
-"choosedatasourcedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Entry"
-msgstr "Eintrag"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"shortname\n"
-"label\n"
-"string.text"
-msgid "_Short name"
-msgstr "_Kurzbezeichnung"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"authtype\n"
-"label\n"
-"string.text"
-msgid "_Type"
-msgstr "_Typ"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"authors\n"
-"label\n"
-"string.text"
-msgid "Author(s)"
-msgstr "Autor(en)"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"publisher\n"
-"label\n"
-"string.text"
-msgid "_Publisher"
-msgstr "Heraus_geber"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"chapter\n"
-"label\n"
-"string.text"
-msgid "_Chapter"
-msgstr "_Kapitel"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"title\n"
-"label\n"
-"string.text"
-msgid "Tit_le"
-msgstr "Tite_l"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"address\n"
-"label\n"
-"string.text"
-msgid "A_ddress"
-msgstr "A_dresse"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"pages\n"
-"label\n"
-"string.text"
-msgid "Pa_ge(s)"
-msgstr "_Seite(n)"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"year\n"
-"label\n"
-"string.text"
-msgid "_Year"
-msgstr "_Jahr"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"isbn\n"
-"label\n"
-"string.text"
-msgid "_ISBN"
-msgstr "_ISBN"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"editor\n"
-"label\n"
-"string.text"
-msgid "Editor"
-msgstr "Herausgeber"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"booktitle\n"
-"label\n"
-"string.text"
-msgid "_Book title"
-msgstr "Bu_chtitel"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"edition\n"
-"label\n"
-"string.text"
-msgid "Ed_ition"
-msgstr "Aus_gabe"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"volume\n"
-"label\n"
-"string.text"
-msgid "Volume"
-msgstr "Band"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"institution\n"
-"label\n"
-"string.text"
-msgid "Instit_ution"
-msgstr "Instit_ution"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"month\n"
-"label\n"
-"string.text"
-msgid "_Month"
-msgstr "_Monat"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"publicationtype\n"
-"label\n"
-"string.text"
-msgid "Publication t_ype"
-msgstr "Au_sgabeart"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"university\n"
-"label\n"
-"string.text"
-msgid "University"
-msgstr "Universität"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"reporttype\n"
-"label\n"
-"string.text"
-msgid "Type of re_port"
-msgstr "_Berichtsart"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"organization\n"
-"label\n"
-"string.text"
-msgid "Organi_zation"
-msgstr "Or_ganisation"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"journal\n"
-"label\n"
-"string.text"
-msgid "_Journal"
-msgstr "_Journal"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"annotation\n"
-"label\n"
-"string.text"
-msgid "Ann_otation"
-msgstr "A_nmerkung"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"number\n"
-"label\n"
-"string.text"
-msgid "Numb_er"
-msgstr "N_ummer"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"note\n"
-"label\n"
-"string.text"
-msgid "_Note"
-msgstr "_Notiz"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"series\n"
-"label\n"
-"string.text"
-msgid "Se_ries"
-msgstr "Se_rien"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"url\n"
-"label\n"
-"string.text"
-msgid "URL"
-msgstr "URL"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"custom1\n"
-"label\n"
-"string.text"
-msgid "User-defined field _1"
-msgstr "Benutzerfeld _1"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"custom4\n"
-"label\n"
-"string.text"
-msgid "User-defined field _4"
-msgstr "Benutzerfeld _4"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"custom2\n"
-"label\n"
-"string.text"
-msgid "User-defined field _2"
-msgstr "Benutzerfeld _2"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"custom5\n"
-"label\n"
-"string.text"
-msgid "User-defined field _5"
-msgstr "Benutzerfeld _5"
-
-#: generalpage.ui
-msgctxt ""
-"generalpage.ui\n"
-"custom3\n"
-"label\n"
-"string.text"
-msgid "User-defined field _3"
-msgstr "Benutzerfeld _3"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"MappingDialog\n"
-"title\n"
-"string.text"
-msgid "Column Layout for Table %1"
-msgstr "Spaltenzuordnung für Tabelle %1"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Short name"
-msgstr "_Kurzbezeichnung"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Author(s)"
-msgstr "A_utor(en)"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Publisher"
-msgstr "_Verlag"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "_Chapter"
-msgstr "_Kapitel"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Editor"
-msgstr "Herausgeber"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "_Type"
-msgstr "_Typ"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "_Year"
-msgstr "_Jahr"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "Tit_le"
-msgstr "Tite_l"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "A_ddress"
-msgstr "A_dresse"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label11\n"
-"label\n"
-"string.text"
-msgid "_ISBN"
-msgstr "_ISBN"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label12\n"
-"label\n"
-"string.text"
-msgid "Pa_ge(s)"
-msgstr "Sei_te(n)"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label13\n"
-"label\n"
-"string.text"
-msgid "Ed_ition"
-msgstr "Au_sgabe"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label14\n"
-"label\n"
-"string.text"
-msgid "_Book title"
-msgstr "Bu_chtitel"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label15\n"
-"label\n"
-"string.text"
-msgid "Volume"
-msgstr "Band"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label16\n"
-"label\n"
-"string.text"
-msgid "Publication t_ype"
-msgstr "Au_sgabeart"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label17\n"
-"label\n"
-"string.text"
-msgid "Organi_zation"
-msgstr "Or_ganisation"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label18\n"
-"label\n"
-"string.text"
-msgid "Instit_ution"
-msgstr "Ein_richtung"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label19\n"
-"label\n"
-"string.text"
-msgid "Uni_versity"
-msgstr "Uni_versität"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label20\n"
-"label\n"
-"string.text"
-msgid "Type of re_port"
-msgstr "_Berichtsart"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label21\n"
-"label\n"
-"string.text"
-msgid "_Month"
-msgstr "_Monat"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label22\n"
-"label\n"
-"string.text"
-msgid "_Journal"
-msgstr "_Journal"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label23\n"
-"label\n"
-"string.text"
-msgid "Numb_er"
-msgstr "An_zahl"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label24\n"
-"label\n"
-"string.text"
-msgid "Se_ries"
-msgstr "Se_rien"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label25\n"
-"label\n"
-"string.text"
-msgid "Ann_otation"
-msgstr "An_merkung"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label26\n"
-"label\n"
-"string.text"
-msgid "_Note"
-msgstr "_Notiz"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label27\n"
-"label\n"
-"string.text"
-msgid "URL"
-msgstr "URL"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label28\n"
-"label\n"
-"string.text"
-msgid "User-defined field _1"
-msgstr "Benutzerfeld _1"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label29\n"
-"label\n"
-"string.text"
-msgid "User-defined field _2"
-msgstr "Benutzerfeld _2"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label30\n"
-"label\n"
-"string.text"
-msgid "User-defined field _3"
-msgstr "Benutzerfeld _3"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label31\n"
-"label\n"
-"string.text"
-msgid "User-defined field _4"
-msgstr "Benutzerfeld _4"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label32\n"
-"label\n"
-"string.text"
-msgid "User-defined field _5"
-msgstr "Benutzerfeld _5"
-
-#: mappingdialog.ui
-msgctxt ""
-"mappingdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Column Names"
-msgstr "Spaltennamen"
-
-#: toolbar.ui
-msgctxt ""
-"toolbar.ui\n"
-"TBC_FT_SOURCE\n"
-"label\n"
-"string.text"
-msgid "Table"
-msgstr "Tabelle"
-
-#: toolbar.ui
-msgctxt ""
-"toolbar.ui\n"
-"TBC_FT_QUERY\n"
-"label\n"
-"string.text"
-msgid "Search Key"
-msgstr "Suchbegriff"
-
-#: toolbar.ui
-msgctxt ""
-"toolbar.ui\n"
-"TBC_BT_AUTOFILTER\n"
-"label\n"
-"string.text"
-msgid "AutoFilter"
-msgstr "AutoFilter"
-
-#: toolbar.ui
-msgctxt ""
-"toolbar.ui\n"
-"TBC_BT_FILTERCRIT\n"
-"label\n"
-"string.text"
-msgid "Standard Filter"
-msgstr "Standardfilter"
-
-#: toolbar.ui
-msgctxt ""
-"toolbar.ui\n"
-"TBC_BT_REMOVEFILTER\n"
-"label\n"
-"string.text"
-msgid "Reset Filter"
-msgstr "Filter zurücksetzen"
-
-#: toolbar.ui
-msgctxt ""
-"toolbar.ui\n"
-"TBC_BT_COL_ASSIGN\n"
-"label\n"
-"string.text"
-msgid "Column Arrangement"
-msgstr "Spaltenzuordnung"
-
-#: toolbar.ui
-msgctxt ""
-"toolbar.ui\n"
-"TBC_BT_CHANGESOURCE\n"
-"label\n"
-"string.text"
-msgid "Data Source"
-msgstr "Datenquelle"
diff --git a/source/de/extensions/uiconfig/scanner/ui.po b/source/de/extensions/uiconfig/scanner/ui.po
deleted file mode 100644
index b246f839028..00000000000
--- a/source/de/extensions/uiconfig/scanner/ui.po
+++ /dev/null
@@ -1,206 +0,0 @@
-#. extracted from extensions/uiconfig/scanner/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-11-19 16:25+0000\n"
-"Last-Translator: Christian <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.5.1\n"
-"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416414350.000000\n"
-
-#: griddialog.ui
-msgctxt ""
-"griddialog.ui\n"
-"resetTypeCombobox\n"
-"0\n"
-"stringlist.text"
-msgid "Linear ascending"
-msgstr "Linear steigend"
-
-#: griddialog.ui
-msgctxt ""
-"griddialog.ui\n"
-"resetTypeCombobox\n"
-"1\n"
-"stringlist.text"
-msgid "Linear descending"
-msgstr "Linear fallend"
-
-#: griddialog.ui
-msgctxt ""
-"griddialog.ui\n"
-"resetTypeCombobox\n"
-"2\n"
-"stringlist.text"
-msgid "Original values"
-msgstr "Originalwerte"
-
-#: griddialog.ui
-msgctxt ""
-"griddialog.ui\n"
-"resetTypeCombobox\n"
-"3\n"
-"stringlist.text"
-msgid "Exponential increasing"
-msgstr "Exponentiell wachsend"
-
-#: griddialog.ui
-msgctxt ""
-"griddialog.ui\n"
-"resetButton\n"
-"label\n"
-"string.text"
-msgid "_Set"
-msgstr "_Setzen"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"SaneDialog\n"
-"title\n"
-"string.text"
-msgid "Scanner"
-msgstr "Scanner"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Left:"
-msgstr "_Links:"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "To_p:"
-msgstr "_Oben:"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "_Right:"
-msgstr "_Rechts:"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "_Bottom:"
-msgstr "_Unten:"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Scan area"
-msgstr "Scanbereich"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Device _used"
-msgstr "Verwendetes _Gerät"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Resolution [_DPI]"
-msgstr "Auflösung [_DPI]"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"advancedCheckbutton\n"
-"label\n"
-"string.text"
-msgid "Show advanced options"
-msgstr "Erweiterte Optionen anzeigen"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "Options:"
-msgstr "Optionen:"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"optionsButton\n"
-"label\n"
-"string.text"
-msgid "Se_t"
-msgstr "Sa_tz"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"vectorLabel\n"
-"label\n"
-"string.text"
-msgid "Vector element"
-msgstr "Vektorelement"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"deviceInfoButton\n"
-"label\n"
-"string.text"
-msgid "About Dev_ice"
-msgstr "Über das Ge_rät"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"previewButton\n"
-"label\n"
-"string.text"
-msgid "Create Previe_w"
-msgstr "_Vorschau erstellen"
-
-#: sanedialog.ui
-msgctxt ""
-"sanedialog.ui\n"
-"scanButton\n"
-"label\n"
-"string.text"
-msgid "_Scan"
-msgstr "_Scannen"
diff --git a/source/de/extensions/uiconfig/spropctrlr/ui.po b/source/de/extensions/uiconfig/spropctrlr/ui.po
deleted file mode 100644
index 4cdcdf95d93..00000000000
--- a/source/de/extensions/uiconfig/spropctrlr/ui.po
+++ /dev/null
@@ -1,179 +0,0 @@
-#. extracted from extensions/uiconfig/spropctrlr/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-11-20 05:25+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479619541.000000\n"
-
-#: controlfontdialog.ui
-msgctxt ""
-"controlfontdialog.ui\n"
-"ControlFontDialog\n"
-"title\n"
-"string.text"
-msgid "Character"
-msgstr "Zeichen"
-
-#: controlfontdialog.ui
-msgctxt ""
-"controlfontdialog.ui\n"
-"font\n"
-"label\n"
-"string.text"
-msgid "Font"
-msgstr "Schriftart"
-
-#: controlfontdialog.ui
-msgctxt ""
-"controlfontdialog.ui\n"
-"fonteffects\n"
-"label\n"
-"string.text"
-msgid "Font Effects"
-msgstr "Schrifteffekte"
-
-#: datatypedialog.ui
-msgctxt ""
-"datatypedialog.ui\n"
-"DataTypeDialog\n"
-"title\n"
-"string.text"
-msgid "New Data Type"
-msgstr "Neuer Datentyp"
-
-#: datatypedialog.ui
-msgctxt ""
-"datatypedialog.ui\n"
-"label\n"
-"label\n"
-"string.text"
-msgid "Type a name for the new data type:"
-msgstr "Geben Sie einen Namen für den neuen Datentyp an:"
-
-#: formlinksdialog.ui
-msgctxt ""
-"formlinksdialog.ui\n"
-"FormLinks\n"
-"title\n"
-"string.text"
-msgid "Link fields"
-msgstr "Felder verknüpfen"
-
-#: formlinksdialog.ui
-msgctxt ""
-"formlinksdialog.ui\n"
-"suggestButton\n"
-"label\n"
-"string.text"
-msgid "Suggest"
-msgstr "Vorschlagen"
-
-#: formlinksdialog.ui
-msgctxt ""
-"formlinksdialog.ui\n"
-"explanationLabel\n"
-"label\n"
-"string.text"
-msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
-msgstr "Unterformulare können benutzt werden, um Detaildaten zu dem aktuellen Datensatz des Hauptformulars anzuzeigen. Dazu können Sie festlegen, welche Spalten sich jeweils entsprechen sollen."
-
-#: formlinksdialog.ui
-msgctxt ""
-"formlinksdialog.ui\n"
-"detailLabel\n"
-"label\n"
-"string.text"
-msgid "label"
-msgstr "Beschriftung"
-
-#: formlinksdialog.ui
-msgctxt ""
-"formlinksdialog.ui\n"
-"masterLabel\n"
-"label\n"
-"string.text"
-msgid "label"
-msgstr "Beschriftung"
-
-#: labelselectiondialog.ui
-msgctxt ""
-"labelselectiondialog.ui\n"
-"LabelSelectionDialog\n"
-"title\n"
-"string.text"
-msgid "Label Field Selection"
-msgstr "Auswahl Beschriftungsfeld"
-
-#: labelselectiondialog.ui
-msgctxt ""
-"labelselectiondialog.ui\n"
-"label\n"
-"label\n"
-"string.text"
-msgid "These are control fields that can be used as label fields for the $controlclass$ $controlname$."
-msgstr "Dies sind alle Steuerelement, die dem $controlclass$ $controlname$ als Beschriftungsfeld zugeordnet werden können."
-
-#: labelselectiondialog.ui
-msgctxt ""
-"labelselectiondialog.ui\n"
-"noassignment\n"
-"label\n"
-"string.text"
-msgid "_No assignment"
-msgstr "_Keine Zuordnung"
-
-#: taborder.ui
-msgctxt ""
-"taborder.ui\n"
-"TabOrderDialog\n"
-"title\n"
-"string.text"
-msgid "Tab Order"
-msgstr "Register-Reihenfolge"
-
-#: taborder.ui
-msgctxt ""
-"taborder.ui\n"
-"upB\n"
-"label\n"
-"string.text"
-msgid "_Move Up"
-msgstr "Nach o_ben verschieben"
-
-#: taborder.ui
-msgctxt ""
-"taborder.ui\n"
-"downB\n"
-"label\n"
-"string.text"
-msgid "Move _Down"
-msgstr "Nach _unten verschieben"
-
-#: taborder.ui
-msgctxt ""
-"taborder.ui\n"
-"autoB\n"
-"label\n"
-"string.text"
-msgid "_Automatic Sort"
-msgstr "Automatische _Sortierung"
-
-#: taborder.ui
-msgctxt ""
-"taborder.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Controls"
-msgstr "Bedienelemente"
diff --git a/source/de/filter/messages.po b/source/de/filter/messages.po
new file mode 100644
index 00000000000..428645cee26
--- /dev/null
+++ b/source/de/filter/messages.po
@@ -0,0 +1,1409 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-04-12 14:14+0200\n"
+"PO-Revision-Date: 2016-11-22 08:09+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479802145.000000\n"
+
+#. XA4uB
+#: xmlfilterdialogstrings.src
+msgctxt "STR_COLUMN_HEADER_NAME"
+msgid "Name"
+msgstr "Name"
+
+#. FizB9
+#: xmlfilterdialogstrings.src
+msgctxt "STR_COLUMN_HEADER_TYPE"
+msgid "Type"
+msgstr "Type"
+
+#. 5AQgJ
+#: xmlfilterdialogstrings.src
+msgctxt "STR_UNKNOWN_APPLICATION"
+msgid "Unknown"
+msgstr "Unbekannt"
+
+#. AP7oB
+#: xmlfilterdialogstrings.src
+msgctxt "STR_IMPORT_ONLY"
+msgid "import filter"
+msgstr "Import Filter"
+
+#. 7vg82
+#: xmlfilterdialogstrings.src
+msgctxt "STR_IMPORT_EXPORT"
+msgid "import/export filter"
+msgstr "Import/Export Filter"
+
+#. q6Bc5
+#: xmlfilterdialogstrings.src
+msgctxt "STR_EXPORT_ONLY"
+msgid "export filter"
+msgstr "Export Filter"
+
+#. AmATR
+#: xmlfilterdialogstrings.src
+msgctxt "STR_WARN_DELETE"
+msgid ""
+"Do you really want to delete the XML Filter '%s'? This action cannot be "
+"undone."
+msgstr ""
+"Möchten Sie den XML-Filter '%s' wirklich löschen? Diese Aktion kann nicht "
+"rückgängig gemacht werden."
+
+#. Vf3nz
+#: xmlfilterdialogstrings.src
+msgctxt "STR_ERROR_FILTER_NAME_EXISTS"
+msgid ""
+"An XML filter with the name '%s' already exists. Please enter a different "
+"name."
+msgstr ""
+"Es existiert bereits ein XML-Filter mit dem Namen '%s'. Bitte wählen Sie "
+"einen anderen Namen."
+
+#. e3U54
+#: xmlfilterdialogstrings.src
+msgctxt "STR_ERROR_TYPE_NAME_EXISTS"
+msgid ""
+"The name for the user interface '%s1' is already used by the XML filter "
+"'%s2'. Please enter a different name."
+msgstr ""
+"Der Name auf der Benutzeroberfläche '%s1' wird bereits vom XML-Filter '%s2' "
+"verwendet. Bitte geben Sie einen anderen Namen ein."
+
+#. Zt87T
+#: xmlfilterdialogstrings.src
+msgctxt "STR_ERROR_EXPORT_XSLT_NOT_FOUND"
+msgid "The XSLT for export cannot be found. Please enter a valid path."
+msgstr ""
+"Die Export-XSLT konnte nicht gefunden werden. Bitte geben Sie einen gültigen"
+" Pfad ein."
+
+#. 7VkMt
+#: xmlfilterdialogstrings.src
+msgctxt "STR_ERROR_IMPORT_XSLT_NOT_FOUND"
+msgid "The XSLT for import cannot be found. Please enter a valid path."
+msgstr ""
+"Die Import-XSLT konnte nicht gefunden werden. Bitte geben Sie einen gültigen"
+" Pfad ein."
+
+#. CLFJD
+#: xmlfilterdialogstrings.src
+msgctxt "STR_ERROR_IMPORT_TEMPLATE_NOT_FOUND"
+msgid "The given import template cannot be found. Please enter a valid path."
+msgstr ""
+"Die angegebene Import-Dokumentvorlage konnte nicht gefunden werden. Bitte "
+"geben Sie einen gültigen Pfad ein."
+
+#. WMzvt
+#: xmlfilterdialogstrings.src
+msgctxt "STR_DEFAULT_FILTER_NAME"
+msgid "New Filter"
+msgstr "Neuer Filter"
+
+#. N3wHE
+#: xmlfilterdialogstrings.src
+msgctxt "STR_DEFAULT_UI_NAME"
+msgid "Untitled"
+msgstr "Unbenannt"
+
+#. VAMhi
+#: xmlfilterdialogstrings.src
+msgctxt "STR_UNDEFINED_FILTER"
+msgid "undefined filter"
+msgstr "Undefinierter Filter"
+
+#. tphDj
+#: xmlfilterdialogstrings.src
+msgctxt "STR_FILTER_HAS_BEEN_SAVED"
+msgid "The XML filter '%s' has been saved as package '%s'. "
+msgstr "Der XML-Filter '%s' wurde als Paket '%s' gespeichert. "
+
+#. tJeU3
+#: xmlfilterdialogstrings.src
+msgctxt "STR_FILTERS_HAVE_BEEN_SAVED"
+msgid "%s XML filters have been saved in the package '%s'."
+msgstr "%s XML-Filter wurden in dem Paket '%s' gesichert."
+
+#. ZULF4
+#: xmlfilterdialogstrings.src
+msgctxt "STR_FILTER_PACKAGE"
+msgid "XSLT filter package"
+msgstr "XSLT Filter Paket"
+
+#. TAAAB
+#: xmlfilterdialogstrings.src
+msgctxt "STR_FILTER_INSTALLED"
+msgid "The XML filter '%s' has been installed successfully."
+msgstr "Der XML-Filter '%s' wurde erfolgreich installiert."
+
+#. SwDCV
+#: xmlfilterdialogstrings.src
+msgctxt "STR_FILTERS_INSTALLED"
+msgid "%s XML filters have been installed successfully."
+msgstr "%s XML-Filter wurden erfolgreich installiert."
+
+#. dirBm
+#: xmlfilterdialogstrings.src
+msgctxt "STR_NO_FILTERS_FOUND"
+msgid ""
+"No XML filter could be installed because the package '%s' does not contain "
+"any XML filters."
+msgstr ""
+"Es wurde kein XML-Filter installiert, weil das Paket '%s' keine XML-Filter "
+"enthält."
+
+#. EifWe
+#: xmlfilterdialogstrings.src
+msgctxt "STR_XML_FILTER_LISTBOX"
+msgid "XML Filter List"
+msgstr "XML-Filterliste"
+
+#. BGJB2
+#: impdialog.src
+msgctxt "STR_PDF_EXPORT_UDPWD"
+msgid "Set open password"
+msgstr "Öffnen-Kennwort setzen"
+
+#. GDvVE
+#: impdialog.src
+msgctxt "STR_PDF_EXPORT_ODPWD"
+msgid "Set permission password"
+msgstr "Rechte-Kennwort setzen"
+
+#. FTpr4
+#: impdialog.src
+msgctxt "STR_WARN_PASSWORD_PDFA"
+msgid ""
+"PDF/A does not allow encryption. The exported PDF file will not be password "
+"protected."
+msgstr ""
+"PDF/A erlaubt keine Verschlüsselung. Die exportierte Datei wird deshalb "
+"nicht kennwortgeschützt sein."
+
+#. XX5fd
+#: impdialog.src
+msgctxt "STR_WARN_TRANSP_PDFA_SHORT"
+msgid "PDF/A transparency"
+msgstr "PDF/A-Transparenz"
+
+#. VGvbg
+#: impdialog.src
+msgctxt "STR_WARN_TRANSP_PDFA"
+msgid ""
+"PDF/A forbids transparency. A transparent object was painted opaque instead."
+msgstr ""
+"PDF/A verbietet Transparenzen. Ein transparentes Objekt wurde stattdessen "
+"ohne Transparenz exportiert."
+
+#. siDaM
+#: impdialog.src
+msgctxt "STR_WARN_TRANSP_VERSION_SHORT"
+msgid "PDF version conflict"
+msgstr "PDF-Versionskonflikt"
+
+#. VSCwD
+#: impdialog.src
+msgctxt "STR_WARN_TRANSP_VERSION"
+msgid ""
+"Transparency is not supported in PDF versions earlier than PDF 1.4. A "
+"transparent object was painted opaque instead"
+msgstr ""
+"Transparenz wird von PDF-Versionen vor 1.4 nicht unterstützt. Ein "
+"transparentes Objekt wurde stattdessen ohne Transparenz exportiert."
+
+#. CyosP
+#: impdialog.src
+msgctxt "STR_WARN_FORMACTION_PDFA_SHORT"
+msgid "PDF/A form action"
+msgstr "PDF/A-Formularaktion"
+
+#. N9Vug
+#: impdialog.src
+msgctxt "STR_WARN_FORMACTION_PDFA"
+msgid ""
+"A form control contained an action not supported by the PDF/A standard. The "
+"action was skipped"
+msgstr ""
+"Ein Formularelement enthielt eine Aktion, die nicht vom PDF/A-Standard "
+"unterstützt wird. Die Aktion wurde übersprungen."
+
+#. d2ndY
+#: impdialog.src
+msgctxt "STR_WARN_TRANSP_CONVERTED"
+msgid ""
+"Some objects were converted to an image in order to remove transparencies, "
+"because the target PDF format does not support transparencies. Possibly "
+"better results can be achieved if you remove the transparent objects before "
+"exporting."
+msgstr ""
+"Da das Ziel-PDF-Format keine Transparenzen unterstützt, werden einige "
+"Objekte zu Bildern konvertiert, um Transparenzen zu entfernen. Es können "
+"eventuell bessere Ergebnisse erzielt werden, wenn die transparenten Objekte "
+"vor dem Export entfernt werden."
+
+#. qtCcB
+#: impdialog.src
+msgctxt "STR_WARN_TRANSP_CONVERTED_SHORT"
+msgid "Transparencies removed"
+msgstr "Transparenzen wurden entfernt."
+
+#. UHmjA
+#: impdialog.src
+msgctxt "STR_ERR_SIGNATURE_FAILED"
+msgid "Signature generation failed"
+msgstr "Erstellen der Signatur fehlgeschlagen"
+
+#. wjBBo
+#: impdialog.src
+msgctxt "STR_ERR_PDF_EXPORT_ABORTED"
+msgid "PDF export aborted"
+msgstr "PDF-Export abgebrochen."
+
+#. AvaAH
+#: pdf.src
+msgctxt "PDF_PROGRESS_BAR"
+msgid "Export as PDF"
+msgstr "Exportieren als PDF"
+
+#. iUSBA
+#: t602filter.src
+msgctxt "T602FILTER_STR_IMPORT_DIALOG_TITLE"
+msgid "Settings for T602 import"
+msgstr "Einstellungen für T602-Import"
+
+#. BU2Mt
+#: t602filter.src
+msgctxt "T602FILTER_STR_ENCODING_LABEL"
+msgid "Encoding"
+msgstr "Kodierung"
+
+#. j3aAG
+#: t602filter.src
+msgctxt "T602FILTER_STR_ENCODING_AUTO"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. DuxTb
+#: t602filter.src
+msgctxt "T602FILTER_STR_ENCODING_CP852"
+msgid "CP852 (Latin2)"
+msgstr "CP852 (Latin2)"
+
+#. AfQyS
+#: t602filter.src
+msgctxt "T602FILTER_STR_ENCODING_CP895"
+msgid "CP895 (KEYB2CS, Kamenicky)"
+msgstr "CP895 (KEYB2CS, Kamenicky)"
+
+#. 8NfvS
+#: t602filter.src
+msgctxt "T602FILTER_STR_ENCODING_KOI8CS2"
+msgid "KOI8 CS2"
+msgstr "KOI8 CS2"
+
+#. EWMCQ
+#: t602filter.src
+msgctxt "T602FILTER_STR_CYRILLIC_MODE"
+msgid "Mode for Russian language (Cyrillic)"
+msgstr "Modus für Russisch (Kyrillisch)"
+
+#. mZVZv
+#: t602filter.src
+msgctxt "T602FILTER_STR_REFORMAT_TEXT"
+msgid "Reformat the text"
+msgstr "Text neu formatieren"
+
+#. MGmYA
+#: t602filter.src
+msgctxt "T602FILTER_STR_DOT_COMMANDS"
+msgid "Display dot commands"
+msgstr "Punktbefehle anzeigen"
+
+#. c6Atq
+#: t602filter.src
+msgctxt "T602FILTER_STR_CANCEL_BUTTON"
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#. Sjy7k
+#: t602filter.src
+msgctxt "T602FILTER_STR_OK_BUTTON"
+msgid "OK"
+msgstr "OK"
+
+#. EkzSW
+#: epsstr.src
+msgctxt "KEY_VERSION_CHECK"
+msgid ""
+"Warning: Not all of the imported EPS graphics could be saved at level1\n"
+"as some are at a higher level!"
+msgstr ""
+"Achtung: Es konnten nicht alle importierten EPS-Bilder in Level 1\n"
+"abgespeichert werden, da einige in einem höherem Level vorliegen!"
+
+#. Y3kBV
+#: impswfdialog.ui
+msgctxt "impswfdialog|ImpSWFDialog"
+msgid "Flash (SWF) Options"
+msgstr "Flash (SWF)-Optionen"
+
+#. S2cVZ
+#: impswfdialog.ui
+msgctxt "impswfdialog|label1"
+msgid ""
+"1: min. quality\n"
+"100: max. quality"
+msgstr ""
+"1: Minimale Qualität\n"
+"100: Maximale Qualität"
+
+#. oDK6o
+#: impswfdialog.ui
+msgctxt "impswfdialog|exportall"
+msgid "Export _all slides (uncheck to export current slide)"
+msgstr "_Alle Folien exportieren (Nicht markiert exportiert aktuelle Folie)"
+
+#. CB9hD
+#: impswfdialog.ui
+msgctxt "impswfdialog|exportmultiplefiles"
+msgid "Export as _multiple files"
+msgstr "Als _mehrere Dateien exportieren"
+
+#. cDbFq
+#: impswfdialog.ui
+msgctxt "impswfdialog|exportbackgrounds"
+msgid "Export _backgrounds"
+msgstr "H_intergründe exportieren"
+
+#. rBFG6
+#: impswfdialog.ui
+msgctxt "impswfdialog|exportbackgroundobjects"
+msgid "Export back_ground objects"
+msgstr "Hinter_grundobjekte exportieren"
+
+#. P8j2y
+#: impswfdialog.ui
+msgctxt "impswfdialog|exportslidecontents"
+msgid "Export _slide contents"
+msgstr "_Folieninhalt exportieren"
+
+#. DzHf3
+#: impswfdialog.ui
+msgctxt "impswfdialog|exportsound"
+msgid "Export _Verilogix Slide Annotations"
+msgstr "_Verilogix Folienkommentare exportieren"
+
+#. EAyk7
+#: impswfdialog.ui
+msgctxt "impswfdialog|exportoleasjpeg"
+msgid "Export OLE objects as _JPEG images"
+msgstr "OLE-Objekte als _JPEG-Bilder exportieren"
+
+#. AwX66
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|all"
+msgid "_All"
+msgstr "_Alle"
+
+#. NXztB
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|range"
+msgid "_Pages:"
+msgstr "_Seiten:"
+
+#. WTSeS
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|selection"
+msgid "_Selection"
+msgstr "A_uswahl"
+
+#. tFeCH
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|slides"
+msgid "Slides:"
+msgstr "Folien:"
+
+#. aWj7F
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|selectedsheets"
+msgid "_Selection/Selected sheet(s)"
+msgstr "A_uswahl/Ausgewählte Tabelle(n)"
+
+#. MXtmZ
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|label1"
+msgid "Range"
+msgstr "Bereich"
+
+#. ST3Rc
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|label6"
+msgid "_Quality:"
+msgstr "_Qualität:"
+
+#. D6f7R
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|reduceresolution"
+msgid "_Reduce image resolution"
+msgstr "_Bildauflösung reduzieren"
+
+#. XHeTx
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|resolution"
+msgid "75 DPI"
+msgstr "75 DPI"
+
+#. CXj4e
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|resolution"
+msgid "150 DPI"
+msgstr "150 DPI"
+
+#. jZKqd
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|resolution"
+msgid "300 DPI"
+msgstr "300 DPI"
+
+#. GsMsK
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|resolution"
+msgid "600 DPI"
+msgstr "600 DPI"
+
+#. 5yTAM
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|resolution"
+msgid "1200 DPI"
+msgstr "1200 DPI"
+
+#. r6npH
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|comboboxtext-entry"
+msgid "75 DPI"
+msgstr "75 DPI"
+
+#. WbQ5j
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|losslesscompress"
+msgid "_Lossless compression"
+msgstr "_Verlustfreie Komprimierung"
+
+#. FP56V
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|jpegcompress"
+msgid "_JPEG compression"
+msgstr "_JPEG-Komprimierung"
+
+#. cFwGA
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|label2"
+msgid "Images"
+msgstr "Bilder"
+
+#. NwjSn
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|watermark"
+msgid "Sign with _watermark"
+msgstr "_Mit Wasserzeichen versehen"
+
+#. JtBsL
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|watermarklabel"
+msgid "Text:"
+msgstr "Text:"
+
+#. VfFZf
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|label3"
+msgid "Watermark"
+msgstr "Wasserzeichen"
+
+#. 2hSjJ
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|embed"
+msgid "Hybrid PDF (em_bed ODF file)"
+msgstr "Hybrid-PDF (einge_bettete ODF-Datei)"
+
+#. vzxG2
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|embed|tooltip_text"
+msgid "Creates a PDF that is easily editable in %PRODUCTNAME"
+msgstr "Erstellt ein PDF, das einfach mit %PRODUCTNAME zu bearbeiten ist"
+
+#. Gy2Pu
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|pdfa"
+msgid "Archive P_DF/A-1a (ISO 19005-1)"
+msgstr "P_DF/A-1a (ISO 19005-1)-Archiv"
+
+#. D4B92
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|pdfa|tooltip_text"
+msgid ""
+"Creates an ISO 19005-1 compliant PDF file, ideal for long-term document "
+"preservation"
+msgstr ""
+"Erzeugt eine ISO-19005-1-konforme PDF-Datei, ideal für die "
+"Langzeitaufbewahrung des Dokuments"
+
+#. RAvA6
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|tagged"
+msgid "_Tagged PDF (add document structure)"
+msgstr "_Indiziertes PDF (fügt die Dokumentstruktur hinzu)"
+
+#. cAm8Z
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|tagged|tooltip_text"
+msgid "Includes a document's content structure information in a PDF"
+msgstr ""
+"Nimmt Informationen zur Inhaltsstruktur eines Dokuments mit in ein PDF auf"
+
+#. pZK6z
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|forms"
+msgid "_Create PDF form"
+msgstr "_PDF-Formular erzeugen"
+
+#. 3Vg8V
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|forms|tooltip_text"
+msgid "Creates a PDF with fields that can be filled out"
+msgstr "Erzeugt ein PDF mit Feldern, die ausgefüllt werden können"
+
+#. ECLBB
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|label7"
+msgid "Submit _format:"
+msgstr "_Format für Übermittlung:"
+
+#. tkPCH
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|format"
+msgid "FDF"
+msgstr "FDF"
+
+#. rfzrh
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|format"
+msgid "PDF"
+msgstr "PDF"
+
+#. S7caE
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|format"
+msgid "HTML"
+msgstr "HTML"
+
+#. HUzsi
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|format"
+msgid "XML"
+msgstr "XML"
+
+#. B7zan
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|allowdups"
+msgid "Allow duplicate field _names"
+msgstr "D_oppelte Feldnamen erlauben"
+
+#. kAAHx
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|bookmarks"
+msgid "Export _bookmarks"
+msgstr "L_esezeichen exportieren"
+
+#. kQbPh
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|exportplaceholders"
+msgid "Expo_rt placeholders"
+msgstr "_Platzhalter exportieren"
+
+#. 6cAna
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|comments"
+msgid "_Export comments"
+msgstr "_Kommentare exportieren"
+
+#. y9evS
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|emptypages"
+msgid "Exp_ort automatically inserted blank pages"
+msgstr "Automatisch eingefügte Lee_rseiten exportieren"
+
+#. 9Cyn8
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|viewpdf"
+msgid "_View PDF after export"
+msgstr "PDF-Dokument nach Export an_zeigen"
+
+#. sHqKP
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|usereferencexobject"
+msgid "Use reference XObjects"
+msgstr "XObjects-Referenz verwenden"
+
+#. 2K2cD
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|hiddenpages"
+msgid "Export _hidden pages"
+msgstr "_Verborgene Seiten exportieren"
+
+#. ghuXR
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|notes"
+msgid "Export _notes pages"
+msgstr "_Notizseiten exportieren"
+
+#. BGvC2
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|onlynotes"
+msgid "Export onl_y notes pages"
+msgstr "Nu_r Notizseiten exportieren"
+
+#. Drqkd
+#: pdfgeneralpage.ui
+msgctxt "pdfgeneralpage|label4"
+msgid "General"
+msgstr "Allgemein"
+
+#. QEAua
+#: pdflinkspage.ui
+msgctxt "pdflinkspage|export"
+msgid "Export bookmarks as named destinations"
+msgstr "Lesezeichen als benannte Ziele exportieren"
+
+#. aCCLQ
+#: pdflinkspage.ui
+msgctxt "pdflinkspage|convert"
+msgid "_Convert document references to PDF targets"
+msgstr "_Dokumentverweise in PDF-Ziele umwandeln"
+
+#. 6Lyp3
+#: pdflinkspage.ui
+msgctxt "pdflinkspage|exporturl"
+msgid "Export _URLs relative to file system"
+msgstr "_URLs relativ zum Dateisystem exportieren"
+
+#. biumY
+#: pdflinkspage.ui
+msgctxt "pdflinkspage|label1"
+msgid "General"
+msgstr "Allgemein"
+
+#. mGRBH
+#: pdflinkspage.ui
+msgctxt "pdflinkspage|default"
+msgid "Default mode"
+msgstr "Standardverhalten"
+
+#. DNRK8
+#: pdflinkspage.ui
+msgctxt "pdflinkspage|openpdf"
+msgid "Open with PDF reader application"
+msgstr "Mit PDF-Anzeigeprogramm öffnen"
+
+#. wPem9
+#: pdflinkspage.ui
+msgctxt "pdflinkspage|openinternet"
+msgid "Open _with Internet browser"
+msgstr "Mit _Internet-Browser öffnen"
+
+#. B9TGg
+#: pdflinkspage.ui
+msgctxt "pdflinkspage|label5"
+msgid "Cross-document Links"
+msgstr "Verknüpfungen zwischen Dokumenten"
+
+#. KmFGh
+#: pdfoptionsdialog.ui
+msgctxt "pdfoptionsdialog|PdfOptionsDialog"
+msgid "PDF Options"
+msgstr "PDF-Optionen"
+
+#. BwbwB
+#: pdfoptionsdialog.ui
+msgctxt "pdfoptionsdialog|ok"
+msgid "E_xport"
+msgstr "E_xportieren"
+
+#. Y2Mem
+#: pdfoptionsdialog.ui
+msgctxt "pdfoptionsdialog|general"
+msgid "General"
+msgstr "Allgemein"
+
+#. DMBHC
+#: pdfoptionsdialog.ui
+msgctxt "pdfoptionsdialog|initialview"
+msgid "Initial View"
+msgstr "Anfangsdarstellung"
+
+#. 35g8K
+#: pdfoptionsdialog.ui
+msgctxt "pdfoptionsdialog|userinterface"
+msgid "User Interface"
+msgstr "Benutzeroberfläche"
+
+#. 3EStU
+#: pdfoptionsdialog.ui
+msgctxt "pdfoptionsdialog|links"
+msgid "Links"
+msgstr "Verknüpfungen"
+
+#. x4GVL
+#: pdfoptionsdialog.ui
+msgctxt "pdfoptionsdialog|security"
+msgid "Security"
+msgstr "Sicherheit"
+
+#. Vmf6H
+#: pdfoptionsdialog.ui
+msgctxt "pdfoptionsdialog|digitalsignatures"
+msgid "Digital Signatures"
+msgstr "Digitale Signaturen"
+
+#. 7p3sS
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|setpassword"
+msgid "Set _Passwords…"
+msgstr "_Kennwörter setzen…"
+
+#. 63szB
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label5"
+msgid "Open password set"
+msgstr "Öffnen-Kennwort gesetzt"
+
+#. 6ktYG
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label6"
+msgid "PDF document will be encrypted"
+msgstr "PDF-Dokument wird verschlüsselt"
+
+#. pTAZC
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label7"
+msgid "No open password set"
+msgstr "Kein Öffnen-Kennwort gesetzt"
+
+#. fp3My
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label8"
+msgid "PDF document will not be encrypted"
+msgstr "PDF-Dokument wird nicht verschlüsselt"
+
+#. aHC6v
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label30"
+msgid "PDF document will not be encrypted due to PDF/A export."
+msgstr "Das PDF-Dokument wird aufgrund des PDF/A-Exports nicht verschlüsselt."
+
+#. DsALB
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label9"
+msgid "Permission password set"
+msgstr "Rechte-Kennwort gesetzt"
+
+#. hRJpp
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label11"
+msgid "PDF document will be restricted"
+msgstr "Dokument-Rechte werden eingeschränkt"
+
+#. L3oQx
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label12"
+msgid "No permission password set"
+msgstr "Kein Rechte-Kennwort gesetzt"
+
+#. s3RBF
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label13"
+msgid "PDF document will be unrestricted"
+msgstr "Dokument-Rechte werden nicht eingeschränkt"
+
+#. 4jwu7
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label14"
+msgid "PDF document will not be restricted due to PDF/A export."
+msgstr ""
+"Die Dokumentrechte werden aufgrund des PDF/A-Exports nicht eingeschränkt."
+
+#. 9CFqB
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|setpasswordstitle"
+msgid "Set Passwords"
+msgstr "Kennwörter setzen"
+
+#. FDKJa
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label2"
+msgid "File Encryption and Permission"
+msgstr "Dateiverschlüsselung und Berechtigung"
+
+#. tWAWA
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|printnone"
+msgid "_Not permitted"
+msgstr "_Nicht gestattet"
+
+#. kSfrd
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|printlow"
+msgid "_Low resolution (150 dpi)"
+msgstr "N_iedrige Auflösung (150 dpi)"
+
+#. CmQzT
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|printhigh"
+msgid "_High resolution"
+msgstr "H_ohe Auflösung"
+
+#. Gjpp4
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label1"
+msgid "Printing"
+msgstr "Drucken"
+
+#. C6BHs
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|changenone"
+msgid "No_t permitted"
+msgstr "Ni_cht gestattet"
+
+#. Vt6Zn
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|changeinsdel"
+msgid "_Inserting, deleting, and rotating pages"
+msgstr "Einfügen, Löschen und Drehen von _Seiten"
+
+#. dAmDo
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|changeform"
+msgid "_Filling in form fields"
+msgstr "_Formularfelder ausfüllen"
+
+#. zGE7J
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|changecomment"
+msgid "_Commenting, filling in form fields"
+msgstr "_Kommentieren und Formulare ausfüllen"
+
+#. uP8VW
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|changeany"
+msgid "_Any except extracting pages"
+msgstr "All_es außer das Extrahieren von Seiten"
+
+#. vLxXJ
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label3"
+msgid "Changes"
+msgstr "Änderungen"
+
+#. iJHWS
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|enablecopy"
+msgid "Ena_ble copying of content"
+msgstr "Inha_lte kopieren erlauben"
+
+#. 2EMgQ
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|enablea11y"
+msgid "Enable text access for acce_ssibility tools"
+msgstr "Mit Unterstützung der _Zugänglichkeit"
+
+#. 2hi53
+#: pdfsecuritypage.ui
+msgctxt "pdfsecuritypage|label4"
+msgid "Content"
+msgstr "Inhalt"
+
+#. bDVGF
+#: pdfsignpage.ui
+msgctxt "pdfsignpage|label2"
+msgid "Use this certificate to digitally sign PDF documents:"
+msgstr ""
+"Dieses Zertifikat für die digitale Signatur von PDF-Dokumenten nutzen:"
+
+#. xgYD9
+#: pdfsignpage.ui
+msgctxt "pdfsignpage|select"
+msgid "Select..."
+msgstr "Auswählen..."
+
+#. wHqcD
+#: pdfsignpage.ui
+msgctxt "pdfsignpage|tsa"
+msgid "None"
+msgstr "Keine"
+
+#. VMoF3
+#: pdfsignpage.ui
+msgctxt "pdfsignpage|label7"
+msgid "Certificate password:"
+msgstr "Zertifikat-Kennwort:"
+
+#. Syow2
+#: pdfsignpage.ui
+msgctxt "pdfsignpage|label12"
+msgid "Location:"
+msgstr "Ort:"
+
+#. AQkj6
+#: pdfsignpage.ui
+msgctxt "pdfsignpage|label13"
+msgid "Contact information:"
+msgstr "Kontaktinformationen:"
+
+#. mvSG8
+#: pdfsignpage.ui
+msgctxt "pdfsignpage|label14"
+msgid "Reason:"
+msgstr "Grund:"
+
+#. Bbwq2
+#: pdfsignpage.ui
+msgctxt "pdfsignpage|label15"
+msgid "Time Stamp Authority:"
+msgstr "Time Stamp Authority:"
+
+#. YeAiB
+#: pdfsignpage.ui
+msgctxt "pdfsignpage|label1"
+msgid "Certificate"
+msgstr "Zertifikat"
+
+#. 92sua
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|center"
+msgid "_Center window on screen"
+msgstr "Fenster auf Bildschirm _zentrieren"
+
+#. ZEPFF
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|resize"
+msgid "_Resize window to initial page"
+msgstr "_Fenster an erste Seite anpassen"
+
+#. crBwn
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|open"
+msgid "_Open in full screen mode"
+msgstr "_Im Vollbildmodus öffnen"
+
+#. Cvzzi
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|display"
+msgid "_Display document title"
+msgstr "_Dokumenttitel anzeigen"
+
+#. BtMjV
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|label1"
+msgid "Window Options"
+msgstr "Fensteroptionen"
+
+#. hZQVm
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|toolbar"
+msgid "Hide _toolbar"
+msgstr "_Symbolleiste verbergen"
+
+#. YLEgH
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|menubar"
+msgid "Hide _menubar"
+msgstr "_Menüleiste verbergen"
+
+#. Aw2aq
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|window"
+msgid "Hide _window controls"
+msgstr "_Fenstersteuerelemente ausblenden"
+
+#. xm2Lh
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|label2"
+msgid "User Interface Options"
+msgstr "Benutzeroberflächenoptionen"
+
+#. SwDno
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|effects"
+msgid "_Use transition effects"
+msgstr "Über_gangseffekte verwenden"
+
+#. JgwC9
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|label3"
+msgid "Transitions"
+msgstr "Übergänge"
+
+#. NWbFN
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|allbookmarks"
+msgid "_All bookmark levels"
+msgstr "Alle Lesezeichen_ebenen"
+
+#. FCDSJ
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|visiblebookmark"
+msgid "_Visible bookmark levels:"
+msgstr "_Sichtbare Lesezeichenebenen:"
+
+#. 5cxoc
+#: pdfuserinterfacepage.ui
+msgctxt "pdfuserinterfacepage|label4"
+msgid "Bookmarks"
+msgstr "Lesezeichen"
+
+#. ibYBv
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|pageonly"
+msgid "_Page only"
+msgstr "_Nur Seite"
+
+#. gkjEH
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|outline"
+msgid "_Bookmarks and page"
+msgstr "_Lesezeichen und Seite"
+
+#. rT8gQ
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|thumbs"
+msgid "_Thumbnails and page"
+msgstr "_Miniaturansichten und Seite"
+
+#. EgKos
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|label4"
+msgid "Open on pa_ge:"
+msgstr "Öffnen a_uf Seite:"
+
+#. MxznY
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|label2"
+msgid "Panes"
+msgstr "Bereiche"
+
+#. jA3LD
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|fitdefault"
+msgid "_Default"
+msgstr "_Standard"
+
+#. kqho7
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|fitwin"
+msgid "_Fit in window"
+msgstr "Fe_nstergröße"
+
+#. gcStc
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|fitwidth"
+msgid "Fit _width"
+msgstr "Fenster_breite"
+
+#. V6kwp
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|fitvis"
+msgid "Fit _visible"
+msgstr "Seitenb_reite"
+
+#. NGpWy
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|fitzoom"
+msgid "_Zoom factor:"
+msgstr "_Maßstab:"
+
+#. LQKDP
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|label3"
+msgid "Magnification"
+msgstr "Vergrößerung"
+
+#. Eegkp
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|defaultlayout"
+msgid "D_efault"
+msgstr "S_tandard"
+
+#. QBpan
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|singlelayout"
+msgid "_Single page"
+msgstr "_Einzelne Seite"
+
+#. HCgtG
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|contlayout"
+msgid "_Continuous"
+msgstr "_Fortlaufend"
+
+#. n4i66
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|contfacinglayout"
+msgid "C_ontinuous facing"
+msgstr "F_ortlaufend gegenüber"
+
+#. 4DFBW
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|firstonleft"
+msgid "First page is _left"
+msgstr "Erste Seite ist lin_ks"
+
+#. sYKod
+#: pdfviewpage.ui
+msgctxt "pdfviewpage|label1"
+msgid "Page Layout"
+msgstr "Seitenlayout"
+
+#. G43B5
+#: testxmlfilter.ui
+msgctxt "testxmlfilter|TestXMLFilterDialog"
+msgid "Test XML Filter: %s"
+msgstr "XML-Filter testen: %s"
+
+#. 93Aw7
+#: testxmlfilter.ui
+msgctxt "testxmlfilter|label3"
+msgid "XSLT for export"
+msgstr "XSLT zum Exportieren"
+
+#. 3EKij
+#: testxmlfilter.ui
+msgctxt "testxmlfilter|label4"
+msgid "Transform document"
+msgstr "Dokument umwandeln"
+
+#. TZvm5
+#: testxmlfilter.ui
+msgctxt "testxmlfilter|exportbrowse"
+msgid "Browse..."
+msgstr "Durchsuchen..."
+
+#. F8CJd
+#: testxmlfilter.ui
+msgctxt "testxmlfilter|currentdocument"
+msgid "Current Document"
+msgstr "Aktuelles Dokument"
+
+#. b7FMe
+#: testxmlfilter.ui
+msgctxt "testxmlfilter|label1"
+msgid "Export"
+msgstr "Export"
+
+#. ANpSQ
+#: testxmlfilter.ui
+msgctxt "testxmlfilter|label5"
+msgid "XSLT for import"
+msgstr "XSLT zum Importieren"
+
+#. aWFtZ
+#: testxmlfilter.ui
+msgctxt "testxmlfilter|importbrowse"
+msgid "Browse..."
+msgstr "Durchsuchen..."
+
+#. RGb9P
+#: testxmlfilter.ui
+msgctxt "testxmlfilter|recentfile"
+msgid "Recent File"
+msgstr "Letzte Datei"
+
+#. WRoGk
+#: testxmlfilter.ui
+msgctxt "testxmlfilter|templateimport"
+msgid "Template for import"
+msgstr "Import-Dokumentvorlage"
+
+#. UAfyw
+#: testxmlfilter.ui
+msgctxt "testxmlfilter|displaysource"
+msgid "Display source"
+msgstr "Quelltext anzeigen"
+
+#. AKfAy
+#: testxmlfilter.ui
+msgctxt "testxmlfilter|label6"
+msgid "Transform file"
+msgstr "Datei umwandeln"
+
+#. 4MaaP
+#: testxmlfilter.ui
+msgctxt "testxmlfilter|label2"
+msgid "Import"
+msgstr "Import"
+
+#. DEJXN
+#: warnpdfdialog.ui
+msgctxt "warnpdfdialog|WarnPDFDialog"
+msgid "Problems During PDF Export"
+msgstr "Probleme während des PDF-Exports"
+
+#. 2BpUz
+#: warnpdfdialog.ui
+msgctxt "warnpdfdialog|WarnPDFDialog"
+msgid "During PDF export the following problems occurred:"
+msgstr "Während des PDF-Exports sind folgende Probleme aufgetreten:"
+
+#. wG9NF
+#: xmlfiltersettings.ui
+msgctxt "xmlfiltersettings|XMLFilterSettingsDialog"
+msgid "XML Filter Settings"
+msgstr "XML-Filtereinstellungen"
+
+#. VcMQo
+#: xmlfiltersettings.ui
+msgctxt "xmlfiltersettings|new"
+msgid "_New..."
+msgstr "_Neu..."
+
+#. W6Ju3
+#: xmlfiltersettings.ui
+msgctxt "xmlfiltersettings|edit"
+msgid "_Edit..."
+msgstr "_Bearbeiten..."
+
+#. DAoSK
+#: xmlfiltersettings.ui
+msgctxt "xmlfiltersettings|test"
+msgid "_Test XSLTs..."
+msgstr "_XSLTs testen..."
+
+#. FE7Za
+#: xmlfiltersettings.ui
+msgctxt "xmlfiltersettings|delete"
+msgid "_Delete..."
+msgstr "_Löschen..."
+
+#. DmuTA
+#: xmlfiltersettings.ui
+msgctxt "xmlfiltersettings|save"
+msgid "_Save as Package..."
+msgstr "_Als Paket sichern..."
+
+#. CuahL
+#: xmlfiltersettings.ui
+msgctxt "xmlfiltersettings|open"
+msgid "_Open Package..."
+msgstr "_Paket öffnen..."
+
+#. bKwWy
+#: xmlfiltersettings.ui
+msgctxt "xmlfiltersettings|filterlist-atkobject"
+msgid "XML Filter List"
+msgstr "XML-Filterliste"
+
+#. rLZ5z
+#: xmlfiltertabpagegeneral.ui
+msgctxt "xmlfiltertabpagegeneral|label2"
+msgid "_Filter name:"
+msgstr "_Filtername:"
+
+#. dreFh
+#: xmlfiltertabpagegeneral.ui
+msgctxt "xmlfiltertabpagegeneral|label3"
+msgid "_Application:"
+msgstr "An_wendung:"
+
+#. yQmBY
+#: xmlfiltertabpagegeneral.ui
+msgctxt "xmlfiltertabpagegeneral|label4"
+msgid "_Name of file type:"
+msgstr "_Name des Dateityps:"
+
+#. NB3Gy
+#: xmlfiltertabpagegeneral.ui
+msgctxt "xmlfiltertabpagegeneral|label5"
+msgid "File _extension:"
+msgstr "_Dateiendung:"
+
+#. fPxWA
+#: xmlfiltertabpagegeneral.ui
+msgctxt "xmlfiltertabpagegeneral|label6"
+msgid "Comment_s:"
+msgstr "_Kommentare:"
+
+#. FhD2n
+#: xmlfiltertabpagetransformation.ui
+msgctxt "xmlfiltertabpagetransformation|label2"
+msgid "_DocType:"
+msgstr "_Dokumenttyp:"
+
+#. J5c8A
+#: xmlfiltertabpagetransformation.ui
+msgctxt "xmlfiltertabpagetransformation|label4"
+msgid "_XSLT for export:"
+msgstr "_XSLT zum Exportieren:"
+
+#. GwzvD
+#: xmlfiltertabpagetransformation.ui
+msgctxt "xmlfiltertabpagetransformation|browseexport"
+msgid "Brows_e..."
+msgstr "D_urchsuchen..."
+
+#. oZGZS
+#: xmlfiltertabpagetransformation.ui
+msgctxt "xmlfiltertabpagetransformation|label5"
+msgid "XSLT _for import:"
+msgstr "XSLT zum _Importieren:"
+
+#. UNKTt
+#: xmlfiltertabpagetransformation.ui
+msgctxt "xmlfiltertabpagetransformation|browseimport"
+msgid "B_rowse..."
+msgstr "Durch_suchen..."
+
+#. 9nV9R
+#: xmlfiltertabpagetransformation.ui
+msgctxt "xmlfiltertabpagetransformation|label6"
+msgid "Template for _import:"
+msgstr "Dokument_vorlage für Import:"
+
+#. MNLtB
+#: xmlfiltertabpagetransformation.ui
+msgctxt "xmlfiltertabpagetransformation|browsetemp"
+msgid "Browse..."
+msgstr "Durchsuchen..."
+
+#. XTDex
+#: xmlfiltertabpagetransformation.ui
+msgctxt "xmlfiltertabpagetransformation|filtercb"
+msgid "The filter needs XSLT 2.0 processor"
+msgstr "Der Filter benötigt XSLT 2.0-Prozessoren"
+
+#. MCfGg
+#: xsltfilterdialog.ui
+msgctxt "xsltfilterdialog|XSLTFilterDialog"
+msgid "XML Filter: %s"
+msgstr "XML-Filter: %s"
+
+#. Cvy2d
+#: xsltfilterdialog.ui
+msgctxt "xsltfilterdialog|general"
+msgid "General"
+msgstr "Allgemein"
+
+#. peR3F
+#: xsltfilterdialog.ui
+msgctxt "xsltfilterdialog|transformation"
+msgid "Transformation"
+msgstr "Umwandlung"
diff --git a/source/de/filter/source/graphicfilter/eps.po b/source/de/filter/source/graphicfilter/eps.po
deleted file mode 100644
index 7ce1bd0772e..00000000000
--- a/source/de/filter/source/graphicfilter/eps.po
+++ /dev/null
@@ -1,29 +0,0 @@
-#. extracted from filter/source/graphicfilter/eps
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-11-20 06:35+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479623745.000000\n"
-
-#: epsstr.src
-msgctxt ""
-"epsstr.src\n"
-"KEY_VERSION_CHECK\n"
-"string.text"
-msgid ""
-"Warning: Not all of the imported EPS graphics could be saved at level1\n"
-"as some are at a higher level!"
-msgstr ""
-"Achtung: Es konnten nicht alle importierten EPS-Bilder in Level 1\n"
-"abgespeichert werden, da einige in einem höherem Level vorliegen!"
diff --git a/source/de/filter/source/pdf.po b/source/de/filter/source/pdf.po
deleted file mode 100644
index 60f208ed90d..00000000000
--- a/source/de/filter/source/pdf.po
+++ /dev/null
@@ -1,129 +0,0 @@
-#. extracted from filter/source/pdf
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2017-05-13 03:57+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1494647853.000000\n"
-
-#: impdialog.src
-msgctxt ""
-"impdialog.src\n"
-"STR_PDF_EXPORT_UDPWD\n"
-"string.text"
-msgid "Set open password"
-msgstr "Öffnen-Kennwort setzen"
-
-#: impdialog.src
-msgctxt ""
-"impdialog.src\n"
-"STR_PDF_EXPORT_ODPWD\n"
-"string.text"
-msgid "Set permission password"
-msgstr "Rechte-Kennwort setzen"
-
-#: impdialog.src
-msgctxt ""
-"impdialog.src\n"
-"STR_WARN_PASSWORD_PDFA\n"
-"string.text"
-msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected."
-msgstr "PDF/A erlaubt keine Verschlüsselung. Die exportierte Datei wird deshalb nicht kennwortgeschützt sein."
-
-#: impdialog.src
-msgctxt ""
-"impdialog.src\n"
-"STR_WARN_TRANSP_PDFA_SHORT\n"
-"string.text"
-msgid "PDF/A transparency"
-msgstr "PDF/A-Transparenz"
-
-#: impdialog.src
-msgctxt ""
-"impdialog.src\n"
-"STR_WARN_TRANSP_PDFA\n"
-"string.text"
-msgid "PDF/A forbids transparency. A transparent object was painted opaque instead."
-msgstr "PDF/A verbietet Transparenzen. Ein transparentes Objekt wurde stattdessen ohne Transparenz exportiert."
-
-#: impdialog.src
-msgctxt ""
-"impdialog.src\n"
-"STR_WARN_TRANSP_VERSION_SHORT\n"
-"string.text"
-msgid "PDF version conflict"
-msgstr "PDF-Versionskonflikt"
-
-#: impdialog.src
-msgctxt ""
-"impdialog.src\n"
-"STR_WARN_TRANSP_VERSION\n"
-"string.text"
-msgid "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead"
-msgstr "Transparenz wird von PDF-Versionen vor 1.4 nicht unterstützt. Ein transparentes Objekt wurde stattdessen ohne Transparenz exportiert."
-
-#: impdialog.src
-msgctxt ""
-"impdialog.src\n"
-"STR_WARN_FORMACTION_PDFA_SHORT\n"
-"string.text"
-msgid "PDF/A form action"
-msgstr "PDF/A-Formularaktion"
-
-#: impdialog.src
-msgctxt ""
-"impdialog.src\n"
-"STR_WARN_FORMACTION_PDFA\n"
-"string.text"
-msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped"
-msgstr "Ein Formularelement enthielt eine Aktion, die nicht vom PDF/A-Standard unterstützt wird. Die Aktion wurde übersprungen."
-
-#: impdialog.src
-msgctxt ""
-"impdialog.src\n"
-"STR_WARN_TRANSP_CONVERTED\n"
-"string.text"
-msgid "Some objects were converted to an image in order to remove transparencies, because the target PDF format does not support transparencies. Possibly better results can be achieved if you remove the transparent objects before exporting."
-msgstr "Da das Ziel-PDF-Format keine Transparenzen unterstützt, werden einige Objekte zu Bildern konvertiert, um Transparenzen zu entfernen. Es können eventuell bessere Ergebnisse erzielt werden, wenn die transparenten Objekte vor dem Export entfernt werden."
-
-#: impdialog.src
-msgctxt ""
-"impdialog.src\n"
-"STR_WARN_TRANSP_CONVERTED_SHORT\n"
-"string.text"
-msgid "Transparencies removed"
-msgstr "Transparenzen wurden entfernt."
-
-#: impdialog.src
-msgctxt ""
-"impdialog.src\n"
-"STR_ERR_SIGNATURE_FAILED\n"
-"string.text"
-msgid "Signature generation failed"
-msgstr "Erstellen der Signatur fehlgeschlagen"
-
-#: impdialog.src
-msgctxt ""
-"impdialog.src\n"
-"STR_ERR_PDF_EXPORT_ABORTED\n"
-"string.text"
-msgid "PDF export aborted"
-msgstr "PDF-Export abgebrochen."
-
-#: pdf.src
-msgctxt ""
-"pdf.src\n"
-"PDF_PROGRESS_BAR\n"
-"string.text"
-msgid "Export as PDF"
-msgstr "Exportieren als PDF"
diff --git a/source/de/filter/source/t602.po b/source/de/filter/source/t602.po
deleted file mode 100644
index c879fb2ba26..00000000000
--- a/source/de/filter/source/t602.po
+++ /dev/null
@@ -1,104 +0,0 @@
-#. extracted from filter/source/t602
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2012-07-10 20:34+0200\n"
-"Last-Translator: Jochen <dr@jochenschiffers.de>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
-"X-Accelerator-Marker: ~\n"
-
-#: t602filter.src
-msgctxt ""
-"t602filter.src\n"
-"T602FILTER_STR_IMPORT_DIALOG_TITLE\n"
-"string.text"
-msgid "Settings for T602 import"
-msgstr "Einstellungen für T602-Import"
-
-#: t602filter.src
-msgctxt ""
-"t602filter.src\n"
-"T602FILTER_STR_ENCODING_LABEL\n"
-"string.text"
-msgid "Encoding"
-msgstr "Kodierung"
-
-#: t602filter.src
-msgctxt ""
-"t602filter.src\n"
-"T602FILTER_STR_ENCODING_AUTO\n"
-"string.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: t602filter.src
-msgctxt ""
-"t602filter.src\n"
-"T602FILTER_STR_ENCODING_CP852\n"
-"string.text"
-msgid "CP852 (Latin2)"
-msgstr "CP852 (Latin2)"
-
-#: t602filter.src
-msgctxt ""
-"t602filter.src\n"
-"T602FILTER_STR_ENCODING_CP895\n"
-"string.text"
-msgid "CP895 (KEYB2CS, Kamenicky)"
-msgstr "CP895 (KEYB2CS, Kamenicky)"
-
-#: t602filter.src
-msgctxt ""
-"t602filter.src\n"
-"T602FILTER_STR_ENCODING_KOI8CS2\n"
-"string.text"
-msgid "KOI8 CS2"
-msgstr "KOI8 CS2"
-
-#: t602filter.src
-msgctxt ""
-"t602filter.src\n"
-"T602FILTER_STR_CYRILLIC_MODE\n"
-"string.text"
-msgid "Mode for Russian language (Cyrillic)"
-msgstr "Modus für Russisch (Kyrillisch)"
-
-#: t602filter.src
-msgctxt ""
-"t602filter.src\n"
-"T602FILTER_STR_REFORMAT_TEXT\n"
-"string.text"
-msgid "Reformat the text"
-msgstr "Text neu formatieren"
-
-#: t602filter.src
-msgctxt ""
-"t602filter.src\n"
-"T602FILTER_STR_DOT_COMMANDS\n"
-"string.text"
-msgid "Display dot commands"
-msgstr "Punktbefehle anzeigen"
-
-#: t602filter.src
-msgctxt ""
-"t602filter.src\n"
-"T602FILTER_STR_CANCEL_BUTTON\n"
-"string.text"
-msgid "Cancel"
-msgstr "Abbrechen"
-
-#: t602filter.src
-msgctxt ""
-"t602filter.src\n"
-"T602FILTER_STR_OK_BUTTON\n"
-"string.text"
-msgid "OK"
-msgstr "OK"
diff --git a/source/de/filter/source/xsltdialog.po b/source/de/filter/source/xsltdialog.po
deleted file mode 100644
index f4d1ad05a08..00000000000
--- a/source/de/filter/source/xsltdialog.po
+++ /dev/null
@@ -1,193 +0,0 @@
-#. extracted from filter/source/xsltdialog
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-11-22 08:09+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1479802145.000000\n"
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_COLUMN_HEADER_NAME\n"
-"string.text"
-msgid "Name"
-msgstr "Name"
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_COLUMN_HEADER_TYPE\n"
-"string.text"
-msgid "Type"
-msgstr "Type"
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_UNKNOWN_APPLICATION\n"
-"string.text"
-msgid "Unknown"
-msgstr "Unbekannt"
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_IMPORT_ONLY\n"
-"string.text"
-msgid "import filter"
-msgstr "Import Filter"
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_IMPORT_EXPORT\n"
-"string.text"
-msgid "import/export filter"
-msgstr "Import/Export Filter"
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_EXPORT_ONLY\n"
-"string.text"
-msgid "export filter"
-msgstr "Export Filter"
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_WARN_DELETE\n"
-"string.text"
-msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
-msgstr "Möchten Sie den XML-Filter '%s' wirklich löschen? Diese Aktion kann nicht rückgängig gemacht werden."
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_ERROR_FILTER_NAME_EXISTS\n"
-"string.text"
-msgid "An XML filter with the name '%s' already exists. Please enter a different name."
-msgstr "Es existiert bereits ein XML-Filter mit dem Namen '%s'. Bitte wählen Sie einen anderen Namen."
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_ERROR_TYPE_NAME_EXISTS\n"
-"string.text"
-msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
-msgstr "Der Name auf der Benutzeroberfläche '%s1' wird bereits vom XML-Filter '%s2' verwendet. Bitte geben Sie einen anderen Namen ein."
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_ERROR_EXPORT_XSLT_NOT_FOUND\n"
-"string.text"
-msgid "The XSLT for export cannot be found. Please enter a valid path."
-msgstr "Die Export-XSLT konnte nicht gefunden werden. Bitte geben Sie einen gültigen Pfad ein."
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_ERROR_IMPORT_XSLT_NOT_FOUND\n"
-"string.text"
-msgid "The XSLT for import cannot be found. Please enter a valid path."
-msgstr "Die Import-XSLT konnte nicht gefunden werden. Bitte geben Sie einen gültigen Pfad ein."
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_ERROR_IMPORT_TEMPLATE_NOT_FOUND\n"
-"string.text"
-msgid "The given import template cannot be found. Please enter a valid path."
-msgstr "Die angegebene Import-Dokumentvorlage konnte nicht gefunden werden. Bitte geben Sie einen gültigen Pfad ein."
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_DEFAULT_FILTER_NAME\n"
-"string.text"
-msgid "New Filter"
-msgstr "Neuer Filter"
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_DEFAULT_UI_NAME\n"
-"string.text"
-msgid "Untitled"
-msgstr "Unbenannt"
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_UNDEFINED_FILTER\n"
-"string.text"
-msgid "undefined filter"
-msgstr "Undefinierter Filter"
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_FILTER_HAS_BEEN_SAVED\n"
-"string.text"
-msgid "The XML filter '%s' has been saved as package '%s'. "
-msgstr "Der XML-Filter '%s' wurde als Paket '%s' gespeichert. "
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_FILTERS_HAVE_BEEN_SAVED\n"
-"string.text"
-msgid "%s XML filters have been saved in the package '%s'."
-msgstr "%s XML-Filter wurden in dem Paket '%s' gesichert."
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_FILTER_PACKAGE\n"
-"string.text"
-msgid "XSLT filter package"
-msgstr "XSLT Filter Paket"
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_FILTER_INSTALLED\n"
-"string.text"
-msgid "The XML filter '%s' has been installed successfully."
-msgstr "Der XML-Filter '%s' wurde erfolgreich installiert."
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_FILTERS_INSTALLED\n"
-"string.text"
-msgid "%s XML filters have been installed successfully."
-msgstr "%s XML-Filter wurden erfolgreich installiert."
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_NO_FILTERS_FOUND\n"
-"string.text"
-msgid "No XML filter could be installed because the package '%s' does not contain any XML filters."
-msgstr "Es wurde kein XML-Filter installiert, weil das Paket '%s' keine XML-Filter enthält."
-
-#: xmlfilterdialogstrings.src
-msgctxt ""
-"xmlfilterdialogstrings.src\n"
-"STR_XML_FILTER_LISTBOX\n"
-"string.text"
-msgid "XML Filter List"
-msgstr "XML-Filterliste"
diff --git a/source/de/filter/uiconfig/ui.po b/source/de/filter/uiconfig/ui.po
deleted file mode 100644
index 80ba12153bb..00000000000
--- a/source/de/filter/uiconfig/ui.po
+++ /dev/null
@@ -1,1587 +0,0 @@
-#. extracted from filter/uiconfig/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-05-20 05:48+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1495259337.000000\n"
-
-#: impswfdialog.ui
-msgctxt ""
-"impswfdialog.ui\n"
-"ImpSWFDialog\n"
-"title\n"
-"string.text"
-msgid "Flash (SWF) Options"
-msgstr "Flash (SWF)-Optionen"
-
-#: impswfdialog.ui
-msgctxt ""
-"impswfdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid ""
-"1: min. quality\n"
-"100: max. quality"
-msgstr ""
-"1: Minimale Qualität\n"
-"100: Maximale Qualität"
-
-#: impswfdialog.ui
-msgctxt ""
-"impswfdialog.ui\n"
-"exportall\n"
-"label\n"
-"string.text"
-msgid "Export _all slides (uncheck to export current slide)"
-msgstr "_Alle Folien exportieren (Nicht markiert exportiert aktuelle Folie)"
-
-#: impswfdialog.ui
-msgctxt ""
-"impswfdialog.ui\n"
-"exportmultiplefiles\n"
-"label\n"
-"string.text"
-msgid "Export as _multiple files"
-msgstr "Als _mehrere Dateien exportieren"
-
-#: impswfdialog.ui
-msgctxt ""
-"impswfdialog.ui\n"
-"exportbackgrounds\n"
-"label\n"
-"string.text"
-msgid "Export _backgrounds"
-msgstr "H_intergründe exportieren"
-
-#: impswfdialog.ui
-msgctxt ""
-"impswfdialog.ui\n"
-"exportbackgroundobjects\n"
-"label\n"
-"string.text"
-msgid "Export back_ground objects"
-msgstr "Hinter_grundobjekte exportieren"
-
-#: impswfdialog.ui
-msgctxt ""
-"impswfdialog.ui\n"
-"exportslidecontents\n"
-"label\n"
-"string.text"
-msgid "Export _slide contents"
-msgstr "_Folieninhalt exportieren"
-
-#: impswfdialog.ui
-msgctxt ""
-"impswfdialog.ui\n"
-"exportsound\n"
-"label\n"
-"string.text"
-msgid "Export _Verilogix Slide Annotations"
-msgstr "_Verilogix Folienkommentare exportieren"
-
-#: impswfdialog.ui
-msgctxt ""
-"impswfdialog.ui\n"
-"exportoleasjpeg\n"
-"label\n"
-"string.text"
-msgid "Export OLE objects as _JPEG images"
-msgstr "OLE-Objekte als _JPEG-Bilder exportieren"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"all\n"
-"label\n"
-"string.text"
-msgid "_All"
-msgstr "_Alle"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"range\n"
-"label\n"
-"string.text"
-msgid "_Pages:"
-msgstr "_Seiten:"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"selection\n"
-"label\n"
-"string.text"
-msgid "_Selection"
-msgstr "A_uswahl"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"slides\n"
-"label\n"
-"string.text"
-msgid "Slides:"
-msgstr "Folien:"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"selectedsheets\n"
-"label\n"
-"string.text"
-msgid "_Selection/Selected sheet(s)"
-msgstr "A_uswahl/Ausgewählte Tabelle(n)"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Range"
-msgstr "Bereich"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "_Quality:"
-msgstr "_Qualität:"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"reduceresolution\n"
-"label\n"
-"string.text"
-msgid "_Reduce image resolution"
-msgstr "_Bildauflösung reduzieren"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"resolution\n"
-"0\n"
-"stringlist.text"
-msgid "75 DPI"
-msgstr "75 DPI"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"resolution\n"
-"1\n"
-"stringlist.text"
-msgid "150 DPI"
-msgstr "150 DPI"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"resolution\n"
-"2\n"
-"stringlist.text"
-msgid "300 DPI"
-msgstr "300 DPI"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"resolution\n"
-"3\n"
-"stringlist.text"
-msgid "600 DPI"
-msgstr "600 DPI"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"resolution\n"
-"4\n"
-"stringlist.text"
-msgid "1200 DPI"
-msgstr "1200 DPI"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"comboboxtext-entry\n"
-"text\n"
-"string.text"
-msgid "75 DPI"
-msgstr "75 DPI"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"losslesscompress\n"
-"label\n"
-"string.text"
-msgid "_Lossless compression"
-msgstr "_Verlustfreie Komprimierung"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"jpegcompress\n"
-"label\n"
-"string.text"
-msgid "_JPEG compression"
-msgstr "_JPEG-Komprimierung"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Images"
-msgstr "Bilder"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"watermark\n"
-"label\n"
-"string.text"
-msgid "Sign with _watermark"
-msgstr "_Mit Wasserzeichen versehen"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"watermarklabel\n"
-"label\n"
-"string.text"
-msgid "Text:"
-msgstr "Text:"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Watermark"
-msgstr "Wasserzeichen"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"embed\n"
-"label\n"
-"string.text"
-msgid "Hybrid PDF (em_bed ODF file)"
-msgstr "Hybrid-PDF (einge_bettete ODF-Datei)"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"embed\n"
-"tooltip_text\n"
-"string.text"
-msgid "Creates a PDF that is easily editable in %PRODUCTNAME"
-msgstr "Erstellt ein PDF, das einfach mit %PRODUCTNAME zu bearbeiten ist"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"pdfa\n"
-"label\n"
-"string.text"
-msgid "Archive P_DF/A-1a (ISO 19005-1)"
-msgstr "P_DF/A-1a (ISO 19005-1)-Archiv"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"pdfa\n"
-"tooltip_text\n"
-"string.text"
-msgid "Creates an ISO 19005-1 compliant PDF file, ideal for long-term document preservation"
-msgstr "Erzeugt eine ISO-19005-1-konforme PDF-Datei, ideal für die Langzeitaufbewahrung des Dokuments"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"tagged\n"
-"label\n"
-"string.text"
-msgid "_Tagged PDF (add document structure)"
-msgstr "_Indiziertes PDF (fügt die Dokumentstruktur hinzu)"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"tagged\n"
-"tooltip_text\n"
-"string.text"
-msgid "Includes a document's content structure information in a PDF"
-msgstr "Nimmt Informationen zur Inhaltsstruktur eines Dokuments mit in ein PDF auf"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"forms\n"
-"label\n"
-"string.text"
-msgid "_Create PDF form"
-msgstr "_PDF-Formular erzeugen"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"forms\n"
-"tooltip_text\n"
-"string.text"
-msgid "Creates a PDF with fields that can be filled out"
-msgstr "Erzeugt ein PDF mit Feldern, die ausgefüllt werden können"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Submit _format:"
-msgstr "_Format für Übermittlung:"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"format\n"
-"0\n"
-"stringlist.text"
-msgid "FDF"
-msgstr "FDF"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"format\n"
-"1\n"
-"stringlist.text"
-msgid "PDF"
-msgstr "PDF"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"format\n"
-"2\n"
-"stringlist.text"
-msgid "HTML"
-msgstr "HTML"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"format\n"
-"3\n"
-"stringlist.text"
-msgid "XML"
-msgstr "XML"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"allowdups\n"
-"label\n"
-"string.text"
-msgid "Allow duplicate field _names"
-msgstr "D_oppelte Feldnamen erlauben"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"bookmarks\n"
-"label\n"
-"string.text"
-msgid "Export _bookmarks"
-msgstr "L_esezeichen exportieren"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"exportplaceholders\n"
-"label\n"
-"string.text"
-msgid "Expo_rt placeholders"
-msgstr "_Platzhalter exportieren"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"comments\n"
-"label\n"
-"string.text"
-msgid "_Export comments"
-msgstr "_Kommentare exportieren"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"emptypages\n"
-"label\n"
-"string.text"
-msgid "Exp_ort automatically inserted blank pages"
-msgstr "Automatisch eingefügte Lee_rseiten exportieren"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"viewpdf\n"
-"label\n"
-"string.text"
-msgid "_View PDF after export"
-msgstr "PDF-Dokument nach Export an_zeigen"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"usereferencexobject\n"
-"label\n"
-"string.text"
-msgid "Use reference XObjects"
-msgstr "XObjects-Referenz verwenden"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"hiddenpages\n"
-"label\n"
-"string.text"
-msgid "Export _hidden pages"
-msgstr "_Verborgene Seiten exportieren"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"notes\n"
-"label\n"
-"string.text"
-msgid "Export _notes pages"
-msgstr "_Notizseiten exportieren"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"onlynotes\n"
-"label\n"
-"string.text"
-msgid "Export onl_y notes pages"
-msgstr "Nu_r Notizseiten exportieren"
-
-#: pdfgeneralpage.ui
-msgctxt ""
-"pdfgeneralpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: pdflinkspage.ui
-msgctxt ""
-"pdflinkspage.ui\n"
-"export\n"
-"label\n"
-"string.text"
-msgid "Export bookmarks as named destinations"
-msgstr "Lesezeichen als benannte Ziele exportieren"
-
-#: pdflinkspage.ui
-msgctxt ""
-"pdflinkspage.ui\n"
-"convert\n"
-"label\n"
-"string.text"
-msgid "_Convert document references to PDF targets"
-msgstr "_Dokumentverweise in PDF-Ziele umwandeln"
-
-#: pdflinkspage.ui
-msgctxt ""
-"pdflinkspage.ui\n"
-"exporturl\n"
-"label\n"
-"string.text"
-msgid "Export _URLs relative to file system"
-msgstr "_URLs relativ zum Dateisystem exportieren"
-
-#: pdflinkspage.ui
-msgctxt ""
-"pdflinkspage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: pdflinkspage.ui
-msgctxt ""
-"pdflinkspage.ui\n"
-"default\n"
-"label\n"
-"string.text"
-msgid "Default mode"
-msgstr "Standardverhalten"
-
-#: pdflinkspage.ui
-msgctxt ""
-"pdflinkspage.ui\n"
-"openpdf\n"
-"label\n"
-"string.text"
-msgid "Open with PDF reader application"
-msgstr "Mit PDF-Anzeigeprogramm öffnen"
-
-#: pdflinkspage.ui
-msgctxt ""
-"pdflinkspage.ui\n"
-"openinternet\n"
-"label\n"
-"string.text"
-msgid "Open _with Internet browser"
-msgstr "Mit _Internet-Browser öffnen"
-
-#: pdflinkspage.ui
-msgctxt ""
-"pdflinkspage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Cross-document Links"
-msgstr "Verknüpfungen zwischen Dokumenten"
-
-#: pdfoptionsdialog.ui
-msgctxt ""
-"pdfoptionsdialog.ui\n"
-"PdfOptionsDialog\n"
-"title\n"
-"string.text"
-msgid "PDF Options"
-msgstr "PDF-Optionen"
-
-#: pdfoptionsdialog.ui
-msgctxt ""
-"pdfoptionsdialog.ui\n"
-"ok\n"
-"label\n"
-"string.text"
-msgid "E_xport"
-msgstr "E_xportieren"
-
-#: pdfoptionsdialog.ui
-msgctxt ""
-"pdfoptionsdialog.ui\n"
-"general\n"
-"label\n"
-"string.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: pdfoptionsdialog.ui
-msgctxt ""
-"pdfoptionsdialog.ui\n"
-"initialview\n"
-"label\n"
-"string.text"
-msgid "Initial View"
-msgstr "Anfangsdarstellung"
-
-#: pdfoptionsdialog.ui
-msgctxt ""
-"pdfoptionsdialog.ui\n"
-"userinterface\n"
-"label\n"
-"string.text"
-msgid "User Interface"
-msgstr "Benutzeroberfläche"
-
-#: pdfoptionsdialog.ui
-msgctxt ""
-"pdfoptionsdialog.ui\n"
-"links\n"
-"label\n"
-"string.text"
-msgid "Links"
-msgstr "Verknüpfungen"
-
-#: pdfoptionsdialog.ui
-msgctxt ""
-"pdfoptionsdialog.ui\n"
-"security\n"
-"label\n"
-"string.text"
-msgid "Security"
-msgstr "Sicherheit"
-
-#: pdfoptionsdialog.ui
-msgctxt ""
-"pdfoptionsdialog.ui\n"
-"digitalsignatures\n"
-"label\n"
-"string.text"
-msgid "Digital Signatures"
-msgstr "Digitale Signaturen"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"setpassword\n"
-"label\n"
-"string.text"
-msgid "Set _Passwords…"
-msgstr "_Kennwörter setzen…"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Open password set"
-msgstr "Öffnen-Kennwort gesetzt"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "PDF document will be encrypted"
-msgstr "PDF-Dokument wird verschlüsselt"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "No open password set"
-msgstr "Kein Öffnen-Kennwort gesetzt"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "PDF document will not be encrypted"
-msgstr "PDF-Dokument wird nicht verschlüsselt"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label30\n"
-"label\n"
-"string.text"
-msgid "PDF document will not be encrypted due to PDF/A export."
-msgstr "Das PDF-Dokument wird aufgrund des PDF/A-Exports nicht verschlüsselt."
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "Permission password set"
-msgstr "Rechte-Kennwort gesetzt"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label11\n"
-"label\n"
-"string.text"
-msgid "PDF document will be restricted"
-msgstr "Dokument-Rechte werden eingeschränkt"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label12\n"
-"label\n"
-"string.text"
-msgid "No permission password set"
-msgstr "Kein Rechte-Kennwort gesetzt"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label13\n"
-"label\n"
-"string.text"
-msgid "PDF document will be unrestricted"
-msgstr "Dokument-Rechte werden nicht eingeschränkt"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label14\n"
-"label\n"
-"string.text"
-msgid "PDF document will not be restricted due to PDF/A export."
-msgstr "Die Dokumentrechte werden aufgrund des PDF/A-Exports nicht eingeschränkt."
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"setpasswordstitle\n"
-"label\n"
-"string.text"
-msgid "Set Passwords"
-msgstr "Kennwörter setzen"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "File Encryption and Permission"
-msgstr "Dateiverschlüsselung und Berechtigung"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"printnone\n"
-"label\n"
-"string.text"
-msgid "_Not permitted"
-msgstr "_Nicht gestattet"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"printlow\n"
-"label\n"
-"string.text"
-msgid "_Low resolution (150 dpi)"
-msgstr "N_iedrige Auflösung (150 dpi)"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"printhigh\n"
-"label\n"
-"string.text"
-msgid "_High resolution"
-msgstr "H_ohe Auflösung"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Printing"
-msgstr "Drucken"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"changenone\n"
-"label\n"
-"string.text"
-msgid "No_t permitted"
-msgstr "Ni_cht gestattet"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"changeinsdel\n"
-"label\n"
-"string.text"
-msgid "_Inserting, deleting, and rotating pages"
-msgstr "Einfügen, Löschen und Drehen von _Seiten"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"changeform\n"
-"label\n"
-"string.text"
-msgid "_Filling in form fields"
-msgstr "_Formularfelder ausfüllen"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"changecomment\n"
-"label\n"
-"string.text"
-msgid "_Commenting, filling in form fields"
-msgstr "_Kommentieren und Formulare ausfüllen"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"changeany\n"
-"label\n"
-"string.text"
-msgid "_Any except extracting pages"
-msgstr "All_es außer das Extrahieren von Seiten"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Changes"
-msgstr "Änderungen"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"enablecopy\n"
-"label\n"
-"string.text"
-msgid "Ena_ble copying of content"
-msgstr "Inha_lte kopieren erlauben"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"enablea11y\n"
-"label\n"
-"string.text"
-msgid "Enable text access for acce_ssibility tools"
-msgstr "Mit Unterstützung der _Zugänglichkeit"
-
-#: pdfsecuritypage.ui
-msgctxt ""
-"pdfsecuritypage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Content"
-msgstr "Inhalt"
-
-#: pdfsignpage.ui
-msgctxt ""
-"pdfsignpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Use this certificate to digitally sign PDF documents:"
-msgstr "Dieses Zertifikat für die digitale Signatur von PDF-Dokumenten nutzen:"
-
-#: pdfsignpage.ui
-msgctxt ""
-"pdfsignpage.ui\n"
-"select\n"
-"label\n"
-"string.text"
-msgid "Select..."
-msgstr "Auswählen..."
-
-#: pdfsignpage.ui
-msgctxt ""
-"pdfsignpage.ui\n"
-"tsa\n"
-"0\n"
-"stringlist.text"
-msgid "None"
-msgstr "Keine"
-
-#: pdfsignpage.ui
-msgctxt ""
-"pdfsignpage.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Certificate password:"
-msgstr "Zertifikat-Kennwort:"
-
-#: pdfsignpage.ui
-msgctxt ""
-"pdfsignpage.ui\n"
-"label12\n"
-"label\n"
-"string.text"
-msgid "Location:"
-msgstr "Ort:"
-
-#: pdfsignpage.ui
-msgctxt ""
-"pdfsignpage.ui\n"
-"label13\n"
-"label\n"
-"string.text"
-msgid "Contact information:"
-msgstr "Kontaktinformationen:"
-
-#: pdfsignpage.ui
-msgctxt ""
-"pdfsignpage.ui\n"
-"label14\n"
-"label\n"
-"string.text"
-msgid "Reason:"
-msgstr "Grund:"
-
-#: pdfsignpage.ui
-msgctxt ""
-"pdfsignpage.ui\n"
-"label15\n"
-"label\n"
-"string.text"
-msgid "Time Stamp Authority:"
-msgstr "Time Stamp Authority:"
-
-#: pdfsignpage.ui
-msgctxt ""
-"pdfsignpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Certificate"
-msgstr "Zertifikat"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"center\n"
-"label\n"
-"string.text"
-msgid "_Center window on screen"
-msgstr "Fenster auf Bildschirm _zentrieren"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"resize\n"
-"label\n"
-"string.text"
-msgid "_Resize window to initial page"
-msgstr "_Fenster an erste Seite anpassen"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"open\n"
-"label\n"
-"string.text"
-msgid "_Open in full screen mode"
-msgstr "_Im Vollbildmodus öffnen"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"display\n"
-"label\n"
-"string.text"
-msgid "_Display document title"
-msgstr "_Dokumenttitel anzeigen"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Window Options"
-msgstr "Fensteroptionen"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"toolbar\n"
-"label\n"
-"string.text"
-msgid "Hide _toolbar"
-msgstr "_Symbolleiste verbergen"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"menubar\n"
-"label\n"
-"string.text"
-msgid "Hide _menubar"
-msgstr "_Menüleiste verbergen"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"window\n"
-"label\n"
-"string.text"
-msgid "Hide _window controls"
-msgstr "_Fenstersteuerelemente ausblenden"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "User Interface Options"
-msgstr "Benutzeroberflächenoptionen"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"effects\n"
-"label\n"
-"string.text"
-msgid "_Use transition effects"
-msgstr "Über_gangseffekte verwenden"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Transitions"
-msgstr "Übergänge"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"allbookmarks\n"
-"label\n"
-"string.text"
-msgid "_All bookmark levels"
-msgstr "Alle Lesezeichen_ebenen"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"visiblebookmark\n"
-"label\n"
-"string.text"
-msgid "_Visible bookmark levels:"
-msgstr "_Sichtbare Lesezeichenebenen:"
-
-#: pdfuserinterfacepage.ui
-msgctxt ""
-"pdfuserinterfacepage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Bookmarks"
-msgstr "Lesezeichen"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"pageonly\n"
-"label\n"
-"string.text"
-msgid "_Page only"
-msgstr "_Nur Seite"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"outline\n"
-"label\n"
-"string.text"
-msgid "_Bookmarks and page"
-msgstr "_Lesezeichen und Seite"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"thumbs\n"
-"label\n"
-"string.text"
-msgid "_Thumbnails and page"
-msgstr "_Miniaturansichten und Seite"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Open on pa_ge:"
-msgstr "Öffnen a_uf Seite:"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Panes"
-msgstr "Bereiche"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"fitdefault\n"
-"label\n"
-"string.text"
-msgid "_Default"
-msgstr "_Standard"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"fitwin\n"
-"label\n"
-"string.text"
-msgid "_Fit in window"
-msgstr "Fe_nstergröße"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"fitwidth\n"
-"label\n"
-"string.text"
-msgid "Fit _width"
-msgstr "Fenster_breite"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"fitvis\n"
-"label\n"
-"string.text"
-msgid "Fit _visible"
-msgstr "Seitenb_reite"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"fitzoom\n"
-"label\n"
-"string.text"
-msgid "_Zoom factor:"
-msgstr "_Maßstab:"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Magnification"
-msgstr "Vergrößerung"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"defaultlayout\n"
-"label\n"
-"string.text"
-msgid "D_efault"
-msgstr "S_tandard"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"singlelayout\n"
-"label\n"
-"string.text"
-msgid "_Single page"
-msgstr "_Einzelne Seite"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"contlayout\n"
-"label\n"
-"string.text"
-msgid "_Continuous"
-msgstr "_Fortlaufend"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"contfacinglayout\n"
-"label\n"
-"string.text"
-msgid "C_ontinuous facing"
-msgstr "F_ortlaufend gegenüber"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"firstonleft\n"
-"label\n"
-"string.text"
-msgid "First page is _left"
-msgstr "Erste Seite ist lin_ks"
-
-#: pdfviewpage.ui
-msgctxt ""
-"pdfviewpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Page Layout"
-msgstr "Seitenlayout"
-
-#: testxmlfilter.ui
-msgctxt ""
-"testxmlfilter.ui\n"
-"TestXMLFilterDialog\n"
-"title\n"
-"string.text"
-msgid "Test XML Filter: %s"
-msgstr "XML-Filter testen: %s"
-
-#: testxmlfilter.ui
-msgctxt ""
-"testxmlfilter.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "XSLT for export"
-msgstr "XSLT zum Exportieren"
-
-#: testxmlfilter.ui
-msgctxt ""
-"testxmlfilter.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Transform document"
-msgstr "Dokument umwandeln"
-
-#: testxmlfilter.ui
-msgctxt ""
-"testxmlfilter.ui\n"
-"exportbrowse\n"
-"label\n"
-"string.text"
-msgid "Browse..."
-msgstr "Durchsuchen..."
-
-#: testxmlfilter.ui
-msgctxt ""
-"testxmlfilter.ui\n"
-"currentdocument\n"
-"label\n"
-"string.text"
-msgid "Current Document"
-msgstr "Aktuelles Dokument"
-
-#: testxmlfilter.ui
-msgctxt ""
-"testxmlfilter.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Export"
-msgstr "Export"
-
-#: testxmlfilter.ui
-msgctxt ""
-"testxmlfilter.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "XSLT for import"
-msgstr "XSLT zum Importieren"
-
-#: testxmlfilter.ui
-msgctxt ""
-"testxmlfilter.ui\n"
-"importbrowse\n"
-"label\n"
-"string.text"
-msgid "Browse..."
-msgstr "Durchsuchen..."
-
-#: testxmlfilter.ui
-msgctxt ""
-"testxmlfilter.ui\n"
-"recentfile\n"
-"label\n"
-"string.text"
-msgid "Recent File"
-msgstr "Letzte Datei"
-
-#: testxmlfilter.ui
-msgctxt ""
-"testxmlfilter.ui\n"
-"templateimport\n"
-"label\n"
-"string.text"
-msgid "Template for import"
-msgstr "Import-Dokumentvorlage"
-
-#: testxmlfilter.ui
-msgctxt ""
-"testxmlfilter.ui\n"
-"displaysource\n"
-"label\n"
-"string.text"
-msgid "Display source"
-msgstr "Quelltext anzeigen"
-
-#: testxmlfilter.ui
-msgctxt ""
-"testxmlfilter.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Transform file"
-msgstr "Datei umwandeln"
-
-#: testxmlfilter.ui
-msgctxt ""
-"testxmlfilter.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Import"
-msgstr "Import"
-
-#: warnpdfdialog.ui
-msgctxt ""
-"warnpdfdialog.ui\n"
-"WarnPDFDialog\n"
-"title\n"
-"string.text"
-msgid "Problems During PDF Export"
-msgstr "Probleme während des PDF-Exports"
-
-#: warnpdfdialog.ui
-msgctxt ""
-"warnpdfdialog.ui\n"
-"WarnPDFDialog\n"
-"text\n"
-"string.text"
-msgid "During PDF export the following problems occurred:"
-msgstr "Während des PDF-Exports sind folgende Probleme aufgetreten:"
-
-#: xmlfiltersettings.ui
-msgctxt ""
-"xmlfiltersettings.ui\n"
-"XMLFilterSettingsDialog\n"
-"title\n"
-"string.text"
-msgid "XML Filter Settings"
-msgstr "XML-Filtereinstellungen"
-
-#: xmlfiltersettings.ui
-msgctxt ""
-"xmlfiltersettings.ui\n"
-"new\n"
-"label\n"
-"string.text"
-msgid "_New..."
-msgstr "_Neu..."
-
-#: xmlfiltersettings.ui
-msgctxt ""
-"xmlfiltersettings.ui\n"
-"edit\n"
-"label\n"
-"string.text"
-msgid "_Edit..."
-msgstr "_Bearbeiten..."
-
-#: xmlfiltersettings.ui
-msgctxt ""
-"xmlfiltersettings.ui\n"
-"test\n"
-"label\n"
-"string.text"
-msgid "_Test XSLTs..."
-msgstr "_XSLTs testen..."
-
-#: xmlfiltersettings.ui
-msgctxt ""
-"xmlfiltersettings.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete..."
-msgstr "_Löschen..."
-
-#: xmlfiltersettings.ui
-msgctxt ""
-"xmlfiltersettings.ui\n"
-"save\n"
-"label\n"
-"string.text"
-msgid "_Save as Package..."
-msgstr "_Als Paket sichern..."
-
-#: xmlfiltersettings.ui
-msgctxt ""
-"xmlfiltersettings.ui\n"
-"open\n"
-"label\n"
-"string.text"
-msgid "_Open Package..."
-msgstr "_Paket öffnen..."
-
-#: xmlfiltersettings.ui
-msgctxt ""
-"xmlfiltersettings.ui\n"
-"filterlist-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "XML Filter List"
-msgstr "XML-Filterliste"
-
-#: xmlfiltertabpagegeneral.ui
-msgctxt ""
-"xmlfiltertabpagegeneral.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Filter name:"
-msgstr "_Filtername:"
-
-#: xmlfiltertabpagegeneral.ui
-msgctxt ""
-"xmlfiltertabpagegeneral.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Application:"
-msgstr "An_wendung:"
-
-#: xmlfiltertabpagegeneral.ui
-msgctxt ""
-"xmlfiltertabpagegeneral.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Name of file type:"
-msgstr "_Name des Dateityps:"
-
-#: xmlfiltertabpagegeneral.ui
-msgctxt ""
-"xmlfiltertabpagegeneral.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "File _extension:"
-msgstr "_Dateiendung:"
-
-#: xmlfiltertabpagegeneral.ui
-msgctxt ""
-"xmlfiltertabpagegeneral.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Comment_s:"
-msgstr "_Kommentare:"
-
-#: xmlfiltertabpagetransformation.ui
-msgctxt ""
-"xmlfiltertabpagetransformation.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_DocType:"
-msgstr "_Dokumenttyp:"
-
-#: xmlfiltertabpagetransformation.ui
-msgctxt ""
-"xmlfiltertabpagetransformation.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_XSLT for export:"
-msgstr "_XSLT zum Exportieren:"
-
-#: xmlfiltertabpagetransformation.ui
-msgctxt ""
-"xmlfiltertabpagetransformation.ui\n"
-"browseexport\n"
-"label\n"
-"string.text"
-msgid "Brows_e..."
-msgstr "D_urchsuchen..."
-
-#: xmlfiltertabpagetransformation.ui
-msgctxt ""
-"xmlfiltertabpagetransformation.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "XSLT _for import:"
-msgstr "XSLT zum _Importieren:"
-
-#: xmlfiltertabpagetransformation.ui
-msgctxt ""
-"xmlfiltertabpagetransformation.ui\n"
-"browseimport\n"
-"label\n"
-"string.text"
-msgid "B_rowse..."
-msgstr "Durch_suchen..."
-
-#: xmlfiltertabpagetransformation.ui
-msgctxt ""
-"xmlfiltertabpagetransformation.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Template for _import:"
-msgstr "Dokument_vorlage für Import:"
-
-#: xmlfiltertabpagetransformation.ui
-msgctxt ""
-"xmlfiltertabpagetransformation.ui\n"
-"browsetemp\n"
-"label\n"
-"string.text"
-msgid "Browse..."
-msgstr "Durchsuchen..."
-
-#: xmlfiltertabpagetransformation.ui
-msgctxt ""
-"xmlfiltertabpagetransformation.ui\n"
-"filtercb\n"
-"label\n"
-"string.text"
-msgid "The filter needs XSLT 2.0 processor"
-msgstr "Der Filter benötigt XSLT 2.0-Prozessoren"
-
-#: xsltfilterdialog.ui
-msgctxt ""
-"xsltfilterdialog.ui\n"
-"XSLTFilterDialog\n"
-"title\n"
-"string.text"
-msgid "XML Filter: %s"
-msgstr "XML-Filter: %s"
-
-#: xsltfilterdialog.ui
-msgctxt ""
-"xsltfilterdialog.ui\n"
-"general\n"
-"label\n"
-"string.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: xsltfilterdialog.ui
-msgctxt ""
-"xsltfilterdialog.ui\n"
-"transformation\n"
-"label\n"
-"string.text"
-msgid "Transformation"
-msgstr "Umwandlung"
diff --git a/source/de/forms/source/resource.po b/source/de/forms/messages.po
index a46ed3e4eb9..426ff22ec46 100644
--- a/source/de/forms/source/resource.po
+++ b/source/de/forms/messages.po
@@ -1,4 +1,4 @@
-#. extracted from forms/source/resource
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
@@ -16,179 +16,151 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484390213.000000\n"
+#. naBgZ
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_BASELISTBOX_ERROR_FILLLIST\n"
-"string.text"
+msgctxt "RID_BASELISTBOX_ERROR_FILLLIST"
msgid "The contents of a combo box or list field could not be determined."
-msgstr "Der Inhalt eines Kombinations- oder Listenfeldes konnte nicht ermittelt werden."
+msgstr ""
+"Der Inhalt eines Kombinations- oder Listenfeldes konnte nicht ermittelt "
+"werden."
+#. hiEhu
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_IMPORT_GRAPHIC\n"
-"string.text"
+msgctxt "RID_STR_IMPORT_GRAPHIC"
msgid "Insert Image"
msgstr "Bild einfügen"
+#. FfrQA
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_CONTROL_SUBSTITUTED_NAME\n"
-"string.text"
+msgctxt "RID_STR_CONTROL_SUBSTITUTED_NAME"
msgid "substituted"
msgstr "ersetzt"
+#. CHLAP
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_CONTROL_SUBSTITUTED_EPXPLAIN\n"
-"string.text"
-msgid "An error occurred while this control was being loaded. It was therefore replaced with a placeholder."
-msgstr "Beim Laden dieses Steuerelements trat ein Fehler auf. Es wurde daher durch einen Platzhalter ersetzt."
+msgctxt "RID_STR_CONTROL_SUBSTITUTED_EPXPLAIN"
+msgid ""
+"An error occurred while this control was being loaded. It was therefore "
+"replaced with a placeholder."
+msgstr ""
+"Beim Laden dieses Steuerelements trat ein Fehler auf. Es wurde daher durch "
+"einen Platzhalter ersetzt."
+#. CLzFr
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_READERROR\n"
-"string.text"
+msgctxt "RID_STR_READERROR"
msgid "Error reading data from database"
msgstr "Fehler beim Lesen von Daten aus der Datenbank"
+#. Q8pGP
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_CONNECTERROR\n"
-"string.text"
+msgctxt "RID_STR_CONNECTERROR"
msgid "Connection failed"
msgstr "Verbindungsaufbau gescheitert"
+#. EsJw2
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_ERR_LOADING_FORM\n"
-"string.text"
+msgctxt "RID_ERR_LOADING_FORM"
msgid "The data content could not be loaded."
msgstr "Die Dateninhalte konnten nicht geladen werden."
+#. L9J7Z
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_ERR_REFRESHING_FORM\n"
-"string.text"
+msgctxt "RID_ERR_REFRESHING_FORM"
msgid "The data content could not be updated"
msgstr "Die Dateninhalte konnten nicht aktualisiert werden."
+#. LHxyL
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_ERR_INSERTRECORD\n"
-"string.text"
+msgctxt "RID_STR_ERR_INSERTRECORD"
msgid "Error inserting the new record"
msgstr "Fehler beim Einfügen des neuen Datensatzs"
+#. DeE8J
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_ERR_UPDATERECORD\n"
-"string.text"
+msgctxt "RID_STR_ERR_UPDATERECORD"
msgid "Error updating the current record"
msgstr "Fehler beim Schreiben des aktuellen Datensatzes"
+#. dKbFA
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_ERR_DELETERECORD\n"
-"string.text"
+msgctxt "RID_STR_ERR_DELETERECORD"
msgid "Error deleting the current record"
msgstr "Fehler beim Löschen des aktuellen Datensatzes"
+#. KrWCL
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_ERR_DELETERECORDS\n"
-"string.text"
+msgctxt "RID_STR_ERR_DELETERECORDS"
msgid "Error deleting the specified records"
msgstr "Fehler beim Löschen der angegebenen Datensätze"
+#. CgPPq
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_NEED_NON_NULL_OBJECT\n"
-"string.text"
+msgctxt "RID_STR_NEED_NON_NULL_OBJECT"
msgid "The object cannot be NULL."
msgstr "Das Objekt darf nicht NULL sein."
+#. DjPos
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_OPEN_GRAPHICS\n"
-"string.text"
+msgctxt "RID_STR_OPEN_GRAPHICS"
msgid "Insert Image from..."
msgstr "Bild einfügen von..."
+#. 5xPFL
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_CLEAR_GRAPHICS\n"
-"string.text"
+msgctxt "RID_STR_CLEAR_GRAPHICS"
msgid "Remove Image"
msgstr "Bild entfernen"
+#. YepRu
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_INVALIDSTREAM\n"
-"string.text"
+msgctxt "RID_STR_INVALIDSTREAM"
msgid "The given stream is invalid."
msgstr "Die übergebene Stream-Komponente ist ungültig."
+#. zzFRi
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_SYNTAXERROR\n"
-"string.text"
+msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Fehler bei der Analyse des Anfrageausdrucks"
+#. BQj6G
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_INCOMPATIBLE_TYPES\n"
-"string.text"
-msgid "The value types supported by the binding cannot be used for exchanging data with this control."
-msgstr "Die von der Bindung unterstützten Typen können nicht zum Datenaustausch mit diesem Steuerelement benutzt werden."
+msgctxt "RID_STR_INCOMPATIBLE_TYPES"
+msgid ""
+"The value types supported by the binding cannot be used for exchanging data "
+"with this control."
+msgstr ""
+"Die von der Bindung unterstützten Typen können nicht zum Datenaustausch mit "
+"diesem Steuerelement benutzt werden."
+#. KMteF
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_LABEL_RECORD\n"
-"string.text"
+msgctxt "RID_STR_LABEL_RECORD"
msgid "Record"
msgstr "Datensatz"
+#. KkC2w
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_INVALID_VALIDATOR\n"
-"string.text"
-msgid "The control is connected to an external value binding, which at the same time acts as validator. You need to revoke the value binding, before you can set a new validator."
-msgstr "Das Steuerelement hat eine Bindung zu einem externen Wert, welcher gleichzeitig als Prüfwert fungiert. Diese Bindung muss gelöst werden, bevor ein neuer Prüfwert gesetzt werden kann."
+msgctxt "RID_STR_INVALID_VALIDATOR"
+msgid ""
+"The control is connected to an external value binding, which at the same "
+"time acts as validator. You need to revoke the value binding, before you can"
+" set a new validator."
+msgstr ""
+"Das Steuerelement hat eine Bindung zu einem externen Wert, welcher "
+"gleichzeitig als Prüfwert fungiert. Diese Bindung muss gelöst werden, bevor "
+"ein neuer Prüfwert gesetzt werden kann."
+#. HDFRj
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_LABEL_OF\n"
-"string.text"
+msgctxt "RID_STR_LABEL_OF"
msgid "of"
msgstr "von"
+#. pwvrd
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_QUERY_SAVE_MODIFIED_ROW\n"
-"string.text"
+msgctxt "RID_STR_QUERY_SAVE_MODIFIED_ROW"
msgid ""
"The content of the current form has been modified.\n"
"Do you want to save your changes?"
@@ -196,290 +168,222 @@ msgstr ""
"Der Inhalt des aktuellen Formulars wurde geändert.\n"
"Sollen die Änderungen gespeichert werden?"
+#. UUqEs
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_COULD_NOT_SET_ORDER\n"
-"string.text"
+msgctxt "RID_STR_COULD_NOT_SET_ORDER"
msgid "Error setting the sort criteria"
msgstr "Fehler beim Setzen der Sortier-Kriterien"
+#. AsgK8
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_COULD_NOT_SET_FILTER\n"
-"string.text"
+msgctxt "RID_STR_COULD_NOT_SET_FILTER"
msgid "Error setting the filter criteria"
msgstr "Fehler beim Setzen der Filter-Kriterien"
+#. x4f5J
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_FEATURE_REQUIRES_PARAMETERS\n"
-"string.text"
+msgctxt "RID_STR_FEATURE_REQUIRES_PARAMETERS"
msgid "To execute this function, parameters are needed."
msgstr "Zum Ausführen dieser Funktion werden Parameter benötigt."
+#. Bu48A
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_FEATURE_NOT_EXECUTABLE\n"
-"string.text"
+msgctxt "RID_STR_FEATURE_NOT_EXECUTABLE"
msgid "This function cannot be executed, but is only for status queries."
-msgstr "Diese Funktion kann nicht ausgeführt werden, sondern dient nur der Statusabfrage."
+msgstr ""
+"Diese Funktion kann nicht ausgeführt werden, sondern dient nur der "
+"Statusabfrage."
+#. LYhEn
#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_FEATURE_UNKNOWN\n"
-"string.text"
+msgctxt "RID_STR_FEATURE_UNKNOWN"
msgid "Unknown function."
msgstr "Unbekannte Funktion."
+#. X5wuE
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_NO_BINDING_EXPRESSION\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_NO_BINDING_EXPRESSION"
msgid "Please enter a binding expression."
msgstr "Bitte geben Sie einen Bindungsausdruck ein."
+#. BnacN
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_INVALID_BINDING_EXPRESSION\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_INVALID_BINDING_EXPRESSION"
msgid "This is an invalid binding expression."
msgstr "Ungültiger Bindungsausdruck."
+#. 75FBb
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_INVALID_VALUE\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_INVALID_VALUE"
msgid "Value is invalid."
msgstr "Wert ist ungültig."
+#. FBx5M
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_REQUIRED\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_REQUIRED"
msgid "A value is required."
msgstr "Wert muss eingegeben werden."
+#. cETRH
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_INVALID_CONSTRAINT\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_INVALID_CONSTRAINT"
msgid "The constraint '$1' not validated."
msgstr "Bedingung '$1' wird nicht eingehalten."
+#. a2kvh
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_VALUE_IS_NOT_A\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_VALUE_IS_NOT_A"
msgid "The value is not of the type '$2'."
msgstr "Wert ist nicht vom Typ '$2'."
+#. xr8Fy
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_VALUE_MAX_INCL\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_VALUE_MAX_INCL"
msgid "The value must be smaller than or equal to $2."
msgstr "Wert muss kleiner als oder gleich $2 sein."
+#. 2FnXB
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_VALUE_MAX_EXCL\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_VALUE_MAX_EXCL"
msgid "The value must be smaller than $2."
msgstr "Wert muss kleiner als $2 sein."
+#. yFzvb
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_VALUE_MIN_INCL\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_VALUE_MIN_INCL"
msgid "The value must be greater than or equal to $2."
msgstr "Wert muss größer als oder gleich $2 sein."
+#. 8CqwC
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_VALUE_MIN_EXCL\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_VALUE_MIN_EXCL"
msgid "The value must be greater than $2."
msgstr "Wert muss größer als $2 sein."
+#. zcC3f
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_VALUE_TOTAL_DIGITS\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_VALUE_TOTAL_DIGITS"
msgid "$2 digits allowed at most."
msgstr "Höchstens $2 Ziffern erlaubt."
+#. EFgBN
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_VALUE_FRACTION_DIGITS\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_VALUE_FRACTION_DIGITS"
msgid "$2 fraction digits allowed at most."
msgstr "Höchstens $2 Nachkommastellen erlaubt."
+#. fFbKg
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_VALUE_LENGTH\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_VALUE_LENGTH"
msgid "The string must be $2 characters long."
msgstr "Zeichenkette muss $2 Zeichen lang sein."
+#. CzF3L
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_VALUE_MIN_LENGTH\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_VALUE_MIN_LENGTH"
msgid "The string must be at least $2 characters long."
msgstr "Zeichenkette muss mindestens $2 Zeichen lang sein."
+#. effSk
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_VALUE_MAX_LENGTH\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_VALUE_MAX_LENGTH"
msgid "The string can only be $2 characters long at most."
msgstr "Zeichenkette darf höchstens $2 Zeichen lang sein."
+#. dfwAw
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_DATATYPE_STRING\n"
-"string.text"
+msgctxt "RID_STR_DATATYPE_STRING"
msgid "String"
msgstr "Zeichenkette"
+#. 2VkkS
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_DATATYPE_URL\n"
-"string.text"
+msgctxt "RID_STR_DATATYPE_URL"
msgid "Hyperlink"
msgstr "Hyperlink"
+#. wCcrk
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_DATATYPE_BOOLEAN\n"
-"string.text"
+msgctxt "RID_STR_DATATYPE_BOOLEAN"
msgid "True/False (Boolean)"
msgstr "Wahr/Falsch (Boolean)"
+#. o7BXD
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_DATATYPE_DECIMAL\n"
-"string.text"
+msgctxt "RID_STR_DATATYPE_DECIMAL"
msgid "Decimal"
msgstr "Dezimal"
+#. X7yWD
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_DATATYPE_FLOAT\n"
-"string.text"
+msgctxt "RID_STR_DATATYPE_FLOAT"
msgid "Floating point"
msgstr "Fließkomma"
+#. kGdUi
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_DATATYPE_DOUBLE\n"
-"string.text"
+msgctxt "RID_STR_DATATYPE_DOUBLE"
msgid "Double"
msgstr "Doppelt"
+#. ki4Gz
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_DATATYPE_DATE\n"
-"string.text"
+msgctxt "RID_STR_DATATYPE_DATE"
msgid "Date"
msgstr "Datum"
+#. Ehje9
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_DATATYPE_TIME\n"
-"string.text"
+msgctxt "RID_STR_DATATYPE_TIME"
msgid "Time"
msgstr "Zeit"
+#. zC46Y
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_DATATYPE_DATETIME\n"
-"string.text"
+msgctxt "RID_STR_DATATYPE_DATETIME"
msgid "Date and Time"
msgstr "Datum und Zeit"
+#. Ad6EV
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_DATATYPE_YEAR\n"
-"string.text"
+msgctxt "RID_STR_DATATYPE_YEAR"
msgid "Year"
msgstr "Jahr"
+#. XfSWT
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_DATATYPE_MONTH\n"
-"string.text"
+msgctxt "RID_STR_DATATYPE_MONTH"
msgid "Month"
msgstr "Monat"
+#. rBHBA
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_DATATYPE_DAY\n"
-"string.text"
+msgctxt "RID_STR_DATATYPE_DAY"
msgid "Day"
msgstr "Tag"
+#. VS33y
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_CANT_EVALUATE\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_CANT_EVALUATE"
msgid "Error during evaluation"
msgstr "Fehler bei der Auswertung"
+#. SFp7z
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_PATTERN_DOESNT_MATCH\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_PATTERN_DOESNT_MATCH"
msgid "The string '$1' does not match the required regular expression '$2'."
-msgstr "Die Zeichenkette '$1' entspricht nicht dem geforderten regulären Ausdruck '$2'."
+msgstr ""
+"Die Zeichenkette '$1' entspricht nicht dem geforderten regulären Ausdruck "
+"'$2'."
+#. GdrwE
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_BINDING_UI_NAME\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_BINDING_UI_NAME"
msgid "Binding"
msgstr "Bindung"
+#. AGvgC
#: xforms.src
-msgctxt ""
-"xforms.src\n"
-"RID_STR_XFORMS_CANT_REMOVE_TYPE\n"
-"string.text"
+msgctxt "RID_STR_XFORMS_CANT_REMOVE_TYPE"
msgid "This is a built-in type and cannot be removed."
msgstr "Dies ist eine eingebaute Art und kann nicht entfernt werden."
diff --git a/source/de/formula/messages.po b/source/de/formula/messages.po
new file mode 100644
index 00000000000..026907f6b1d
--- /dev/null
+++ b/source/de/formula/messages.po
@@ -0,0 +1,2621 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-05-17 15:41+0200\n"
+"PO-Revision-Date: 2017-04-20 09:39+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1492681184.000000\n"
+
+#. YfKFn
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "IF"
+msgstr "WENN"
+
+#. EgqkZ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "IFERROR"
+msgstr "WENNFEHLER"
+
+#. Vowev
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "IFNA"
+msgstr "WENNNV"
+
+#. LcdBW
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CHOOSE"
+msgstr "WAHL"
+
+#. nMD3h
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "#All"
+msgstr "#Alle"
+
+#. tuvMu
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "#Headers"
+msgstr "#Kopfzeilen"
+
+#. amt53
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "#Data"
+msgstr "#Daten"
+
+#. 8z4ov
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "#Totals"
+msgstr "#Summe"
+
+#. ZF2Pc
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "#This Row"
+msgstr "#Diese Zeile"
+
+#. kHXXq
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "AND"
+msgstr "UND"
+
+#. wUQor
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "OR"
+msgstr "ODER"
+
+#. P5Wdb
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "XOR"
+msgstr "XODER"
+
+#. BhVsr
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NOT"
+msgstr "NICHT"
+
+#. xBKEY
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NEG"
+msgstr "NEG"
+
+#. hR3ty
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PI"
+msgstr "PI"
+
+#. HyFVg
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "RAND"
+msgstr "ZUFALLSZAHL"
+
+#. FJXfC
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TRUE"
+msgstr "WAHR"
+
+#. SRUmC
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FALSE"
+msgstr "FALSCH"
+
+#. o5Qoc
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TODAY"
+msgstr "HEUTE"
+
+#. AbGu2
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NOW"
+msgstr "JETZT"
+
+#. 3SbN6
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NA"
+msgstr "NV"
+
+#. XMVcP
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CURRENT"
+msgstr "AKTUELL"
+
+#. csFkg
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DEGREES"
+msgstr "GRAD"
+
+#. jupWo
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "RADIANS"
+msgstr "BOGENMASS"
+
+#. on6aZ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SIN"
+msgstr "SIN"
+
+#. LEVGF
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COS"
+msgstr "COS"
+
+#. rYeEc
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TAN"
+msgstr "TAN"
+
+#. sUchi
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COT"
+msgstr "COT"
+
+#. 2wT6v
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ASIN"
+msgstr "ARCSIN"
+
+#. gP8uF
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ACOS"
+msgstr "ARCCOS"
+
+#. Dh9Sj
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ATAN"
+msgstr "ARCTAN"
+
+#. EdF3d
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ACOT"
+msgstr "ARCCOT"
+
+#. 2EsXj
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SINH"
+msgstr "SINHYP"
+
+#. AawuL
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COSH"
+msgstr "COSHYP"
+
+#. ziyn3
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TANH"
+msgstr "TANHYP"
+
+#. HD5CF
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COTH"
+msgstr "COTHYP"
+
+#. gLCtP
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ASINH"
+msgstr "ARCSINHYP"
+
+#. yYGWp
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ACOSH"
+msgstr "ARCCOSHYP"
+
+#. hxEdg
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ATANH"
+msgstr "ARCTANHYP"
+
+#. rPpEs
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ACOTH"
+msgstr "ARCCOTHYP"
+
+#. 4zZ7F
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CSC"
+msgstr "COSEC"
+
+#. Wt7bF
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SEC"
+msgstr "SEC"
+
+#. FAKWX
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CSCH"
+msgstr "COSECHYP"
+
+#. aaj9f
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SECH"
+msgstr "SECHYP"
+
+#. WksHp
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "EXP"
+msgstr "EXP"
+
+#. jvQxZ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LN"
+msgstr "LN"
+
+#. uMYFB
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SQRT"
+msgstr "WURZEL"
+
+#. pWWMs
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FACT"
+msgstr "FAKULTÄT"
+
+#. E77CE
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "YEAR"
+msgstr "JAHR"
+
+#. pyoEq
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MONTH"
+msgstr "MONAT"
+
+#. hNQAF
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DAY"
+msgstr "TAG"
+
+#. EGzo7
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "HOUR"
+msgstr "STUNDE"
+
+#. Qo346
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MINUTE"
+msgstr "MINUTE"
+
+#. UQsEw
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SECOND"
+msgstr "SEKUNDE"
+
+#. PE9Eb
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SIGN"
+msgstr "VORZEICHEN"
+
+#. svANJ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ABS"
+msgstr "ABS"
+
+#. FATD5
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "INT"
+msgstr "GANZZAHL"
+
+#. gQnYU
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PHI"
+msgstr "PHI"
+
+#. Qhk4a
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "GAUSS"
+msgstr "GAUSS"
+
+#. B3Abo
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISBLANK"
+msgstr "ISTLEER"
+
+#. QDbkj
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISTEXT"
+msgstr "ISTTEXT"
+
+#. 7cwz3
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISNONTEXT"
+msgstr "ISTKEINTEXT"
+
+#. Sf78G
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISLOGICAL"
+msgstr "ISTLOGISCH"
+
+#. cp5XL
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TYPE"
+msgstr "TYP"
+
+#. TosDP
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CELL"
+msgstr "ZELLE"
+
+#. CEEAs
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISREF"
+msgstr "ISTBEZUG"
+
+#. oYFSL
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISNUMBER"
+msgstr "ISTZAHL"
+
+#. KtYgY
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISFORMULA"
+msgstr "ISTFORMEL"
+
+#. JmCq7
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISNA"
+msgstr "ISTNV"
+
+#. eSL6y
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISERR"
+msgstr "ISTFEHL"
+
+#. XUgnE
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISERROR"
+msgstr "ISTFEHLER"
+
+#. CgkSX
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISEVEN"
+msgstr "ISTGERADE"
+
+#. NF3DL
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISODD"
+msgstr "ISTUNGERADE"
+
+#. zWjQ2
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "N"
+msgstr "N"
+
+#. Rpyy9
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DATEVALUE"
+msgstr "DATUMWERT"
+
+#. YoZ86
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TIMEVALUE"
+msgstr "ZEITWERT"
+
+#. u9Cq2
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CODE"
+msgstr "CODE"
+
+#. Tfa7V
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TRIM"
+msgstr "GLÄTTEN"
+
+#. DTAHH
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "UPPER"
+msgstr "GROSS"
+
+#. B8s34
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PROPER"
+msgstr "GROSS2"
+
+#. DDm7q
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LOWER"
+msgstr "KLEIN"
+
+#. nKRuv
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LEN"
+msgstr "LÄNGE"
+
+#. L2QYN
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "T"
+msgstr "T"
+
+#. WR2P5
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "VALUE"
+msgstr "WERT"
+
+#. scQDa
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CLEAN"
+msgstr "SÄUBERN"
+
+#. vn5fL
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CHAR"
+msgstr "ZEICHEN"
+
+#. D5tnq
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "JIS"
+msgstr "JIS"
+
+#. fjcZG
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ASC"
+msgstr "ASC"
+
+#. FLCLC
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "UNICODE"
+msgstr "UNICODE"
+
+#. AYPzA
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "UNICHAR"
+msgstr "UNIZEICHEN"
+
+#. 6D3EV
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LOG10"
+msgstr "LOG10"
+
+#. BHS3K
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "EVEN"
+msgstr "GERADE"
+
+#. kTKKZ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ODD"
+msgstr "UNGERADE"
+
+#. s3xj3
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NORMSDIST"
+msgstr "STANDNORMVERT"
+
+#. iXthM
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NORM.S.DIST"
+msgstr "NORM.S.VERT"
+
+#. CADmA
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FISHER"
+msgstr "FISHER"
+
+#. isCQ3
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FISHERINV"
+msgstr "FISHERINV"
+
+#. BaYfe
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NORMSINV"
+msgstr "STANDNORMINV"
+
+#. pCD9f
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NORM.S.INV"
+msgstr "NORM.S.INV"
+
+#. 6MkED
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "GAMMALN"
+msgstr "GAMMALN"
+
+#. 7CNvA
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "GAMMALN.PRECISE"
+msgstr "GAMMALN.GENAU"
+
+#. uq6bt
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ERRORTYPE"
+msgstr "FEHLERTYP"
+
+#. VvyBc
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ERROR.TYPE"
+msgstr "FEHLER.TYP"
+
+#. hA6t7
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FORMULA"
+msgstr "FORMEL"
+
+#. vNCQC
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ARABIC"
+msgstr "ARABISCH"
+
+#. EQ5yx
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ATAN2"
+msgstr "ARCTAN2"
+
+#. Gw9Fm
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CEILING.MATH"
+msgstr "OBERGRENZE.MATHEMATIK"
+
+#. MCSCn
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CEILING"
+msgstr "OBERGRENZE"
+
+#. scaZA
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CEILING.XCL"
+msgstr "OBERGRENZE.EXCEL"
+
+#. WvaBc
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CEILING.PRECISE"
+msgstr "OBERGRENZE.GENAU"
+
+#. rEus7
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISO.CEILING"
+msgstr "ISO.OBERGRENZE"
+
+#. Q8bBZ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FLOOR"
+msgstr "UNTERGRENZE"
+
+#. AmYrj
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FLOOR.XCL"
+msgstr "UNTERGRENZE.EXCEL"
+
+#. wALpZ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FLOOR.MATH"
+msgstr "UNTERGRENZE.MATHEMATIK"
+
+#. rKCyS
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FLOOR.PRECISE"
+msgstr "UNTERGRENZE.GENAU"
+
+#. WHtuv
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ROUND"
+msgstr "RUNDEN"
+
+#. TZEFs
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ROUNDUP"
+msgstr "AUFRUNDEN"
+
+#. 3tjA5
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ROUNDDOWN"
+msgstr "ABRUNDEN"
+
+#. XBWFh
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TRUNC"
+msgstr "KÜRZEN"
+
+#. LKBqy
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LOG"
+msgstr "LOG"
+
+#. Asn3C
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "POWER"
+msgstr "POTENZ"
+
+#. fNofY
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "GCD"
+msgstr "GGT"
+
+#. aTzGm
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LCM"
+msgstr "KGV"
+
+#. HqKX8
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MOD"
+msgstr "REST"
+
+#. 4pDQY
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SUMPRODUCT"
+msgstr "SUMMENPRODUKT"
+
+#. iYnCx
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SUMSQ"
+msgstr "QUADRATESUMME"
+
+#. TCmLs
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SUMX2MY2"
+msgstr "SUMMEX2MY2"
+
+#. 3CA6E
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SUMX2PY2"
+msgstr "SUMMEX2PY2"
+
+#. yE6FJ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SUMXMY2"
+msgstr "SUMMEXMY2"
+
+#. Kq3Fv
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DATE"
+msgstr "DATUM"
+
+#. 7daHs
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TIME"
+msgstr "ZEIT"
+
+#. XMgdw
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DAYS"
+msgstr "TAGE"
+
+#. GmFrk
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DAYS360"
+msgstr "TAGE360"
+
+#. ryXRy
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DATEDIF"
+msgstr "DATUMDIF"
+
+#. hfE7B
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MIN"
+msgstr "MIN"
+
+#. AnAVr
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MINA"
+msgstr "MINA"
+
+#. Gix6E
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MAX"
+msgstr "MAX"
+
+#. Y6F2B
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MAXA"
+msgstr "MAXA"
+
+#. CZXHr
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SUM"
+msgstr "SUMME"
+
+#. 4KA5C
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PRODUCT"
+msgstr "PRODUKT"
+
+#. qpU73
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "AVERAGE"
+msgstr "MITTELWERT"
+
+#. sHZ7d
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "AVERAGEA"
+msgstr "MITTELWERTA"
+
+#. CFSpv
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COUNT"
+msgstr "ANZAHL"
+
+#. JYFiS
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COUNTA"
+msgstr "ANZAHL2"
+
+#. JjXDM
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NPV"
+msgstr "NBW"
+
+#. YjgAC
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "IRR"
+msgstr "IKV"
+
+#. BYTjL
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MIRR"
+msgstr "QIKV"
+
+#. v9GAT
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISPMT"
+msgstr "ISPMT"
+
+#. K7EeP
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "VAR"
+msgstr "VARIANZ"
+
+#. CXPNH
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "VARA"
+msgstr "VARIANZA"
+
+#. zYRiw
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "VARP"
+msgstr "VARIANZEN"
+
+#. 38coa
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "VARPA"
+msgstr "VARIANZENA"
+
+#. 9ofpD
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "VAR.P"
+msgstr "VAR.P"
+
+#. CmJnc
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "VAR.S"
+msgstr "VAR.S"
+
+#. Fn4hd
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "STDEV"
+msgstr "STABW"
+
+#. bzGrU
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "STDEVA"
+msgstr "STABWA"
+
+#. u4EE9
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "STDEVP"
+msgstr "STABWN"
+
+#. qcdgn
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "STDEVPA"
+msgstr "STABWNA"
+
+#. wJefG
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "STDEV.P"
+msgstr "STABW.N"
+
+#. ZQKhp
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "STDEV.S"
+msgstr "STABW.S"
+
+#. dnFm9
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "B"
+msgstr "B"
+
+#. vSS7A
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NORMDIST"
+msgstr "NORMVERT"
+
+#. ZmN24
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NORM.DIST"
+msgstr "NORM.VERT"
+
+#. ZotkE
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "EXPONDIST"
+msgstr "EXPONVERT"
+
+#. QR4X5
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "EXPON.DIST"
+msgstr "EXPON.VERT"
+
+#. rj7xi
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BINOMDIST"
+msgstr "BINOMVERT"
+
+#. 3DUoC
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BINOM.DIST"
+msgstr "BINOM.VERT"
+
+#. 5PEVt
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "POISSON"
+msgstr "POISSON"
+
+#. 3KDHP
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "POISSON.DIST"
+msgstr "POISSON.VERT"
+
+#. TJ2Am
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COMBIN"
+msgstr "KOMBINATIONEN"
+
+#. uooUA
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COMBINA"
+msgstr "KOMBINATIONEN2"
+
+#. YAwK5
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PERMUT"
+msgstr "VARIATIONEN"
+
+#. cBPLT
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PERMUTATIONA"
+msgstr "VARIATIONEN2"
+
+#. t93rk
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PV"
+msgstr "BW"
+
+#. tKLfE
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SYD"
+msgstr "DIA"
+
+#. 7BwE3
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DDB"
+msgstr "GDA"
+
+#. C536Y
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DB"
+msgstr "GDA2"
+
+#. rpLvw
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "VDB"
+msgstr "VDB"
+
+#. GCfAw
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PDURATION"
+msgstr "PDURATION"
+
+#. i6LFt
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SLN"
+msgstr "LIA"
+
+#. CvELN
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PMT"
+msgstr "RMZ"
+
+#. sbNXE
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COLUMNS"
+msgstr "SPALTEN"
+
+#. UrxAN
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ROWS"
+msgstr "ZEILEN"
+
+#. 6JRiQ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SHEETS"
+msgstr "TABELLEN"
+
+#. FYiZp
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COLUMN"
+msgstr "SPALTE"
+
+#. W2Dnn
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ROW"
+msgstr "ZEILE"
+
+#. CrPhx
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SHEET"
+msgstr "TABELLE"
+
+#. u57Dj
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "RRI"
+msgstr "ZGZ"
+
+#. EyAQF
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FV"
+msgstr "ZW"
+
+#. EaLTQ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NPER"
+msgstr "ZZR"
+
+#. LGUbb
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "RATE"
+msgstr "ZINS"
+
+#. AGdL3
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "IPMT"
+msgstr "ZINSZ"
+
+#. vpLQh
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PPMT"
+msgstr "KAPZ"
+
+#. ABfAb
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CUMIPMT"
+msgstr "KUMZINSZ"
+
+#. aCEVC
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CUMPRINC"
+msgstr "KUMKAPITAL"
+
+#. KNTdw
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "EFFECT"
+msgstr "EFFEKTIV"
+
+#. fovF4
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NOMINAL"
+msgstr "NOMINAL"
+
+#. bxEkk
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SUBTOTAL"
+msgstr "TEILERGEBNIS"
+
+#. nggfn
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DSUM"
+msgstr "DBSUMME"
+
+#. u6fWB
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DCOUNT"
+msgstr "DBANZAHL"
+
+#. Gg8SK
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DCOUNTA"
+msgstr "DBANZAHL2"
+
+#. 3SNxX
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DAVERAGE"
+msgstr "DBMITTELWERT"
+
+#. bc6DT
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DGET"
+msgstr "DBAUSZUG"
+
+#. isoy2
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DMAX"
+msgstr "DBMAX"
+
+#. AW7vP
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DMIN"
+msgstr "DBMIN"
+
+#. pGgvo
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DPRODUCT"
+msgstr "DBPRODUKT"
+
+#. ZyFwP
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DSTDEV"
+msgstr "DBSTDABW"
+
+#. oC55j
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DSTDEVP"
+msgstr "DBSTDABWN"
+
+#. yGRGB
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DVAR"
+msgstr "DBVARIANZ"
+
+#. yoXqK
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DVARP"
+msgstr "DBVARIANZEN"
+
+#. 2Lt4B
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "INDIRECT"
+msgstr "INDIREKT"
+
+#. hoG6e
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ADDRESS"
+msgstr "ADRESSE"
+
+#. oC9GV
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MATCH"
+msgstr "VERGLEICH"
+
+#. xuDNa
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COUNTBLANK"
+msgstr "ANZAHLLEEREZELLEN"
+
+#. Zqz6p
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COUNTIF"
+msgstr "ZÄHLENWENN"
+
+#. DtDEf
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SUMIF"
+msgstr "SUMMEWENN"
+
+#. PLSLe
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "AVERAGEIF"
+msgstr "MITTELWERTWENN"
+
+#. gBitk
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SUMIFS"
+msgstr "SUMMEWENNS"
+
+#. eoVP4
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "AVERAGEIFS"
+msgstr "MITTELWERTWENNS"
+
+#. EFZv9
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COUNTIFS"
+msgstr "ZÄHLENWENNS"
+
+#. FRVEu
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LOOKUP"
+msgstr "VERWEIS"
+
+#. ZzCnC
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "VLOOKUP"
+msgstr "SVERWEIS"
+
+#. Exee6
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "HLOOKUP"
+msgstr "WVERWEIS"
+
+#. dTotR
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MULTIRANGE"
+msgstr "MULTIBEREICH"
+
+#. ui5BC
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "OFFSET"
+msgstr "VERSCHIEBUNG"
+
+#. j43Ns
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "INDEX"
+msgstr "INDEX"
+
+#. DpRD2
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "AREAS"
+msgstr "BEREICHE"
+
+#. BBMGS
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DOLLAR"
+msgstr "EUR"
+
+#. dL3Bf
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "REPLACE"
+msgstr "ERSETZEN"
+
+#. UZak8
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FIXED"
+msgstr "FEST"
+
+#. 8t8KR
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FIND"
+msgstr "FINDEN"
+
+#. oDxoA
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "EXACT"
+msgstr "IDENTISCH"
+
+#. dqyCD
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LEFT"
+msgstr "LINKS"
+
+#. 5Cmkf
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "RIGHT"
+msgstr "RECHTS"
+
+#. eoXGy
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SEARCH"
+msgstr "SUCHEN"
+
+#. BAmDj
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MID"
+msgstr "TEIL"
+
+#. CcD9A
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LENB"
+msgstr "LÄNGEB"
+
+#. LNZ8z
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "RIGHTB"
+msgstr "RECHTSB"
+
+#. WtUCd
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LEFTB"
+msgstr "LINKSB"
+
+#. KAutM
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MIDB"
+msgstr "TEILB"
+
+#. 5ouAE
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TEXT"
+msgstr "TEXT"
+
+#. EVEza
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SUBSTITUTE"
+msgstr "WECHSELN"
+
+#. i3GvS
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "REPT"
+msgstr "WIEDERHOLEN"
+
+#. 2ai5X
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CONCATENATE"
+msgstr "VERKETTEN"
+
+#. BUBLF
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CONCAT"
+msgstr "TEXTKETTE"
+
+#. 5iLsv
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TEXTJOIN"
+msgstr "VERBINDEN"
+
+#. XFAVk
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "IFS"
+msgstr "WENNS"
+
+#. mqNA5
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SWITCH"
+msgstr "SCHALTER"
+
+#. adC5v
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MINIFS"
+msgstr "MINWENNS"
+
+#. cXh5s
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MAXIFS"
+msgstr "MAXWENNS"
+
+#. 6DKDF
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MVALUE"
+msgstr "MWERT"
+
+#. oo8ci
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MDETERM"
+msgstr "MDET"
+
+#. ApX8N
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MINVERSE"
+msgstr "MINV"
+
+#. tyjoM
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MMULT"
+msgstr "MMULT"
+
+#. KmpNP
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TRANSPOSE"
+msgstr "MTRANS"
+
+#. Q2ER4
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MUNIT"
+msgstr "EINHEITSMATRIX"
+
+#. kmGD3
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "GOALSEEK"
+msgstr "ZIELWERTSUCHE"
+
+#. i7qgX
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "HYPGEOMDIST"
+msgstr "HYPGEOMVERT"
+
+#. oUBqZ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "HYPGEOM.DIST"
+msgstr "HYPGEOM.VERT"
+
+#. XWa2D
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LOGNORMDIST"
+msgstr "LOGNORMVERT"
+
+#. g2ozv
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LOGNORM.DIST"
+msgstr "LOGNORM.VERT"
+
+#. bWRCD
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TDIST"
+msgstr "TVERT"
+
+#. fEd5s
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "T.DIST.2T"
+msgstr "T.VERT.2S"
+
+#. F5Pfo
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "T.DIST"
+msgstr "T.VERT"
+
+#. BVPMN
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "T.DIST.RT"
+msgstr "T.VERT.RE"
+
+#. CHDLb
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FDIST"
+msgstr "FVERT"
+
+#. XBqcu
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "F.DIST"
+msgstr "F.VERT"
+
+#. P9uGQ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "F.DIST.RT"
+msgstr "F.VERT.RE"
+
+#. 9iTFp
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CHIDIST"
+msgstr "CHIVERT"
+
+#. 4bU9E
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CHISQ.DIST.RT"
+msgstr "CHIQU.VERT.RE"
+
+#. CA3gq
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "WEIBULL"
+msgstr "WEIBULL"
+
+#. cfK8c
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "WEIBULL.DIST"
+msgstr "WEIBULL.VERT"
+
+#. BuVL2
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NEGBINOMDIST"
+msgstr "NEGBINOMVERT"
+
+#. JDW2e
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NEGBINOM.DIST"
+msgstr "NEGBINOM.VERT"
+
+#. WGm4P
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CRITBINOM"
+msgstr "KRITBINOM"
+
+#. GJqSo
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BINOM.INV"
+msgstr "BINOM.INV"
+
+#. HXdvV
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "KURT"
+msgstr "KURT"
+
+#. gVato
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "HARMEAN"
+msgstr "HARMITTEL"
+
+#. UWQAS
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "GEOMEAN"
+msgstr "GEOMITTEL"
+
+#. tpAGN
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "STANDARDIZE"
+msgstr "STANDARDISIERUNG"
+
+#. xZDRE
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "AVEDEV"
+msgstr "MITTELABW"
+
+#. jFsMN
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SKEW"
+msgstr "SCHIEFE"
+
+#. pENWD
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SKEWP"
+msgstr "SCHIEFEP"
+
+#. DWBTD
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DEVSQ"
+msgstr "SUMQUADABW"
+
+#. mGW7t
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MEDIAN"
+msgstr "MEDIAN"
+
+#. an6ST
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MODE"
+msgstr "MODALWERT"
+
+#. unFXZ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MODE.SNGL"
+msgstr "MODUS.EINF"
+
+#. MUvgH
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MODE.MULT"
+msgstr "MODUS.VIELF"
+
+#. DYFQo
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ZTEST"
+msgstr "GTEST"
+
+#. QLThG
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "Z.TEST"
+msgstr "G.TEST"
+
+#. uG2Uy
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "AGGREGATE"
+msgstr "AGGREGAT"
+
+#. ky6Cc
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TTEST"
+msgstr "TTEST"
+
+#. FR8fD
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "T.TEST"
+msgstr "T.TEST"
+
+#. YbRDQ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "RANK"
+msgstr "RANG"
+
+#. zDE8s
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PERCENTILE"
+msgstr "QUANTIL"
+
+#. zFA3A
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PERCENTRANK"
+msgstr "QUANTILSRANG"
+
+#. eRFHC
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PERCENTILE.INC"
+msgstr "QUANTIL.INKL"
+
+#. L7s3h
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PERCENTRANK.INC"
+msgstr "QUANTILSRANG.INKL"
+
+#. wNGXD
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "QUARTILE.INC"
+msgstr "QUARTILE.INKL"
+
+#. 29rpM
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "RANK.EQ"
+msgstr "RANG.GLEICH"
+
+#. yEcqx
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PERCENTILE.EXC"
+msgstr "QUANTIL.EXKL"
+
+#. AEPUL
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PERCENTRANK.EXC"
+msgstr "QUANTILSRANG.EXKL"
+
+#. gFk6s
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "QUARTILE.EXC"
+msgstr "QUARTILE.EXKL"
+
+#. TDAAm
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "RANK.AVG"
+msgstr "RANG.MITTELW"
+
+#. gK7Lz
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LARGE"
+msgstr "KGRÖSSTE"
+
+#. 4HcBe
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SMALL"
+msgstr "KKLEINSTE"
+
+#. HBgVF
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FREQUENCY"
+msgstr "HÄUFIGKEIT"
+
+#. F7gC7
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "QUARTILE"
+msgstr "QUARTILE"
+
+#. s6cqj
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NORMINV"
+msgstr "NORMINV"
+
+#. CABJF
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NORM.INV"
+msgstr "NORM.INV"
+
+#. vd2Tg
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CONFIDENCE"
+msgstr "KONFIDENZ"
+
+#. 3jWj2
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CONFIDENCE.NORM"
+msgstr "KONFIDENZ.NORM"
+
+#. JqE2i
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CONFIDENCE.T"
+msgstr "KONFIDENZ.T"
+
+#. ADALA
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FTEST"
+msgstr "FTEST"
+
+#. xBfc3
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "F.TEST"
+msgstr "F.TEST"
+
+#. gqjR4
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TRIMMEAN"
+msgstr "GESTUTZTMITTEL"
+
+#. TrtZc
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PROB"
+msgstr "WAHRSCHBEREICH"
+
+#. JkPA6
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CORREL"
+msgstr "KORREL"
+
+#. jiAKA
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COVAR"
+msgstr "KOVARIANZ"
+
+#. yFdKv
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COVARIANCE.P"
+msgstr "KOVARIANZ.P"
+
+#. X9QM6
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COVARIANCE.S"
+msgstr "KOVARIANZ.S"
+
+#. 735GD
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "PEARSON"
+msgstr "PEARSON"
+
+#. DSNju
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "RSQ"
+msgstr "BESTIMMTHEITSMASS"
+
+#. VPked
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "STEYX"
+msgstr "STFEHLERYX"
+
+#. oAAm2
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "SLOPE"
+msgstr "STEIGUNG"
+
+#. H5rVZ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "INTERCEPT"
+msgstr "ACHSENABSCHNITT"
+
+#. Gj8xf
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TREND"
+msgstr "TREND"
+
+#. PNYCG
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "GROWTH"
+msgstr "VARIATION"
+
+#. xFQTH
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LINEST"
+msgstr "RGP"
+
+#. EYFD6
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LOGEST"
+msgstr "RKP"
+
+#. b6Dkz
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FORECAST"
+msgstr "ERWARTUNG"
+
+#. gBGyu
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FORECAST.ETS.ADD"
+msgstr "PROGNOSE.EXP.ADD"
+
+#. CgCME
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FORECAST.ETS.SEASONALITY"
+msgstr "PROGNOSE.EXP.SAISONAL"
+
+#. Ea5Fw
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FORECAST.ETS.MULT"
+msgstr "PROGNOSE.EXP.MULT"
+
+#. WSLPQ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FORECAST.ETS.PI.ADD"
+msgstr "PROGNOSE.EXP.VOR.ADD"
+
+#. Qb7FC
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FORECAST.ETS.PI.MULT"
+msgstr "PROGNOSE.EXP.VOR.MULT"
+
+#. CqQHS
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FORECAST.ETS.STAT.ADD"
+msgstr "PROGNOSE.EXP.STAT.ADD"
+
+#. tHMWM
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FORECAST.ETS.STAT.MULT"
+msgstr "PROGNOSE.EXP.STAT.MULT"
+
+#. 2DtCt
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FORECAST.LINEAR"
+msgstr "PROGNOSE.LINEAR"
+
+#. pid8Q
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CHIINV"
+msgstr "CHIINV"
+
+#. W4s9c
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CHISQ.INV.RT"
+msgstr "CHIQU.INV.RE"
+
+#. FAYGA
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "GAMMADIST"
+msgstr "GAMMAVERT"
+
+#. hDsw2
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "GAMMA.DIST"
+msgstr "GAMMA.VERT"
+
+#. YnUod
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "GAMMAINV"
+msgstr "GAMMAINV"
+
+#. UsH9F
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "GAMMA.INV"
+msgstr "GAMMA.INV"
+
+#. uVsmG
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "TINV"
+msgstr "TINV"
+
+#. BARyo
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "T.INV.2T"
+msgstr "T.INV.2S"
+
+#. QEgDG
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "T.INV"
+msgstr "T.INV"
+
+#. GyiqD
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FINV"
+msgstr "FINV"
+
+#. vxU5e
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "F.INV"
+msgstr "F.INV"
+
+#. zQB8F
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "F.INV.RT"
+msgstr "F.INV.RE"
+
+#. DduFG
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CHITEST"
+msgstr "CHITEST"
+
+#. 8RNiE
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CHISQ.TEST"
+msgstr "CHIQU.TEST"
+
+#. SHLfw
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LOGINV"
+msgstr "LOGINV"
+
+#. CEKRG
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "LOGNORM.INV"
+msgstr "LOGNORM.INV"
+
+#. EVF8A
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "MULTIPLE.OPERATIONS"
+msgstr "MEHRFACH.OPERATIONEN"
+
+#. 2A5ui
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BETADIST"
+msgstr "BETAVERT"
+
+#. mALNC
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BETAINV"
+msgstr "BETAINV"
+
+#. LKwJS
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BETA.DIST"
+msgstr "BETA.VERT"
+
+#. psoXo
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BETA.INV"
+msgstr "BETA.INV"
+
+#. yg6Em
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "WEEKNUM"
+msgstr "KALENDERWOCHE"
+
+#. AQAu7
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ISOWEEKNUM"
+msgstr "ISOKALENDERWOCHE"
+
+#. iN85u
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "WEEKNUM_OOO"
+msgstr "KALENDERWOCHE_OOO"
+
+#. SWHk4
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "EASTERSUNDAY"
+msgstr "OSTERSONNTAG"
+
+#. TFPFc
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "WEEKDAY"
+msgstr "WOCHENTAG"
+
+#. aGkBh
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NETWORKDAYS"
+msgstr "NETTOARBEITSTAGE"
+
+#. KUR7o
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NETWORKDAYS.INTL"
+msgstr "NETTOARBEITSTAGE.INTL"
+
+#. QAzUk
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "WORKDAY.INTL"
+msgstr "ARBEITSTAG.INTL"
+
+#. CFhSp
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "#NAME!"
+msgstr "#NAME!"
+
+#. LQhGc
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "STYLE"
+msgstr "VORLAGE"
+
+#. Xvnfv
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DDE"
+msgstr "DDE"
+
+#. UDgRG
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BASE"
+msgstr "BASIS"
+
+#. PXCbM
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "DECIMAL"
+msgstr "DEZIMAL"
+
+#. 7D826
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CONVERT_OOO"
+msgstr "UMRECHNEN_OOO"
+
+#. Pdt6b
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ROMAN"
+msgstr "RÖMISCH"
+
+#. EAFPL
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "HYPERLINK"
+msgstr "HYPERLINK"
+
+#. nGCAP
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "INFO"
+msgstr "INFO"
+
+#. AnDA3
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BAHTTEXT"
+msgstr "BAHTTEXT"
+
+#. AUXa8
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "GETPIVOTDATA"
+msgstr "PIVOTDATENZUORDNEN"
+
+#. ByRr8
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "EUROCONVERT"
+msgstr "EUROUMRECHNEN"
+
+#. WAGGZ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "NUMBERVALUE"
+msgstr "ZAHLWERT"
+
+#. TxAAw
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "GAMMA"
+msgstr "GAMMA"
+
+#. ash3y
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CHISQDIST"
+msgstr "CHIQUVERT"
+
+#. N57in
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CHISQ.DIST"
+msgstr "CHIQU.VERT"
+
+#. XA6Hg
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CHISQINV"
+msgstr "CHIQUINV"
+
+#. RAQNt
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "CHISQ.INV"
+msgstr "CHIQU.INV"
+
+#. B7QQq
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BITAND"
+msgstr "BITUND"
+
+#. wgJLF
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BITOR"
+msgstr "BITODER"
+
+#. xFRAb
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BITXOR"
+msgstr "BITXODER"
+
+#. kuvCF
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BITRSHIFT"
+msgstr "BITRVERSCHIEB"
+
+#. KntNH
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "BITLSHIFT"
+msgstr "BITLVERSCHIEB"
+
+#. P9xQs
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "#NULL!"
+msgstr "#NULL!"
+
+#. 8HAoC
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "#DIV/0!"
+msgstr "#DIV/0!"
+
+#. rADeJ
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "#VALUE!"
+msgstr "#WERT!"
+
+#. GwFUm
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "#REF!"
+msgstr "#BEZUG!"
+
+#. aMvVe
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "#NAME?"
+msgstr "#NAME?"
+
+#. cqeXG
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "#NUM!"
+msgstr "#ZAHL!"
+
+#. tXNHL
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "#N/A"
+msgstr "#NV"
+
+#. bfyEe
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FILTERXML"
+msgstr "XMLFILTERN"
+
+#. KNiFR
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "COLOR"
+msgstr "FARBE"
+
+#. ufFAa
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "WEBSERVICE"
+msgstr "WEBDIENST"
+
+#. ftd3C
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ERF.PRECISE"
+msgstr "GAUSSF.GENAU"
+
+#. Gz4Zt
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ERFC.PRECISE"
+msgstr "GAUSSFKOMPL.GENAU"
+
+#. ywAMF
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ENCODEURL"
+msgstr "URLCODIEREN"
+
+#. kQW77
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "RAWSUBTRACT"
+msgstr "SUBTRAKTION"
+
+#. DgyUW
+#: core_resource.src
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "ROUNDSIG"
+msgstr "RUNDENSIG"
+
+#. Xez6g
+#: formdlgs.src
+msgctxt "STR_TITLE1"
+msgid "Function Wizard"
+msgstr "Funktions-Assistent"
+
+#. ctTA6
+#: formdlgs.src
+msgctxt "STR_TITLE2"
+msgid "Function Wizard -"
+msgstr "Funktions-Assistent -"
+
+#. USDCA
+#: formdlgs.src
+msgctxt "STR_END"
+msgid "~End"
+msgstr "~Fertig"
+
+#. xiyqQ
+#: formdlgs.src
+msgctxt "RID_STR_SHRINK"
+msgid "Shrink"
+msgstr "Verkleinern"
+
+#. tZZPF
+#: formdlgs.src
+msgctxt "RID_STR_EXPAND"
+msgid "Expand"
+msgstr "Ausdehnen"
+
+#. iySox
+#: parawin.src
+msgctxt "STR_OPTIONAL"
+msgid "(optional)"
+msgstr "(optional)"
+
+#. YFdrJ
+#: parawin.src
+msgctxt "STR_REQUIRED"
+msgid "(required)"
+msgstr "(erforderlich)"
+
+#. Q2KRr
+#: formuladialog.ui
+msgctxt "formuladialog|array"
+msgid "Array"
+msgstr "Matrix"
+
+#. MpKML
+#: formuladialog.ui
+msgctxt "formuladialog|back"
+msgid "<< _Back"
+msgstr "<< _Zurück"
+
+#. etWC2
+#: formuladialog.ui
+msgctxt "formuladialog|next"
+msgid "_Next >>"
+msgstr "_Weiter >>"
+
+#. NAdh7
+#: formuladialog.ui
+msgctxt "formuladialog|function"
+msgid "Functions"
+msgstr "Funktionen"
+
+#. uNiwj
+#: formuladialog.ui
+msgctxt "formuladialog|struct"
+msgid "Structure"
+msgstr "Struktur"
+
+#. gQCBm
+#: formuladialog.ui
+msgctxt "formuladialog|label2"
+msgid "Function result"
+msgstr "Teilergebnis"
+
+#. GqtY8
+#: formuladialog.ui
+msgctxt "formuladialog|formula"
+msgid "For_mula"
+msgstr "For_mel"
+
+#. xEPEr
+#: formuladialog.ui
+msgctxt "formuladialog|label1"
+msgid "Result"
+msgstr "Ergebnis"
+
+#. rJsXw
+#: formuladialog.ui
+msgctxt "formuladialog|ed_formula-atkobject"
+msgid "Formula"
+msgstr "Formel"
+
+#. Bdgot
+#: formuladialog.ui
+msgctxt "formuladialog|RB_REF|tooltip_text"
+msgid "Maximize"
+msgstr "Vergrößern"
+
+#. QLwpq
+#: functionpage.ui
+msgctxt "functionpage|label_search"
+msgid "_Search"
+msgstr "_Suchen"
+
+#. MbTAL
+#: functionpage.ui
+msgctxt "functionpage|label1"
+msgid "_Category"
+msgstr "_Kategorie"
+
+#. WQC5A
+#: functionpage.ui
+msgctxt "functionpage|category"
+msgid "Last Used"
+msgstr "Zuletzt verwendet"
+
+#. 6uomB
+#: functionpage.ui
+msgctxt "functionpage|category"
+msgid "All"
+msgstr "Alle"
+
+#. 7FZAh
+#: functionpage.ui
+msgctxt "functionpage|label2"
+msgid "_Function"
+msgstr "_Funktion"
+
+#. GCYUY
+#: parameter.ui
+msgctxt "parameter|editdesc"
+msgid "Function not known"
+msgstr "Unbekannte Funktion"
+
+#. 6GD3i
+#: parameter.ui
+msgctxt "parameter|RB_ARG1|tooltip_text"
+msgid "Select"
+msgstr "Auswahl"
+
+#. YPW6d
+#: parameter.ui
+msgctxt "parameter|RB_ARG2|tooltip_text"
+msgid "Select"
+msgstr "Auswahl"
+
+#. JDDDE
+#: parameter.ui
+msgctxt "parameter|RB_ARG3|tooltip_text"
+msgid "Select"
+msgstr "Auswahl"
+
+#. ScEBw
+#: parameter.ui
+msgctxt "parameter|RB_ARG4|tooltip_text"
+msgid "Select"
+msgstr "Auswahl"
+
+#. ohUbB
+#: structpage.ui
+msgctxt "structpage|label1"
+msgid "_Structure"
+msgstr "_Struktur"
diff --git a/source/de/formula/source/core/resource.po b/source/de/formula/source/core/resource.po
deleted file mode 100644
index ef860f32b4e..00000000000
--- a/source/de/formula/source/core/resource.po
+++ /dev/null
@@ -1,3671 +0,0 @@
-#. extracted from formula/source/core/resource
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-04-20 09:39+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492681184.000000\n"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"IF\n"
-"itemlist.text"
-msgid "IF"
-msgstr "WENN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"IFERROR\n"
-"itemlist.text"
-msgid "IFERROR"
-msgstr "WENNFEHLER"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"IFNA\n"
-"itemlist.text"
-msgid "IFNA"
-msgstr "WENNNV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CHOOSE\n"
-"itemlist.text"
-msgid "CHOOSE"
-msgstr "WAHL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"#All\n"
-"itemlist.text"
-msgid "#All"
-msgstr "#Alle"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"#Headers\n"
-"itemlist.text"
-msgid "#Headers"
-msgstr "#Kopfzeilen"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"#Data\n"
-"itemlist.text"
-msgid "#Data"
-msgstr "#Daten"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"#Totals\n"
-"itemlist.text"
-msgid "#Totals"
-msgstr "#Summe"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"#This Row\n"
-"itemlist.text"
-msgid "#This Row"
-msgstr "#Diese Zeile"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"AND\n"
-"itemlist.text"
-msgid "AND"
-msgstr "UND"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"OR\n"
-"itemlist.text"
-msgid "OR"
-msgstr "ODER"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"XOR\n"
-"itemlist.text"
-msgid "XOR"
-msgstr "XODER"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NOT\n"
-"itemlist.text"
-msgid "NOT"
-msgstr "NICHT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NEG\n"
-"itemlist.text"
-msgid "NEG"
-msgstr "NEG"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PI\n"
-"itemlist.text"
-msgid "PI"
-msgstr "PI"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"RAND\n"
-"itemlist.text"
-msgid "RAND"
-msgstr "ZUFALLSZAHL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TRUE\n"
-"itemlist.text"
-msgid "TRUE"
-msgstr "WAHR"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FALSE\n"
-"itemlist.text"
-msgid "FALSE"
-msgstr "FALSCH"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TODAY\n"
-"itemlist.text"
-msgid "TODAY"
-msgstr "HEUTE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NOW\n"
-"itemlist.text"
-msgid "NOW"
-msgstr "JETZT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NA\n"
-"itemlist.text"
-msgid "NA"
-msgstr "NV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CURRENT\n"
-"itemlist.text"
-msgid "CURRENT"
-msgstr "AKTUELL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DEGREES\n"
-"itemlist.text"
-msgid "DEGREES"
-msgstr "GRAD"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"RADIANS\n"
-"itemlist.text"
-msgid "RADIANS"
-msgstr "BOGENMASS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SIN\n"
-"itemlist.text"
-msgid "SIN"
-msgstr "SIN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COS\n"
-"itemlist.text"
-msgid "COS"
-msgstr "COS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TAN\n"
-"itemlist.text"
-msgid "TAN"
-msgstr "TAN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COT\n"
-"itemlist.text"
-msgid "COT"
-msgstr "COT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ASIN\n"
-"itemlist.text"
-msgid "ASIN"
-msgstr "ARCSIN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ACOS\n"
-"itemlist.text"
-msgid "ACOS"
-msgstr "ARCCOS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ATAN\n"
-"itemlist.text"
-msgid "ATAN"
-msgstr "ARCTAN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ACOT\n"
-"itemlist.text"
-msgid "ACOT"
-msgstr "ARCCOT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SINH\n"
-"itemlist.text"
-msgid "SINH"
-msgstr "SINHYP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COSH\n"
-"itemlist.text"
-msgid "COSH"
-msgstr "COSHYP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TANH\n"
-"itemlist.text"
-msgid "TANH"
-msgstr "TANHYP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COTH\n"
-"itemlist.text"
-msgid "COTH"
-msgstr "COTHYP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ASINH\n"
-"itemlist.text"
-msgid "ASINH"
-msgstr "ARCSINHYP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ACOSH\n"
-"itemlist.text"
-msgid "ACOSH"
-msgstr "ARCCOSHYP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ATANH\n"
-"itemlist.text"
-msgid "ATANH"
-msgstr "ARCTANHYP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ACOTH\n"
-"itemlist.text"
-msgid "ACOTH"
-msgstr "ARCCOTHYP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CSC\n"
-"itemlist.text"
-msgid "CSC"
-msgstr "COSEC"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SEC\n"
-"itemlist.text"
-msgid "SEC"
-msgstr "SEC"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CSCH\n"
-"itemlist.text"
-msgid "CSCH"
-msgstr "COSECHYP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SECH\n"
-"itemlist.text"
-msgid "SECH"
-msgstr "SECHYP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"EXP\n"
-"itemlist.text"
-msgid "EXP"
-msgstr "EXP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LN\n"
-"itemlist.text"
-msgid "LN"
-msgstr "LN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SQRT\n"
-"itemlist.text"
-msgid "SQRT"
-msgstr "WURZEL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FACT\n"
-"itemlist.text"
-msgid "FACT"
-msgstr "FAKULTÄT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"YEAR\n"
-"itemlist.text"
-msgid "YEAR"
-msgstr "JAHR"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MONTH\n"
-"itemlist.text"
-msgid "MONTH"
-msgstr "MONAT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DAY\n"
-"itemlist.text"
-msgid "DAY"
-msgstr "TAG"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"HOUR\n"
-"itemlist.text"
-msgid "HOUR"
-msgstr "STUNDE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MINUTE\n"
-"itemlist.text"
-msgid "MINUTE"
-msgstr "MINUTE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SECOND\n"
-"itemlist.text"
-msgid "SECOND"
-msgstr "SEKUNDE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SIGN\n"
-"itemlist.text"
-msgid "SIGN"
-msgstr "VORZEICHEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ABS\n"
-"itemlist.text"
-msgid "ABS"
-msgstr "ABS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"INT\n"
-"itemlist.text"
-msgid "INT"
-msgstr "GANZZAHL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PHI\n"
-"itemlist.text"
-msgid "PHI"
-msgstr "PHI"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"GAUSS\n"
-"itemlist.text"
-msgid "GAUSS"
-msgstr "GAUSS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISBLANK\n"
-"itemlist.text"
-msgid "ISBLANK"
-msgstr "ISTLEER"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISTEXT\n"
-"itemlist.text"
-msgid "ISTEXT"
-msgstr "ISTTEXT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISNONTEXT\n"
-"itemlist.text"
-msgid "ISNONTEXT"
-msgstr "ISTKEINTEXT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISLOGICAL\n"
-"itemlist.text"
-msgid "ISLOGICAL"
-msgstr "ISTLOGISCH"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TYPE\n"
-"itemlist.text"
-msgid "TYPE"
-msgstr "TYP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CELL\n"
-"itemlist.text"
-msgid "CELL"
-msgstr "ZELLE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISREF\n"
-"itemlist.text"
-msgid "ISREF"
-msgstr "ISTBEZUG"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISNUMBER\n"
-"itemlist.text"
-msgid "ISNUMBER"
-msgstr "ISTZAHL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISFORMULA\n"
-"itemlist.text"
-msgid "ISFORMULA"
-msgstr "ISTFORMEL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISNA\n"
-"itemlist.text"
-msgid "ISNA"
-msgstr "ISTNV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISERR\n"
-"itemlist.text"
-msgid "ISERR"
-msgstr "ISTFEHL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISERROR\n"
-"itemlist.text"
-msgid "ISERROR"
-msgstr "ISTFEHLER"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISEVEN\n"
-"itemlist.text"
-msgid "ISEVEN"
-msgstr "ISTGERADE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISODD\n"
-"itemlist.text"
-msgid "ISODD"
-msgstr "ISTUNGERADE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"N\n"
-"itemlist.text"
-msgid "N"
-msgstr "N"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DATEVALUE\n"
-"itemlist.text"
-msgid "DATEVALUE"
-msgstr "DATUMWERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TIMEVALUE\n"
-"itemlist.text"
-msgid "TIMEVALUE"
-msgstr "ZEITWERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CODE\n"
-"itemlist.text"
-msgid "CODE"
-msgstr "CODE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TRIM\n"
-"itemlist.text"
-msgid "TRIM"
-msgstr "GLÄTTEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"UPPER\n"
-"itemlist.text"
-msgid "UPPER"
-msgstr "GROSS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PROPER\n"
-"itemlist.text"
-msgid "PROPER"
-msgstr "GROSS2"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LOWER\n"
-"itemlist.text"
-msgid "LOWER"
-msgstr "KLEIN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LEN\n"
-"itemlist.text"
-msgid "LEN"
-msgstr "LÄNGE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"T\n"
-"itemlist.text"
-msgid "T"
-msgstr "T"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"VALUE\n"
-"itemlist.text"
-msgid "VALUE"
-msgstr "WERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CLEAN\n"
-"itemlist.text"
-msgid "CLEAN"
-msgstr "SÄUBERN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CHAR\n"
-"itemlist.text"
-msgid "CHAR"
-msgstr "ZEICHEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"JIS\n"
-"itemlist.text"
-msgid "JIS"
-msgstr "JIS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ASC\n"
-"itemlist.text"
-msgid "ASC"
-msgstr "ASC"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"UNICODE\n"
-"itemlist.text"
-msgid "UNICODE"
-msgstr "UNICODE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"UNICHAR\n"
-"itemlist.text"
-msgid "UNICHAR"
-msgstr "UNIZEICHEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LOG10\n"
-"itemlist.text"
-msgid "LOG10"
-msgstr "LOG10"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"EVEN\n"
-"itemlist.text"
-msgid "EVEN"
-msgstr "GERADE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ODD\n"
-"itemlist.text"
-msgid "ODD"
-msgstr "UNGERADE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NORMSDIST\n"
-"itemlist.text"
-msgid "NORMSDIST"
-msgstr "STANDNORMVERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NORM.S.DIST\n"
-"itemlist.text"
-msgid "NORM.S.DIST"
-msgstr "NORM.S.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FISHER\n"
-"itemlist.text"
-msgid "FISHER"
-msgstr "FISHER"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FISHERINV\n"
-"itemlist.text"
-msgid "FISHERINV"
-msgstr "FISHERINV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NORMSINV\n"
-"itemlist.text"
-msgid "NORMSINV"
-msgstr "STANDNORMINV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NORM.S.INV\n"
-"itemlist.text"
-msgid "NORM.S.INV"
-msgstr "NORM.S.INV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"GAMMALN\n"
-"itemlist.text"
-msgid "GAMMALN"
-msgstr "GAMMALN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"GAMMALN.PRECISE\n"
-"itemlist.text"
-msgid "GAMMALN.PRECISE"
-msgstr "GAMMALN.GENAU"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ERRORTYPE\n"
-"itemlist.text"
-msgid "ERRORTYPE"
-msgstr "FEHLERTYP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ERROR.TYPE\n"
-"itemlist.text"
-msgid "ERROR.TYPE"
-msgstr "FEHLER.TYP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FORMULA\n"
-"itemlist.text"
-msgid "FORMULA"
-msgstr "FORMEL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ARABIC\n"
-"itemlist.text"
-msgid "ARABIC"
-msgstr "ARABISCH"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ATAN2\n"
-"itemlist.text"
-msgid "ATAN2"
-msgstr "ARCTAN2"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CEILING.MATH\n"
-"itemlist.text"
-msgid "CEILING.MATH"
-msgstr "OBERGRENZE.MATHEMATIK"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CEILING\n"
-"itemlist.text"
-msgid "CEILING"
-msgstr "OBERGRENZE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CEILING.XCL\n"
-"itemlist.text"
-msgid "CEILING.XCL"
-msgstr "OBERGRENZE.EXCEL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CEILING.PRECISE\n"
-"itemlist.text"
-msgid "CEILING.PRECISE"
-msgstr "OBERGRENZE.GENAU"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISO.CEILING\n"
-"itemlist.text"
-msgid "ISO.CEILING"
-msgstr "ISO.OBERGRENZE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FLOOR\n"
-"itemlist.text"
-msgid "FLOOR"
-msgstr "UNTERGRENZE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FLOOR.XCL\n"
-"itemlist.text"
-msgid "FLOOR.XCL"
-msgstr "UNTERGRENZE.EXCEL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FLOOR.MATH\n"
-"itemlist.text"
-msgid "FLOOR.MATH"
-msgstr "UNTERGRENZE.MATHEMATIK"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FLOOR.PRECISE\n"
-"itemlist.text"
-msgid "FLOOR.PRECISE"
-msgstr "UNTERGRENZE.GENAU"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ROUND\n"
-"itemlist.text"
-msgid "ROUND"
-msgstr "RUNDEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ROUNDUP\n"
-"itemlist.text"
-msgid "ROUNDUP"
-msgstr "AUFRUNDEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ROUNDDOWN\n"
-"itemlist.text"
-msgid "ROUNDDOWN"
-msgstr "ABRUNDEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TRUNC\n"
-"itemlist.text"
-msgid "TRUNC"
-msgstr "KÜRZEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LOG\n"
-"itemlist.text"
-msgid "LOG"
-msgstr "LOG"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"POWER\n"
-"itemlist.text"
-msgid "POWER"
-msgstr "POTENZ"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"GCD\n"
-"itemlist.text"
-msgid "GCD"
-msgstr "GGT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LCM\n"
-"itemlist.text"
-msgid "LCM"
-msgstr "KGV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MOD\n"
-"itemlist.text"
-msgid "MOD"
-msgstr "REST"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SUMPRODUCT\n"
-"itemlist.text"
-msgid "SUMPRODUCT"
-msgstr "SUMMENPRODUKT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SUMSQ\n"
-"itemlist.text"
-msgid "SUMSQ"
-msgstr "QUADRATESUMME"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SUMX2MY2\n"
-"itemlist.text"
-msgid "SUMX2MY2"
-msgstr "SUMMEX2MY2"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SUMX2PY2\n"
-"itemlist.text"
-msgid "SUMX2PY2"
-msgstr "SUMMEX2PY2"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SUMXMY2\n"
-"itemlist.text"
-msgid "SUMXMY2"
-msgstr "SUMMEXMY2"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DATE\n"
-"itemlist.text"
-msgid "DATE"
-msgstr "DATUM"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TIME\n"
-"itemlist.text"
-msgid "TIME"
-msgstr "ZEIT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DAYS\n"
-"itemlist.text"
-msgid "DAYS"
-msgstr "TAGE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DAYS360\n"
-"itemlist.text"
-msgid "DAYS360"
-msgstr "TAGE360"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DATEDIF\n"
-"itemlist.text"
-msgid "DATEDIF"
-msgstr "DATUMDIF"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MIN\n"
-"itemlist.text"
-msgid "MIN"
-msgstr "MIN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MINA\n"
-"itemlist.text"
-msgid "MINA"
-msgstr "MINA"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MAX\n"
-"itemlist.text"
-msgid "MAX"
-msgstr "MAX"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MAXA\n"
-"itemlist.text"
-msgid "MAXA"
-msgstr "MAXA"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SUM\n"
-"itemlist.text"
-msgid "SUM"
-msgstr "SUMME"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PRODUCT\n"
-"itemlist.text"
-msgid "PRODUCT"
-msgstr "PRODUKT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"AVERAGE\n"
-"itemlist.text"
-msgid "AVERAGE"
-msgstr "MITTELWERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"AVERAGEA\n"
-"itemlist.text"
-msgid "AVERAGEA"
-msgstr "MITTELWERTA"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COUNT\n"
-"itemlist.text"
-msgid "COUNT"
-msgstr "ANZAHL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COUNTA\n"
-"itemlist.text"
-msgid "COUNTA"
-msgstr "ANZAHL2"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NPV\n"
-"itemlist.text"
-msgid "NPV"
-msgstr "NBW"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"IRR\n"
-"itemlist.text"
-msgid "IRR"
-msgstr "IKV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MIRR\n"
-"itemlist.text"
-msgid "MIRR"
-msgstr "QIKV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISPMT\n"
-"itemlist.text"
-msgid "ISPMT"
-msgstr "ISPMT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"VAR\n"
-"itemlist.text"
-msgid "VAR"
-msgstr "VARIANZ"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"VARA\n"
-"itemlist.text"
-msgid "VARA"
-msgstr "VARIANZA"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"VARP\n"
-"itemlist.text"
-msgid "VARP"
-msgstr "VARIANZEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"VARPA\n"
-"itemlist.text"
-msgid "VARPA"
-msgstr "VARIANZENA"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"VAR.P\n"
-"itemlist.text"
-msgid "VAR.P"
-msgstr "VAR.P"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"VAR.S\n"
-"itemlist.text"
-msgid "VAR.S"
-msgstr "VAR.S"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"STDEV\n"
-"itemlist.text"
-msgid "STDEV"
-msgstr "STABW"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"STDEVA\n"
-"itemlist.text"
-msgid "STDEVA"
-msgstr "STABWA"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"STDEVP\n"
-"itemlist.text"
-msgid "STDEVP"
-msgstr "STABWN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"STDEVPA\n"
-"itemlist.text"
-msgid "STDEVPA"
-msgstr "STABWNA"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"STDEV.P\n"
-"itemlist.text"
-msgid "STDEV.P"
-msgstr "STABW.N"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"STDEV.S\n"
-"itemlist.text"
-msgid "STDEV.S"
-msgstr "STABW.S"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"B\n"
-"itemlist.text"
-msgid "B"
-msgstr "B"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NORMDIST\n"
-"itemlist.text"
-msgid "NORMDIST"
-msgstr "NORMVERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NORM.DIST\n"
-"itemlist.text"
-msgid "NORM.DIST"
-msgstr "NORM.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"EXPONDIST\n"
-"itemlist.text"
-msgid "EXPONDIST"
-msgstr "EXPONVERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"EXPON.DIST\n"
-"itemlist.text"
-msgid "EXPON.DIST"
-msgstr "EXPON.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BINOMDIST\n"
-"itemlist.text"
-msgid "BINOMDIST"
-msgstr "BINOMVERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BINOM.DIST\n"
-"itemlist.text"
-msgid "BINOM.DIST"
-msgstr "BINOM.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"POISSON\n"
-"itemlist.text"
-msgid "POISSON"
-msgstr "POISSON"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"POISSON.DIST\n"
-"itemlist.text"
-msgid "POISSON.DIST"
-msgstr "POISSON.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COMBIN\n"
-"itemlist.text"
-msgid "COMBIN"
-msgstr "KOMBINATIONEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COMBINA\n"
-"itemlist.text"
-msgid "COMBINA"
-msgstr "KOMBINATIONEN2"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PERMUT\n"
-"itemlist.text"
-msgid "PERMUT"
-msgstr "VARIATIONEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PERMUTATIONA\n"
-"itemlist.text"
-msgid "PERMUTATIONA"
-msgstr "VARIATIONEN2"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PV\n"
-"itemlist.text"
-msgid "PV"
-msgstr "BW"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SYD\n"
-"itemlist.text"
-msgid "SYD"
-msgstr "DIA"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DDB\n"
-"itemlist.text"
-msgid "DDB"
-msgstr "GDA"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DB\n"
-"itemlist.text"
-msgid "DB"
-msgstr "GDA2"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"VDB\n"
-"itemlist.text"
-msgid "VDB"
-msgstr "VDB"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PDURATION\n"
-"itemlist.text"
-msgid "PDURATION"
-msgstr "PDURATION"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SLN\n"
-"itemlist.text"
-msgid "SLN"
-msgstr "LIA"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PMT\n"
-"itemlist.text"
-msgid "PMT"
-msgstr "RMZ"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COLUMNS\n"
-"itemlist.text"
-msgid "COLUMNS"
-msgstr "SPALTEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ROWS\n"
-"itemlist.text"
-msgid "ROWS"
-msgstr "ZEILEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SHEETS\n"
-"itemlist.text"
-msgid "SHEETS"
-msgstr "TABELLEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COLUMN\n"
-"itemlist.text"
-msgid "COLUMN"
-msgstr "SPALTE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ROW\n"
-"itemlist.text"
-msgid "ROW"
-msgstr "ZEILE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SHEET\n"
-"itemlist.text"
-msgid "SHEET"
-msgstr "TABELLE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"RRI\n"
-"itemlist.text"
-msgid "RRI"
-msgstr "ZGZ"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FV\n"
-"itemlist.text"
-msgid "FV"
-msgstr "ZW"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NPER\n"
-"itemlist.text"
-msgid "NPER"
-msgstr "ZZR"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"RATE\n"
-"itemlist.text"
-msgid "RATE"
-msgstr "ZINS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"IPMT\n"
-"itemlist.text"
-msgid "IPMT"
-msgstr "ZINSZ"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PPMT\n"
-"itemlist.text"
-msgid "PPMT"
-msgstr "KAPZ"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CUMIPMT\n"
-"itemlist.text"
-msgid "CUMIPMT"
-msgstr "KUMZINSZ"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CUMPRINC\n"
-"itemlist.text"
-msgid "CUMPRINC"
-msgstr "KUMKAPITAL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"EFFECT\n"
-"itemlist.text"
-msgid "EFFECT"
-msgstr "EFFEKTIV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NOMINAL\n"
-"itemlist.text"
-msgid "NOMINAL"
-msgstr "NOMINAL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SUBTOTAL\n"
-"itemlist.text"
-msgid "SUBTOTAL"
-msgstr "TEILERGEBNIS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DSUM\n"
-"itemlist.text"
-msgid "DSUM"
-msgstr "DBSUMME"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DCOUNT\n"
-"itemlist.text"
-msgid "DCOUNT"
-msgstr "DBANZAHL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DCOUNTA\n"
-"itemlist.text"
-msgid "DCOUNTA"
-msgstr "DBANZAHL2"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DAVERAGE\n"
-"itemlist.text"
-msgid "DAVERAGE"
-msgstr "DBMITTELWERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DGET\n"
-"itemlist.text"
-msgid "DGET"
-msgstr "DBAUSZUG"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DMAX\n"
-"itemlist.text"
-msgid "DMAX"
-msgstr "DBMAX"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DMIN\n"
-"itemlist.text"
-msgid "DMIN"
-msgstr "DBMIN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DPRODUCT\n"
-"itemlist.text"
-msgid "DPRODUCT"
-msgstr "DBPRODUKT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DSTDEV\n"
-"itemlist.text"
-msgid "DSTDEV"
-msgstr "DBSTDABW"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DSTDEVP\n"
-"itemlist.text"
-msgid "DSTDEVP"
-msgstr "DBSTDABWN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DVAR\n"
-"itemlist.text"
-msgid "DVAR"
-msgstr "DBVARIANZ"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DVARP\n"
-"itemlist.text"
-msgid "DVARP"
-msgstr "DBVARIANZEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"INDIRECT\n"
-"itemlist.text"
-msgid "INDIRECT"
-msgstr "INDIREKT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ADDRESS\n"
-"itemlist.text"
-msgid "ADDRESS"
-msgstr "ADRESSE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MATCH\n"
-"itemlist.text"
-msgid "MATCH"
-msgstr "VERGLEICH"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COUNTBLANK\n"
-"itemlist.text"
-msgid "COUNTBLANK"
-msgstr "ANZAHLLEEREZELLEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COUNTIF\n"
-"itemlist.text"
-msgid "COUNTIF"
-msgstr "ZÄHLENWENN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SUMIF\n"
-"itemlist.text"
-msgid "SUMIF"
-msgstr "SUMMEWENN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"AVERAGEIF\n"
-"itemlist.text"
-msgid "AVERAGEIF"
-msgstr "MITTELWERTWENN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SUMIFS\n"
-"itemlist.text"
-msgid "SUMIFS"
-msgstr "SUMMEWENNS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"AVERAGEIFS\n"
-"itemlist.text"
-msgid "AVERAGEIFS"
-msgstr "MITTELWERTWENNS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COUNTIFS\n"
-"itemlist.text"
-msgid "COUNTIFS"
-msgstr "ZÄHLENWENNS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LOOKUP\n"
-"itemlist.text"
-msgid "LOOKUP"
-msgstr "VERWEIS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"VLOOKUP\n"
-"itemlist.text"
-msgid "VLOOKUP"
-msgstr "SVERWEIS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"HLOOKUP\n"
-"itemlist.text"
-msgid "HLOOKUP"
-msgstr "WVERWEIS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MULTIRANGE\n"
-"itemlist.text"
-msgid "MULTIRANGE"
-msgstr "MULTIBEREICH"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"OFFSET\n"
-"itemlist.text"
-msgid "OFFSET"
-msgstr "VERSCHIEBUNG"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"INDEX\n"
-"itemlist.text"
-msgid "INDEX"
-msgstr "INDEX"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"AREAS\n"
-"itemlist.text"
-msgid "AREAS"
-msgstr "BEREICHE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DOLLAR\n"
-"itemlist.text"
-msgid "DOLLAR"
-msgstr "EUR"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"REPLACE\n"
-"itemlist.text"
-msgid "REPLACE"
-msgstr "ERSETZEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FIXED\n"
-"itemlist.text"
-msgid "FIXED"
-msgstr "FEST"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FIND\n"
-"itemlist.text"
-msgid "FIND"
-msgstr "FINDEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"EXACT\n"
-"itemlist.text"
-msgid "EXACT"
-msgstr "IDENTISCH"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LEFT\n"
-"itemlist.text"
-msgid "LEFT"
-msgstr "LINKS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"RIGHT\n"
-"itemlist.text"
-msgid "RIGHT"
-msgstr "RECHTS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SEARCH\n"
-"itemlist.text"
-msgid "SEARCH"
-msgstr "SUCHEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MID\n"
-"itemlist.text"
-msgid "MID"
-msgstr "TEIL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LENB\n"
-"itemlist.text"
-msgid "LENB"
-msgstr "LÄNGEB"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"RIGHTB\n"
-"itemlist.text"
-msgid "RIGHTB"
-msgstr "RECHTSB"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LEFTB\n"
-"itemlist.text"
-msgid "LEFTB"
-msgstr "LINKSB"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MIDB\n"
-"itemlist.text"
-msgid "MIDB"
-msgstr "TEILB"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TEXT\n"
-"itemlist.text"
-msgid "TEXT"
-msgstr "TEXT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SUBSTITUTE\n"
-"itemlist.text"
-msgid "SUBSTITUTE"
-msgstr "WECHSELN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"REPT\n"
-"itemlist.text"
-msgid "REPT"
-msgstr "WIEDERHOLEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CONCATENATE\n"
-"itemlist.text"
-msgid "CONCATENATE"
-msgstr "VERKETTEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CONCAT\n"
-"itemlist.text"
-msgid "CONCAT"
-msgstr "TEXTKETTE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TEXTJOIN\n"
-"itemlist.text"
-msgid "TEXTJOIN"
-msgstr "VERBINDEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"IFS\n"
-"itemlist.text"
-msgid "IFS"
-msgstr "WENNS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SWITCH\n"
-"itemlist.text"
-msgid "SWITCH"
-msgstr "SCHALTER"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MINIFS\n"
-"itemlist.text"
-msgid "MINIFS"
-msgstr "MINWENNS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MAXIFS\n"
-"itemlist.text"
-msgid "MAXIFS"
-msgstr "MAXWENNS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MVALUE\n"
-"itemlist.text"
-msgid "MVALUE"
-msgstr "MWERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MDETERM\n"
-"itemlist.text"
-msgid "MDETERM"
-msgstr "MDET"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MINVERSE\n"
-"itemlist.text"
-msgid "MINVERSE"
-msgstr "MINV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MMULT\n"
-"itemlist.text"
-msgid "MMULT"
-msgstr "MMULT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TRANSPOSE\n"
-"itemlist.text"
-msgid "TRANSPOSE"
-msgstr "MTRANS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MUNIT\n"
-"itemlist.text"
-msgid "MUNIT"
-msgstr "EINHEITSMATRIX"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"GOALSEEK\n"
-"itemlist.text"
-msgid "GOALSEEK"
-msgstr "ZIELWERTSUCHE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"HYPGEOMDIST\n"
-"itemlist.text"
-msgid "HYPGEOMDIST"
-msgstr "HYPGEOMVERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"HYPGEOM.DIST\n"
-"itemlist.text"
-msgid "HYPGEOM.DIST"
-msgstr "HYPGEOM.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LOGNORMDIST\n"
-"itemlist.text"
-msgid "LOGNORMDIST"
-msgstr "LOGNORMVERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LOGNORM.DIST\n"
-"itemlist.text"
-msgid "LOGNORM.DIST"
-msgstr "LOGNORM.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TDIST\n"
-"itemlist.text"
-msgid "TDIST"
-msgstr "TVERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"T.DIST.2T\n"
-"itemlist.text"
-msgid "T.DIST.2T"
-msgstr "T.VERT.2S"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"T.DIST\n"
-"itemlist.text"
-msgid "T.DIST"
-msgstr "T.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"T.DIST.RT\n"
-"itemlist.text"
-msgid "T.DIST.RT"
-msgstr "T.VERT.RE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FDIST\n"
-"itemlist.text"
-msgid "FDIST"
-msgstr "FVERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"F.DIST\n"
-"itemlist.text"
-msgid "F.DIST"
-msgstr "F.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"F.DIST.RT\n"
-"itemlist.text"
-msgid "F.DIST.RT"
-msgstr "F.VERT.RE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CHIDIST\n"
-"itemlist.text"
-msgid "CHIDIST"
-msgstr "CHIVERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CHISQ.DIST.RT\n"
-"itemlist.text"
-msgid "CHISQ.DIST.RT"
-msgstr "CHIQU.VERT.RE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"WEIBULL\n"
-"itemlist.text"
-msgid "WEIBULL"
-msgstr "WEIBULL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"WEIBULL.DIST\n"
-"itemlist.text"
-msgid "WEIBULL.DIST"
-msgstr "WEIBULL.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NEGBINOMDIST\n"
-"itemlist.text"
-msgid "NEGBINOMDIST"
-msgstr "NEGBINOMVERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NEGBINOM.DIST\n"
-"itemlist.text"
-msgid "NEGBINOM.DIST"
-msgstr "NEGBINOM.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CRITBINOM\n"
-"itemlist.text"
-msgid "CRITBINOM"
-msgstr "KRITBINOM"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BINOM.INV\n"
-"itemlist.text"
-msgid "BINOM.INV"
-msgstr "BINOM.INV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"KURT\n"
-"itemlist.text"
-msgid "KURT"
-msgstr "KURT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"HARMEAN\n"
-"itemlist.text"
-msgid "HARMEAN"
-msgstr "HARMITTEL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"GEOMEAN\n"
-"itemlist.text"
-msgid "GEOMEAN"
-msgstr "GEOMITTEL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"STANDARDIZE\n"
-"itemlist.text"
-msgid "STANDARDIZE"
-msgstr "STANDARDISIERUNG"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"AVEDEV\n"
-"itemlist.text"
-msgid "AVEDEV"
-msgstr "MITTELABW"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SKEW\n"
-"itemlist.text"
-msgid "SKEW"
-msgstr "SCHIEFE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SKEWP\n"
-"itemlist.text"
-msgid "SKEWP"
-msgstr "SCHIEFEP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DEVSQ\n"
-"itemlist.text"
-msgid "DEVSQ"
-msgstr "SUMQUADABW"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MEDIAN\n"
-"itemlist.text"
-msgid "MEDIAN"
-msgstr "MEDIAN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MODE\n"
-"itemlist.text"
-msgid "MODE"
-msgstr "MODALWERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MODE.SNGL\n"
-"itemlist.text"
-msgid "MODE.SNGL"
-msgstr "MODUS.EINF"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MODE.MULT\n"
-"itemlist.text"
-msgid "MODE.MULT"
-msgstr "MODUS.VIELF"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ZTEST\n"
-"itemlist.text"
-msgid "ZTEST"
-msgstr "GTEST"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"Z.TEST\n"
-"itemlist.text"
-msgid "Z.TEST"
-msgstr "G.TEST"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"AGGREGATE\n"
-"itemlist.text"
-msgid "AGGREGATE"
-msgstr "AGGREGAT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TTEST\n"
-"itemlist.text"
-msgid "TTEST"
-msgstr "TTEST"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"T.TEST\n"
-"itemlist.text"
-msgid "T.TEST"
-msgstr "T.TEST"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"RANK\n"
-"itemlist.text"
-msgid "RANK"
-msgstr "RANG"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PERCENTILE\n"
-"itemlist.text"
-msgid "PERCENTILE"
-msgstr "QUANTIL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PERCENTRANK\n"
-"itemlist.text"
-msgid "PERCENTRANK"
-msgstr "QUANTILSRANG"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PERCENTILE.INC\n"
-"itemlist.text"
-msgid "PERCENTILE.INC"
-msgstr "QUANTIL.INKL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PERCENTRANK.INC\n"
-"itemlist.text"
-msgid "PERCENTRANK.INC"
-msgstr "QUANTILSRANG.INKL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"QUARTILE.INC\n"
-"itemlist.text"
-msgid "QUARTILE.INC"
-msgstr "QUARTILE.INKL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"RANK.EQ\n"
-"itemlist.text"
-msgid "RANK.EQ"
-msgstr "RANG.GLEICH"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PERCENTILE.EXC\n"
-"itemlist.text"
-msgid "PERCENTILE.EXC"
-msgstr "QUANTIL.EXKL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PERCENTRANK.EXC\n"
-"itemlist.text"
-msgid "PERCENTRANK.EXC"
-msgstr "QUANTILSRANG.EXKL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"QUARTILE.EXC\n"
-"itemlist.text"
-msgid "QUARTILE.EXC"
-msgstr "QUARTILE.EXKL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"RANK.AVG\n"
-"itemlist.text"
-msgid "RANK.AVG"
-msgstr "RANG.MITTELW"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LARGE\n"
-"itemlist.text"
-msgid "LARGE"
-msgstr "KGRÖSSTE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SMALL\n"
-"itemlist.text"
-msgid "SMALL"
-msgstr "KKLEINSTE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FREQUENCY\n"
-"itemlist.text"
-msgid "FREQUENCY"
-msgstr "HÄUFIGKEIT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"QUARTILE\n"
-"itemlist.text"
-msgid "QUARTILE"
-msgstr "QUARTILE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NORMINV\n"
-"itemlist.text"
-msgid "NORMINV"
-msgstr "NORMINV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NORM.INV\n"
-"itemlist.text"
-msgid "NORM.INV"
-msgstr "NORM.INV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CONFIDENCE\n"
-"itemlist.text"
-msgid "CONFIDENCE"
-msgstr "KONFIDENZ"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CONFIDENCE.NORM\n"
-"itemlist.text"
-msgid "CONFIDENCE.NORM"
-msgstr "KONFIDENZ.NORM"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CONFIDENCE.T\n"
-"itemlist.text"
-msgid "CONFIDENCE.T"
-msgstr "KONFIDENZ.T"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FTEST\n"
-"itemlist.text"
-msgid "FTEST"
-msgstr "FTEST"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"F.TEST\n"
-"itemlist.text"
-msgid "F.TEST"
-msgstr "F.TEST"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TRIMMEAN\n"
-"itemlist.text"
-msgid "TRIMMEAN"
-msgstr "GESTUTZTMITTEL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PROB\n"
-"itemlist.text"
-msgid "PROB"
-msgstr "WAHRSCHBEREICH"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CORREL\n"
-"itemlist.text"
-msgid "CORREL"
-msgstr "KORREL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COVAR\n"
-"itemlist.text"
-msgid "COVAR"
-msgstr "KOVARIANZ"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COVARIANCE.P\n"
-"itemlist.text"
-msgid "COVARIANCE.P"
-msgstr "KOVARIANZ.P"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COVARIANCE.S\n"
-"itemlist.text"
-msgid "COVARIANCE.S"
-msgstr "KOVARIANZ.S"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"PEARSON\n"
-"itemlist.text"
-msgid "PEARSON"
-msgstr "PEARSON"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"RSQ\n"
-"itemlist.text"
-msgid "RSQ"
-msgstr "BESTIMMTHEITSMASS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"STEYX\n"
-"itemlist.text"
-msgid "STEYX"
-msgstr "STFEHLERYX"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"SLOPE\n"
-"itemlist.text"
-msgid "SLOPE"
-msgstr "STEIGUNG"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"INTERCEPT\n"
-"itemlist.text"
-msgid "INTERCEPT"
-msgstr "ACHSENABSCHNITT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TREND\n"
-"itemlist.text"
-msgid "TREND"
-msgstr "TREND"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"GROWTH\n"
-"itemlist.text"
-msgid "GROWTH"
-msgstr "VARIATION"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LINEST\n"
-"itemlist.text"
-msgid "LINEST"
-msgstr "RGP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LOGEST\n"
-"itemlist.text"
-msgid "LOGEST"
-msgstr "RKP"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FORECAST\n"
-"itemlist.text"
-msgid "FORECAST"
-msgstr "ERWARTUNG"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FORECAST.ETS.ADD\n"
-"itemlist.text"
-msgid "FORECAST.ETS.ADD"
-msgstr "PROGNOSE.EXP.ADD"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FORECAST.ETS.SEASONALITY\n"
-"itemlist.text"
-msgid "FORECAST.ETS.SEASONALITY"
-msgstr "PROGNOSE.EXP.SAISONAL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FORECAST.ETS.MULT\n"
-"itemlist.text"
-msgid "FORECAST.ETS.MULT"
-msgstr "PROGNOSE.EXP.MULT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FORECAST.ETS.PI.ADD\n"
-"itemlist.text"
-msgid "FORECAST.ETS.PI.ADD"
-msgstr "PROGNOSE.EXP.VOR.ADD"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FORECAST.ETS.PI.MULT\n"
-"itemlist.text"
-msgid "FORECAST.ETS.PI.MULT"
-msgstr "PROGNOSE.EXP.VOR.MULT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FORECAST.ETS.STAT.ADD\n"
-"itemlist.text"
-msgid "FORECAST.ETS.STAT.ADD"
-msgstr "PROGNOSE.EXP.STAT.ADD"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FORECAST.ETS.STAT.MULT\n"
-"itemlist.text"
-msgid "FORECAST.ETS.STAT.MULT"
-msgstr "PROGNOSE.EXP.STAT.MULT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FORECAST.LINEAR\n"
-"itemlist.text"
-msgid "FORECAST.LINEAR"
-msgstr "PROGNOSE.LINEAR"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CHIINV\n"
-"itemlist.text"
-msgid "CHIINV"
-msgstr "CHIINV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CHISQ.INV.RT\n"
-"itemlist.text"
-msgid "CHISQ.INV.RT"
-msgstr "CHIQU.INV.RE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"GAMMADIST\n"
-"itemlist.text"
-msgid "GAMMADIST"
-msgstr "GAMMAVERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"GAMMA.DIST\n"
-"itemlist.text"
-msgid "GAMMA.DIST"
-msgstr "GAMMA.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"GAMMAINV\n"
-"itemlist.text"
-msgid "GAMMAINV"
-msgstr "GAMMAINV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"GAMMA.INV\n"
-"itemlist.text"
-msgid "GAMMA.INV"
-msgstr "GAMMA.INV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"TINV\n"
-"itemlist.text"
-msgid "TINV"
-msgstr "TINV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"T.INV.2T\n"
-"itemlist.text"
-msgid "T.INV.2T"
-msgstr "T.INV.2S"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"T.INV\n"
-"itemlist.text"
-msgid "T.INV"
-msgstr "T.INV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FINV\n"
-"itemlist.text"
-msgid "FINV"
-msgstr "FINV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"F.INV\n"
-"itemlist.text"
-msgid "F.INV"
-msgstr "F.INV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"F.INV.RT\n"
-"itemlist.text"
-msgid "F.INV.RT"
-msgstr "F.INV.RE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CHITEST\n"
-"itemlist.text"
-msgid "CHITEST"
-msgstr "CHITEST"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CHISQ.TEST\n"
-"itemlist.text"
-msgid "CHISQ.TEST"
-msgstr "CHIQU.TEST"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LOGINV\n"
-"itemlist.text"
-msgid "LOGINV"
-msgstr "LOGINV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"LOGNORM.INV\n"
-"itemlist.text"
-msgid "LOGNORM.INV"
-msgstr "LOGNORM.INV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"MULTIPLE.OPERATIONS\n"
-"itemlist.text"
-msgid "MULTIPLE.OPERATIONS"
-msgstr "MEHRFACH.OPERATIONEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BETADIST\n"
-"itemlist.text"
-msgid "BETADIST"
-msgstr "BETAVERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BETAINV\n"
-"itemlist.text"
-msgid "BETAINV"
-msgstr "BETAINV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BETA.DIST\n"
-"itemlist.text"
-msgid "BETA.DIST"
-msgstr "BETA.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BETA.INV\n"
-"itemlist.text"
-msgid "BETA.INV"
-msgstr "BETA.INV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"WEEKNUM\n"
-"itemlist.text"
-msgid "WEEKNUM"
-msgstr "KALENDERWOCHE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ISOWEEKNUM\n"
-"itemlist.text"
-msgid "ISOWEEKNUM"
-msgstr "ISOKALENDERWOCHE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"WEEKNUM_OOO\n"
-"itemlist.text"
-msgid "WEEKNUM_OOO"
-msgstr "KALENDERWOCHE_OOO"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"EASTERSUNDAY\n"
-"itemlist.text"
-msgid "EASTERSUNDAY"
-msgstr "OSTERSONNTAG"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"WEEKDAY\n"
-"itemlist.text"
-msgid "WEEKDAY"
-msgstr "WOCHENTAG"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NETWORKDAYS\n"
-"itemlist.text"
-msgid "NETWORKDAYS"
-msgstr "NETTOARBEITSTAGE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NETWORKDAYS.INTL\n"
-"itemlist.text"
-msgid "NETWORKDAYS.INTL"
-msgstr "NETTOARBEITSTAGE.INTL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"WORKDAY.INTL\n"
-"itemlist.text"
-msgid "WORKDAY.INTL"
-msgstr "ARBEITSTAG.INTL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"#NAME!\n"
-"itemlist.text"
-msgid "#NAME!"
-msgstr "#NAME!"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"STYLE\n"
-"itemlist.text"
-msgid "STYLE"
-msgstr "VORLAGE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DDE\n"
-"itemlist.text"
-msgid "DDE"
-msgstr "DDE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BASE\n"
-"itemlist.text"
-msgid "BASE"
-msgstr "BASIS"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"DECIMAL\n"
-"itemlist.text"
-msgid "DECIMAL"
-msgstr "DEZIMAL"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CONVERT_OOO\n"
-"itemlist.text"
-msgid "CONVERT_OOO"
-msgstr "UMRECHNEN_OOO"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ROMAN\n"
-"itemlist.text"
-msgid "ROMAN"
-msgstr "RÖMISCH"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"HYPERLINK\n"
-"itemlist.text"
-msgid "HYPERLINK"
-msgstr "HYPERLINK"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"INFO\n"
-"itemlist.text"
-msgid "INFO"
-msgstr "INFO"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BAHTTEXT\n"
-"itemlist.text"
-msgid "BAHTTEXT"
-msgstr "BAHTTEXT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"GETPIVOTDATA\n"
-"itemlist.text"
-msgid "GETPIVOTDATA"
-msgstr "PIVOTDATENZUORDNEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"EUROCONVERT\n"
-"itemlist.text"
-msgid "EUROCONVERT"
-msgstr "EUROUMRECHNEN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"NUMBERVALUE\n"
-"itemlist.text"
-msgid "NUMBERVALUE"
-msgstr "ZAHLWERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"GAMMA\n"
-"itemlist.text"
-msgid "GAMMA"
-msgstr "GAMMA"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CHISQDIST\n"
-"itemlist.text"
-msgid "CHISQDIST"
-msgstr "CHIQUVERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CHISQ.DIST\n"
-"itemlist.text"
-msgid "CHISQ.DIST"
-msgstr "CHIQU.VERT"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CHISQINV\n"
-"itemlist.text"
-msgid "CHISQINV"
-msgstr "CHIQUINV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"CHISQ.INV\n"
-"itemlist.text"
-msgid "CHISQ.INV"
-msgstr "CHIQU.INV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BITAND\n"
-"itemlist.text"
-msgid "BITAND"
-msgstr "BITUND"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BITOR\n"
-"itemlist.text"
-msgid "BITOR"
-msgstr "BITODER"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BITXOR\n"
-"itemlist.text"
-msgid "BITXOR"
-msgstr "BITXODER"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BITRSHIFT\n"
-"itemlist.text"
-msgid "BITRSHIFT"
-msgstr "BITRVERSCHIEB"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"BITLSHIFT\n"
-"itemlist.text"
-msgid "BITLSHIFT"
-msgstr "BITLVERSCHIEB"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"#NULL!\n"
-"itemlist.text"
-msgid "#NULL!"
-msgstr "#NULL!"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"#DIV/0!\n"
-"itemlist.text"
-msgid "#DIV/0!"
-msgstr "#DIV/0!"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"#VALUE!\n"
-"itemlist.text"
-msgid "#VALUE!"
-msgstr "#WERT!"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"#REF!\n"
-"itemlist.text"
-msgid "#REF!"
-msgstr "#BEZUG!"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"#NAME?\n"
-"itemlist.text"
-msgid "#NAME?"
-msgstr "#NAME?"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"#NUM!\n"
-"itemlist.text"
-msgid "#NUM!"
-msgstr "#ZAHL!"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"#N/A\n"
-"itemlist.text"
-msgid "#N/A"
-msgstr "#NV"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"FILTERXML\n"
-"itemlist.text"
-msgid "FILTERXML"
-msgstr "XMLFILTERN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"COLOR\n"
-"itemlist.text"
-msgid "COLOR"
-msgstr "FARBE"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"WEBSERVICE\n"
-"itemlist.text"
-msgid "WEBSERVICE"
-msgstr "WEBDIENST"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ERF.PRECISE\n"
-"itemlist.text"
-msgid "ERF.PRECISE"
-msgstr "GAUSSF.GENAU"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ERFC.PRECISE\n"
-"itemlist.text"
-msgid "ERFC.PRECISE"
-msgstr "GAUSSFKOMPL.GENAU"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ENCODEURL\n"
-"itemlist.text"
-msgid "ENCODEURL"
-msgstr "URLCODIEREN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"RAWSUBTRACT\n"
-"itemlist.text"
-msgid "RAWSUBTRACT"
-msgstr "SUBTRAKTION"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
-"ROUNDSIG\n"
-"itemlist.text"
-msgid "ROUNDSIG"
-msgstr "RUNDENSIG"
diff --git a/source/de/formula/source/ui/dlg.po b/source/de/formula/source/ui/dlg.po
deleted file mode 100644
index 844c08e3398..00000000000
--- a/source/de/formula/source/ui/dlg.po
+++ /dev/null
@@ -1,73 +0,0 @@
-#. extracted from formula/source/ui/dlg
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-02-04 19:35+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1423078515.000000\n"
-
-#: formdlgs.src
-msgctxt ""
-"formdlgs.src\n"
-"STR_TITLE1\n"
-"string.text"
-msgid "Function Wizard"
-msgstr "Funktions-Assistent"
-
-#: formdlgs.src
-msgctxt ""
-"formdlgs.src\n"
-"STR_TITLE2\n"
-"string.text"
-msgid "Function Wizard -"
-msgstr "Funktions-Assistent -"
-
-#: formdlgs.src
-msgctxt ""
-"formdlgs.src\n"
-"STR_END\n"
-"string.text"
-msgid "~End"
-msgstr "~Fertig"
-
-#: formdlgs.src
-msgctxt ""
-"formdlgs.src\n"
-"RID_STR_SHRINK\n"
-"string.text"
-msgid "Shrink"
-msgstr "Verkleinern"
-
-#: formdlgs.src
-msgctxt ""
-"formdlgs.src\n"
-"RID_STR_EXPAND\n"
-"string.text"
-msgid "Expand"
-msgstr "Ausdehnen"
-
-#: parawin.src
-msgctxt ""
-"parawin.src\n"
-"STR_OPTIONAL\n"
-"string.text"
-msgid "(optional)"
-msgstr "(optional)"
-
-#: parawin.src
-msgctxt ""
-"parawin.src\n"
-"STR_REQUIRED\n"
-"string.text"
-msgid "(required)"
-msgstr "(erforderlich)"
diff --git a/source/de/formula/uiconfig/ui.po b/source/de/formula/uiconfig/ui.po
deleted file mode 100644
index 45d77bd3008..00000000000
--- a/source/de/formula/uiconfig/ui.po
+++ /dev/null
@@ -1,206 +0,0 @@
-#. extracted from formula/uiconfig/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-16 04:21+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479270111.000000\n"
-
-#: formuladialog.ui
-msgctxt ""
-"formuladialog.ui\n"
-"array\n"
-"label\n"
-"string.text"
-msgid "Array"
-msgstr "Matrix"
-
-#: formuladialog.ui
-msgctxt ""
-"formuladialog.ui\n"
-"back\n"
-"label\n"
-"string.text"
-msgid "<< _Back"
-msgstr "<< _Zurück"
-
-#: formuladialog.ui
-msgctxt ""
-"formuladialog.ui\n"
-"next\n"
-"label\n"
-"string.text"
-msgid "_Next >>"
-msgstr "_Weiter >>"
-
-#: formuladialog.ui
-msgctxt ""
-"formuladialog.ui\n"
-"function\n"
-"label\n"
-"string.text"
-msgid "Functions"
-msgstr "Funktionen"
-
-#: formuladialog.ui
-msgctxt ""
-"formuladialog.ui\n"
-"struct\n"
-"label\n"
-"string.text"
-msgid "Structure"
-msgstr "Struktur"
-
-#: formuladialog.ui
-msgctxt ""
-"formuladialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Function result"
-msgstr "Teilergebnis"
-
-#: formuladialog.ui
-msgctxt ""
-"formuladialog.ui\n"
-"formula\n"
-"label\n"
-"string.text"
-msgid "For_mula"
-msgstr "For_mel"
-
-#: formuladialog.ui
-msgctxt ""
-"formuladialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Result"
-msgstr "Ergebnis"
-
-#: formuladialog.ui
-msgctxt ""
-"formuladialog.ui\n"
-"ed_formula-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Formula"
-msgstr "Formel"
-
-#: formuladialog.ui
-msgctxt ""
-"formuladialog.ui\n"
-"RB_REF\n"
-"tooltip_text\n"
-"string.text"
-msgid "Maximize"
-msgstr "Vergrößern"
-
-#: functionpage.ui
-msgctxt ""
-"functionpage.ui\n"
-"label_search\n"
-"label\n"
-"string.text"
-msgid "_Search"
-msgstr "_Suchen"
-
-#: functionpage.ui
-msgctxt ""
-"functionpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Category"
-msgstr "_Kategorie"
-
-#: functionpage.ui
-msgctxt ""
-"functionpage.ui\n"
-"category\n"
-"0\n"
-"stringlist.text"
-msgid "Last Used"
-msgstr "Zuletzt verwendet"
-
-#: functionpage.ui
-msgctxt ""
-"functionpage.ui\n"
-"category\n"
-"1\n"
-"stringlist.text"
-msgid "All"
-msgstr "Alle"
-
-#: functionpage.ui
-msgctxt ""
-"functionpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Function"
-msgstr "_Funktion"
-
-#: parameter.ui
-msgctxt ""
-"parameter.ui\n"
-"editdesc\n"
-"label\n"
-"string.text"
-msgid "Function not known"
-msgstr "Unbekannte Funktion"
-
-#: parameter.ui
-msgctxt ""
-"parameter.ui\n"
-"RB_ARG1\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select"
-msgstr "Auswahl"
-
-#: parameter.ui
-msgctxt ""
-"parameter.ui\n"
-"RB_ARG2\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select"
-msgstr "Auswahl"
-
-#: parameter.ui
-msgctxt ""
-"parameter.ui\n"
-"RB_ARG3\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select"
-msgstr "Auswahl"
-
-#: parameter.ui
-msgctxt ""
-"parameter.ui\n"
-"RB_ARG4\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select"
-msgstr "Auswahl"
-
-#: structpage.ui
-msgctxt ""
-"structpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Structure"
-msgstr "_Struktur"
diff --git a/source/de/fpicker/messages.po b/source/de/fpicker/messages.po
new file mode 100644
index 00000000000..75d75e1e6bb
--- /dev/null
+++ b/source/de/fpicker/messages.po
@@ -0,0 +1,365 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-04-12 14:14+0200\n"
+"PO-Revision-Date: 2015-08-27 08:13+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1440663230.000000\n"
+
+#. GUWMA
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
+msgid "~Automatic file name extension"
+msgstr "Automatische Datei~endung"
+
+#. 2DxYf
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FILEPICKER_PASSWORD"
+msgid "Save with pass~word"
+msgstr "~Mit Kennwort speichern"
+
+#. LWkae
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FILEPICKER_FILTER_OPTIONS"
+msgid "~Edit filter settings"
+msgstr "Filtereinstellungen ~bearbeiten"
+
+#. k7Sdb
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FILEPICKER_READONLY"
+msgid "~Read-only"
+msgstr "N~ur lesen"
+
+#. 7VhDp
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FILEPICKER_INSERT_AS_LINK"
+msgid "~Link"
+msgstr "~Verknüpfen"
+
+#. dFf6y
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FILEPICKER_SHOW_PREVIEW"
+msgid "Pr~eview"
+msgstr "V~orschau"
+
+#. uu7VW
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FILEPICKER_PLAY"
+msgid "~Play"
+msgstr "Ab~spielen"
+
+#. ReGYn
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FILEPICKER_VERSION"
+msgid "~Version:"
+msgstr "~Version:"
+
+#. nuKha
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FILEPICKER_TEMPLATES"
+msgid "S~tyles:"
+msgstr "Format~vorlagen:"
+
+#. emrjD
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FILEPICKER_IMAGE_TEMPLATE"
+msgid "Style:"
+msgstr "Rahmenvorlage:"
+
+#. JvMvb
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FILEPICKER_SELECTION"
+msgid "~Selection"
+msgstr "A~uswahl"
+
+#. VEgEJ
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FILEPICKER_FILTER_TITLE"
+msgid "File ~type:"
+msgstr "Datei~typ:"
+
+#. 7Mozz
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FOLDERPICKER_DEFAULT_TITLE"
+msgid "Select Path"
+msgstr "Pfad auswählen"
+
+#. GtMEC
+#: OfficeFilePicker.src
+msgctxt "STR_SVT_FOLDERPICKER_DEFAULT_DESCRIPTION"
+msgid "Please select a folder."
+msgstr "Bitte wählen Sie einen Ordner."
+
+#. SJGCw
+#: iodlg.src
+msgctxt "STR_EXPLORERFILE_OPEN"
+msgid "Open"
+msgstr "Öffnen"
+
+#. xNMsi
+#: iodlg.src
+msgctxt "STR_EXPLORERFILE_SAVE"
+msgid "Save as"
+msgstr "Speichern unter"
+
+#. gseq9
+#: iodlg.src
+msgctxt "STR_EXPLORERFILE_BUTTONSAVE"
+msgid "~Save"
+msgstr "~Speichern"
+
+#. tpvKy
+#: iodlg.src
+msgctxt "STR_PATHNAME"
+msgid "~Path:"
+msgstr "~Pfad:"
+
+#. 9PVSK
+#: iodlg.src
+msgctxt "STR_PATHSELECT"
+msgid "Select path"
+msgstr "Pfad auswählen"
+
+#. ykCyy
+#: iodlg.src
+msgctxt "STR_BUTTONSELECT"
+msgid "~Select"
+msgstr "Aus~wählen"
+
+#. zBr7H
+#: iodlg.src
+msgctxt "STR_PREVIEW"
+msgid "File Preview"
+msgstr "Dateivorschau"
+
+#. AGj3z
+#: iodlg.src
+msgctxt "STR_DEFAULT_DIRECTORY"
+msgid "My Documents"
+msgstr "Meine Dokumente"
+
+#. emJXD
+#: iodlg.src
+msgctxt "STR_PLACES_TITLE"
+msgid "Places"
+msgstr "Orte"
+
+#. 99gqd
+#: iodlg.src
+msgctxt "RID_FILEOPEN_NOTEXISTENTFILE"
+msgid ""
+"The file $name$ does not exist.\n"
+"Make sure you have entered the correct file name."
+msgstr ""
+"Die Datei $name$ existiert nicht.\n"
+"Bitte überprüfen Sie, ob Sie den korrekten Namen angegeben haben."
+
+#. sWRTd
+#: iodlg.src
+msgctxt "STR_FILTERNAME_ALL"
+msgid "All files"
+msgstr "Alle Dateien"
+
+#. 7pThC
+#: iodlg.src
+msgctxt "STR_SVT_ALREADYEXISTOVERWRITE"
+msgid ""
+"A file named \"$filename$\" already exists.\n"
+"\n"
+"Do you want to replace it?"
+msgstr ""
+"Es existiert bereits eine Datei mit dem Namen \"$filename$\".\n"
+"\n"
+"Soll sie überschrieben werden?"
+
+#. z6Eo3
+#: iodlg.src
+msgctxt "STR_SVT_DELETESERVICE"
+msgid ""
+"Are you sure you want to delete the service?\n"
+"\"$servicename$\""
+msgstr ""
+"Soll dieser Dienst wirklich gelöscht werden?\n"
+"\"$servicename$\""
+
+#. KegFE
+#: iodlg.src
+msgctxt "STR_SVT_ROOTLABEL"
+msgid "Root"
+msgstr "Root"
+
+#. CahDV
+#: iodlg.src
+msgctxt "STR_SVT_NEW_FOLDER"
+msgid "Folder"
+msgstr "Ordner"
+
+#. o5hFk
+#: iodlg.src
+msgctxt "STR_SVT_NOREMOVABLEDEVICE"
+msgid ""
+"No removable storage device detected.\n"
+"Make sure it is plugged in properly and try again."
+msgstr ""
+"Kein Wechselspeichergerät gefunden.\n"
+"Überprüfen Sie, ob es korrekt angeschlossen ist und versuchen Sie es dann erneut."
+
+#. D3iME
+#: explorerfiledialog.ui
+msgctxt "explorerfiledialog|connect_to_server"
+msgid "Servers..."
+msgstr "Server..."
+
+#. ZqDfr
+#: explorerfiledialog.ui
+msgctxt "explorerfiledialog|connect_to_server|tooltip_text"
+msgid "Connect To Server"
+msgstr "Mit Server verbinden"
+
+#. kaDnz
+#: explorerfiledialog.ui
+msgctxt "explorerfiledialog|connect_to_server-atkobject"
+msgid "Connect To Server"
+msgstr "Mit Server verbinden"
+
+#. e8DSB
+#: explorerfiledialog.ui
+msgctxt "explorerfiledialog|new_folder|tooltip_text"
+msgid "Create New Folder"
+msgstr "Neuen Ordner anlegen"
+
+#. Lyb7g
+#: explorerfiledialog.ui
+msgctxt "explorerfiledialog|new_folder-atkobject"
+msgid "Create New Folder"
+msgstr "Neuen Ordner anlegen"
+
+#. dWNqZ
+#: explorerfiledialog.ui
+msgctxt "explorerfiledialog|file_name_label"
+msgid "File _name:"
+msgstr "Datei_name:"
+
+#. 9cjFB
+#: explorerfiledialog.ui
+msgctxt "explorerfiledialog|file_type_label"
+msgid "File _type:"
+msgstr "Datei_typ:"
+
+#. quCXH
+#: explorerfiledialog.ui
+msgctxt "explorerfiledialog|readonly"
+msgid "_Read-only"
+msgstr "_Schreibgeschützt"
+
+#. hm2xy
+#: explorerfiledialog.ui
+msgctxt "explorerfiledialog|password"
+msgid "Save with password"
+msgstr "Mit Kennwort speichern"
+
+#. 8EYcB
+#: explorerfiledialog.ui
+msgctxt "explorerfiledialog|extension"
+msgid "_Automatic file name extension"
+msgstr "Automatische Datei_endung"
+
+#. 2CgAZ
+#: explorerfiledialog.ui
+msgctxt "explorerfiledialog|options"
+msgid "Edit _filter settings"
+msgstr "Filtereinstellungen _bearbeiten"
+
+#. FDvLs
+#: foldernamedialog.ui
+msgctxt "foldernamedialog|FolderNameDialog"
+msgid "Folder Name ?"
+msgstr "Ordnername?"
+
+#. 5Br2U
+#: foldernamedialog.ui
+msgctxt "foldernamedialog|label2"
+msgid "Na_me"
+msgstr "_Name"
+
+#. uiXuE
+#: foldernamedialog.ui
+msgctxt "foldernamedialog|label1"
+msgid "Create New Folder"
+msgstr "Neuen Ordner anlegen"
+
+#. RnU7Z
+#: remotefilesdialog.ui
+msgctxt "remotefilesdialog|RemoteFilesDialog"
+msgid "Remote Files"
+msgstr "Webdateien"
+
+#. uGwr4
+#: remotefilesdialog.ui
+msgctxt "remotefilesdialog|label1"
+msgid "Service:"
+msgstr "Dienst:"
+
+#. G6gFy
+#: remotefilesdialog.ui
+msgctxt "remotefilesdialog|add_service_btn"
+msgid "Add service"
+msgstr "Dienst hinzufügen"
+
+#. Jnndg
+#: remotefilesdialog.ui
+msgctxt "remotefilesdialog|list_view|tooltip_text"
+msgid "List view"
+msgstr "Listenansicht"
+
+#. xxBtB
+#: remotefilesdialog.ui
+msgctxt "remotefilesdialog|icon_view|tooltip_text"
+msgid "Icon view"
+msgstr "Symbolansicht"
+
+#. 6CiqC
+#: remotefilesdialog.ui
+msgctxt "remotefilesdialog|new_folder|tooltip_text"
+msgid "Create New Folder"
+msgstr "Neuen Ordner anlegen"
+
+#. cGNWD
+#: remotefilesdialog.ui
+msgctxt "remotefilesdialog|filterLabel"
+msgid "Filter"
+msgstr "Filter"
+
+#. rCVer
+#: remotefilesdialog.ui
+msgctxt "remotefilesdialog|nameLabel"
+msgid "File name"
+msgstr "Dateiname"
+
+#. kF4BR
+#: remotefilesdialog.ui
+msgctxt "remotefilesdialog|edit_service"
+msgid "_Edit service"
+msgstr "Dienst _bearbeiten"
+
+#. 8Xguy
+#: remotefilesdialog.ui
+msgctxt "remotefilesdialog|delete_service"
+msgid "_Delete service"
+msgstr "Dienst _löschen"
+
+#. pVchs
+#: remotefilesdialog.ui
+msgctxt "remotefilesdialog|change_password"
+msgid "_Change password"
+msgstr "Kennwort ä_ndern"
diff --git a/source/de/fpicker/source/office.po b/source/de/fpicker/source/office.po
deleted file mode 100644
index 2b7fec290af..00000000000
--- a/source/de/fpicker/source/office.po
+++ /dev/null
@@ -1,275 +0,0 @@
-#. extracted from fpicker/source/office
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2015-08-27 08:13+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1440663230.000000\n"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FILEPICKER_AUTO_EXTENSION\n"
-"string.text"
-msgid "~Automatic file name extension"
-msgstr "Automatische Datei~endung"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FILEPICKER_PASSWORD\n"
-"string.text"
-msgid "Save with pass~word"
-msgstr "~Mit Kennwort speichern"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FILEPICKER_FILTER_OPTIONS\n"
-"string.text"
-msgid "~Edit filter settings"
-msgstr "Filtereinstellungen ~bearbeiten"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FILEPICKER_READONLY\n"
-"string.text"
-msgid "~Read-only"
-msgstr "N~ur lesen"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FILEPICKER_INSERT_AS_LINK\n"
-"string.text"
-msgid "~Link"
-msgstr "~Verknüpfen"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FILEPICKER_SHOW_PREVIEW\n"
-"string.text"
-msgid "Pr~eview"
-msgstr "V~orschau"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FILEPICKER_PLAY\n"
-"string.text"
-msgid "~Play"
-msgstr "Ab~spielen"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FILEPICKER_VERSION\n"
-"string.text"
-msgid "~Version:"
-msgstr "~Version:"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FILEPICKER_TEMPLATES\n"
-"string.text"
-msgid "S~tyles:"
-msgstr "Format~vorlagen:"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FILEPICKER_IMAGE_TEMPLATE\n"
-"string.text"
-msgid "Style:"
-msgstr "Rahmenvorlage:"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FILEPICKER_SELECTION\n"
-"string.text"
-msgid "~Selection"
-msgstr "A~uswahl"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FILEPICKER_FILTER_TITLE\n"
-"string.text"
-msgid "File ~type:"
-msgstr "Datei~typ:"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FOLDERPICKER_DEFAULT_TITLE\n"
-"string.text"
-msgid "Select Path"
-msgstr "Pfad auswählen"
-
-#: OfficeFilePicker.src
-msgctxt ""
-"OfficeFilePicker.src\n"
-"STR_SVT_FOLDERPICKER_DEFAULT_DESCRIPTION\n"
-"string.text"
-msgid "Please select a folder."
-msgstr "Bitte wählen Sie einen Ordner."
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_EXPLORERFILE_OPEN\n"
-"string.text"
-msgid "Open"
-msgstr "Öffnen"
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_EXPLORERFILE_SAVE\n"
-"string.text"
-msgid "Save as"
-msgstr "Speichern unter"
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_EXPLORERFILE_BUTTONSAVE\n"
-"string.text"
-msgid "~Save"
-msgstr "~Speichern"
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_PATHNAME\n"
-"string.text"
-msgid "~Path:"
-msgstr "~Pfad:"
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_PATHSELECT\n"
-"string.text"
-msgid "Select path"
-msgstr "Pfad auswählen"
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_BUTTONSELECT\n"
-"string.text"
-msgid "~Select"
-msgstr "Aus~wählen"
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_PREVIEW\n"
-"string.text"
-msgid "File Preview"
-msgstr "Dateivorschau"
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_DEFAULT_DIRECTORY\n"
-"string.text"
-msgid "My Documents"
-msgstr "Meine Dokumente"
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_PLACES_TITLE\n"
-"string.text"
-msgid "Places"
-msgstr "Orte"
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"RID_FILEOPEN_NOTEXISTENTFILE\n"
-"string.text"
-msgid ""
-"The file $name$ does not exist.\n"
-"Make sure you have entered the correct file name."
-msgstr ""
-"Die Datei $name$ existiert nicht.\n"
-"Bitte überprüfen Sie, ob Sie den korrekten Namen angegeben haben."
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_FILTERNAME_ALL\n"
-"string.text"
-msgid "All files"
-msgstr "Alle Dateien"
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_SVT_ALREADYEXISTOVERWRITE\n"
-"string.text"
-msgid ""
-"A file named \"$filename$\" already exists.\n"
-"\n"
-"Do you want to replace it?"
-msgstr ""
-"Es existiert bereits eine Datei mit dem Namen \"$filename$\".\n"
-"\n"
-"Soll sie überschrieben werden?"
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_SVT_DELETESERVICE\n"
-"string.text"
-msgid ""
-"Are you sure you want to delete the service?\n"
-"\"$servicename$\""
-msgstr ""
-"Soll dieser Dienst wirklich gelöscht werden?\n"
-"\"$servicename$\""
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_SVT_ROOTLABEL\n"
-"string.text"
-msgid "Root"
-msgstr "Root"
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_SVT_NEW_FOLDER\n"
-"string.text"
-msgid "Folder"
-msgstr "Ordner"
-
-#: iodlg.src
-msgctxt ""
-"iodlg.src\n"
-"STR_SVT_NOREMOVABLEDEVICE\n"
-"string.text"
-msgid ""
-"No removable storage device detected.\n"
-"Make sure it is plugged in properly and try again."
-msgstr ""
-"Kein Wechselspeichergerät gefunden.\n"
-"Überprüfen Sie, ob es korrekt angeschlossen ist und versuchen Sie es dann erneut."
diff --git a/source/de/fpicker/uiconfig/ui.po b/source/de/fpicker/uiconfig/ui.po
deleted file mode 100644
index 45aae0c0cec..00000000000
--- a/source/de/fpicker/uiconfig/ui.po
+++ /dev/null
@@ -1,242 +0,0 @@
-#. extracted from fpicker/uiconfig/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-15 05:05+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479186321.000000\n"
-
-#: explorerfiledialog.ui
-msgctxt ""
-"explorerfiledialog.ui\n"
-"connect_to_server\n"
-"label\n"
-"string.text"
-msgid "Servers..."
-msgstr "Server..."
-
-#: explorerfiledialog.ui
-msgctxt ""
-"explorerfiledialog.ui\n"
-"connect_to_server\n"
-"tooltip_text\n"
-"string.text"
-msgid "Connect To Server"
-msgstr "Mit Server verbinden"
-
-#: explorerfiledialog.ui
-msgctxt ""
-"explorerfiledialog.ui\n"
-"connect_to_server-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Connect To Server"
-msgstr "Mit Server verbinden"
-
-#: explorerfiledialog.ui
-msgctxt ""
-"explorerfiledialog.ui\n"
-"new_folder\n"
-"tooltip_text\n"
-"string.text"
-msgid "Create New Folder"
-msgstr "Neuen Ordner anlegen"
-
-#: explorerfiledialog.ui
-msgctxt ""
-"explorerfiledialog.ui\n"
-"new_folder-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Create New Folder"
-msgstr "Neuen Ordner anlegen"
-
-#: explorerfiledialog.ui
-msgctxt ""
-"explorerfiledialog.ui\n"
-"file_name_label\n"
-"label\n"
-"string.text"
-msgid "File _name:"
-msgstr "Datei_name:"
-
-#: explorerfiledialog.ui
-msgctxt ""
-"explorerfiledialog.ui\n"
-"file_type_label\n"
-"label\n"
-"string.text"
-msgid "File _type:"
-msgstr "Datei_typ:"
-
-#: explorerfiledialog.ui
-msgctxt ""
-"explorerfiledialog.ui\n"
-"readonly\n"
-"label\n"
-"string.text"
-msgid "_Read-only"
-msgstr "_Schreibgeschützt"
-
-#: explorerfiledialog.ui
-msgctxt ""
-"explorerfiledialog.ui\n"
-"password\n"
-"label\n"
-"string.text"
-msgid "Save with password"
-msgstr "Mit Kennwort speichern"
-
-#: explorerfiledialog.ui
-msgctxt ""
-"explorerfiledialog.ui\n"
-"extension\n"
-"label\n"
-"string.text"
-msgid "_Automatic file name extension"
-msgstr "Automatische Datei_endung"
-
-#: explorerfiledialog.ui
-msgctxt ""
-"explorerfiledialog.ui\n"
-"options\n"
-"label\n"
-"string.text"
-msgid "Edit _filter settings"
-msgstr "Filtereinstellungen _bearbeiten"
-
-#: foldernamedialog.ui
-msgctxt ""
-"foldernamedialog.ui\n"
-"FolderNameDialog\n"
-"title\n"
-"string.text"
-msgid "Folder Name ?"
-msgstr "Ordnername?"
-
-#: foldernamedialog.ui
-msgctxt ""
-"foldernamedialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Na_me"
-msgstr "_Name"
-
-#: foldernamedialog.ui
-msgctxt ""
-"foldernamedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Create New Folder"
-msgstr "Neuen Ordner anlegen"
-
-#: remotefilesdialog.ui
-msgctxt ""
-"remotefilesdialog.ui\n"
-"RemoteFilesDialog\n"
-"title\n"
-"string.text"
-msgid "Remote Files"
-msgstr "Webdateien"
-
-#: remotefilesdialog.ui
-msgctxt ""
-"remotefilesdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Service:"
-msgstr "Dienst:"
-
-#: remotefilesdialog.ui
-msgctxt ""
-"remotefilesdialog.ui\n"
-"add_service_btn\n"
-"label\n"
-"string.text"
-msgid "Add service"
-msgstr "Dienst hinzufügen"
-
-#: remotefilesdialog.ui
-msgctxt ""
-"remotefilesdialog.ui\n"
-"list_view\n"
-"tooltip_text\n"
-"string.text"
-msgid "List view"
-msgstr "Listenansicht"
-
-#: remotefilesdialog.ui
-msgctxt ""
-"remotefilesdialog.ui\n"
-"icon_view\n"
-"tooltip_text\n"
-"string.text"
-msgid "Icon view"
-msgstr "Symbolansicht"
-
-#: remotefilesdialog.ui
-msgctxt ""
-"remotefilesdialog.ui\n"
-"new_folder\n"
-"tooltip_text\n"
-"string.text"
-msgid "Create New Folder"
-msgstr "Neuen Ordner anlegen"
-
-#: remotefilesdialog.ui
-msgctxt ""
-"remotefilesdialog.ui\n"
-"filterLabel\n"
-"label\n"
-"string.text"
-msgid "Filter"
-msgstr "Filter"
-
-#: remotefilesdialog.ui
-msgctxt ""
-"remotefilesdialog.ui\n"
-"nameLabel\n"
-"label\n"
-"string.text"
-msgid "File name"
-msgstr "Dateiname"
-
-#: remotefilesdialog.ui
-msgctxt ""
-"remotefilesdialog.ui\n"
-"edit_service\n"
-"label\n"
-"string.text"
-msgid "_Edit service"
-msgstr "Dienst _bearbeiten"
-
-#: remotefilesdialog.ui
-msgctxt ""
-"remotefilesdialog.ui\n"
-"delete_service\n"
-"label\n"
-"string.text"
-msgid "_Delete service"
-msgstr "Dienst _löschen"
-
-#: remotefilesdialog.ui
-msgctxt ""
-"remotefilesdialog.ui\n"
-"change_password\n"
-"label\n"
-"string.text"
-msgid "_Change password"
-msgstr "Kennwort ä_ndern"
diff --git a/source/de/framework/source/classes.po b/source/de/framework/messages.po
index f8123d9f09b..6d38ed4f834 100644
--- a/source/de/framework/source/classes.po
+++ b/source/de/framework/messages.po
@@ -1,4 +1,4 @@
-#. extracted from framework/source/classes
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
@@ -16,147 +16,115 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1492657006.000000\n"
+#. 5dTDC
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_MENU_HEADFOOTALL\n"
-"string.text"
+msgctxt "STR_MENU_HEADFOOTALL"
msgid "All"
msgstr "Alle"
+#. oyXqc
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_UPDATEDOC\n"
-"string.text"
+msgctxt "STR_UPDATEDOC"
msgid "~Update"
msgstr "Aktuali~siere"
+#. GD4Gd
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_CLOSEDOC_ANDRETURN\n"
-"string.text"
+msgctxt "STR_CLOSEDOC_ANDRETURN"
msgid "~Close & Return to "
msgstr "S~chließen & zurück zu "
+#. 2AsV6
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_TOOLBAR_VISIBLE_BUTTONS\n"
-"string.text"
+msgctxt "STR_TOOLBAR_VISIBLE_BUTTONS"
msgid "Visible ~Buttons"
msgstr "Sichtbare ~Schaltflächen"
+#. 342Pc
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_TOOLBAR_CUSTOMIZE_TOOLBAR\n"
-"string.text"
+msgctxt "STR_TOOLBAR_CUSTOMIZE_TOOLBAR"
msgid "~Customize Toolbar..."
msgstr "~Symbolleiste anpassen..."
+#. 7GcGg
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_TOOLBAR_DOCK_TOOLBAR\n"
-"string.text"
+msgctxt "STR_TOOLBAR_DOCK_TOOLBAR"
msgid "~Dock Toolbar"
msgstr "Symbolleiste an~docken"
+#. hFZqj
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_TOOLBAR_DOCK_ALL_TOOLBARS\n"
-"string.text"
+msgctxt "STR_TOOLBAR_DOCK_ALL_TOOLBARS"
msgid "Dock ~All Toolbars"
msgstr "~Alle Symbolleisten andocken"
+#. xUzeo
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_TOOLBAR_LOCK_TOOLBAR\n"
-"string.text"
+msgctxt "STR_TOOLBAR_LOCK_TOOLBAR"
msgid "~Lock Toolbar Position"
msgstr "Symbolleiste ~fixieren"
+#. a9XNN
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_TOOLBAR_CLOSE_TOOLBAR\n"
-"string.text"
+msgctxt "STR_TOOLBAR_CLOSE_TOOLBAR"
msgid "Close ~Toolbar"
msgstr "Symbolleiste s~chließen"
+#. JGEgE
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_SAVECOPYDOC\n"
-"string.text"
+msgctxt "STR_SAVECOPYDOC"
msgid "Save Copy ~as..."
msgstr "~Kopie speichern unter..."
+#. JJrop
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_NODOCUMENT\n"
-"string.text"
+msgctxt "STR_NODOCUMENT"
msgid "No Documents"
msgstr "Keine Dokumente"
+#. Sc7No
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_CLEAR_RECENT_FILES\n"
-"string.text"
+msgctxt "STR_CLEAR_RECENT_FILES"
msgid "Clear List"
msgstr "Liste leeren"
+#. y5BFt
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_CLEAR_RECENT_FILES_HELP\n"
-"string.text"
-msgid "Clears the list with the most recently opened files. This action can not be undone."
-msgstr "Leert die Liste der zuletzt benutzen Dateien. Diese Aktion kann nicht rückgängig gemacht werden."
+msgctxt "STR_CLEAR_RECENT_FILES_HELP"
+msgid ""
+"Clears the list with the most recently opened files. This action can not be "
+"undone."
+msgstr ""
+"Leert die Liste der zuletzt benutzen Dateien. Diese Aktion kann nicht "
+"rückgängig gemacht werden."
+#. JDATD
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_REMOTE_TITLE\n"
-"string.text"
+msgctxt "STR_REMOTE_TITLE"
msgid " (Remote)"
msgstr " (Web)"
+#. JFH6k
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_SAFEMODE_TITLE\n"
-"string.text"
+msgctxt "STR_SAFEMODE_TITLE"
msgid " (Safe Mode)"
msgstr " (Abgesicherter Modus)"
+#. D4pBb
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_TOOLBAR_TITLE_ADDON\n"
-"string.text"
+msgctxt "STR_TOOLBAR_TITLE_ADDON"
msgid "Add-On %num%"
msgstr "Add-on %num%"
+#. 5HFDW
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_FULL_DISC_RETRY_BUTTON\n"
-"string.text"
+msgctxt "STR_FULL_DISC_RETRY_BUTTON"
msgid "Retry"
msgstr "Wiederholen"
+#. Cu3Ch
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_FULL_DISC_MSG\n"
-"string.text"
+msgctxt "STR_FULL_DISC_MSG"
msgid ""
"%PRODUCTNAME could not save important internal information due to insufficient free disk space at the following location:\n"
"%PATH\n"
@@ -174,19 +142,15 @@ msgstr ""
"Betätigen Sie die Schaltfläche 'Wiederholen', nachdem Sie mehr freien Speicher zur Verfügung gestellt haben, um das Speichern der Daten zu wiederholen.\n"
"\n"
+#. oPFZY
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_RESTORE_TOOLBARS\n"
-"string.text"
+msgctxt "STR_RESTORE_TOOLBARS"
msgid "~Reset"
msgstr "~Wiederherstellen"
+#. ntyDa
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_CORRUPT_UICFG_SHARE\n"
-"string.text"
+msgctxt "STR_CORRUPT_UICFG_SHARE"
msgid ""
"An error occurred while loading the user interface configuration data. The application will be terminated now.\n"
"Please try to reinstall the application."
@@ -194,11 +158,9 @@ msgstr ""
"Während des Ladens der Konfigurationsdaten für die Benutzeroberfläche ist ein Fehler aufgetreten. Die Anwendung wird beendet.\n"
"Bitte versuchen Sie, die Anwendung neu zu installieren."
+#. grsAx
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_CORRUPT_UICFG_USER\n"
-"string.text"
+msgctxt "STR_CORRUPT_UICFG_USER"
msgid ""
"An error occurred while loading the user interface configuration data. The application will be terminated now.\n"
"Please try to remove your user profile for the application."
@@ -206,11 +168,9 @@ msgstr ""
"Während des Ladens der Konfigurationsdaten für die Benutzeroberfläche ist ein Fehler aufgetreten. Die Anwendung wird beendet.\n"
"Bitte versuchen Sie, Ihre Einstellungen für diese Anwendung zu löschen."
+#. qMSRF
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_CORRUPT_UICFG_GENERAL\n"
-"string.text"
+msgctxt "STR_CORRUPT_UICFG_GENERAL"
msgid ""
"An error occurred while loading the user interface configuration data. The application will be terminated now.\n"
"Please try to remove your user profile for the application first or try to reinstall the application."
@@ -218,58 +178,45 @@ msgstr ""
"Während des Ladens der Konfigurationsdaten für die Benutzeroberfläche ist ein Fehler aufgetreten. Die Anwendung wird beendet.\n"
"Bitte versuchen Sie zunächst, Ihre Einstellungen für diese Anwendung zu löschen, oder installieren Sie die Anwendung neu."
+#. 9FEe5
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_UNTITLED_DOCUMENT\n"
-"string.text"
+msgctxt "STR_UNTITLED_DOCUMENT"
msgid "Untitled"
msgstr "Unbenannt"
+#. HDUNU
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_LANGSTATUS_MULTIPLE_LANGUAGES\n"
-"string.text"
+msgctxt "STR_LANGSTATUS_MULTIPLE_LANGUAGES"
msgid "Multiple Languages"
msgstr "Verschiedene Sprachen"
+#. rZBXF
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_LANGSTATUS_NONE\n"
-"string.text"
+msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Keine (Rechtschreibung nicht prüfen)"
+#. Z8EjG
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_RESET_TO_DEFAULT_LANGUAGE\n"
-"string.text"
+msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Auf Standardsprache zurücksetzen"
+#. YEXdS
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_LANGSTATUS_MORE\n"
-"string.text"
+msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Mehr..."
+#. tTsdD
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_SET_LANGUAGE_FOR_PARAGRAPH\n"
-"string.text"
+msgctxt "STR_SET_LANGUAGE_FOR_PARAGRAPH"
msgid "Set Language for Paragraph"
msgstr "Sprache des Absatzes festlegen"
+#. m72Ea
#: resource.src
-msgctxt ""
-"resource.src\n"
-"STR_LANGSTATUS_HINT\n"
-"string.text"
+msgctxt "STR_LANGSTATUS_HINT"
msgid "Text Language. Right-click to set character or paragraph language"
-msgstr "Textsprache. Rechtsklick, um die Zeichen- oder Absatzsprache festzulegen"
+msgstr ""
+"Textsprache. Rechtsklick, um die Zeichen- oder Absatzsprache festzulegen"
diff --git a/source/de/reportdesign/messages.po b/source/de/reportdesign/messages.po
new file mode 100644
index 00000000000..79fff11e922
--- /dev/null
+++ b/source/de/reportdesign/messages.po
@@ -0,0 +1,1646 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"PO-Revision-Date: 2013-05-31 22:39+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1370039976.000000\n"
+
+#. 83WqS
+#: strings.src
+msgctxt "RID_STR_DETAIL"
+msgid "Detail"
+msgstr "Detail"
+
+#. 6FsBt
+#: strings.src
+msgctxt "RID_STR_PAGE_HEADER"
+msgid "Page Header"
+msgstr "Seitenkopf"
+
+#. VaKUs
+#: strings.src
+msgctxt "RID_STR_PAGE_FOOTER"
+msgid "Page Footer"
+msgstr "Seitenfuß"
+
+#. rXGES
+#: strings.src
+msgctxt "RID_STR_GROUP_HEADER"
+msgid "Group Header"
+msgstr "Gruppenkopf"
+
+#. u85VE
+#: strings.src
+msgctxt "RID_STR_GROUP_FOOTER"
+msgid "Group Footer"
+msgstr "Gruppenfuß"
+
+#. yH4py
+#: strings.src
+msgctxt "RID_STR_REPORT_HEADER"
+msgid "Report Header"
+msgstr "Berichtskopf"
+
+#. cgWUK
+#: strings.src
+msgctxt "RID_STR_REPORT_FOOTER"
+msgid "Report Footer"
+msgstr "Berichtsfuß"
+
+#. LaroG
+#: strings.src
+msgctxt "RID_STR_ERROR_WRONG_ARGUMENT"
+msgid ""
+"You tried to set an illegal argument. Please have a look at '#1' for valid "
+"arguments."
+msgstr "Ein Argument ist ungültig. Gültige Argumente finden Sie unter '#1'."
+
+#. NcNG6
+#: strings.src
+msgctxt "RID_STR_ARGUMENT_IS_NULL"
+msgid "The element is invalid."
+msgstr "Das Element ist ungültig."
+
+#. DwGXm
+#: strings.src
+msgctxt "RID_STR_FIXEDTEXT"
+msgid "Label field"
+msgstr "Beschriftungsfeld"
+
+#. sBC8f
+#: strings.src
+msgctxt "RID_STR_FORMATTEDFIELD"
+msgid "Formatted field"
+msgstr "Formatiertes Feld"
+
+#. ktd53
+#: strings.src
+msgctxt "RID_STR_IMAGECONTROL"
+msgid "Image control"
+msgstr "Grafisches Steuerelement"
+
+#. nkamB
+#: strings.src
+msgctxt "RID_STR_REPORT"
+msgid "Report"
+msgstr "Bericht"
+
+#. JkdAe
+#: strings.src
+msgctxt "RID_STR_SHAPE"
+msgid "Shape"
+msgstr "Zeichnung"
+
+#. yhCqB
+#: strings.src
+msgctxt "RID_STR_FIXEDLINE"
+msgid "Fixed line"
+msgstr "Geschützte Linie"
+
+#. NtqMk
+#: report.src
+msgctxt "RID_STR_BRWTITLE_PROPERTIES"
+msgid "Properties: "
+msgstr "Eigenschaften: "
+
+#. FnkAZ
+#: report.src
+msgctxt "RID_STR_BRWTITLE_NO_PROPERTIES"
+msgid "No Control marked"
+msgstr "Kein Steuerelement markiert"
+
+#. aeAPC
+#: report.src
+msgctxt "RID_STR_BRWTITLE_MULTISELECT"
+msgid "Multiselection"
+msgstr "Mehrfachauswahl"
+
+#. qT2Ed
+#: report.src
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr "Grafisches Steuerelement"
+
+#. JAEb9
+#: report.src
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label field"
+msgstr "Beschriftungsfeld"
+
+#. 2uQkB
+#: report.src
+msgctxt "RID_STR_PROPTITLE_FIXEDLINE"
+msgid "Line"
+msgstr "Linie"
+
+#. DEn9D
+#: report.src
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr "Formatiertes Feld"
+
+#. aFQ9E
+#: report.src
+msgctxt "RID_STR_PROPTITLE_SHAPE"
+msgid "Shape"
+msgstr "Zeichnung"
+
+#. DEMSF
+#: report.src
+msgctxt "RID_STR_PROPTITLE_REPORT"
+msgid "Report"
+msgstr "Bericht"
+
+#. D62CY
+#: report.src
+msgctxt "RID_STR_PROPTITLE_SECTION"
+msgid "Section"
+msgstr "Bereich"
+
+#. CAy2F
+#: report.src
+msgctxt "RID_STR_PROPTITLE_FUNCTION"
+msgid "Function"
+msgstr "Funktion"
+
+#. 3TAfY
+#: report.src
+msgctxt "RID_STR_PROPTITLE_GROUP"
+msgid "Group"
+msgstr "Gruppe"
+
+#. LyiPd
+#: report.src
+msgctxt "RID_STR_UNDO_CHANGEPOSITION"
+msgid "Change Object"
+msgstr "Objekt ändern"
+
+#. uQc7r
+#: report.src
+msgctxt "RID_STR_UNDO_MOVE_GROUP"
+msgid "Move Group(s)"
+msgstr "Gruppe(n) verschieben"
+
+#. gZiiq
+#: report.src
+msgctxt "RID_STR_UNDO_CONDITIONAL_FORMATTING"
+msgid "Conditional Formatting"
+msgstr "Bedingte Formatierung"
+
+#. o9ZV6
+#: report.src
+msgctxt "RID_STR_UNDO_REMOVE_REPORTHEADERFOOTER"
+msgid "Remove report header / report footer"
+msgstr "Berichtskopf/-fuß entfernen"
+
+#. iHU5A
+#: report.src
+msgctxt "RID_STR_UNDO_ADD_REPORTHEADERFOOTER"
+msgid "Add report header / report footer"
+msgstr "Berichtskopf/-fuß hinzufügen"
+
+#. EGhDu
+#: report.src
+msgctxt "RID_STR_UNDO_PROPERTY"
+msgid "Change property '#'"
+msgstr "Eigenschaft '#' ändern"
+
+#. MCQSy
+#: report.src
+msgctxt "RID_STR_UNDO_ADD_GROUP_HEADER"
+msgid "Add group header "
+msgstr "Gruppenkopf hinzufügen "
+
+#. DgPmD
+#: report.src
+msgctxt "RID_STR_UNDO_REMOVE_GROUP_HEADER"
+msgid "Remove group header "
+msgstr "Gruppenkopf entfernen "
+
+#. DENjF
+#: report.src
+msgctxt "RID_STR_UNDO_ADD_GROUP_FOOTER"
+msgid "Add group footer "
+msgstr "Gruppenfuß hinzufügen "
+
+#. 5yiAd
+#: report.src
+msgctxt "RID_STR_UNDO_REMOVE_GROUP_FOOTER"
+msgid "Remove group footer "
+msgstr "Gruppenfuß entfernen "
+
+#. nGU7F
+#: report.src
+msgctxt "RID_STR_UNDO_ADDFUNCTION"
+msgid "Add function"
+msgstr "Funktion hinzufügen"
+
+#. zA6vD
+#: report.src
+msgctxt "STR_RPT_LABEL"
+msgid "~Report name"
+msgstr "~Name des Berichts"
+
+#. QeVn7
+#: report.src
+msgctxt "RID_STR_UNDO_REMOVE_GROUP"
+msgid "Delete Group"
+msgstr "Gruppe löschen"
+
+#. V8RZq
+#: report.src
+msgctxt "RID_STR_UNDO_APPEND_GROUP"
+msgid "Add Group"
+msgstr "Gruppe hinzufügen"
+
+#. RWFBC
+#: report.src
+msgctxt "RID_STR_UNDO_REMOVE_SELECTION"
+msgid "Delete Selection"
+msgstr "Auswahl löschen"
+
+#. MBJVB
+#: report.src
+msgctxt "RID_STR_UNDO_REMOVE_FUNCTION"
+msgid "Delete Function"
+msgstr "Funktion löschen"
+
+#. DuX47
+#: report.src
+msgctxt "RID_STR_UNDO_CHANGE_SIZE"
+msgid "Change Size"
+msgstr "Größe ändern"
+
+#. vBNE4
+#: report.src
+msgctxt "RID_STR_UNDO_PASTE"
+msgid "Paste"
+msgstr "Einfügen"
+
+#. zFv2h
+#: report.src
+msgctxt "RID_STR_UNDO_INSERT_CONTROL"
+msgid "Insert Control"
+msgstr "Steuerelement einfügen"
+
+#. ParuK
+#: report.src
+msgctxt "RID_STR_UNDO_DELETE_CONTROL"
+msgid "Delete Control"
+msgstr "Steuerelement löschen"
+
+#. vRDAn
+#: report.src
+msgctxt "RID_STR_GROUPHEADER"
+msgid "GroupHeader"
+msgstr "Gruppenkopf"
+
+#. LseTq
+#: report.src
+msgctxt "RID_STR_GROUPFOOTER"
+msgid "GroupFooter"
+msgstr "Gruppenfuß"
+
+#. NZ68L
+#: report.src
+msgctxt "RID_STR_FIELDSELECTION"
+msgid "Add field:"
+msgstr "Feld hinzufügen:"
+
+#. eykyF
+#: report.src
+msgctxt "RID_STR_FILTER"
+msgid "Filter"
+msgstr "Filter"
+
+#. WNJaK
+#: report.src
+msgctxt "RID_STR_UNDO_ALIGNMENT"
+msgid "Change Alignment"
+msgstr "Ausrichtung ändern"
+
+#. Jy4P6
+#: report.src
+msgctxt "RID_STR_HEADER"
+msgid "# Header"
+msgstr "# Kopf"
+
+#. 9Zu4z
+#: report.src
+msgctxt "RID_STR_FOOTER"
+msgid "# Footer"
+msgstr "# Fuß"
+
+#. RqygD
+#: report.src
+msgctxt "RID_STR_IMPORT_GRAPHIC"
+msgid "Insert graphics"
+msgstr "Bild einfügen"
+
+#. cT8od
+#: report.src
+msgctxt "RID_STR_DELETE"
+msgid "Delete"
+msgstr "~Löschen"
+
+#. J7Hz2
+#: report.src
+msgctxt "RID_STR_FUNCTION"
+msgid "Function"
+msgstr "Funktion"
+
+#. 7asEU
+#: report.src
+msgctxt "RID_STR_COULD_NOT_CREATE_REPORT"
+msgid "An error occurred while creating the report."
+msgstr "Beim Erstellen des Berichts trat ein Fehler auf."
+
+#. wBbKp
+#: report.src
+msgctxt "RID_STR_CAUGHT_FOREIGN_EXCEPTION"
+msgid "An exception of type $type$ was caught."
+msgstr "Eine Ausnahme vom Typ $type$ wurde entdeckt."
+
+#. bdtAq
+#: report.src
+msgctxt "RID_STR_UNDO_CHANGEFONT"
+msgid "Change font"
+msgstr "Schrift ändern"
+
+#. TrviL
+#: report.src
+msgctxt "RID_STR_UNDO_CHANGEPAGE"
+msgid "Change page attributes"
+msgstr "Seitenattribute ändern"
+
+#. 4A4DL
+#: report.src
+msgctxt "RID_STR_PAGEHEADERFOOTER_INSERT"
+msgid "Insert Page Header/Footer"
+msgstr "Seitenkopf/-fuß einfügen"
+
+#. JZEaA
+#: report.src
+msgctxt "RID_STR_PAGEHEADERFOOTER_DELETE"
+msgid "Delete Page Header/Footer"
+msgstr "~Seitenkopf/-fuß löschen"
+
+#. zENVV
+#: report.src
+msgctxt "RID_STR_REPORTHEADERFOOTER_INSERT"
+msgid "Insert Report Header/Footer"
+msgstr "~Berichtskopf/-fuß einfügen"
+
+#. cF5cE
+#: report.src
+msgctxt "RID_STR_REPORTHEADERFOOTER_DELETE"
+msgid "Delete Report Header/Footer"
+msgstr "Berichtskopf/-fuß löschen"
+
+#. YfLKD
+#: report.src
+msgctxt "RID_ERR_NO_COMMAND"
+msgid "The report can not be executed unless it is bound to content."
+msgstr ""
+"Der Bericht kann nicht ausgeführt werden, solange er mit keinen Inhalten "
+"verbunden ist."
+
+#. wbP7i
+#: report.src
+msgctxt "RID_ERR_NO_OBJECTS"
+msgid ""
+"The report can not be executed unless at least one object has been inserted."
+msgstr ""
+"Der Bericht kann nicht ausgeführt werden, solang nicht mindestens ein Objekt"
+" eingefügt wurde."
+
+#. bNM2S
+#: report.src
+msgctxt "RID_STR_UNDO_SHRINK"
+msgid "Shrink Section"
+msgstr "Bereich verkleinern"
+
+#. 83WqS
+#: report.src
+msgctxt "RID_STR_DETAIL"
+msgid "Detail"
+msgstr "Detail"
+
+#. 6FsBt
+#: report.src
+msgctxt "RID_STR_PAGE_HEADER"
+msgid "Page Header"
+msgstr "Seitenkopf"
+
+#. VaKUs
+#: report.src
+msgctxt "RID_STR_PAGE_FOOTER"
+msgid "Page Footer"
+msgstr "Seitenfuß"
+
+#. yH4py
+#: report.src
+msgctxt "RID_STR_REPORT_HEADER"
+msgid "Report Header"
+msgstr "Berichtskopf"
+
+#. cgWUK
+#: report.src
+msgctxt "RID_STR_REPORT_FOOTER"
+msgid "Report Footer"
+msgstr "Berichtsfuß"
+
+#. NaDFE
+#: inspection.src
+msgctxt "RID_STR_PROPPAGE_DEFAULT"
+msgid "General"
+msgstr "Allgemein"
+
+#. TkocD
+#: inspection.src
+msgctxt "RID_STR_PROPPAGE_DATA"
+msgid "Data"
+msgstr "Daten"
+
+#. BBiHn
+#: inspection.src
+msgctxt "RID_STR_BOOL"
+msgid "No"
+msgstr "Nein"
+
+#. rdPYV
+#: inspection.src
+msgctxt "RID_STR_BOOL"
+msgid "Yes"
+msgstr "Ja"
+
+#. 2NkGc
+#: inspection.src
+msgctxt "RID_STR_FORCENEWPAGE"
+msgid "Force New Page"
+msgstr "Seitenumbruch erzwingen"
+
+#. FBVr9
+#: inspection.src
+msgctxt "RID_STR_FORCENEWPAGE_CONST"
+msgid "None"
+msgstr "Keine"
+
+#. 2VDzY
+#: inspection.src
+msgctxt "RID_STR_FORCENEWPAGE_CONST"
+msgid "Before Section"
+msgstr "Vor Bereich"
+
+#. BBUjQ
+#: inspection.src
+msgctxt "RID_STR_FORCENEWPAGE_CONST"
+msgid "After Section"
+msgstr "Nach Bereich"
+
+#. FjE6T
+#: inspection.src
+msgctxt "RID_STR_FORCENEWPAGE_CONST"
+msgid "Before & After Section"
+msgstr "Vor & nach Bereich"
+
+#. MHbFf
+#: inspection.src
+msgctxt "RID_STR_NEWROWORCOL"
+msgid "New Row Or Column"
+msgstr "Neue Zeile oder Spalte"
+
+#. nCCC2
+#: inspection.src
+msgctxt "RID_STR_KEEPTOGETHER"
+msgid "Keep Together"
+msgstr "Zusammenhalten"
+
+#. xUuqy
+#: inspection.src
+msgctxt "RID_STR_KEEPTOGETHER_CONST"
+msgid "No"
+msgstr "Nein"
+
+#. TDvKY
+#: inspection.src
+msgctxt "RID_STR_KEEPTOGETHER_CONST"
+msgid "Whole Group"
+msgstr "Gesamte Gruppe"
+
+#. Hc5De
+#: inspection.src
+msgctxt "RID_STR_KEEPTOGETHER_CONST"
+msgid "With First Detail"
+msgstr "Mit erstem Detail"
+
+#. pjADt
+#: inspection.src
+msgctxt "RID_STR_CANGROW"
+msgid "Can Grow"
+msgstr "Kann größer werden"
+
+#. sF9pD
+#: inspection.src
+msgctxt "RID_STR_CANSHRINK"
+msgid "Can Shrink"
+msgstr "Kann kleiner werden"
+
+#. CMH5i
+#: inspection.src
+msgctxt "RID_STR_REPEATSECTION"
+msgid "Repeat Section"
+msgstr "Bereich wiederholen"
+
+#. ZLkdY
+#: inspection.src
+msgctxt "RID_STR_PRINTREPEATEDVALUES"
+msgid "Print repeated values"
+msgstr "Wiederholende Werte anzeigen"
+
+#. 2BUiU
+#: inspection.src
+msgctxt "RID_STR_CONDITIONALPRINTEXPRESSION"
+msgid "Conditional Print Expression"
+msgstr "Ausdruck für bedingte Anzeige"
+
+#. FMCNM
+#: inspection.src
+msgctxt "RID_STR_STARTNEWCOLUMN"
+msgid "Start new column"
+msgstr "Neue Spalte beginnen"
+
+#. kzD6C
+#: inspection.src
+msgctxt "RID_STR_STARTNEWPAGE"
+msgid "Start new page"
+msgstr "Neue Seite beginnen"
+
+#. 3ranM
+#: inspection.src
+msgctxt "RID_STR_RESETPAGENUMBER"
+msgid "Reset page number"
+msgstr "Seitennummer zurücksetzen"
+
+#. 9vA38
+#: inspection.src
+msgctxt "RID_STR_CHARTTYPE"
+msgid "Chart type"
+msgstr "Diagrammtyp"
+
+#. ZVJoV
+#: inspection.src
+msgctxt "RID_STR_PRINTWHENGROUPCHANGE"
+msgid "Print repeated value on group change"
+msgstr "Drucken des wiederholten Wertes nach einer Gruppenänderung"
+
+#. rh4Mf
+#: inspection.src
+msgctxt "RID_STR_VISIBLE"
+msgid "Visible"
+msgstr "Sichtbar"
+
+#. QKNiK
+#: inspection.src
+msgctxt "RID_STR_GROUPKEEPTOGETHER"
+msgid "Group keep together"
+msgstr "Gruppe zusammenhalten"
+
+#. FiMq7
+#: inspection.src
+msgctxt "RID_STR_GROUPKEEPTOGETHER_CONST"
+msgid "Per Page"
+msgstr "Pro Seite"
+
+#. zemtQ
+#: inspection.src
+msgctxt "RID_STR_GROUPKEEPTOGETHER_CONST"
+msgid "Per Column"
+msgstr "Pro Spalte"
+
+#. Dt8aX
+#: inspection.src
+msgctxt "RID_STR_SECTIONPAGEBREAK_CONST"
+msgid "None"
+msgstr "Kein"
+
+#. Cz4oo
+#: inspection.src
+msgctxt "RID_STR_SECTIONPAGEBREAK_CONST"
+msgid "Section"
+msgstr "Bereich"
+
+#. Lj4kD
+#: inspection.src
+msgctxt "RID_STR_SECTIONPAGEBREAK_CONST"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. 8HQmJ
+#: inspection.src
+msgctxt "RID_STR_PAGEHEADEROPTION"
+msgid "Page header"
+msgstr "Seitenkopf"
+
+#. rzwjM
+#: inspection.src
+msgctxt "RID_STR_PAGEFOOTEROPTION"
+msgid "Page footer"
+msgstr "Seitenfuß"
+
+#. PCk4E
+#: inspection.src
+msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
+msgid "All Pages"
+msgstr "Alle Seiten"
+
+#. GvoGV
+#: inspection.src
+msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
+msgid "Not With Report Header"
+msgstr "Nicht mit Berichtskopf"
+
+#. wchYh
+#: inspection.src
+msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
+msgid "Not With Report Footer"
+msgstr "Nicht mit Berichtsfuß"
+
+#. uvfAP
+#: inspection.src
+msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
+msgid "Not With Report Header/Footer"
+msgstr "Nicht mit Berichtskopf/-fuß"
+
+#. eg94E
+#: inspection.src
+msgctxt "RID_STR_DEEPTRAVERSING"
+msgid "Deep traversing"
+msgstr "Unterberichte einbinden"
+
+#. DxgFC
+#: inspection.src
+msgctxt "RID_STR_PREEVALUATED"
+msgid "Pre evaluation"
+msgstr "Vorausberechnung"
+
+#. Zhqid
+#: inspection.src
+msgctxt "RID_STR_POSITIONX"
+msgid "Position X"
+msgstr "Position X"
+
+#. xvAJ8
+#: inspection.src
+msgctxt "RID_STR_POSITIONY"
+msgid "Position Y"
+msgstr "Position Y"
+
+#. 7CmQE
+#: inspection.src
+msgctxt "RID_STR_WIDTH"
+msgid "Width"
+msgstr "Breite"
+
+#. GkcPB
+#: inspection.src
+msgctxt "RID_STR_HEIGHT"
+msgid "Height"
+msgstr "Höhe"
+
+#. nBghq
+#: inspection.src
+msgctxt "RID_STR_INITIALFORMULA"
+msgid "Initial value"
+msgstr "Anfangswert"
+
+#. zhBwj
+#: inspection.src
+msgctxt "RID_STR_PRESERVEIRI"
+msgid "Preserve as Link"
+msgstr "Als Verknüpfung vorbereiten"
+
+#. 8F4y9
+#: inspection.src
+msgctxt "RID_STR_FORMULA"
+msgid "Formula"
+msgstr "Formel"
+
+#. t22cv
+#: inspection.src
+msgctxt "RID_STR_DATAFIELD"
+msgid "Data field"
+msgstr "Datenfeld"
+
+#. A22EF
+#: inspection.src
+msgctxt "RID_STR_FONT"
+msgid "Font"
+msgstr "Schrift"
+
+#. AAcyy
+#: inspection.src
+msgctxt "RID_STR_BACKCOLOR"
+msgid "Background color"
+msgstr "Hintergrundfarbe"
+
+#. WGAAf
+#: inspection.src
+msgctxt "RID_STR_BACKTRANSPARENT"
+msgid "Background Transparent"
+msgstr "Hintergrund transparent"
+
+#. AxENf
+#: inspection.src
+msgctxt "RID_STR_CONTROLBACKGROUNDTRANSPARENT"
+msgid "Background Transparent"
+msgstr "Hintergrund transparent"
+
+#. aeQBV
+#: inspection.src
+msgctxt "RID_STR_OVERLAP_OTHER_CONTROL"
+msgid "This operation is not allowed. The control overlaps with another one."
+msgstr ""
+"Dieser Vorgang ist nicht zulässig. Das Element überlagert ein anderes."
+
+#. N7AAg
+#: inspection.src
+msgctxt "RID_STR_ILLEGAL_POSITION"
+msgid "This position can not be set. It is invalid."
+msgstr "Diese Position kann nicht verwendet werden. Sie ist ungültig."
+
+#. R4v2R
+#: inspection.src
+msgctxt "RID_STR_SCOPE_GROUP"
+msgid "Group: %1"
+msgstr "Gruppe: %1"
+
+#. mnJ35
+#: inspection.src
+msgctxt "RID_STR_FORMULALIST"
+msgid "Function"
+msgstr "Funktion"
+
+#. pMDy2
+#: inspection.src
+msgctxt "RID_STR_SCOPE"
+msgid "Scope"
+msgstr "Geltungsbereich"
+
+#. ia2WH
+#: inspection.src
+msgctxt "RID_STR_TYPE"
+msgid "Data Field Type"
+msgstr "Datenfeld-Typ"
+
+#. ZC2oS
+#: inspection.src
+msgctxt "RID_STR_TYPE_CONST"
+msgid "Field or Formula"
+msgstr "Feld oder Formel"
+
+#. gU579
+#: inspection.src
+msgctxt "RID_STR_TYPE_CONST"
+msgid "Function"
+msgstr "Funktion"
+
+#. BG2gK
+#: inspection.src
+msgctxt "RID_STR_TYPE_CONST"
+msgid "Counter"
+msgstr "Zähler"
+
+#. kGCKF
+#: inspection.src
+msgctxt "RID_STR_TYPE_CONST"
+msgid "User defined Function"
+msgstr "Benutzerdefinierte Funktion"
+
+#. zM78b
+#: inspection.src
+msgctxt "RID_STR_MASTERFIELDS"
+msgid "Link master fields"
+msgstr "Hauptfelder verknüpfen"
+
+#. 5Kkka
+#: inspection.src
+msgctxt "RID_STR_DETAILFIELDS"
+msgid "Link slave fields"
+msgstr "Abhängige Felder verknüpfen"
+
+#. uxHZb
+#: inspection.src
+msgctxt "RID_STR_EXPLANATION"
+msgid ""
+"Charts can be used to display detailed data about the current record of the "
+"report. To do this, you can specify which columns in the chart match which "
+"columns in the report."
+msgstr ""
+"Diagramme können verwendet werden um detaillierte Daten das aktuellen "
+"Datensatzes anzuzeigen. Dazu können Sie angeben, welche Spalten des "
+"Diagramms welchen Spalten des Berichts entsprechen."
+
+#. UX3NQ
+#: inspection.src
+msgctxt "RID_STR_DETAILLABEL"
+msgid "Chart"
+msgstr "Diagramm"
+
+#. TbV7G
+#: inspection.src
+msgctxt "RID_STR_MASTERLABEL"
+msgid "Report"
+msgstr "Bericht"
+
+#. h8xm6
+#: inspection.src
+msgctxt "RID_STR_PREVIEW_COUNT"
+msgid "Preview Row(s)"
+msgstr "Vorschau für Zeile(n)"
+
+#. keLPS
+#: inspection.src
+msgctxt "RID_STR_AREA"
+msgid "Area"
+msgstr "Bereich"
+
+#. AGr73
+#: inspection.src
+msgctxt "RID_STR_MIMETYPE"
+msgid "Report Output Format"
+msgstr "Ausgabeformat des Berichts"
+
+#. c8N5w
+#: inspection.src
+msgctxt "RID_STR_VERTICALALIGN"
+msgid "Vert. Alignment"
+msgstr "Vertikale Ausrichtung"
+
+#. k2yjS
+#: inspection.src
+msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
+msgid "Top"
+msgstr "Oben"
+
+#. VuRdH
+#: inspection.src
+msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
+msgid "Middle"
+msgstr "Mitte"
+
+#. 9LAvS
+#: inspection.src
+msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
+msgid "Bottom"
+msgstr "Unten"
+
+#. Nm4Tr
+#: inspection.src
+msgctxt "RID_STR_PARAADJUST"
+msgid "Horz. Alignment"
+msgstr "Horizontale Ausrichtung"
+
+#. fTFRa
+#: inspection.src
+msgctxt "RID_STR_PARAADJUST_CONST"
+msgid "Left"
+msgstr "Links"
+
+#. 5nFGk
+#: inspection.src
+msgctxt "RID_STR_PARAADJUST_CONST"
+msgid "Right"
+msgstr "Rechts"
+
+#. Cvi3X
+#: inspection.src
+msgctxt "RID_STR_PARAADJUST_CONST"
+msgid "Block"
+msgstr "Blocksatz"
+
+#. zsB3C
+#: inspection.src
+msgctxt "RID_STR_PARAADJUST_CONST"
+msgid "Center"
+msgstr "Zentriert"
+
+#. BkLfC
+#: inspection.src
+msgctxt "RID_STR_F_COUNTER"
+msgid "Counter"
+msgstr "Zähler"
+
+#. kAfz6
+#: inspection.src
+msgctxt "RID_STR_F_ACCUMULATION"
+msgid "Accumulation"
+msgstr "Summe"
+
+#. D38SS
+#: inspection.src
+msgctxt "RID_STR_F_MINIMUM"
+msgid "Minimum"
+msgstr "Minimum"
+
+#. EyGC5
+#: inspection.src
+msgctxt "RID_STR_F_MAXIMUM"
+msgid "Maximum"
+msgstr "Maximum"
+
+#. TsJeZ
+#: CondFormat.src
+msgctxt "STR_NUMBERED_CONDITION"
+msgid "Condition $number$"
+msgstr "Bedingung $number$"
+
+#. tpRys
+#: GroupsSorting.src
+msgctxt "STR_RPT_EXPRESSION"
+msgid "Field/Expression"
+msgstr "Feld/Ausdruck"
+
+#. zcTFT
+#: GroupsSorting.src
+msgctxt "STR_RPT_PREFIXCHARS"
+msgid "Prefix Characters"
+msgstr "Anfangsbuchstaben"
+
+#. AGCRW
+#: GroupsSorting.src
+msgctxt "STR_RPT_YEAR"
+msgid "Year"
+msgstr "Jahr"
+
+#. fs5o2
+#: GroupsSorting.src
+msgctxt "STR_RPT_QUARTER"
+msgid "Quarter"
+msgstr "Quartal"
+
+#. AZuzT
+#: GroupsSorting.src
+msgctxt "STR_RPT_MONTH"
+msgid "Month"
+msgstr "Monat"
+
+#. ogzvv
+#: GroupsSorting.src
+msgctxt "STR_RPT_WEEK"
+msgid "Week"
+msgstr "Woche"
+
+#. RGT5s
+#: GroupsSorting.src
+msgctxt "STR_RPT_DAY"
+msgid "Day"
+msgstr "Tag"
+
+#. gHUUp
+#: GroupsSorting.src
+msgctxt "STR_RPT_HOUR"
+msgid "Hour"
+msgstr "Stunde"
+
+#. TEKsE
+#: GroupsSorting.src
+msgctxt "STR_RPT_MINUTE"
+msgid "Minute"
+msgstr "Minute"
+
+#. dJxDM
+#: GroupsSorting.src
+msgctxt "STR_RPT_INTERVAL"
+msgid "Interval"
+msgstr "Intervall"
+
+#. imASi
+#: GroupsSorting.src
+msgctxt "STR_RPT_HELP_FIELD"
+msgid "Select a field or type an expression to sort or group on."
+msgstr ""
+"Wählen Sie ein Feld aus oder geben Sie einen Ausdruck ein, nach dem sortiert"
+" oder gruppiert werden soll."
+
+#. c5noL
+#: GroupsSorting.src
+msgctxt "STR_RPT_HELP_HEADER"
+msgid "Display a header for this group?"
+msgstr "Gruppenkopf für diese Gruppe anzeigen?"
+
+#. 2eKET
+#: GroupsSorting.src
+msgctxt "STR_RPT_HELP_FOOTER"
+msgid "Display a footer for this group?"
+msgstr "Gruppenfuß für diese Gruppe anzeigen?"
+
+#. DNABi
+#: GroupsSorting.src
+msgctxt "STR_RPT_HELP_GROUPON"
+msgid "Select the value or range of values that starts a new group."
+msgstr ""
+"Wählen Sie einen Wert oder Wertebereich aus, der den Beginn einer neuen "
+"Gruppe bestimmt."
+
+#. Rqnf4
+#: GroupsSorting.src
+msgctxt "STR_RPT_HELP_INTERVAL"
+msgid "Interval or number of characters to group on."
+msgstr "Intervall oder Anzahl von Zeichen, nach denen gruppiert wird."
+
+#. Bd8BB
+#: GroupsSorting.src
+msgctxt "STR_RPT_HELP_KEEP"
+msgid "Keep group together on one page?"
+msgstr "Gruppe auf einer Seite zusammenhalten?"
+
+#. 2FHLD
+#: GroupsSorting.src
+msgctxt "STR_RPT_HELP_SORT"
+msgid ""
+"Select ascending or descending sort order. Ascending means from A to Z or 0 "
+"to 9"
+msgstr ""
+"Wählen Sie aufsteigende oder absteigende Sortierung aus. Aufsteigend "
+"bedeuted A bis Z bzw. 0 bis 9."
+
+#. mhBS2
+#: Navigator.src
+msgctxt "RID_STR_FUNCTIONS"
+msgid "Functions"
+msgstr "Funktionen"
+
+#. bfw6P
+#: Navigator.src
+msgctxt "RID_STR_GROUPS"
+msgid "Groups"
+msgstr "Gruppen"
+
+#. SwBtX
+#: PageNumber.src
+msgctxt "STR_RPT_PN_PAGE"
+msgid "\"Page \" & #PAGENUMBER#"
+msgstr "\"Seite \" & #PAGENUMBER#"
+
+#. 3GWzf
+#: PageNumber.src
+msgctxt "STR_RPT_PN_PAGE_OF"
+msgid " & \" of \" & #PAGECOUNT#"
+msgstr " & \" von \" & #PAGECOUNT#"
+
+#. vU6ev
+#: backgrounddialog.ui
+msgctxt "backgrounddialog|BackgroundDialog"
+msgid "Section Setup"
+msgstr "Bereichseinstellungen"
+
+#. WCd2u
+#: backgrounddialog.ui
+msgctxt "backgrounddialog|background"
+msgid "Background"
+msgstr "Hintergrund"
+
+#. nvkDC
+#: chardialog.ui
+msgctxt "chardialog|CharDialog"
+msgid "Character Settings"
+msgstr "Zeicheneinstellungen"
+
+#. v55EG
+#: chardialog.ui
+msgctxt "chardialog|font"
+msgid "Font"
+msgstr "Schrift"
+
+#. TnnrC
+#: chardialog.ui
+msgctxt "chardialog|fonteffects"
+msgid "Font Effects"
+msgstr "Schrifteffekte"
+
+#. nvprJ
+#: chardialog.ui
+msgctxt "chardialog|position"
+msgid "Position"
+msgstr "Position"
+
+#. LeDGQ
+#: chardialog.ui
+msgctxt "chardialog|asianlayout"
+msgid "Asian Layout"
+msgstr "Asiatisches Layout"
+
+#. ramCG
+#: chardialog.ui
+msgctxt "chardialog|background"
+msgid "Highlighting"
+msgstr "Hervorhebung"
+
+#. g9KPD
+#: chardialog.ui
+msgctxt "chardialog|alignment"
+msgid "Alignment"
+msgstr "Ausrichtung"
+
+#. 62SER
+#: condformatdialog.ui
+msgctxt "condformatdialog|CondFormat"
+msgid "Conditional Formatting"
+msgstr "Bedingte Formatierung"
+
+#. 4WAsE
+#: conditionwin.ui
+msgctxt "conditionwin|typeCombobox"
+msgid "Field Value Is"
+msgstr "Feldwert ist"
+
+#. XswwG
+#: conditionwin.ui
+msgctxt "conditionwin|typeCombobox"
+msgid "Expression Is"
+msgstr "Ausdruck ist"
+
+#. tLz9p
+#: conditionwin.ui
+msgctxt "conditionwin|opCombobox"
+msgid "between"
+msgstr "zwischen"
+
+#. QGFtw
+#: conditionwin.ui
+msgctxt "conditionwin|opCombobox"
+msgid "not between"
+msgstr "nicht zwischen"
+
+#. KCvfG
+#: conditionwin.ui
+msgctxt "conditionwin|opCombobox"
+msgid "equal to"
+msgstr "gleich"
+
+#. XBk96
+#: conditionwin.ui
+msgctxt "conditionwin|opCombobox"
+msgid "not equal to"
+msgstr "ungleich"
+
+#. A8PMD
+#: conditionwin.ui
+msgctxt "conditionwin|opCombobox"
+msgid "greater than"
+msgstr "größer als"
+
+#. TxLHH
+#: conditionwin.ui
+msgctxt "conditionwin|opCombobox"
+msgid "less than"
+msgstr "kleiner als"
+
+#. pPq6D
+#: conditionwin.ui
+msgctxt "conditionwin|opCombobox"
+msgid "greater than or equal to"
+msgstr "größer oder gleich"
+
+#. a6U8p
+#: conditionwin.ui
+msgctxt "conditionwin|opCombobox"
+msgid "less than or equal to"
+msgstr "kleiner oder gleich"
+
+#. oyAfN
+#: conditionwin.ui
+msgctxt "conditionwin|lhsButton"
+msgid "..."
+msgstr "..."
+
+#. RpKdu
+#: conditionwin.ui
+msgctxt "conditionwin|andLabel"
+msgid "and"
+msgstr "und"
+
+#. RGmoC
+#: conditionwin.ui
+msgctxt "conditionwin|rhsButton"
+msgid "..."
+msgstr "..."
+
+#. aHp52
+#: conditionwin.ui
+msgctxt "conditionwin|ToolBoxItem1"
+msgid "Bold"
+msgstr "Fett"
+
+#. xWJCf
+#: conditionwin.ui
+msgctxt "conditionwin|ToolBoxItem2"
+msgid "Italic"
+msgstr "Kursiv"
+
+#. n9Rga
+#: conditionwin.ui
+msgctxt "conditionwin|ToolBoxItem3"
+msgid "Underline"
+msgstr "Unterstrichen"
+
+#. XeLfz
+#: conditionwin.ui
+msgctxt "conditionwin|ToolBoxItem4"
+msgid "Background Color"
+msgstr "Hintergrundfarbe"
+
+#. bF2Nt
+#: conditionwin.ui
+msgctxt "conditionwin|ToolBoxItem5"
+msgid "Font Color"
+msgstr "Schriftfarbe"
+
+#. Cr7CD
+#: conditionwin.ui
+msgctxt "conditionwin|ToolBoxItem6"
+msgid "Character Formatting"
+msgstr "Zeichenformatierung"
+
+#. PSCFe
+#: conditionwin.ui
+msgctxt "conditionwin|removeButton"
+msgid "-"
+msgstr "-"
+
+#. bpiWB
+#: conditionwin.ui
+msgctxt "conditionwin|addButton"
+msgid "+"
+msgstr "+"
+
+#. EDzgm
+#: datetimedialog.ui
+msgctxt "datetimedialog|DateTimeDialog"
+msgid "Date and Time"
+msgstr "Datum und Uhrzeit"
+
+#. XAGJR
+#: datetimedialog.ui
+msgctxt "datetimedialog|date"
+msgid "_Include Date"
+msgstr "_Datum einfügen"
+
+#. rtFMB
+#: datetimedialog.ui
+msgctxt "datetimedialog|datelistbox_label"
+msgid "_Format:"
+msgstr "_Format:"
+
+#. DRAAK
+#: datetimedialog.ui
+msgctxt "datetimedialog|time"
+msgid "Include _Time"
+msgstr "Z_eit einfügen"
+
+#. jWoqY
+#: datetimedialog.ui
+msgctxt "datetimedialog|timelistbox_label"
+msgid "Fo_rmat:"
+msgstr "Fo_rmat:"
+
+#. Kf2vH
+#: floatingfield.ui
+msgctxt "floatingfield|FloatingField"
+msgid "Sorting and Grouping"
+msgstr "Sortierung und Gruppierung"
+
+#. qqmgv
+#: floatingfield.ui
+msgctxt "floatingfield|up"
+msgid "Sort Ascending"
+msgstr "Aufsteigend sortieren"
+
+#. BRZT9
+#: floatingfield.ui
+msgctxt "floatingfield|down"
+msgid "Sort Descending"
+msgstr "Absteigend sortieren"
+
+#. 8eQMV
+#: floatingfield.ui
+msgctxt "floatingfield|delete"
+msgid "Remove sorting"
+msgstr "Sortierung entfernen"
+
+#. cC8Ep
+#: floatingfield.ui
+msgctxt "floatingfield|insert"
+msgid "Insert"
+msgstr "Einfügen"
+
+#. AjmhK
+#: floatingfield.ui
+msgctxt "floatingfield|helptext"
+msgid ""
+"Highlight the fields to insert into the selected section of the template, "
+"then click Insert or press Enter."
+msgstr ""
+"Wählen Sie die Felder, die in den ausgewählten Bereich der Vorlage eingefügt"
+" werden sollen, und klicken Sie dann auf Einfügen oder drücken Sie die "
+"Eingabetaste."
+
+#. DCm75
+#: floatingnavigator.ui
+msgctxt "floatingnavigator|FloatingNavigator"
+msgid "Report navigator"
+msgstr "Bericht-Navigator"
+
+#. J7Adn
+#: floatingsort.ui
+msgctxt "floatingsort|FloatingSort"
+msgid "Sorting and Grouping"
+msgstr "Sortierung und Gruppierung"
+
+#. LRhtG
+#: floatingsort.ui
+msgctxt "floatingsort|label5"
+msgid "Group actions"
+msgstr "Gruppenaktionen"
+
+#. p6yrj
+#: floatingsort.ui
+msgctxt "floatingsort|up"
+msgid "Move up"
+msgstr "Nach oben verschieben"
+
+#. g5fDX
+#: floatingsort.ui
+msgctxt "floatingsort|down"
+msgid "Move down"
+msgstr "Nach unten verschieben"
+
+#. 8DZyc
+#: floatingsort.ui
+msgctxt "floatingsort|delete"
+msgid "Delete"
+msgstr "Löschen"
+
+#. Bwg2f
+#: floatingsort.ui
+msgctxt "floatingsort|label1"
+msgid "Groups"
+msgstr "Gruppen"
+
+#. GwcRE
+#: floatingsort.ui
+msgctxt "floatingsort|label6"
+msgid "Sorting"
+msgstr "Sortierung"
+
+#. CJ99e
+#: floatingsort.ui
+msgctxt "floatingsort|label7"
+msgid "Group Header"
+msgstr "Gruppenkopf"
+
+#. hwKPG
+#: floatingsort.ui
+msgctxt "floatingsort|label8"
+msgid "Group Footer"
+msgstr "Gruppenfuß"
+
+#. GWWsG
+#: floatingsort.ui
+msgctxt "floatingsort|label9"
+msgid "Group On"
+msgstr "Gruppieren nach"
+
+#. uqrrE
+#: floatingsort.ui
+msgctxt "floatingsort|label10"
+msgid "Group Interval"
+msgstr "Gruppenintervall"
+
+#. iFmvA
+#: floatingsort.ui
+msgctxt "floatingsort|label11"
+msgid "Keep Together"
+msgstr "Zusammenhalten"
+
+#. tQbGB
+#: floatingsort.ui
+msgctxt "floatingsort|sorting"
+msgid "Ascending"
+msgstr "Aufsteigend"
+
+#. QHkHZ
+#: floatingsort.ui
+msgctxt "floatingsort|sorting"
+msgid "Descending"
+msgstr "Absteigend"
+
+#. LsRSa
+#: floatingsort.ui
+msgctxt "floatingsort|header"
+msgid "Present"
+msgstr "Vorhanden"
+
+#. vnGGe
+#: floatingsort.ui
+msgctxt "floatingsort|header"
+msgid "Not present"
+msgstr "Nicht vorhanden"
+
+#. xUAEz
+#: floatingsort.ui
+msgctxt "floatingsort|keep"
+msgid "No"
+msgstr "Keines"
+
+#. mdUnC
+#: floatingsort.ui
+msgctxt "floatingsort|keep"
+msgid "Whole Group"
+msgstr "Gesamte Gruppe"
+
+#. uCpDA
+#: floatingsort.ui
+msgctxt "floatingsort|keep"
+msgid "With First Detail"
+msgstr "Mit erstem Detail"
+
+#. A9ESx
+#: floatingsort.ui
+msgctxt "floatingsort|footer"
+msgid "Present"
+msgstr "Vorhanden"
+
+#. a5oHV
+#: floatingsort.ui
+msgctxt "floatingsort|footer"
+msgid "Not present"
+msgstr "Nicht vorhanden"
+
+#. MYqZY
+#: floatingsort.ui
+msgctxt "floatingsort|group"
+msgid "Each Value"
+msgstr "Jeder Wert"
+
+#. Aey2X
+#: floatingsort.ui
+msgctxt "floatingsort|label2"
+msgid "Properties"
+msgstr "Eigenschaften"
+
+#. K86y3
+#: floatingsort.ui
+msgctxt "floatingsort|label3"
+msgid "Help"
+msgstr "Hilfe"
+
+#. R66EH
+#: groupsortmenu.ui
+msgctxt "groupsortmenu|delete"
+msgid "_Delete"
+msgstr "_Löschen"
+
+#. qYJKV
+#: navigatormenu.ui
+msgctxt "navigatormenu|sorting"
+msgid "Sorting and Grouping..."
+msgstr "Sortierung und Gruppierung..."
+
+#. Sj8Wi
+#: navigatormenu.ui
+msgctxt "navigatormenu|page"
+msgid "Page Header/Footer..."
+msgstr "Seitenkopf/-fuß..."
+
+#. dCNEo
+#: navigatormenu.ui
+msgctxt "navigatormenu|report"
+msgid "Report Header/Footer..."
+msgstr "Berichtskopf/-fuß"
+
+#. tDRkM
+#: navigatormenu.ui
+msgctxt "navigatormenu|function"
+msgid "New Function"
+msgstr "Neue Funktion"
+
+#. iunNU
+#: navigatormenu.ui
+msgctxt "navigatormenu|properties"
+msgid "Properties..."
+msgstr "Einstellungen..."
+
+#. b84af
+#: navigatormenu.ui
+msgctxt "navigatormenu|delete"
+msgid "_Delete"
+msgstr "_Löschen"
+
+#. 7yvyd
+#: pagedialog.ui
+msgctxt "pagedialog|PageDialog"
+msgid "Page Setup"
+msgstr "Seiteneinstellungen"
+
+#. C2GxE
+#: pagedialog.ui
+msgctxt "pagedialog|page"
+msgid "Page"
+msgstr "Seite"
+
+#. DNNCb
+#: pagedialog.ui
+msgctxt "pagedialog|background"
+msgid "Background"
+msgstr "Hintergrund"
+
+#. kKtvD
+#: pagenumberdialog.ui
+msgctxt "pagenumberdialog|PageNumberDialog"
+msgid "Page Numbers"
+msgstr "Seitennummern"
+
+#. wt9iJ
+#: pagenumberdialog.ui
+msgctxt "pagenumberdialog|pagen"
+msgid "_Page N"
+msgstr "_Seite N"
+
+#. MpNXo
+#: pagenumberdialog.ui
+msgctxt "pagenumberdialog|pagenofm"
+msgid "Page _N of M"
+msgstr "Seite _N von M"
+
+#. 2wFXb
+#: pagenumberdialog.ui
+msgctxt "pagenumberdialog|label1"
+msgid "Format"
+msgstr "Format"
+
+#. wMBh7
+#: pagenumberdialog.ui
+msgctxt "pagenumberdialog|toppage"
+msgid "_Top of Page (Header)"
+msgstr "O_ben (Seitenkopf)"
+
+#. Bt5Xv
+#: pagenumberdialog.ui
+msgctxt "pagenumberdialog|bottompage"
+msgid "_Bottom of Page (Footer)"
+msgstr "_Unten (Seitenfuß)"
+
+#. eLQVW
+#: pagenumberdialog.ui
+msgctxt "pagenumberdialog|label2"
+msgid "Position"
+msgstr "Position"
+
+#. LMkGF
+#: pagenumberdialog.ui
+msgctxt "pagenumberdialog|alignment"
+msgid "Left"
+msgstr "Links"
+
+#. s4C48
+#: pagenumberdialog.ui
+msgctxt "pagenumberdialog|alignment"
+msgid "Center"
+msgstr "Mitte"
+
+#. X9UuN
+#: pagenumberdialog.ui
+msgctxt "pagenumberdialog|alignment"
+msgid "Right"
+msgstr "Rechts"
+
+#. NRhEj
+#: pagenumberdialog.ui
+msgctxt "pagenumberdialog|alignment_label"
+msgid "_Alignment:"
+msgstr "A_usrichtung:"
+
+#. yWyC7
+#: pagenumberdialog.ui
+msgctxt "pagenumberdialog|shownumberonfirstpage"
+msgid "Show Number on First Page"
+msgstr "Nummer auf erster Seite anzeigen"
+
+#. B7qwT
+#: pagenumberdialog.ui
+msgctxt "pagenumberdialog|label3"
+msgid "General"
+msgstr "Allgemein"
diff --git a/source/de/reportdesign/source/core/resource.po b/source/de/reportdesign/source/core/resource.po
deleted file mode 100644
index 526aba5c407..00000000000
--- a/source/de/reportdesign/source/core/resource.po
+++ /dev/null
@@ -1,137 +0,0 @@
-#. extracted from reportdesign/source/core/resource
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2013-05-31 22:39+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1370039976.000000\n"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_DETAIL\n"
-"string.text"
-msgid "Detail"
-msgstr "Detail"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_PAGE_HEADER\n"
-"string.text"
-msgid "Page Header"
-msgstr "Seitenkopf"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_PAGE_FOOTER\n"
-"string.text"
-msgid "Page Footer"
-msgstr "Seitenfuß"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_GROUP_HEADER\n"
-"string.text"
-msgid "Group Header"
-msgstr "Gruppenkopf"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_GROUP_FOOTER\n"
-"string.text"
-msgid "Group Footer"
-msgstr "Gruppenfuß"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_REPORT_HEADER\n"
-"string.text"
-msgid "Report Header"
-msgstr "Berichtskopf"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_REPORT_FOOTER\n"
-"string.text"
-msgid "Report Footer"
-msgstr "Berichtsfuß"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_ERROR_WRONG_ARGUMENT\n"
-"string.text"
-msgid "You tried to set an illegal argument. Please have a look at '#1' for valid arguments."
-msgstr "Ein Argument ist ungültig. Gültige Argumente finden Sie unter '#1'."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_ARGUMENT_IS_NULL\n"
-"string.text"
-msgid "The element is invalid."
-msgstr "Das Element ist ungültig."
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_FIXEDTEXT\n"
-"string.text"
-msgid "Label field"
-msgstr "Beschriftungsfeld"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_FORMATTEDFIELD\n"
-"string.text"
-msgid "Formatted field"
-msgstr "Formatiertes Feld"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_IMAGECONTROL\n"
-"string.text"
-msgid "Image control"
-msgstr "Grafisches Steuerelement"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_REPORT\n"
-"string.text"
-msgid "Report"
-msgstr "Bericht"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_SHAPE\n"
-"string.text"
-msgid "Shape"
-msgstr "Zeichnung"
-
-#: strings.src
-msgctxt ""
-"strings.src\n"
-"RID_STR_FIXEDLINE\n"
-"string.text"
-msgid "Fixed line"
-msgstr "Geschützte Linie"
diff --git a/source/de/reportdesign/source/ui/dlg.po b/source/de/reportdesign/source/ui/dlg.po
deleted file mode 100644
index 18e45a2a8cf..00000000000
--- a/source/de/reportdesign/source/ui/dlg.po
+++ /dev/null
@@ -1,195 +0,0 @@
-#. extracted from reportdesign/source/ui/dlg
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2016-03-13 10:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457865400.000000\n"
-
-#: CondFormat.src
-msgctxt ""
-"CondFormat.src\n"
-"STR_NUMBERED_CONDITION\n"
-"string.text"
-msgid "Condition $number$"
-msgstr "Bedingung $number$"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_EXPRESSION\n"
-"string.text"
-msgid "Field/Expression"
-msgstr "Feld/Ausdruck"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_PREFIXCHARS\n"
-"string.text"
-msgid "Prefix Characters"
-msgstr "Anfangsbuchstaben"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_YEAR\n"
-"string.text"
-msgid "Year"
-msgstr "Jahr"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_QUARTER\n"
-"string.text"
-msgid "Quarter"
-msgstr "Quartal"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_MONTH\n"
-"string.text"
-msgid "Month"
-msgstr "Monat"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_WEEK\n"
-"string.text"
-msgid "Week"
-msgstr "Woche"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_DAY\n"
-"string.text"
-msgid "Day"
-msgstr "Tag"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_HOUR\n"
-"string.text"
-msgid "Hour"
-msgstr "Stunde"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_MINUTE\n"
-"string.text"
-msgid "Minute"
-msgstr "Minute"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_INTERVAL\n"
-"string.text"
-msgid "Interval"
-msgstr "Intervall"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_HELP_FIELD\n"
-"string.text"
-msgid "Select a field or type an expression to sort or group on."
-msgstr "Wählen Sie ein Feld aus oder geben Sie einen Ausdruck ein, nach dem sortiert oder gruppiert werden soll."
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_HELP_HEADER\n"
-"string.text"
-msgid "Display a header for this group?"
-msgstr "Gruppenkopf für diese Gruppe anzeigen?"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_HELP_FOOTER\n"
-"string.text"
-msgid "Display a footer for this group?"
-msgstr "Gruppenfuß für diese Gruppe anzeigen?"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_HELP_GROUPON\n"
-"string.text"
-msgid "Select the value or range of values that starts a new group."
-msgstr "Wählen Sie einen Wert oder Wertebereich aus, der den Beginn einer neuen Gruppe bestimmt."
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_HELP_INTERVAL\n"
-"string.text"
-msgid "Interval or number of characters to group on."
-msgstr "Intervall oder Anzahl von Zeichen, nach denen gruppiert wird."
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_HELP_KEEP\n"
-"string.text"
-msgid "Keep group together on one page?"
-msgstr "Gruppe auf einer Seite zusammenhalten?"
-
-#: GroupsSorting.src
-msgctxt ""
-"GroupsSorting.src\n"
-"STR_RPT_HELP_SORT\n"
-"string.text"
-msgid "Select ascending or descending sort order. Ascending means from A to Z or 0 to 9"
-msgstr "Wählen Sie aufsteigende oder absteigende Sortierung aus. Aufsteigend bedeuted A bis Z bzw. 0 bis 9."
-
-#: Navigator.src
-msgctxt ""
-"Navigator.src\n"
-"RID_STR_FUNCTIONS\n"
-"string.text"
-msgid "Functions"
-msgstr "Funktionen"
-
-#: Navigator.src
-msgctxt ""
-"Navigator.src\n"
-"RID_STR_GROUPS\n"
-"string.text"
-msgid "Groups"
-msgstr "Gruppen"
-
-#. The space after the word is no error. #PAGENUMBER# is a replacement and & must not be translated as well as "
-#: PageNumber.src
-msgctxt ""
-"PageNumber.src\n"
-"STR_RPT_PN_PAGE\n"
-"string.text"
-msgid "\"Page \" & #PAGENUMBER#"
-msgstr "\"Seite \" & #PAGENUMBER#"
-
-#. The space before and after the word is no error. #PAGECOUNT# is a replacement and & must not be translated as well as "
-#: PageNumber.src
-msgctxt ""
-"PageNumber.src\n"
-"STR_RPT_PN_PAGE_OF\n"
-"string.text"
-msgid " & \" of \" & #PAGECOUNT#"
-msgstr " & \" von \" & #PAGECOUNT#"
diff --git a/source/de/reportdesign/source/ui/inspection.po b/source/de/reportdesign/source/ui/inspection.po
deleted file mode 100644
index 9ec7844134c..00000000000
--- a/source/de/reportdesign/source/ui/inspection.po
+++ /dev/null
@@ -1,702 +0,0 @@
-#. extracted from reportdesign/source/ui/inspection
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-18 05:25+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479446730.000000\n"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PROPPAGE_DEFAULT\n"
-"string.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PROPPAGE_DATA\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_BOOL\n"
-"No\n"
-"itemlist.text"
-msgid "No"
-msgstr "Nein"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_BOOL\n"
-"Yes\n"
-"itemlist.text"
-msgid "Yes"
-msgstr "Ja"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_FORCENEWPAGE\n"
-"string.text"
-msgid "Force New Page"
-msgstr "Seitenumbruch erzwingen"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_FORCENEWPAGE_CONST\n"
-"None\n"
-"itemlist.text"
-msgid "None"
-msgstr "Keine"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_FORCENEWPAGE_CONST\n"
-"Before Section\n"
-"itemlist.text"
-msgid "Before Section"
-msgstr "Vor Bereich"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_FORCENEWPAGE_CONST\n"
-"After Section\n"
-"itemlist.text"
-msgid "After Section"
-msgstr "Nach Bereich"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_FORCENEWPAGE_CONST\n"
-"Before & After Section\n"
-"itemlist.text"
-msgid "Before & After Section"
-msgstr "Vor & nach Bereich"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_NEWROWORCOL\n"
-"string.text"
-msgid "New Row Or Column"
-msgstr "Neue Zeile oder Spalte"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_KEEPTOGETHER\n"
-"string.text"
-msgid "Keep Together"
-msgstr "Zusammenhalten"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_KEEPTOGETHER_CONST\n"
-"No\n"
-"itemlist.text"
-msgid "No"
-msgstr "Nein"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_KEEPTOGETHER_CONST\n"
-"Whole Group\n"
-"itemlist.text"
-msgid "Whole Group"
-msgstr "Gesamte Gruppe"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_KEEPTOGETHER_CONST\n"
-"With First Detail\n"
-"itemlist.text"
-msgid "With First Detail"
-msgstr "Mit erstem Detail"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_CANGROW\n"
-"string.text"
-msgid "Can Grow"
-msgstr "Kann größer werden"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_CANSHRINK\n"
-"string.text"
-msgid "Can Shrink"
-msgstr "Kann kleiner werden"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_REPEATSECTION\n"
-"string.text"
-msgid "Repeat Section"
-msgstr "Bereich wiederholen"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PRINTREPEATEDVALUES\n"
-"string.text"
-msgid "Print repeated values"
-msgstr "Wiederholende Werte anzeigen"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_CONDITIONALPRINTEXPRESSION\n"
-"string.text"
-msgid "Conditional Print Expression"
-msgstr "Ausdruck für bedingte Anzeige"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_STARTNEWCOLUMN\n"
-"string.text"
-msgid "Start new column"
-msgstr "Neue Spalte beginnen"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_STARTNEWPAGE\n"
-"string.text"
-msgid "Start new page"
-msgstr "Neue Seite beginnen"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_RESETPAGENUMBER\n"
-"string.text"
-msgid "Reset page number"
-msgstr "Seitennummer zurücksetzen"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_CHARTTYPE\n"
-"string.text"
-msgid "Chart type"
-msgstr "Diagrammtyp"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PRINTWHENGROUPCHANGE\n"
-"string.text"
-msgid "Print repeated value on group change"
-msgstr "Drucken des wiederholten Wertes nach einer Gruppenänderung"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_VISIBLE\n"
-"string.text"
-msgid "Visible"
-msgstr "Sichtbar"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_GROUPKEEPTOGETHER\n"
-"string.text"
-msgid "Group keep together"
-msgstr "Gruppe zusammenhalten"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_GROUPKEEPTOGETHER_CONST\n"
-"Per Page\n"
-"itemlist.text"
-msgid "Per Page"
-msgstr "Pro Seite"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_GROUPKEEPTOGETHER_CONST\n"
-"Per Column\n"
-"itemlist.text"
-msgid "Per Column"
-msgstr "Pro Spalte"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_SECTIONPAGEBREAK_CONST\n"
-"None\n"
-"itemlist.text"
-msgid "None"
-msgstr "Kein"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_SECTIONPAGEBREAK_CONST\n"
-"Section\n"
-"itemlist.text"
-msgid "Section"
-msgstr "Bereich"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_SECTIONPAGEBREAK_CONST\n"
-"Automatic\n"
-"itemlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PAGEHEADEROPTION\n"
-"string.text"
-msgid "Page header"
-msgstr "Seitenkopf"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PAGEFOOTEROPTION\n"
-"string.text"
-msgid "Page footer"
-msgstr "Seitenfuß"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_REPORTPRINTOPTION_CONST\n"
-"All Pages\n"
-"itemlist.text"
-msgid "All Pages"
-msgstr "Alle Seiten"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_REPORTPRINTOPTION_CONST\n"
-"Not With Report Header\n"
-"itemlist.text"
-msgid "Not With Report Header"
-msgstr "Nicht mit Berichtskopf"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_REPORTPRINTOPTION_CONST\n"
-"Not With Report Footer\n"
-"itemlist.text"
-msgid "Not With Report Footer"
-msgstr "Nicht mit Berichtsfuß"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_REPORTPRINTOPTION_CONST\n"
-"Not With Report Header/Footer\n"
-"itemlist.text"
-msgid "Not With Report Header/Footer"
-msgstr "Nicht mit Berichtskopf/-fuß"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_DEEPTRAVERSING\n"
-"string.text"
-msgid "Deep traversing"
-msgstr "Unterberichte einbinden"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PREEVALUATED\n"
-"string.text"
-msgid "Pre evaluation"
-msgstr "Vorausberechnung"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_POSITIONX\n"
-"string.text"
-msgid "Position X"
-msgstr "Position X"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_POSITIONY\n"
-"string.text"
-msgid "Position Y"
-msgstr "Position Y"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_WIDTH\n"
-"string.text"
-msgid "Width"
-msgstr "Breite"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_HEIGHT\n"
-"string.text"
-msgid "Height"
-msgstr "Höhe"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_INITIALFORMULA\n"
-"string.text"
-msgid "Initial value"
-msgstr "Anfangswert"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PRESERVEIRI\n"
-"string.text"
-msgid "Preserve as Link"
-msgstr "Als Verknüpfung vorbereiten"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_FORMULA\n"
-"string.text"
-msgid "Formula"
-msgstr "Formel"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_DATAFIELD\n"
-"string.text"
-msgid "Data field"
-msgstr "Datenfeld"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_FONT\n"
-"string.text"
-msgid "Font"
-msgstr "Schrift"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_BACKCOLOR\n"
-"string.text"
-msgid "Background color"
-msgstr "Hintergrundfarbe"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_BACKTRANSPARENT\n"
-"string.text"
-msgid "Background Transparent"
-msgstr "Hintergrund transparent"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_CONTROLBACKGROUNDTRANSPARENT\n"
-"string.text"
-msgid "Background Transparent"
-msgstr "Hintergrund transparent"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_OVERLAP_OTHER_CONTROL\n"
-"string.text"
-msgid "This operation is not allowed. The control overlaps with another one."
-msgstr "Dieser Vorgang ist nicht zulässig. Das Element überlagert ein anderes."
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_ILLEGAL_POSITION\n"
-"string.text"
-msgid "This position can not be set. It is invalid."
-msgstr "Diese Position kann nicht verwendet werden. Sie ist ungültig."
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_SCOPE_GROUP\n"
-"string.text"
-msgid "Group: %1"
-msgstr "Gruppe: %1"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_FORMULALIST\n"
-"string.text"
-msgid "Function"
-msgstr "Funktion"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_SCOPE\n"
-"string.text"
-msgid "Scope"
-msgstr "Geltungsbereich"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_TYPE\n"
-"string.text"
-msgid "Data Field Type"
-msgstr "Datenfeld-Typ"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_TYPE_CONST\n"
-"Field or Formula\n"
-"itemlist.text"
-msgid "Field or Formula"
-msgstr "Feld oder Formel"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_TYPE_CONST\n"
-"Function\n"
-"itemlist.text"
-msgid "Function"
-msgstr "Funktion"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_TYPE_CONST\n"
-"Counter\n"
-"itemlist.text"
-msgid "Counter"
-msgstr "Zähler"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_TYPE_CONST\n"
-"User defined Function\n"
-"itemlist.text"
-msgid "User defined Function"
-msgstr "Benutzerdefinierte Funktion"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_MASTERFIELDS\n"
-"string.text"
-msgid "Link master fields"
-msgstr "Hauptfelder verknüpfen"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_DETAILFIELDS\n"
-"string.text"
-msgid "Link slave fields"
-msgstr "Abhängige Felder verknüpfen"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_EXPLANATION\n"
-"string.text"
-msgid "Charts can be used to display detailed data about the current record of the report. To do this, you can specify which columns in the chart match which columns in the report."
-msgstr "Diagramme können verwendet werden um detaillierte Daten das aktuellen Datensatzes anzuzeigen. Dazu können Sie angeben, welche Spalten des Diagramms welchen Spalten des Berichts entsprechen."
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_DETAILLABEL\n"
-"string.text"
-msgid "Chart"
-msgstr "Diagramm"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_MASTERLABEL\n"
-"string.text"
-msgid "Report"
-msgstr "Bericht"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PREVIEW_COUNT\n"
-"string.text"
-msgid "Preview Row(s)"
-msgstr "Vorschau für Zeile(n)"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_AREA\n"
-"string.text"
-msgid "Area"
-msgstr "Bereich"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_MIMETYPE\n"
-"string.text"
-msgid "Report Output Format"
-msgstr "Ausgabeformat des Berichts"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_VERTICALALIGN\n"
-"string.text"
-msgid "Vert. Alignment"
-msgstr "Vertikale Ausrichtung"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_VERTICAL_ALIGN_CONST\n"
-"Top\n"
-"itemlist.text"
-msgid "Top"
-msgstr "Oben"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_VERTICAL_ALIGN_CONST\n"
-"Middle\n"
-"itemlist.text"
-msgid "Middle"
-msgstr "Mitte"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_VERTICAL_ALIGN_CONST\n"
-"Bottom\n"
-"itemlist.text"
-msgid "Bottom"
-msgstr "Unten"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PARAADJUST\n"
-"string.text"
-msgid "Horz. Alignment"
-msgstr "Horizontale Ausrichtung"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PARAADJUST_CONST\n"
-"Left\n"
-"itemlist.text"
-msgid "Left"
-msgstr "Links"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PARAADJUST_CONST\n"
-"Right\n"
-"itemlist.text"
-msgid "Right"
-msgstr "Rechts"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PARAADJUST_CONST\n"
-"Block\n"
-"itemlist.text"
-msgid "Block"
-msgstr "Blocksatz"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_PARAADJUST_CONST\n"
-"Center\n"
-"itemlist.text"
-msgid "Center"
-msgstr "Zentriert"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_F_COUNTER\n"
-"string.text"
-msgid "Counter"
-msgstr "Zähler"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_F_ACCUMULATION\n"
-"string.text"
-msgid "Accumulation"
-msgstr "Summe"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_F_MINIMUM\n"
-"string.text"
-msgid "Minimum"
-msgstr "Minimum"
-
-#: inspection.src
-msgctxt ""
-"inspection.src\n"
-"RID_STR_F_MAXIMUM\n"
-"string.text"
-msgid "Maximum"
-msgstr "Maximum"
diff --git a/source/de/reportdesign/source/ui/report.po b/source/de/reportdesign/source/ui/report.po
deleted file mode 100644
index 5f454c4fab4..00000000000
--- a/source/de/reportdesign/source/ui/report.po
+++ /dev/null
@@ -1,486 +0,0 @@
-#. extracted from reportdesign/source/ui/report
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-02-23 20:05+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1487880346.000000\n"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_BRWTITLE_PROPERTIES\n"
-"string.text"
-msgid "Properties: "
-msgstr "Eigenschaften: "
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_BRWTITLE_NO_PROPERTIES\n"
-"string.text"
-msgid "No Control marked"
-msgstr "Kein Steuerelement markiert"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_BRWTITLE_MULTISELECT\n"
-"string.text"
-msgid "Multiselection"
-msgstr "Mehrfachauswahl"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_PROPTITLE_IMAGECONTROL\n"
-"string.text"
-msgid "Image Control"
-msgstr "Grafisches Steuerelement"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_PROPTITLE_FIXEDTEXT\n"
-"string.text"
-msgid "Label field"
-msgstr "Beschriftungsfeld"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_PROPTITLE_FIXEDLINE\n"
-"string.text"
-msgid "Line"
-msgstr "Linie"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_PROPTITLE_FORMATTED\n"
-"string.text"
-msgid "Formatted Field"
-msgstr "Formatiertes Feld"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_PROPTITLE_SHAPE\n"
-"string.text"
-msgid "Shape"
-msgstr "Zeichnung"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_PROPTITLE_REPORT\n"
-"string.text"
-msgid "Report"
-msgstr "Bericht"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_PROPTITLE_SECTION\n"
-"string.text"
-msgid "Section"
-msgstr "Bereich"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_PROPTITLE_FUNCTION\n"
-"string.text"
-msgid "Function"
-msgstr "Funktion"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_PROPTITLE_GROUP\n"
-"string.text"
-msgid "Group"
-msgstr "Gruppe"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_CHANGEPOSITION\n"
-"string.text"
-msgid "Change Object"
-msgstr "Objekt ändern"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_MOVE_GROUP\n"
-"string.text"
-msgid "Move Group(s)"
-msgstr "Gruppe(n) verschieben"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_CONDITIONAL_FORMATTING\n"
-"string.text"
-msgid "Conditional Formatting"
-msgstr "Bedingte Formatierung"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_REMOVE_REPORTHEADERFOOTER\n"
-"string.text"
-msgid "Remove report header / report footer"
-msgstr "Berichtskopf/-fuß entfernen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_ADD_REPORTHEADERFOOTER\n"
-"string.text"
-msgid "Add report header / report footer"
-msgstr "Berichtskopf/-fuß hinzufügen"
-
-#. The # character is used for replacing
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_PROPERTY\n"
-"string.text"
-msgid "Change property '#'"
-msgstr "Eigenschaft '#' ändern"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_ADD_GROUP_HEADER\n"
-"string.text"
-msgid "Add group header "
-msgstr "Gruppenkopf hinzufügen "
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_REMOVE_GROUP_HEADER\n"
-"string.text"
-msgid "Remove group header "
-msgstr "Gruppenkopf entfernen "
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_ADD_GROUP_FOOTER\n"
-"string.text"
-msgid "Add group footer "
-msgstr "Gruppenfuß hinzufügen "
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_REMOVE_GROUP_FOOTER\n"
-"string.text"
-msgid "Remove group footer "
-msgstr "Gruppenfuß entfernen "
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_ADDFUNCTION\n"
-"string.text"
-msgid "Add function"
-msgstr "Funktion hinzufügen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"STR_RPT_LABEL\n"
-"string.text"
-msgid "~Report name"
-msgstr "~Name des Berichts"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_REMOVE_GROUP\n"
-"string.text"
-msgid "Delete Group"
-msgstr "Gruppe löschen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_APPEND_GROUP\n"
-"string.text"
-msgid "Add Group"
-msgstr "Gruppe hinzufügen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_REMOVE_SELECTION\n"
-"string.text"
-msgid "Delete Selection"
-msgstr "Auswahl löschen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_REMOVE_FUNCTION\n"
-"string.text"
-msgid "Delete Function"
-msgstr "Funktion löschen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_CHANGE_SIZE\n"
-"string.text"
-msgid "Change Size"
-msgstr "Größe ändern"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_PASTE\n"
-"string.text"
-msgid "Paste"
-msgstr "Einfügen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_INSERT_CONTROL\n"
-"string.text"
-msgid "Insert Control"
-msgstr "Steuerelement einfügen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_DELETE_CONTROL\n"
-"string.text"
-msgid "Delete Control"
-msgstr "Steuerelement löschen"
-
-#. Please try to avoid spaces in the name. It is used as a programmatic one.
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_GROUPHEADER\n"
-"string.text"
-msgid "GroupHeader"
-msgstr "Gruppenkopf"
-
-#. Please try to avoid spaces in the name. It is used as a programmatic one.
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_GROUPFOOTER\n"
-"string.text"
-msgid "GroupFooter"
-msgstr "Gruppenfuß"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_FIELDSELECTION\n"
-"string.text"
-msgid "Add field:"
-msgstr "Feld hinzufügen:"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_FILTER\n"
-"string.text"
-msgid "Filter"
-msgstr "Filter"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_ALIGNMENT\n"
-"string.text"
-msgid "Change Alignment"
-msgstr "Ausrichtung ändern"
-
-#. # will be replaced with a name.
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_HEADER\n"
-"string.text"
-msgid "# Header"
-msgstr "# Kopf"
-
-#. # will be replaced with a name.
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_FOOTER\n"
-"string.text"
-msgid "# Footer"
-msgstr "# Fuß"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_IMPORT_GRAPHIC\n"
-"string.text"
-msgid "Insert graphics"
-msgstr "Bild einfügen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_DELETE\n"
-"string.text"
-msgid "Delete"
-msgstr "~Löschen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_FUNCTION\n"
-"string.text"
-msgid "Function"
-msgstr "Funktion"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_COULD_NOT_CREATE_REPORT\n"
-"string.text"
-msgid "An error occurred while creating the report."
-msgstr "Beim Erstellen des Berichts trat ein Fehler auf."
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_CAUGHT_FOREIGN_EXCEPTION\n"
-"string.text"
-msgid "An exception of type $type$ was caught."
-msgstr "Eine Ausnahme vom Typ $type$ wurde entdeckt."
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_CHANGEFONT\n"
-"string.text"
-msgid "Change font"
-msgstr "Schrift ändern"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_CHANGEPAGE\n"
-"string.text"
-msgid "Change page attributes"
-msgstr "Seitenattribute ändern"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_PAGEHEADERFOOTER_INSERT\n"
-"string.text"
-msgid "Insert Page Header/Footer"
-msgstr "Seitenkopf/-fuß einfügen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_PAGEHEADERFOOTER_DELETE\n"
-"string.text"
-msgid "Delete Page Header/Footer"
-msgstr "~Seitenkopf/-fuß löschen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_REPORTHEADERFOOTER_INSERT\n"
-"string.text"
-msgid "Insert Report Header/Footer"
-msgstr "~Berichtskopf/-fuß einfügen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_REPORTHEADERFOOTER_DELETE\n"
-"string.text"
-msgid "Delete Report Header/Footer"
-msgstr "Berichtskopf/-fuß löschen"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_ERR_NO_COMMAND\n"
-"string.text"
-msgid "The report can not be executed unless it is bound to content."
-msgstr "Der Bericht kann nicht ausgeführt werden, solange er mit keinen Inhalten verbunden ist."
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_ERR_NO_OBJECTS\n"
-"string.text"
-msgid "The report can not be executed unless at least one object has been inserted."
-msgstr "Der Bericht kann nicht ausgeführt werden, solang nicht mindestens ein Objekt eingefügt wurde."
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_UNDO_SHRINK\n"
-"string.text"
-msgid "Shrink Section"
-msgstr "Bereich verkleinern"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_DETAIL\n"
-"string.text"
-msgid "Detail"
-msgstr "Detail"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_PAGE_HEADER\n"
-"string.text"
-msgid "Page Header"
-msgstr "Seitenkopf"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_PAGE_FOOTER\n"
-"string.text"
-msgid "Page Footer"
-msgstr "Seitenfuß"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_REPORT_HEADER\n"
-"string.text"
-msgid "Report Header"
-msgstr "Berichtskopf"
-
-#: report.src
-msgctxt ""
-"report.src\n"
-"RID_STR_REPORT_FOOTER\n"
-"string.text"
-msgid "Report Footer"
-msgstr "Berichtsfuß"
diff --git a/source/de/reportdesign/uiconfig/dbreport/ui.po b/source/de/reportdesign/uiconfig/dbreport/ui.po
deleted file mode 100644
index f92351fb091..00000000000
--- a/source/de/reportdesign/uiconfig/dbreport/ui.po
+++ /dev/null
@@ -1,827 +0,0 @@
-#. extracted from reportdesign/uiconfig/dbreport/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-19 21:37+0200\n"
-"PO-Revision-Date: 2017-04-20 03:03+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492657416.000000\n"
-
-#: backgrounddialog.ui
-msgctxt ""
-"backgrounddialog.ui\n"
-"BackgroundDialog\n"
-"title\n"
-"string.text"
-msgid "Section Setup"
-msgstr "Bereichseinstellungen"
-
-#: backgrounddialog.ui
-msgctxt ""
-"backgrounddialog.ui\n"
-"background\n"
-"label\n"
-"string.text"
-msgid "Background"
-msgstr "Hintergrund"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"CharDialog\n"
-"title\n"
-"string.text"
-msgid "Character Settings"
-msgstr "Zeicheneinstellungen"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"font\n"
-"label\n"
-"string.text"
-msgid "Font"
-msgstr "Schrift"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"fonteffects\n"
-"label\n"
-"string.text"
-msgid "Font Effects"
-msgstr "Schrifteffekte"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"position\n"
-"label\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"asianlayout\n"
-"label\n"
-"string.text"
-msgid "Asian Layout"
-msgstr "Asiatisches Layout"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"background\n"
-"label\n"
-"string.text"
-msgid "Highlighting"
-msgstr "Hervorhebung"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"alignment\n"
-"label\n"
-"string.text"
-msgid "Alignment"
-msgstr "Ausrichtung"
-
-#: condformatdialog.ui
-msgctxt ""
-"condformatdialog.ui\n"
-"CondFormat\n"
-"title\n"
-"string.text"
-msgid "Conditional Formatting"
-msgstr "Bedingte Formatierung"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"typeCombobox\n"
-"0\n"
-"stringlist.text"
-msgid "Field Value Is"
-msgstr "Feldwert ist"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"typeCombobox\n"
-"1\n"
-"stringlist.text"
-msgid "Expression Is"
-msgstr "Ausdruck ist"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"opCombobox\n"
-"0\n"
-"stringlist.text"
-msgid "between"
-msgstr "zwischen"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"opCombobox\n"
-"1\n"
-"stringlist.text"
-msgid "not between"
-msgstr "nicht zwischen"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"opCombobox\n"
-"2\n"
-"stringlist.text"
-msgid "equal to"
-msgstr "gleich"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"opCombobox\n"
-"3\n"
-"stringlist.text"
-msgid "not equal to"
-msgstr "ungleich"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"opCombobox\n"
-"4\n"
-"stringlist.text"
-msgid "greater than"
-msgstr "größer als"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"opCombobox\n"
-"5\n"
-"stringlist.text"
-msgid "less than"
-msgstr "kleiner als"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"opCombobox\n"
-"6\n"
-"stringlist.text"
-msgid "greater than or equal to"
-msgstr "größer oder gleich"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"opCombobox\n"
-"7\n"
-"stringlist.text"
-msgid "less than or equal to"
-msgstr "kleiner oder gleich"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"lhsButton\n"
-"label\n"
-"string.text"
-msgid "..."
-msgstr "..."
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"andLabel\n"
-"label\n"
-"string.text"
-msgid "and"
-msgstr "und"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"rhsButton\n"
-"label\n"
-"string.text"
-msgid "..."
-msgstr "..."
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"ToolBoxItem1\n"
-"label\n"
-"string.text"
-msgid "Bold"
-msgstr "Fett"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"ToolBoxItem2\n"
-"label\n"
-"string.text"
-msgid "Italic"
-msgstr "Kursiv"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"ToolBoxItem3\n"
-"label\n"
-"string.text"
-msgid "Underline"
-msgstr "Unterstrichen"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"ToolBoxItem4\n"
-"label\n"
-"string.text"
-msgid "Background Color"
-msgstr "Hintergrundfarbe"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"ToolBoxItem5\n"
-"label\n"
-"string.text"
-msgid "Font Color"
-msgstr "Schriftfarbe"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"ToolBoxItem6\n"
-"label\n"
-"string.text"
-msgid "Character Formatting"
-msgstr "Zeichenformatierung"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"removeButton\n"
-"label\n"
-"string.text"
-msgid "-"
-msgstr "-"
-
-#: conditionwin.ui
-msgctxt ""
-"conditionwin.ui\n"
-"addButton\n"
-"label\n"
-"string.text"
-msgid "+"
-msgstr "+"
-
-#: datetimedialog.ui
-msgctxt ""
-"datetimedialog.ui\n"
-"DateTimeDialog\n"
-"title\n"
-"string.text"
-msgid "Date and Time"
-msgstr "Datum und Uhrzeit"
-
-#: datetimedialog.ui
-msgctxt ""
-"datetimedialog.ui\n"
-"date\n"
-"label\n"
-"string.text"
-msgid "_Include Date"
-msgstr "_Datum einfügen"
-
-#: datetimedialog.ui
-msgctxt ""
-"datetimedialog.ui\n"
-"datelistbox_label\n"
-"label\n"
-"string.text"
-msgid "_Format:"
-msgstr "_Format:"
-
-#: datetimedialog.ui
-msgctxt ""
-"datetimedialog.ui\n"
-"time\n"
-"label\n"
-"string.text"
-msgid "Include _Time"
-msgstr "Z_eit einfügen"
-
-#: datetimedialog.ui
-msgctxt ""
-"datetimedialog.ui\n"
-"timelistbox_label\n"
-"label\n"
-"string.text"
-msgid "Fo_rmat:"
-msgstr "Fo_rmat:"
-
-#: floatingfield.ui
-msgctxt ""
-"floatingfield.ui\n"
-"FloatingField\n"
-"title\n"
-"string.text"
-msgid "Sorting and Grouping"
-msgstr "Sortierung und Gruppierung"
-
-#: floatingfield.ui
-msgctxt ""
-"floatingfield.ui\n"
-"up\n"
-"label\n"
-"string.text"
-msgid "Sort Ascending"
-msgstr "Aufsteigend sortieren"
-
-#: floatingfield.ui
-msgctxt ""
-"floatingfield.ui\n"
-"down\n"
-"label\n"
-"string.text"
-msgid "Sort Descending"
-msgstr "Absteigend sortieren"
-
-#: floatingfield.ui
-msgctxt ""
-"floatingfield.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "Remove sorting"
-msgstr "Sortierung entfernen"
-
-#: floatingfield.ui
-msgctxt ""
-"floatingfield.ui\n"
-"insert\n"
-"label\n"
-"string.text"
-msgid "Insert"
-msgstr "Einfügen"
-
-#: floatingfield.ui
-msgctxt ""
-"floatingfield.ui\n"
-"helptext\n"
-"label\n"
-"string.text"
-msgid "Highlight the fields to insert into the selected section of the template, then click Insert or press Enter."
-msgstr "Wählen Sie die Felder, die in den ausgewählten Bereich der Vorlage eingefügt werden sollen, und klicken Sie dann auf Einfügen oder drücken Sie die Eingabetaste."
-
-#: floatingnavigator.ui
-msgctxt ""
-"floatingnavigator.ui\n"
-"FloatingNavigator\n"
-"title\n"
-"string.text"
-msgid "Report navigator"
-msgstr "Bericht-Navigator"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"FloatingSort\n"
-"title\n"
-"string.text"
-msgid "Sorting and Grouping"
-msgstr "Sortierung und Gruppierung"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Group actions"
-msgstr "Gruppenaktionen"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"up\n"
-"label\n"
-"string.text"
-msgid "Move up"
-msgstr "Nach oben verschieben"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"down\n"
-"label\n"
-"string.text"
-msgid "Move down"
-msgstr "Nach unten verschieben"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "Delete"
-msgstr "Löschen"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Groups"
-msgstr "Gruppen"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Sorting"
-msgstr "Sortierung"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Group Header"
-msgstr "Gruppenkopf"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Group Footer"
-msgstr "Gruppenfuß"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "Group On"
-msgstr "Gruppieren nach"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "Group Interval"
-msgstr "Gruppenintervall"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"label11\n"
-"label\n"
-"string.text"
-msgid "Keep Together"
-msgstr "Zusammenhalten"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"sorting\n"
-"0\n"
-"stringlist.text"
-msgid "Ascending"
-msgstr "Aufsteigend"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"sorting\n"
-"1\n"
-"stringlist.text"
-msgid "Descending"
-msgstr "Absteigend"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"header\n"
-"0\n"
-"stringlist.text"
-msgid "Present"
-msgstr "Vorhanden"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"header\n"
-"1\n"
-"stringlist.text"
-msgid "Not present"
-msgstr "Nicht vorhanden"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"keep\n"
-"0\n"
-"stringlist.text"
-msgid "No"
-msgstr "Keines"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"keep\n"
-"1\n"
-"stringlist.text"
-msgid "Whole Group"
-msgstr "Gesamte Gruppe"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"keep\n"
-"2\n"
-"stringlist.text"
-msgid "With First Detail"
-msgstr "Mit erstem Detail"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"footer\n"
-"0\n"
-"stringlist.text"
-msgid "Present"
-msgstr "Vorhanden"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"footer\n"
-"1\n"
-"stringlist.text"
-msgid "Not present"
-msgstr "Nicht vorhanden"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"group\n"
-"0\n"
-"stringlist.text"
-msgid "Each Value"
-msgstr "Jeder Wert"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Properties"
-msgstr "Eigenschaften"
-
-#: floatingsort.ui
-msgctxt ""
-"floatingsort.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Help"
-msgstr "Hilfe"
-
-#: groupsortmenu.ui
-msgctxt ""
-"groupsortmenu.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete"
-msgstr "_Löschen"
-
-#: navigatormenu.ui
-msgctxt ""
-"navigatormenu.ui\n"
-"sorting\n"
-"label\n"
-"string.text"
-msgid "Sorting and Grouping..."
-msgstr "Sortierung und Gruppierung..."
-
-#: navigatormenu.ui
-msgctxt ""
-"navigatormenu.ui\n"
-"page\n"
-"label\n"
-"string.text"
-msgid "Page Header/Footer..."
-msgstr "Seitenkopf/-fuß..."
-
-#: navigatormenu.ui
-msgctxt ""
-"navigatormenu.ui\n"
-"report\n"
-"label\n"
-"string.text"
-msgid "Report Header/Footer..."
-msgstr "Berichtskopf/-fuß"
-
-#: navigatormenu.ui
-msgctxt ""
-"navigatormenu.ui\n"
-"function\n"
-"label\n"
-"string.text"
-msgid "New Function"
-msgstr "Neue Funktion"
-
-#: navigatormenu.ui
-msgctxt ""
-"navigatormenu.ui\n"
-"properties\n"
-"label\n"
-"string.text"
-msgid "Properties..."
-msgstr "Einstellungen..."
-
-#: navigatormenu.ui
-msgctxt ""
-"navigatormenu.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete"
-msgstr "_Löschen"
-
-#: pagedialog.ui
-msgctxt ""
-"pagedialog.ui\n"
-"PageDialog\n"
-"title\n"
-"string.text"
-msgid "Page Setup"
-msgstr "Seiteneinstellungen"
-
-#: pagedialog.ui
-msgctxt ""
-"pagedialog.ui\n"
-"page\n"
-"label\n"
-"string.text"
-msgid "Page"
-msgstr "Seite"
-
-#: pagedialog.ui
-msgctxt ""
-"pagedialog.ui\n"
-"background\n"
-"label\n"
-"string.text"
-msgid "Background"
-msgstr "Hintergrund"
-
-#: pagenumberdialog.ui
-msgctxt ""
-"pagenumberdialog.ui\n"
-"PageNumberDialog\n"
-"title\n"
-"string.text"
-msgid "Page Numbers"
-msgstr "Seitennummern"
-
-#: pagenumberdialog.ui
-msgctxt ""
-"pagenumberdialog.ui\n"
-"pagen\n"
-"label\n"
-"string.text"
-msgid "_Page N"
-msgstr "_Seite N"
-
-#: pagenumberdialog.ui
-msgctxt ""
-"pagenumberdialog.ui\n"
-"pagenofm\n"
-"label\n"
-"string.text"
-msgid "Page _N of M"
-msgstr "Seite _N von M"
-
-#: pagenumberdialog.ui
-msgctxt ""
-"pagenumberdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Format"
-msgstr "Format"
-
-#: pagenumberdialog.ui
-msgctxt ""
-"pagenumberdialog.ui\n"
-"toppage\n"
-"label\n"
-"string.text"
-msgid "_Top of Page (Header)"
-msgstr "O_ben (Seitenkopf)"
-
-#: pagenumberdialog.ui
-msgctxt ""
-"pagenumberdialog.ui\n"
-"bottompage\n"
-"label\n"
-"string.text"
-msgid "_Bottom of Page (Footer)"
-msgstr "_Unten (Seitenfuß)"
-
-#: pagenumberdialog.ui
-msgctxt ""
-"pagenumberdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: pagenumberdialog.ui
-msgctxt ""
-"pagenumberdialog.ui\n"
-"alignment\n"
-"0\n"
-"stringlist.text"
-msgid "Left"
-msgstr "Links"
-
-#: pagenumberdialog.ui
-msgctxt ""
-"pagenumberdialog.ui\n"
-"alignment\n"
-"1\n"
-"stringlist.text"
-msgid "Center"
-msgstr "Mitte"
-
-#: pagenumberdialog.ui
-msgctxt ""
-"pagenumberdialog.ui\n"
-"alignment\n"
-"2\n"
-"stringlist.text"
-msgid "Right"
-msgstr "Rechts"
-
-#: pagenumberdialog.ui
-msgctxt ""
-"pagenumberdialog.ui\n"
-"alignment_label\n"
-"label\n"
-"string.text"
-msgid "_Alignment:"
-msgstr "A_usrichtung:"
-
-#: pagenumberdialog.ui
-msgctxt ""
-"pagenumberdialog.ui\n"
-"shownumberonfirstpage\n"
-"label\n"
-"string.text"
-msgid "Show Number on First Page"
-msgstr "Nummer auf erster Seite anzeigen"
-
-#: pagenumberdialog.ui
-msgctxt ""
-"pagenumberdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "General"
-msgstr "Allgemein"
diff --git a/source/de/sc/messages.po b/source/de/sc/messages.po
new file mode 100644
index 00000000000..5f9e717ce90
--- /dev/null
+++ b/source/de/sc/messages.po
@@ -0,0 +1,27759 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"PO-Revision-Date: 2017-04-20 09:41+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1492681268.000000\n"
+
+#. kBovX
+#: compiler.src
+msgctxt "RID_FUNCTION_CATEGORIES"
+msgid "Database"
+msgstr "Datenbank"
+
+#. eDPDn
+#: compiler.src
+msgctxt "RID_FUNCTION_CATEGORIES"
+msgid "Date&Time"
+msgstr "Datum&Zeit"
+
+#. BbnPT
+#: compiler.src
+msgctxt "RID_FUNCTION_CATEGORIES"
+msgid "Financial"
+msgstr "Finanz"
+
+#. HVWFu
+#: compiler.src
+msgctxt "RID_FUNCTION_CATEGORIES"
+msgid "Information"
+msgstr "Information"
+
+#. 7bP4A
+#: compiler.src
+msgctxt "RID_FUNCTION_CATEGORIES"
+msgid "Logical"
+msgstr "Logisch"
+
+#. XBcXD
+#: compiler.src
+msgctxt "RID_FUNCTION_CATEGORIES"
+msgid "Mathematical"
+msgstr "Mathematik"
+
+#. iLDXL
+#: compiler.src
+msgctxt "RID_FUNCTION_CATEGORIES"
+msgid "Array"
+msgstr "Matrix"
+
+#. GzHHA
+#: compiler.src
+msgctxt "RID_FUNCTION_CATEGORIES"
+msgid "Statistical"
+msgstr "Statistik"
+
+#. vYqjB
+#: compiler.src
+msgctxt "RID_FUNCTION_CATEGORIES"
+msgid "Spreadsheet"
+msgstr "Tabellendokument"
+
+#. ZUnEM
+#: compiler.src
+msgctxt "RID_FUNCTION_CATEGORIES"
+msgid "Text"
+msgstr "Text"
+
+#. vwFjH
+#: compiler.src
+msgctxt "RID_FUNCTION_CATEGORIES"
+msgid "Add-in"
+msgstr "Add-in"
+
+#. BDDVk
+#: globstr.src
+msgctxt "STR_UNDO_INSERTCELLS"
+msgid "Insert"
+msgstr "Einfügen"
+
+#. RyYMk
+#: globstr.src
+msgctxt "STR_UNDO_DELETECELLS"
+msgid "Delete"
+msgstr "Löschen"
+
+#. 6ZECs
+#: globstr.src
+msgctxt "STR_UNDO_CUT"
+msgid "Cut"
+msgstr "Ausschneiden"
+
+#. 2PhSz
+#: globstr.src
+msgctxt "STR_UNDO_PASTE"
+msgid "Insert"
+msgstr "Einfügen"
+
+#. eh6CM
+#: globstr.src
+msgctxt "STR_UNDO_DRAGDROP"
+msgid "Drag and Drop"
+msgstr "Ziehen-und-Ablegen"
+
+#. pMA6E
+#: globstr.src
+msgctxt "STR_UNDO_MOVE"
+msgid "Move"
+msgstr "Verschieben"
+
+#. WKVXA
+#: globstr.src
+msgctxt "STR_UNDO_COPY"
+msgid "Copy"
+msgstr "Kopieren"
+
+#. M7eDr
+#: globstr.src
+msgctxt "STR_UNDO_DELETECONTENTS"
+msgid "Delete"
+msgstr "Löschen"
+
+#. GersZ
+#: globstr.src
+msgctxt "STR_UNDO_SELATTR"
+msgid "Attributes"
+msgstr "Attribute"
+
+#. cbfQK
+#: globstr.src
+msgctxt "STR_UNDO_SELATTRLINES"
+msgid "Attributes/Lines"
+msgstr "Attribute/Linien"
+
+#. xGiQs
+#: globstr.src
+msgctxt "STR_UNDO_COLWIDTH"
+msgid "Column Width"
+msgstr "Spaltenbreite"
+
+#. ZR5P8
+#: globstr.src
+msgctxt "STR_UNDO_OPTCOLWIDTH"
+msgid "Optimal Column Width"
+msgstr "Optimale Spaltenbreite"
+
+#. K7aeb
+#: globstr.src
+msgctxt "STR_UNDO_ROWHEIGHT"
+msgid "Row height"
+msgstr "Zeilenhöhe"
+
+#. XgPgc
+#: globstr.src
+msgctxt "STR_UNDO_OPTROWHEIGHT"
+msgid "Optimal Row Height"
+msgstr "Optimale Zeilenhöhe"
+
+#. r6cVy
+#: globstr.src
+msgctxt "STR_UNDO_AUTOFILL"
+msgid "Fill"
+msgstr "Füllen"
+
+#. NKxcc
+#: globstr.src
+msgctxt "STR_UNDO_MERGE"
+msgid "Merge"
+msgstr "Zusammenfassen"
+
+#. pKBTm
+#: globstr.src
+msgctxt "STR_UNDO_REMERGE"
+msgid "Split"
+msgstr "Zusammenfassung aufheben"
+
+#. UFMZ8
+#: globstr.src
+msgctxt "STR_UNDO_AUTOFORMAT"
+msgid "AutoFormat"
+msgstr "AutoFormat"
+
+#. U2cGh
+#: globstr.src
+msgctxt "STR_UNDO_REPLACE"
+msgid "Replace"
+msgstr "Ersetzen"
+
+#. AS9GC
+#: globstr.src
+msgctxt "STR_UNDO_CURSORATTR"
+msgid "Attributes"
+msgstr "Attribute"
+
+#. y7oGy
+#: globstr.src
+msgctxt "STR_UNDO_ENTERDATA"
+msgid "Input"
+msgstr "Eingabe"
+
+#. kdaGk
+#: globstr.src
+msgctxt "STR_UNDO_INSCOLBREAK"
+msgid "Insert Column Break"
+msgstr "Spaltenumbruch einfügen"
+
+#. TW5af
+#: globstr.src
+msgctxt "STR_UNDO_DELCOLBREAK"
+msgid "Delete column break"
+msgstr "Spaltenumbruch löschen"
+
+#. smByG
+#: globstr.src
+msgctxt "STR_UNDO_INSROWBREAK"
+msgid "Insert Row Break"
+msgstr "Zeilenumbruch einfügen"
+
+#. 3CqNF
+#: globstr.src
+msgctxt "STR_UNDO_DELROWBREAK"
+msgid "Delete row break"
+msgstr "Zeilenumbruch löschen"
+
+#. RqBJC
+#: globstr.src
+msgctxt "STR_UNDO_DOOUTLINE"
+msgid "View Details"
+msgstr "Detail einblenden"
+
+#. GrdJA
+#: globstr.src
+msgctxt "STR_UNDO_REDOOUTLINE"
+msgid "Hide details"
+msgstr "Detail ausblenden"
+
+#. VpFsm
+#: globstr.src
+msgctxt "STR_UNDO_MAKEOUTLINE"
+msgid "Group"
+msgstr "Gruppieren"
+
+#. c9Gz4
+#: globstr.src
+msgctxt "STR_UNDO_REMAKEOUTLINE"
+msgid "Ungroup"
+msgstr "Gruppierung aufheben"
+
+#. acouc
+#: globstr.src
+msgctxt "STR_UNDO_OUTLINELEVEL"
+msgid "Select outline level"
+msgstr "Gliederungsebene auswählen"
+
+#. pBxa3
+#: globstr.src
+msgctxt "STR_UNDO_DOOUTLINEBLK"
+msgid "View Details"
+msgstr "Detail einblenden"
+
+#. XVMtC
+#: globstr.src
+msgctxt "STR_UNDO_REDOOUTLINEBLK"
+msgid "Hide details"
+msgstr "Detail ausblenden"
+
+#. chMgW
+#: globstr.src
+msgctxt "STR_UNDO_REMOVEALLOTLNS"
+msgid "Clear Outline"
+msgstr "Gliederung entfernen"
+
+#. QrNkm
+#: globstr.src
+msgctxt "STR_UNDO_AUTOOUTLINE"
+msgid "AutoOutline"
+msgstr "AutoGliederung"
+
+#. Qpi99
+#: globstr.src
+msgctxt "STR_UNDO_SUBTOTALS"
+msgid "Subtotals"
+msgstr "Zwischensummen"
+
+#. 3wmCd
+#: globstr.src
+msgctxt "STR_UNDO_SORT"
+msgid "Sort"
+msgstr "Sortieren"
+
+#. FZYhE
+#: globstr.src
+msgctxt "STR_UNDO_QUERY"
+msgid "Filter"
+msgstr "Filter"
+
+#. HCcTp
+#: globstr.src
+msgctxt "STR_UNDO_DBDATA"
+msgid "Change Database Range"
+msgstr "Datenbankbereich ändern"
+
+#. x3Rcg
+#: globstr.src
+msgctxt "STR_UNDO_IMPORTDATA"
+msgid "Importing"
+msgstr "Importieren"
+
+#. kCWvL
+#: globstr.src
+msgctxt "STR_UNDO_REPEATDB"
+msgid "Refresh range"
+msgstr "Bereich aktualisieren"
+
+#. tDARx
+#: globstr.src
+msgctxt "STR_UNDO_LISTNAMES"
+msgid "List names"
+msgstr "Namen auflisten"
+
+#. EnHNF
+#: globstr.src
+msgctxt "STR_UNDO_PIVOT_NEW"
+msgid "Create pivot table"
+msgstr "Pivot-Tabelle erzeugen"
+
+#. iHXHE
+#: globstr.src
+msgctxt "STR_UNDO_PIVOT_MODIFY"
+msgid "Edit pivot table"
+msgstr "Pivot-Tabelle bearbeiten"
+
+#. vrufF
+#: globstr.src
+msgctxt "STR_UNDO_PIVOT_DELETE"
+msgid "Delete pivot table"
+msgstr "Pivot-Tabelle löschen"
+
+#. 2YADi
+#: globstr.src
+msgctxt "STR_UNDO_CONSOLIDATE"
+msgid "Consolidate"
+msgstr "Konsolidieren"
+
+#. aKiED
+#: globstr.src
+msgctxt "STR_UNDO_USESCENARIO"
+msgid "Use scenario"
+msgstr "Szenario anwenden"
+
+#. Z4CtD
+#: globstr.src
+msgctxt "STR_UNDO_MAKESCENARIO"
+msgid "Create scenario"
+msgstr "Szenario anlegen"
+
+#. LH3wA
+#: globstr.src
+msgctxt "STR_UNDO_EDITSCENARIO"
+msgid "Edit scenario"
+msgstr "Szenario bearbeiten"
+
+#. xbCNx
+#: globstr.src
+msgctxt "STR_UNDO_APPLYCELLSTYLE"
+msgid "Apply Cell Style"
+msgstr "Zellvorlage zuweisen"
+
+#. dfVuE
+#: globstr.src
+msgctxt "STR_UNDO_EDITCELLSTYLE"
+msgid "Edit Cell Style"
+msgstr "Zellvorlage bearbeiten"
+
+#. VSw6F
+#: globstr.src
+msgctxt "STR_UNDO_APPLYPAGESTYLE"
+msgid "Apply Page Style"
+msgstr "Seitenvorlage zuweisen"
+
+#. ALV9B
+#: globstr.src
+msgctxt "STR_UNDO_EDITPAGESTYLE"
+msgid "Edit Page Style"
+msgstr "Seitenvorlage bearbeiten"
+
+#. vMyjF
+#: globstr.src
+msgctxt "STR_UNDO_DETADDPRED"
+msgid "Trace Precedents"
+msgstr "Spur zum Vorgänger"
+
+#. kFK3T
+#: globstr.src
+msgctxt "STR_UNDO_DETDELPRED"
+msgid "Remove Precedent"
+msgstr "Spur zum Vorgänger entfernen"
+
+#. 8Pkj9
+#: globstr.src
+msgctxt "STR_UNDO_DETADDSUCC"
+msgid "Trace Dependents"
+msgstr "Spur zum Nachfolger"
+
+#. RAhZn
+#: globstr.src
+msgctxt "STR_UNDO_DETDELSUCC"
+msgid "Remove Dependent"
+msgstr "Spur zum Nachfolger entfernen"
+
+#. xTvKp
+#: globstr.src
+msgctxt "STR_UNDO_DETADDERROR"
+msgid "Trace Error"
+msgstr "Spur zum Fehler"
+
+#. aSywq
+#: globstr.src
+msgctxt "STR_UNDO_DETDELALL"
+msgid "Remove all Traces"
+msgstr "Alle Spuren entfernen"
+
+#. Zhot8
+#: globstr.src
+msgctxt "STR_UNDO_DETINVALID"
+msgid "Mark invalid data"
+msgstr "Ungültige Daten markieren"
+
+#. NBgVC
+#: globstr.src
+msgctxt "STR_UNDO_DETREFRESH"
+msgid "Refresh Traces"
+msgstr "Spuren aktualisieren"
+
+#. 2AuiD
+#: globstr.src
+msgctxt "STR_UNDO_CHARTDATA"
+msgid "Modify chart data range"
+msgstr "Datenbereich von Diagramm ändern"
+
+#. XFDFX
+#: globstr.src
+msgctxt "STR_UNDO_ORIGINALSIZE"
+msgid "Original Size"
+msgstr "Originalgröße"
+
+#. SzED2
+#: globstr.src
+msgctxt "STR_UNDO_UPDATELINK"
+msgid "Update Link"
+msgstr "Verknüpfung aktualisieren"
+
+#. grfD2
+#: globstr.src
+msgctxt "STR_UNDO_REMOVELINK"
+msgid "Unlink"
+msgstr "Verknüpfung aufheben"
+
+#. RYQAu
+#: globstr.src
+msgctxt "STR_UNDO_INSERTAREALINK"
+msgid "Insert Link"
+msgstr "Verknüpfung einfügen"
+
+#. BwMzH
+#: globstr.src
+msgctxt "STR_UNDO_ENTERMATRIX"
+msgid "Insert Array Formula"
+msgstr "Matrixformel einfügen"
+
+#. CUCCD
+#: globstr.src
+msgctxt "STR_UNDO_INSERTNOTE"
+msgid "Insert Comment"
+msgstr "Kommentar einfügen"
+
+#. QvVPq
+#: globstr.src
+msgctxt "STR_UNDO_DELETENOTE"
+msgid "Delete Comment"
+msgstr "Kommentar löschen"
+
+#. o6Mhx
+#: globstr.src
+msgctxt "STR_UNDO_SHOWNOTE"
+msgid "Show Comment"
+msgstr "Kommentar anzeigen"
+
+#. hVdSb
+#: globstr.src
+msgctxt "STR_UNDO_HIDENOTE"
+msgid "Hide Comment"
+msgstr "Kommentar ausblenden"
+
+#. 2jGpj
+#: globstr.src
+msgctxt "STR_UNDO_SHOWALLNOTES"
+msgid "Show All Comments"
+msgstr "Alle Kommentare einblenden"
+
+#. hcrJZ
+#: globstr.src
+msgctxt "STR_UNDO_HIDEALLNOTES"
+msgid "Hide All Comments"
+msgstr "Alle Kommentare ausblenden"
+
+#. Ngfbt
+#: globstr.src
+msgctxt "STR_UNDO_EDITNOTE"
+msgid "Edit Comment"
+msgstr "Kommentar bearbeiten"
+
+#. DoizQ
+#: globstr.src
+msgctxt "STR_UNDO_DEC_INDENT"
+msgid "Decrease Indent"
+msgstr "Einzug verkleinern"
+
+#. 4kqvD
+#: globstr.src
+msgctxt "STR_UNDO_INC_INDENT"
+msgid "Increase Indent"
+msgstr "Einzug vergrößern"
+
+#. pizsf
+#: globstr.src
+msgctxt "STR_UNDO_PROTECT_TAB"
+msgid "Protect sheet"
+msgstr "Tabelle schützen"
+
+#. hEtHw
+#: globstr.src
+msgctxt "STR_UNDO_UNPROTECT_TAB"
+msgid "Unprotect sheet"
+msgstr "Tabellenschutz aufheben"
+
+#. ESNgU
+#: globstr.src
+msgctxt "STR_UNDO_PROTECT_DOC"
+msgid "Protect document"
+msgstr "Dokument schützen"
+
+#. GAGDz
+#: globstr.src
+msgctxt "STR_UNDO_UNPROTECT_DOC"
+msgid "Unprotect document"
+msgstr "Dokumentschutz aufheben"
+
+#. 8MwdV
+#: globstr.src
+msgctxt "STR_UNDO_PRINTRANGES"
+msgid "Print range"
+msgstr "Druckbereich"
+
+#. 66Z3F
+#: globstr.src
+msgctxt "STR_UNDO_REMOVEBREAKS"
+msgid "Delete Page Breaks"
+msgstr "Seitenumbrüche löschen"
+
+#. DPkGS
+#: globstr.src
+msgctxt "STR_UNDO_PRINTSCALE"
+msgid "Change Scale"
+msgstr "Skalierung ändern"
+
+#. D3vF9
+#: globstr.src
+msgctxt "STR_UNDO_DRAG_BREAK"
+msgid "Move Page Break"
+msgstr "Seitenumbruch verschieben"
+
+#. wboDs
+#: globstr.src
+msgctxt "STR_UNDO_RANGENAMES"
+msgid "Edit range names"
+msgstr "Bereichsnamen bearbeiten"
+
+#. 9CG3c
+#: globstr.src
+msgctxt "STR_UNDO_TRANSLITERATE"
+msgid "Change Case"
+msgstr "Groß- und Kleinschreibung ändern"
+
+#. mRCvC
+#: globstr.src
+msgctxt "STR_DBNAME_IMPORT"
+msgid "Import"
+msgstr "Importieren"
+
+#. rmKDS
+#: globstr.src
+msgctxt "STR_MSSG_DOSUBTOTALS_0"
+msgid "%PRODUCTNAME Calc"
+msgstr "%PRODUCTNAME Calc"
+
+#. 5wfvQ
+#: globstr.src
+msgctxt "STR_MSSG_DOSUBTOTALS_1"
+msgid "Delete data?"
+msgstr "Daten löschen?"
+
+#. 2S3Pc
+#: globstr.src
+msgctxt "STR_MSSG_DOSUBTOTALS_2"
+msgid "Unable to insert rows"
+msgstr "Kann keine Zeilen einfügen"
+
+#. CGqBM
+#: globstr.src
+msgctxt "STR_MSSG_REPEATDB_0"
+msgid "No operations to execute"
+msgstr "Keine Operationen auszuführen"
+
+#. BC4uB
+#: globstr.src
+msgctxt "STR_MSSG_MAKEAUTOFILTER_0"
+msgid ""
+"The range does not contain column headers.\n"
+"Do you want the first line to be used as column header?"
+msgstr ""
+"Der Bereich enthält keine Spaltenköpfe.\n"
+"Soll die erste Zeile als Spaltenköpfe verwendet werden?"
+
+#. W8DjC
+#: globstr.src
+msgctxt "STR_MSSG_IMPORTDATA_0"
+msgid "Error while importing data!"
+msgstr "Fehler beim Datenimport!"
+
+#. EGoYA
+#: globstr.src
+msgctxt "STR_PROGRESS_IMPORT"
+msgid "# records imported..."
+msgstr "# Datensätze importiert..."
+
+#. 3g9N3
+#: globstr.src
+msgctxt "STR_MSSG_MAKEOUTLINE_0"
+msgid "Grouping not possible"
+msgstr "Gruppierung nicht möglich"
+
+#. vxHwk
+#: globstr.src
+msgctxt "STR_MSSG_REMOVEOUTLINE_0"
+msgid "Ungrouping not possible"
+msgstr "Aufheben nicht möglich"
+
+#. WF28B
+#: globstr.src
+msgctxt "STR_MSSG_PASTEFROMCLIP_0"
+msgid "Insert into multiple selection not possible"
+msgstr "Einfügen auf Mehrfachauswahl nicht möglich"
+
+#. 83Jsw
+#: globstr.src
+msgctxt "STR_MSSG_MOVEBLOCKTO_0"
+msgid "Cell merge not possible if cells already merged!"
+msgstr "Das Verbinden ist nicht möglich, wenn bereits Zellen verbunden sind"
+
+#. won4Y
+#: globstr.src
+msgctxt "STR_MSSG_INSERTCELLS_0"
+msgid "Inserting into merged ranges not possible"
+msgstr "Kann nicht in zusammengefasste Bereiche einfügen"
+
+#. L3jzC
+#: globstr.src
+msgctxt "STR_MSSG_DELETECELLS_0"
+msgid "Deleting in merged ranges not possible"
+msgstr "Kann nicht aus zusammengefassten Bereichen löschen"
+
+#. DkYXD
+#: globstr.src
+msgctxt "STR_MSSG_MERGECELLS_0"
+msgid "Cell merge not possible if cells already merged"
+msgstr "Das Verbinden ist nicht möglich, wenn bereits Zellen verbunden sind"
+
+#. z5JEL
+#: globstr.src
+msgctxt "STR_SORT_ERR_MERGED"
+msgid "Ranges containing merged cells can only be sorted without formats."
+msgstr ""
+"Bereiche mit zusammengefassten Zellen können nur ohne Formate sortiert "
+"werden."
+
+#. CMwFG
+#: globstr.src
+msgctxt "STR_MSSG_SOLVE_0"
+msgid "Goal Seek succeeded. Result: "
+msgstr "Zielsuche erfolgreich. Ergebnis: "
+
+#. nLBkx
+#: globstr.src
+msgctxt "STR_MSSG_SOLVE_1"
+msgid ""
+"\n"
+"\n"
+"Insert the result into the variable cell?"
+msgstr ""
+"\n"
+"\n"
+"Das Ergebnis in die variable Zelle einfügen?"
+
+#. 7fkiC
+#: globstr.src
+msgctxt "STR_MSSG_SOLVE_2"
+msgid ""
+"Goal Seek failed.\n"
+"\n"
+msgstr ""
+"Zielsuche fehlgeschlagen.\n"
+"\n"
+
+#. kDeqC
+#: globstr.src
+msgctxt "STR_MSSG_SOLVE_3"
+msgid "Insert the closest value ("
+msgstr "Soll die beste Näherung ("
+
+#. ESuoy
+#: globstr.src
+msgctxt "STR_MSSG_SOLVE_4"
+msgid ") into the variable cell anyway?"
+msgstr ") trotzdem in die variable Zelle eingefügt werden?"
+
+#. YZAvy
+#: globstr.src
+msgctxt "STR_TABLE_GESAMTERGEBNIS"
+msgid "Grand Total"
+msgstr "Gesamtsumme"
+
+#. nRMet
+#: globstr.src
+msgctxt "STR_TABLE_ERGEBNIS"
+msgid "Result"
+msgstr "Ergebnis"
+
+#. R2KAi
+#: globstr.src
+msgctxt "STR_UNDO_SPELLING"
+msgid "Spellcheck"
+msgstr "Rechtschreibprüfung"
+
+#. XLRBP
+#: globstr.src
+msgctxt "STR_TABLE_UND"
+msgid "AND"
+msgstr "UND"
+
+#. fEBMV
+#: globstr.src
+msgctxt "STR_TABLE_ODER"
+msgid "OR"
+msgstr "ODER"
+
+#. ovwBG
+#: globstr.src
+msgctxt "STR_TABLE_DEF"
+msgid "Sheet"
+msgstr "Tabelle"
+
+#. wnc9f
+#: globstr.src
+msgctxt "STR_MOVE_TO_END"
+msgid "- move to end position -"
+msgstr "- ans Ende stellen -"
+
+#. FJEi6
+#: globstr.src
+msgctxt "STR_NO_REF_TABLE"
+msgid "#REF!"
+msgstr "#REF!"
+
+#. UCTdV
+#: globstr.src
+msgctxt "STR_PIVOT_NODATA"
+msgid "The pivot table must contain at least one entry."
+msgstr "Die Pivot-Tabelle muss mindestens einen Eintrag enthalten."
+
+#. SWM6f
+#: globstr.src
+msgctxt "STR_PIVOT_MOVENOTALLOWED"
+msgid "The data range can not be deleted."
+msgstr "Der Datenbereich kann nicht gelöscht werden."
+
+#. hEFjA
+#: globstr.src
+msgctxt "STR_PIVOT_ERROR"
+msgid "Error creating the pivot table."
+msgstr "Fehler beim Erstellen der Pivot-Tabelle."
+
+#. s8SDR
+#: globstr.src
+msgctxt "STR_PIVOT_NOTEMPTY"
+msgid "The destination range is not empty. Overwrite existing contents?"
+msgstr "Der Zielbereich ist nicht leer. Soll der Inhalt überschrieben werden?"
+
+#. ynHja
+#: globstr.src
+msgctxt "STR_PIVOT_REMOVE_PIVOTCHART"
+msgid ""
+"There is at least one pivot chart associated with this pivot table. Should "
+"remove all or abort?"
+msgstr ""
+"Dieser Pivot-Tabelle ist bereits mindestens ein Pivot-Diagramm zurgeordnet. "
+"Sollen alle entfernt oder abgebrochen werden?"
+
+#. W25Ey
+#: globstr.src
+msgctxt "STR_DATAPILOT_SUBTOTAL"
+msgid ""
+"The source range contains subtotals which may distort the results. Use it "
+"anyway?"
+msgstr ""
+"Der Quellbereich enthält Zwischensummen, die das Ergebnis verfälschen "
+"können. Soll er trotzdem verwendet werden?"
+
+#. gX9QE
+#: globstr.src
+msgctxt "STR_PIVOT_TOTAL"
+msgid "Total"
+msgstr "Summe"
+
+#. fZRCR
+#: globstr.src
+msgctxt "STR_PIVOT_DATA"
+msgid "Data"
+msgstr "Daten"
+
+#. S7sk9
+#: globstr.src
+msgctxt "STR_PIVOT_GROUP"
+msgid "Group"
+msgstr "Gruppierung"
+
+#. N8eDr
+#: globstr.src
+msgctxt "STR_ROWCOL_SELCOUNT"
+msgid "$1 rows, $2 columns selected"
+msgstr "$1 Zeilen, $2 Spalten ausgewählt"
+
+#. 3dMsw
+#: globstr.src
+msgctxt "STR_FILTER_SELCOUNT"
+msgid "$1 of $2 records found"
+msgstr "$1 von $2 Datensätzen gefunden"
+
+#. ibncs
+#: globstr.src
+msgctxt "STR_COLUMN"
+msgid "Column"
+msgstr "Spalte"
+
+#. SGJKJ
+#: globstr.src
+msgctxt "STR_ROW"
+msgid "Row"
+msgstr "Zeile"
+
+#. R7ojN
+#: globstr.src
+msgctxt "STR_PAGE"
+msgid "Page"
+msgstr "Seite"
+
+#. pHaMh
+#: globstr.src
+msgctxt "STR_PGNUM"
+msgid "Page %1"
+msgstr "Seite %1"
+
+#. vRVuG
+#: globstr.src
+msgctxt "STR_LOAD_DOC"
+msgid "Load document"
+msgstr "Dokument laden"
+
+#. 5ryKn
+#: globstr.src
+msgctxt "STR_SAVE_DOC"
+msgid "Save document"
+msgstr "Dokument speichern"
+
+#. fgGGb
+#: globstr.src
+msgctxt "STR_AREA_ALREADY_INSERTED"
+msgid "This range has already been inserted."
+msgstr "Dieser Bereich wurde bereits eingefügt."
+
+#. XyAxZ
+#: globstr.src
+msgctxt "STR_INVALID_TABREF"
+msgid "Invalid sheet reference."
+msgstr "Ungültiger Tabellenbezug."
+
+#. tFYkx
+#: globstr.src
+msgctxt "STR_INVALID_QUERYAREA"
+msgid "This range does not contain a valid query."
+msgstr "Dieser Bereich enthält keine gültige Abfrage."
+
+#. BGXtf
+#: globstr.src
+msgctxt "STR_REIMPORT_EMPTY"
+msgid "This range does not contain imported data."
+msgstr "Dieser Bereich enthält keine importierten Daten."
+
+#. tEWjf
+#: globstr.src
+msgctxt "STR_NOMULTISELECT"
+msgid "This function cannot be used with multiple selections."
+msgstr "Diese Funktion lässt sich nicht auf Mehrfachauswahl anwenden."
+
+#. 9TmCm
+#: globstr.src
+msgctxt "STR_FILL_SERIES_PROGRESS"
+msgid "Fill Row..."
+msgstr "Reihe Auffüllen..."
+
+#. CwoMD
+#: globstr.src
+msgctxt "STR_UNDO_THESAURUS"
+msgid "Thesaurus"
+msgstr "Thesaurus"
+
+#. uaQG5
+#: globstr.src
+msgctxt "STR_FILL_TAB"
+msgid "Fill Sheets"
+msgstr "Tabellen füllen"
+
+#. GzG9j
+#: globstr.src
+msgctxt "STR_UPDATE_SCENARIO"
+msgid "Add selected ranges to current scenario?"
+msgstr "Szenario um die ausgewählten Bereiche erweitern?"
+
+#. D6qcp
+#: globstr.src
+msgctxt "STR_ERR_NEWSCENARIO"
+msgid ""
+"The scenario ranges must be selected in order to be able to create a new "
+"scenario."
+msgstr ""
+"Zum Erstellen eines neuen Szenarios müssen die Szenariobereiche ausgewählt "
+"werden."
+
+#. yjtPb
+#: globstr.src
+msgctxt "STR_NOAREASELECTED"
+msgid "A range has not been selected."
+msgstr "Kein Bereich ausgewählt."
+
+#. VrD8B
+#: globstr.src
+msgctxt "STR_NEWTABNAMENOTUNIQUE"
+msgid "This name already exists."
+msgstr "Dieser Tabellenname existiert bereits."
+
+#. ejiW9
+#: globstr.src
+msgctxt "STR_INVALIDTABNAME"
+msgid ""
+"Invalid sheet name.\n"
+"The sheet name must not be a duplicate of an existing name \n"
+"and may not contain the characters [ ] * ? : / \\"
+msgstr ""
+"Ungültiger Tabellenname.\n"
+"Der Tabellenname darf nicht identisch mit einem bestehenden \n"
+"Namen sein und nicht die Zeichen [ ] * ? : / oder \\ enthalten."
+
+#. CGAdE
+#: globstr.src
+msgctxt "STR_SCENARIO"
+msgid "Scenario"
+msgstr "Szenario"
+
+#. xW54w
+#: globstr.src
+msgctxt "STR_PIVOT_TABLE"
+msgid "Pivot Table"
+msgstr "Pivot-Tabelle"
+
+#. FDigt
+#: globstr.src
+msgctxt "STR_FUN_TEXT_SUM"
+msgid "Sum"
+msgstr "Summe"
+
+#. AtSHE
+#: globstr.src
+msgctxt "STR_FUN_TEXT_SELECTION_COUNT"
+msgid "Selection count"
+msgstr "Anzahl Zellen"
+
+#. SZAUf
+#: globstr.src
+msgctxt "STR_FUN_TEXT_COUNT"
+msgid "Count"
+msgstr "Anzahl"
+
+#. juNtW
+#: globstr.src
+msgctxt "STR_FUN_TEXT_COUNT2"
+msgid "CountA"
+msgstr "Anzahl2"
+
+#. B58nD
+#: globstr.src
+msgctxt "STR_FUN_TEXT_AVG"
+msgid "Average"
+msgstr "Durchschnitt"
+
+#. AoUSX
+#: globstr.src
+msgctxt "STR_FUN_TEXT_MEDIAN"
+msgid "Median"
+msgstr "Median"
+
+#. YMzF9
+#: globstr.src
+msgctxt "STR_FUN_TEXT_MAX"
+msgid "Max"
+msgstr "Max"
+
+#. A8fBH
+#: globstr.src
+msgctxt "STR_FUN_TEXT_MIN"
+msgid "Min"
+msgstr "Min"
+
+#. oZVg5
+#: globstr.src
+msgctxt "STR_FUN_TEXT_PRODUCT"
+msgid "Product"
+msgstr "Produkt"
+
+#. 6FXQo
+#: globstr.src
+msgctxt "STR_FUN_TEXT_STDDEV"
+msgid "StDev"
+msgstr "StAbw"
+
+#. NhH7q
+#: globstr.src
+msgctxt "STR_FUN_TEXT_VAR"
+msgid "Var"
+msgstr "Var"
+
+#. XyzD7
+#: globstr.src
+msgctxt "STR_NOCHARTATCURSOR"
+msgid "No chart found at this position."
+msgstr "Kein Diagramm an dieser Position gefunden."
+
+#. N96nt
+#: globstr.src
+msgctxt "STR_PIVOT_NOTFOUND"
+msgid "No pivot table found at this position."
+msgstr "Keine Pivot-Tabelle an dieser Position gefunden."
+
+#. Q9boB
+#: globstr.src
+msgctxt "STR_EMPTYDATA"
+msgid "(empty)"
+msgstr "(leer)"
+
+#. Trnkk
+#: globstr.src
+msgctxt "STR_PRINT_INVALID_AREA"
+msgid "Invalid print range"
+msgstr "Ungültiger Druckbereich"
+
+#. 2HpWz
+#: globstr.src
+msgctxt "STR_PAGESTYLE"
+msgid "Page Style"
+msgstr "Seitenstil"
+
+#. zFTin
+#: globstr.src
+msgctxt "STR_HEADER"
+msgid "Header"
+msgstr "Kopfzeile"
+
+#. fzG3P
+#: globstr.src
+msgctxt "STR_FOOTER"
+msgid "Footer"
+msgstr "Fußzeile"
+
+#. Yp9Fp
+#: globstr.src
+msgctxt "STR_TEXTATTRS"
+msgid "Text Attributes"
+msgstr "Textattribute"
+
+#. 947DD
+#: globstr.src
+msgctxt "STR_HFCMD_DELIMITER"
+msgid "\\"
+msgstr "\\"
+
+#. R79rt
+#: globstr.src
+msgctxt "STR_HFCMD_PAGE"
+msgid "PAGE"
+msgstr "SEITE"
+
+#. 4H5Wm
+#: globstr.src
+msgctxt "STR_HFCMD_PAGES"
+msgid "PAGES"
+msgstr "SEITEN"
+
+#. CqbM4
+#: globstr.src
+msgctxt "STR_HFCMD_DATE"
+msgid "DATE"
+msgstr "DATUM"
+
+#. faMTC
+#: globstr.src
+msgctxt "STR_HFCMD_TIME"
+msgid "TIME"
+msgstr "ZEIT"
+
+#. MnqDD
+#: globstr.src
+msgctxt "STR_HFCMD_FILE"
+msgid "FILE"
+msgstr "DATEI"
+
+#. 7FMFo
+#: globstr.src
+msgctxt "STR_HFCMD_TABLE"
+msgid "SHEET"
+msgstr "TABELLE"
+
+#. CD5iM
+#: globstr.src
+msgctxt "STR_PROTECTIONERR"
+msgid "Protected cells can not be modified."
+msgstr "Gesperrte Zellen können nicht geändert werden."
+
+#. YS36j
+#: globstr.src
+msgctxt "STR_READONLYERR"
+msgid "Document opened in read-only mode."
+msgstr "Dokument ist schreibgeschützt geöffnet."
+
+#. tPq5q
+#: globstr.src
+msgctxt "STR_MATRIXFRAGMENTERR"
+msgid "You cannot change only part of an array."
+msgstr "Sie können nicht nur einen Teil einer Matrix ändern."
+
+#. xDVk8
+#: globstr.src
+msgctxt "STR_PAGEHEADER"
+msgid "Header"
+msgstr "Kopfzeile"
+
+#. DPEzg
+#: globstr.src
+msgctxt "STR_PAGEFOOTER"
+msgid "Footer"
+msgstr "Fußzeile"
+
+#. 499qP
+#: globstr.src
+msgctxt "STR_ERROR_STR"
+msgid "Err:"
+msgstr "Fehler:"
+
+#. BDcUB
+#: globstr.src
+msgctxt "STR_LONG_ERR_DIV_ZERO"
+msgid "Error: Division by zero"
+msgstr "Fehler: Division durch Null"
+
+#. 9y5GD
+#: globstr.src
+msgctxt "STR_LONG_ERR_NO_VALUE"
+msgid "Error: Wrong data type"
+msgstr "Fehler: Falscher Datentyp"
+
+#. kHwc6
+#: globstr.src
+msgctxt "STR_LONG_ERR_NO_REF"
+msgid "Error: Not a valid reference"
+msgstr "Fehler: Ungültiger Bezug"
+
+#. Fwbua
+#: globstr.src
+msgctxt "STR_LONG_ERR_NO_NAME"
+msgid "Error: Invalid name"
+msgstr "Fehler: Ungültiger Name"
+
+#. MMr4E
+#: globstr.src
+msgctxt "STR_LONG_ERR_ILL_FPO"
+msgid "Error: Invalid numeric value"
+msgstr "Fehler: ungültiger Zahlwert"
+
+#. zyzjD
+#: globstr.src
+msgctxt "STR_LONG_ERR_NV"
+msgid "Error: Value not available"
+msgstr "Fehler: Wert nicht verfügbar"
+
+#. 8VBei
+#: globstr.src
+msgctxt "STR_NO_ADDIN"
+msgid "#ADDIN?"
+msgstr "#ADDIN?"
+
+#. tv5E2
+#: globstr.src
+msgctxt "STR_LONG_ERR_NO_ADDIN"
+msgid "Error: Add-in not found"
+msgstr "Fehler: Add-in nicht gefunden"
+
+#. jxTFr
+#: globstr.src
+msgctxt "STR_NO_MACRO"
+msgid "#MACRO?"
+msgstr "#MAKRO?"
+
+#. 7bF82
+#: globstr.src
+msgctxt "STR_LONG_ERR_NO_MACRO"
+msgid "Error: Macro not found"
+msgstr "Fehler: Makro nicht gefunden"
+
+#. NnSBz
+#: globstr.src
+msgctxt "STR_LONG_ERR_SYNTAX"
+msgid "Internal syntactical error"
+msgstr "Interner Syntaxfehler"
+
+#. 7PBrr
+#: globstr.src
+msgctxt "STR_LONG_ERR_ILL_ARG"
+msgid "Error: Invalid argument"
+msgstr "Fehler: Ungültiges Argument"
+
+#. XZD8G
+#: globstr.src
+msgctxt "STR_LONG_ERR_ILL_PAR"
+msgid "Error in parameter list"
+msgstr "Fehler in der Parameterliste"
+
+#. iJfWD
+#: globstr.src
+msgctxt "STR_LONG_ERR_ILL_CHAR"
+msgid "Error: Invalid character"
+msgstr "Fehler: Ungültiges Zeichen"
+
+#. eoEQw
+#: globstr.src
+msgctxt "STR_LONG_ERR_PAIR"
+msgid "Error: in bracketing"
+msgstr "Fehler in der Klammerung"
+
+#. sdgFF
+#: globstr.src
+msgctxt "STR_LONG_ERR_OP_EXP"
+msgid "Error: Operator missing"
+msgstr "Fehler: Fehlender Operator"
+
+#. XoBCd
+#: globstr.src
+msgctxt "STR_LONG_ERR_VAR_EXP"
+msgid "Error: Variable missing"
+msgstr "Fehler: Fehlende Variable"
+
+#. ne6HG
+#: globstr.src
+msgctxt "STR_LONG_ERR_CODE_OVF"
+msgid "Error: Formula overflow"
+msgstr "Fehler: Formel zu lang"
+
+#. zRh8E
+#: globstr.src
+msgctxt "STR_LONG_ERR_STR_OVF"
+msgid "Error: String overflow"
+msgstr "Fehler: Zeichenkette zu lang"
+
+#. 5cMZo
+#: globstr.src
+msgctxt "STR_LONG_ERR_STACK_OVF"
+msgid "Error: Internal overflow"
+msgstr "Fehler: Interner Überlauf"
+
+#. o6L8k
+#: globstr.src
+msgctxt "STR_LONG_ERR_MATRIX_SIZE"
+msgid "Error: Array or matrix size"
+msgstr "Fehler: Matrix oder Matrixgröße"
+
+#. JXoDE
+#: globstr.src
+msgctxt "STR_LONG_ERR_CIRC_REF"
+msgid "Error: Circular reference"
+msgstr "Fehler: Zirkulärer Bezug"
+
+#. ncFnr
+#: globstr.src
+msgctxt "STR_LONG_ERR_NO_CONV"
+msgid "Error: Calculation does not converge"
+msgstr "Fehler: Rechenverfahren konvergiert nicht"
+
+#. bgTV4
+#: globstr.src
+msgctxt "STR_GRIDCOLOR"
+msgid "Grid color"
+msgstr "Gitterfarbe"
+
+#. APCfx
+#: globstr.src
+msgctxt "STR_CELL_FILTER"
+msgid "Filter"
+msgstr "Filter"
+
+#. si2AU
+#: globstr.src
+msgctxt "STR_TARGETNOTFOUND"
+msgid "The target database range does not exist."
+msgstr "Der Zieldatenbankbereich existiert nicht."
+
+#. j8G3g
+#: globstr.src
+msgctxt "STR_INVALID_EPS"
+msgid "Invalid increment"
+msgstr "Ungültige Schrittweite"
+
+#. 8tMQd
+#: globstr.src
+msgctxt "STR_UNDO_TABOP"
+msgid "Multiple operations"
+msgstr "Mehrfachoperationen"
+
+#. 4PpzH
+#: globstr.src
+msgctxt "STR_INVALID_AFNAME"
+msgid ""
+"You have entered an invalid name.\n"
+"AutoFormat could not be created. \n"
+"Try again using a different name."
+msgstr ""
+"Sie haben einen ungültigen Namen eingegeben.\n"
+"Das AutoFormat konnte nicht angelegt werden.\n"
+"Wählen Sie einen anderen Namen."
+
+#. ZGfyF
+#: globstr.src
+msgctxt "STR_AREA"
+msgid "Range"
+msgstr "Bereich"
+
+#. FQACy
+#: globstr.src
+msgctxt "STR_YES"
+msgid "Yes"
+msgstr "Ja"
+
+#. rgRiG
+#: globstr.src
+msgctxt "STR_NO"
+msgid "No"
+msgstr "Nein"
+
+#. 3eYvB
+#: globstr.src
+msgctxt "STR_PROTECTION"
+msgid "Protection"
+msgstr "Schutz"
+
+#. FYZA4
+#: globstr.src
+msgctxt "STR_FORMULAS"
+msgid "Formulas"
+msgstr "Formeln"
+
+#. FHNAK
+#: globstr.src
+msgctxt "STR_HIDE"
+msgid "Hide"
+msgstr "Ausblenden"
+
+#. gVDqm
+#: globstr.src
+msgctxt "STR_PRINT"
+msgid "Print"
+msgstr "Drucken"
+
+#. AX5f5
+#: globstr.src
+msgctxt "STR_INVALID_AFAREA"
+msgid ""
+"To apply an AutoFormat,\n"
+"a table range of at least\n"
+"3x3 cells must be selected."
+msgstr ""
+"Um das AutoFormat anwenden zu können,\n"
+"muss ein Tabellenbereich von mindestens\n"
+"3x3 Zellen ausgewählt sein."
+
+#. iySox
+#: globstr.src
+msgctxt "STR_OPTIONAL"
+msgid "(optional)"
+msgstr "(optional)"
+
+#. YFdrJ
+#: globstr.src
+msgctxt "STR_REQUIRED"
+msgid "(required)"
+msgstr "(erforderlich)"
+
+#. Zv4jB
+#: globstr.src
+msgctxt "STR_NOTES"
+msgid "Comments"
+msgstr "Kommentare"
+
+#. GfDDe
+#: globstr.src
+msgctxt "STR_QUERY_DELTAB"
+msgid "Are you sure you want to delete the selected sheet(s)?"
+msgstr ""
+"Sind Sie sicher, dass Sie die ausgewählte(n) Tabelle(n) löschen wollen?"
+
+#. WeWsD
+#: globstr.src
+msgctxt "STR_QUERY_DELSCENARIO"
+msgid "Are you sure you want to delete the selected scenario?"
+msgstr "Sind Sie sicher, dass Sie das ausgewählte Szenario löschen möchten?"
+
+#. dEC3W
+#: globstr.src
+msgctxt "STR_EXPORT_ASCII"
+msgid "Export Text File"
+msgstr "Textdatei exportieren"
+
+#. CAKTa
+#: globstr.src
+msgctxt "STR_IMPORT_LOTUS"
+msgid "Import Lotus files"
+msgstr "Lotus-Import"
+
+#. DDCJY
+#: globstr.src
+msgctxt "STR_IMPORT_DBF"
+msgid "Import DBase files"
+msgstr "DBase-Import"
+
+#. 7NkGD
+#: globstr.src
+msgctxt "STR_EXPORT_DBF"
+msgid "DBase export"
+msgstr "DBase-Export"
+
+#. CtHUj
+#: globstr.src
+msgctxt "STR_EXPORT_DIF"
+msgid "Dif Export"
+msgstr "Dif-Export"
+
+#. FVf4C
+#: globstr.src
+msgctxt "STR_IMPORT_DIF"
+msgid "Dif Import"
+msgstr "Dif-Import"
+
+#. ouiCs
+#: globstr.src
+msgctxt "STR_STYLENAME_STANDARD"
+msgid "Default"
+msgstr "Standard"
+
+#. GATGM
+#: globstr.src
+msgctxt "STR_STYLENAME_RESULT"
+msgid "Result"
+msgstr "Ergebnis"
+
+#. oKqyC
+#: globstr.src
+msgctxt "STR_STYLENAME_RESULT1"
+msgid "Result2"
+msgstr "Ergebnis2"
+
+#. HDQGo
+#: globstr.src
+msgctxt "STR_STYLENAME_HEADLINE"
+msgid "Heading"
+msgstr "Überschrift"
+
+#. kEMEt
+#: globstr.src
+msgctxt "STR_STYLENAME_HEADLINE1"
+msgid "Heading1"
+msgstr "Überschrift1"
+
+#. UjENT
+#: globstr.src
+msgctxt "STR_STYLENAME_REPORT"
+msgid "Report"
+msgstr "Bericht"
+
+#. CaeKL
+#: globstr.src
+msgctxt "STR_THESAURUS_NO_STRING"
+msgid "Thesaurus can only be used in text cells!"
+msgstr "Thesaurus nur in Textzellen möglich!"
+
+#. EMMdQ
+#: globstr.src
+msgctxt "STR_SPELLING_BEGIN_TAB"
+msgid ""
+"Should the spellcheck be continued at the beginning of the current sheet?"
+msgstr "Soll die Rechtschreibprüfung am Tabellenanfang fortgesetzt werden?"
+
+#. Qekpw
+#: globstr.src
+msgctxt "STR_SPELLING_NO_LANG"
+msgid ""
+"is not available for the thesaurus.\n"
+"Please check your installation and install \n"
+"the desired language if necessary"
+msgstr ""
+"ist für den Thesaurus nicht verfügbar. \n"
+"Überprüfen Sie bitte Ihre Installation und installieren Sie \n"
+"gegebenenfalls die gewünschte Sprache"
+
+#. 8M6Nx
+#: globstr.src
+msgctxt "STR_SPELLING_STOP_OK"
+msgid "The spellcheck of this sheet has been completed."
+msgstr "Die Rechtschreibprüfung dieser Tabelle ist abgeschlossen."
+
+#. FjWF9
+#: globstr.src
+msgctxt "STR_UNDO_INSERT_TAB"
+msgid "Insert Sheet"
+msgstr "Tabelle einfügen"
+
+#. Fs2sv
+#: globstr.src
+msgctxt "STR_UNDO_DELETE_TAB"
+msgid "Delete Sheets"
+msgstr "Tabellen löschen"
+
+#. YBU5G
+#: globstr.src
+msgctxt "STR_UNDO_RENAME_TAB"
+msgid "Rename Sheet"
+msgstr "Tabelle umbenennen"
+
+#. 8soVt
+#: globstr.src
+msgctxt "STR_UNDO_SET_TAB_BG_COLOR"
+msgid "Color Tab"
+msgstr "Register färben"
+
+#. 3DXsa
+#: globstr.src
+msgctxt "STR_UNDO_SET_MULTI_TAB_BG_COLOR"
+msgid "Color Tabs"
+msgstr "Register färben"
+
+#. GZGAm
+#: globstr.src
+msgctxt "STR_UNDO_MOVE_TAB"
+msgid "Move Sheets"
+msgstr "Tabellen verschieben"
+
+#. nuJG9
+#: globstr.src
+msgctxt "STR_UNDO_COPY_TAB"
+msgid "Copy Sheet"
+msgstr "Tabelle kopieren"
+
+#. t78di
+#: globstr.src
+msgctxt "STR_UNDO_APPEND_TAB"
+msgid "Append sheet"
+msgstr "Tabelle anhängen"
+
+#. ziE7i
+#: globstr.src
+msgctxt "STR_UNDO_SHOWTAB"
+msgid "Show Sheet"
+msgstr "Tabelle anzeigen"
+
+#. 6YkTf
+#: globstr.src
+msgctxt "STR_UNDO_SHOWTABS"
+msgid "Show Sheets"
+msgstr "Tabellen anzeigen"
+
+#. RpgBp
+#: globstr.src
+msgctxt "STR_UNDO_HIDETAB"
+msgid "Hide sheet"
+msgstr "Tabelle ausblenden"
+
+#. rsG7G
+#: globstr.src
+msgctxt "STR_UNDO_HIDETABS"
+msgid "Hide sheets"
+msgstr "Tabellen ausblenden"
+
+#. dcXQA
+#: globstr.src
+msgctxt "STR_UNDO_TAB_RTL"
+msgid "Flip sheet"
+msgstr "Tabelle wenden"
+
+#. MM449
+#: globstr.src
+msgctxt "STR_ABSREFLOST"
+msgid ""
+"The new table contains absolute references to other tables which may be "
+"incorrect!"
+msgstr ""
+"Die neue Tabelle enthält absolute Bezüge auf andere Tabellen, die nicht mehr"
+" stimmen müssen!"
+
+#. HbvvQ
+#: globstr.src
+msgctxt "STR_NAMECONFLICT"
+msgid ""
+"Due to identical names, an existing range name in the destination document "
+"has been altered!"
+msgstr ""
+"Wegen einer Namensgleichheit wurde im Zieldokument ein bestehender "
+"Bereichsname verändert!"
+
+#. R4PSM
+#: globstr.src
+msgctxt "STR_ERR_AUTOFILTER"
+msgid "AutoFilter not possible"
+msgstr "AutoFilter nicht möglich"
+
+#. G4ADH
+#: globstr.src
+msgctxt "STR_CREATENAME_REPLACE"
+msgid "Replace existing definition of #?"
+msgstr "Vorhandene Definition von # ersetzen?"
+
+#. QCY4T
+#: globstr.src
+msgctxt "STR_CREATENAME_MARKERR"
+msgid "Invalid selection for range names"
+msgstr "Falsche Auswahl für Bereichsnamen"
+
+#. DALzt
+#: globstr.src
+msgctxt "STR_CONSOLIDATE_ERR1"
+msgid "References can not be inserted above the source data."
+msgstr "Verbindungen können nicht oberhalb der Quelldaten eingefügt werden."
+
+#. GeFnL
+#: globstr.src
+msgctxt "STR_SCENARIO_NOTFOUND"
+msgid "Scenario not found"
+msgstr "Szenario nicht gefunden"
+
+#. h9AuX
+#: globstr.src
+msgctxt "STR_QUERY_DELENTRY"
+msgid "Do you really want to delete the entry #?"
+msgstr "Möchten Sie den Eintrag # wirklich löschen?"
+
+#. dcGSL
+#: globstr.src
+msgctxt "STR_VOBJ_OBJECT"
+msgid "Objects/Images"
+msgstr "Objekte/Bilder"
+
+#. cYXCQ
+#: globstr.src
+msgctxt "STR_VOBJ_CHART"
+msgid "Charts"
+msgstr "Diagramme"
+
+#. juLxa
+#: globstr.src
+msgctxt "STR_VOBJ_DRAWINGS"
+msgid "Drawing Objects"
+msgstr "Zeichenobjekte"
+
+#. JGftp
+#: globstr.src
+msgctxt "STR_VOBJ_MODE_SHOW"
+msgid "Show"
+msgstr "Anzeigen"
+
+#. BmQGg
+#: globstr.src
+msgctxt "STR_VOBJ_MODE_HIDE"
+msgid "Hide"
+msgstr "Verbergen"
+
+#. HKpNF
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_TOPDOWN"
+msgid "Top to bottom"
+msgstr "Oben nach unten"
+
+#. 2hJDB
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_LEFTRIGHT"
+msgid "Left-to-right"
+msgstr "Links-nach-Rechts"
+
+#. 3Appb
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_NOTES"
+msgid "Comments"
+msgstr "Kommentare"
+
+#. ZhGSA
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_GRID"
+msgid "Grid"
+msgstr "Tabellengitter"
+
+#. Grh6n
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_HEADERS"
+msgid "Row & Column Headers"
+msgstr "Zeilen- und Spaltenköpfe"
+
+#. opCNb
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_FORMULAS"
+msgid "Formulas"
+msgstr "Formeln"
+
+#. sdJqo
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_NULLVALS"
+msgid "Zero Values"
+msgstr "Nullwerte"
+
+#. FJ89A
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_PRINTDIR"
+msgid "Print direction"
+msgstr "Druckrichtung"
+
+#. oU39x
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_FIRSTPAGENO"
+msgid "First page number"
+msgstr "Erste Seitenzahl"
+
+#. 98ZSn
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_SCALE"
+msgid "Reduce/enlarge printout"
+msgstr "Ausdruck verkleinern/vergrößern"
+
+#. CXqDX
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_SCALETOPAGES"
+msgid "Fit print range(s) on number of pages"
+msgstr "Druckbereich(e) auf Seitenzahl anpassen"
+
+#. kDAZk
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_SCALETO"
+msgid "Fit print range(s) to width/height"
+msgstr "Druckbereich(e) auf Breite/Höhe anpassen"
+
+#. fnrU6
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_SCALE_WIDTH"
+msgid "Width"
+msgstr "Breite"
+
+#. DCDgF
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_SCALE_HEIGHT"
+msgid "Height"
+msgstr "Höhe"
+
+#. cB3Ak
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_SCALE_PAGES"
+msgid "%1 page(s)"
+msgstr "%1 Seite(n)"
+
+#. CHEgx
+#: globstr.src
+msgctxt "STR_SCATTR_PAGE_SCALE_AUTO"
+msgid "automatic"
+msgstr "Automatisch"
+
+#. ErVas
+#: globstr.src
+msgctxt "STR_DOC_STAT"
+msgid "Statistics"
+msgstr "Statistik"
+
+#. aLfAE
+#: globstr.src
+msgctxt "STR_LINKERROR"
+msgid "The link could not be updated."
+msgstr "Die Verknüpfung konnte nicht aktualisiert werden."
+
+#. HBYTF
+#: globstr.src
+msgctxt "STR_LINKERRORFILE"
+msgid "File:"
+msgstr "Datei:"
+
+#. aAxau
+#: globstr.src
+msgctxt "STR_LINKERRORTAB"
+msgid "Sheet:"
+msgstr "Tabelle:"
+
+#. y7JBD
+#: globstr.src
+msgctxt "STR_OVERVIEW"
+msgid "Overview"
+msgstr "Überblick"
+
+#. HFCYz
+#: globstr.src
+msgctxt "STR_DOC_INFO"
+msgid "Doc.Information"
+msgstr "Dokumentinfo"
+
+#. BPqDo
+#: globstr.src
+msgctxt "STR_DOC_PRINTED"
+msgid "Printed"
+msgstr "Gedruckt"
+
+#. XzDAC
+#: globstr.src
+msgctxt "STR_BY"
+msgid "by"
+msgstr "von"
+
+#. JzK2B
+#: globstr.src
+msgctxt "STR_ON"
+msgid "on"
+msgstr "am"
+
+#. w8qPB
+#: globstr.src
+msgctxt "STR_RELOAD_TABLES"
+msgid ""
+"This file contains links to other files.\n"
+"Should they be updated?"
+msgstr ""
+"Diese Datei enthält Verknüpfungen zu anderen Dateien.\n"
+"Sollen diese aktualisiert werden?"
+
+#. qkto7
+#: globstr.src
+msgctxt "STR_REIMPORT_AFTER_LOAD"
+msgid ""
+"This file contains queries. The results of these queries were not saved.\n"
+"Do you want these queries to be repeated?"
+msgstr ""
+"Diese Datei enthält Abfragen. Die Abfrageergebnisse wurden nicht gespeichert.\n"
+"Sollen diese Abfragen wiederholt werden?"
+
+#. HrjKf
+#: globstr.src
+msgctxt "STR_INSERT_FULL"
+msgid ""
+"Filled cells cannot be shifted\n"
+"beyond the sheet."
+msgstr ""
+"Ausgefüllte Zellen können nicht über\n"
+"die Tabelle hinaus verschoben werden."
+
+#. 9BK9C
+#: globstr.src
+msgctxt "STR_TABINSERT_ERROR"
+msgid "The table could not be inserted."
+msgstr "Die Tabelle konnte nicht eingefügt werden."
+
+#. SEwGE
+#: globstr.src
+msgctxt "STR_TABREMOVE_ERROR"
+msgid "The sheets could not be deleted."
+msgstr "Die Tabellen konnten nicht gelöscht werden."
+
+#. SQGAE
+#: globstr.src
+msgctxt "STR_PASTE_ERROR"
+msgid "The contents of the clipboard could not be pasted."
+msgstr "Der Inhalt der Zwischenablage konnte nicht eingefügt werden."
+
+#. pBHSD
+#: globstr.src
+msgctxt "STR_PASTE_FULL"
+msgid "There is not enough space on the sheet to insert here."
+msgstr "Es kann nicht über die Tabelle hinaus eingefügt werden."
+
+#. inbya
+#: globstr.src
+msgctxt "STR_PASTE_BIGGER"
+msgid ""
+"The content of the clipboard is bigger than the range selected.\n"
+"Do you want to insert it anyway?"
+msgstr ""
+"Der Inhalt der Zwischenablage ist größer als der ausgewählte Bereich.\n"
+"Möchten Sie trotzdem einfügen?"
+
+#. 2Afxk
+#: globstr.src
+msgctxt "STR_ERR_NOREF"
+msgid "No cell references are found in the selected cells."
+msgstr "In den ausgewählten Zellen wurde kein Zellbezug gefunden."
+
+#. vKDsp
+#: globstr.src
+msgctxt "STR_GRAPHICNAME"
+msgid "Image"
+msgstr "Bild"
+
+#. PKj5e
+#: globstr.src
+msgctxt "STR_INVALIDNAME"
+msgid "Invalid name."
+msgstr "Ungültiger Name."
+
+#. 838A7
+#: globstr.src
+msgctxt "STR_VALID_MACRONOTFOUND"
+msgid "Selected macro not found."
+msgstr "Das ausgewählte Makro wurde nicht gefunden."
+
+#. E5jbk
+#: globstr.src
+msgctxt "STR_VALID_DEFERROR"
+msgid "Invalid value."
+msgstr "Ungültiger Wert."
+
+#. SREQT
+#: globstr.src
+msgctxt "STR_PROGRESS_CALCULATING"
+msgid "calculating"
+msgstr "berechnen"
+
+#. EDA4C
+#: globstr.src
+msgctxt "STR_PROGRESS_SORTING"
+msgid "sorting"
+msgstr "sortieren"
+
+#. yedmq
+#: globstr.src
+msgctxt "STR_PROGRESS_HEIGHTING"
+msgid "Adapt row height"
+msgstr "Zeilenhöhen anpassen"
+
+#. G33by
+#: globstr.src
+msgctxt "STR_PROGRESS_COMPARING"
+msgid "Compare #"
+msgstr "Vergleiche #"
+
+#. dU3Gk
+#: globstr.src
+msgctxt "STR_DETINVALID_OVERFLOW"
+msgid ""
+"The maximum number of invalid cells has been exceeded.\n"
+"Not all invalid cells have been marked."
+msgstr ""
+"Die maximale Anzahl ungültiger Zellen wurde überschritten.\n"
+"Es wurden nicht alle ungültigen Zellen markiert."
+
+#. pH5Pf
+#: globstr.src
+msgctxt "STR_QUICKHELP_DELETE"
+msgid "Delete contents"
+msgstr "Inhalte löschen"
+
+#. uJtdh
+#: globstr.src
+msgctxt "STR_QUICKHELP_REF"
+msgid "%1 R x %2 C"
+msgstr "%1 Z x %2 S"
+
+#. NJpDi
+#: globstr.src
+msgctxt "STR_FUNCTIONLIST_MORE"
+msgid "More..."
+msgstr "Andere..."
+
+#. mnF7F
+#: globstr.src
+msgctxt "STR_ERR_INVALID_AREA"
+msgid "Invalid range"
+msgstr "Ungültiger Bereich"
+
+#. ANABc
+#: globstr.src
+msgctxt "STR_PIVOT_STYLE_INNER"
+msgid "Pivot Table Value"
+msgstr "Pivot-Tabelle Wert"
+
+#. iaSss
+#: globstr.src
+msgctxt "STR_PIVOT_STYLE_RESULT"
+msgid "Pivot Table Result"
+msgstr "Pivot-Tabelle Ergebnis"
+
+#. DJhBL
+#: globstr.src
+msgctxt "STR_PIVOT_STYLE_CATEGORY"
+msgid "Pivot Table Category"
+msgstr "Pivot-Tabelle Kategorie"
+
+#. bTwc9
+#: globstr.src
+msgctxt "STR_PIVOT_STYLE_TITLE"
+msgid "Pivot Table Title"
+msgstr "Pivot-Tabelle Titel"
+
+#. zuSeA
+#: globstr.src
+msgctxt "STR_PIVOT_STYLE_FIELDNAME"
+msgid "Pivot Table Field"
+msgstr "Pivot-Tabelle Feld"
+
+#. Spguu
+#: globstr.src
+msgctxt "STR_PIVOT_STYLE_TOP"
+msgid "Pivot Table Corner"
+msgstr "Pivot-Tabelle Ecke"
+
+#. GyuCe
+#: globstr.src
+msgctxt "STR_OPERATION_FILTER"
+msgid "Filter"
+msgstr "Filter"
+
+#. xg5AD
+#: globstr.src
+msgctxt "STR_OPERATION_SORT"
+msgid "Sort"
+msgstr "Sortieren"
+
+#. dCgtR
+#: globstr.src
+msgctxt "STR_OPERATION_SUBTOTAL"
+msgid "Subtotals"
+msgstr "Zwischensummen"
+
+#. jhD4q
+#: globstr.src
+msgctxt "STR_OPERATION_NONE"
+msgid "None"
+msgstr "Keine"
+
+#. FVErn
+#: globstr.src
+msgctxt "STR_IMPORT_REPLACE"
+msgid "Do you want to replace the contents of #?"
+msgstr "Möchten Sie den Inhalt von # ersetzen?"
+
+#. DyCp4
+#: globstr.src
+msgctxt "STR_TIP_WIDTH"
+msgid "Width:"
+msgstr "Breite:"
+
+#. oAhVm
+#: globstr.src
+msgctxt "STR_TIP_HEIGHT"
+msgid "Height:"
+msgstr "Höhe:"
+
+#. Z2kXt
+#: globstr.src
+msgctxt "STR_TIP_HIDE"
+msgid "Hide"
+msgstr "Verbergen"
+
+#. b6BCY
+#: globstr.src
+msgctxt "STR_CHANGED_BLANK"
+msgid "<empty>"
+msgstr "<leer>"
+
+#. AVy6m
+#: globstr.src
+msgctxt "STR_CHANGED_CELL"
+msgid "Cell #1 changed from '#2' to '#3'"
+msgstr "Zelle #1 von '#2' zu '#3' geändert"
+
+#. E7fW7
+#: globstr.src
+msgctxt "STR_CHANGED_INSERT"
+msgid "#1 inserted"
+msgstr "#1 eingefügt"
+
+#. GcX7C
+#: globstr.src
+msgctxt "STR_CHANGED_DELETE"
+msgid "#1 deleted"
+msgstr "#1 gelöscht"
+
+#. 7X7By
+#: globstr.src
+msgctxt "STR_CHANGED_MOVE"
+msgid "Range moved from #1 to #2"
+msgstr "Bereich von #1 nach #2 verschoben"
+
+#. BkjBK
+#: globstr.src
+msgctxt "STR_END_REDLINING"
+msgid ""
+"This action will exit the change recording mode.\n"
+"Any information about changes will be lost.\n"
+"\n"
+"Exit change recording mode?\n"
+"\n"
+msgstr ""
+"Mit dieser Aktion wird die Aufzeichnung von Änderungen beendet.\n"
+"Jegliche Information über Änderungen geht hierdurch verloren.\n"
+"\n"
+"Aufzeichnung beenden?\n"
+"\n"
+
+#. ooAfe
+#: globstr.src
+msgctxt "STR_CLOSE_ERROR_LINK"
+msgid "The document can not be closed while a link is being updated."
+msgstr ""
+"Das Dokument kann nicht geschlossen werden, während eine Verknüpfung "
+"aktualisiert wird."
+
+#. PJdNn
+#: globstr.src
+msgctxt "STR_UNDO_RESIZEMATRIX"
+msgid "Adapt array area"
+msgstr "Matrixbereich anpassen"
+
+#. nZEgk
+#: globstr.src
+msgctxt "STR_TIP_RESIZEMATRIX"
+msgid "Array formula %1 R x %2 C"
+msgstr "Matrixformel %1 Z x %2 S"
+
+#. nkxuG
+#: globstr.src
+msgctxt "STR_UNDO_HANGULHANJA"
+msgid "Hangul/Hanja Conversion"
+msgstr "Hangul/Hanja Konvertierung"
+
+#. 9XdEk
+#: globstr.src
+msgctxt "STR_NAME_INPUT_CELL"
+msgid "Select Cell"
+msgstr "Zelle auswählen"
+
+#. AkoV3
+#: globstr.src
+msgctxt "STR_NAME_INPUT_RANGE"
+msgid "Select Range"
+msgstr "Bereich auswählen"
+
+#. U2Jow
+#: globstr.src
+msgctxt "STR_NAME_INPUT_DBRANGE"
+msgid "Select Database Range"
+msgstr "Datenbankbereich auswählen"
+
+#. jfJtb
+#: globstr.src
+msgctxt "STR_NAME_INPUT_ROW"
+msgid "Go To Row"
+msgstr "Gehe zu Zeile"
+
+#. fF3Qb
+#: globstr.src
+msgctxt "STR_NAME_INPUT_SHEET"
+msgid "Go To Sheet"
+msgstr "Gehe zu Tabelle"
+
+#. xEAo2
+#: globstr.src
+msgctxt "STR_NAME_INPUT_DEFINE"
+msgid "Define Name for Range"
+msgstr "Bereich benennen"
+
+#. Jee9b
+#: globstr.src
+msgctxt "STR_NAME_ERROR_SELECTION"
+msgid "The selection needs to be rectangular in order to name it."
+msgstr ""
+"Der ausgewählte Bereich muss rechteckig sein, um ihn benennen zu können."
+
+#. 3AECm
+#: globstr.src
+msgctxt "STR_NAME_ERROR_NAME"
+msgid ""
+"You must enter a valid reference or type a valid name for the selected "
+"range."
+msgstr ""
+"Sie müssen entweder einen gültigen Zellbezug oder einen gültigen Namen für "
+"den ausgewählten Bereich angeben."
+
+#. UCv9m
+#: globstr.src
+msgctxt "STR_CHANGED_MOVE_REJECTION_WARNING"
+msgid ""
+"WARNING: This action may have resulted in unintended changes to cell "
+"references in formulas."
+msgstr ""
+"ACHTUNG: Diese Aktion kann zu unbeabsichtigten Änderungen von Zellbezügen in"
+" Formeln führen."
+
+#. A7cxX
+#: globstr.src
+msgctxt "STR_CHANGED_DELETE_REJECTION_WARNING"
+msgid ""
+"WARNING: This action may have resulted in references to the deleted area not"
+" being restored."
+msgstr ""
+"ACHTUNG: Diese Aktion kann dazu geführt haben, dass Bezüge zum gelöschten "
+"Bereich nicht wiederhergestellt wurden."
+
+#. 7kcLL
+#: globstr.src
+msgctxt "STR_UNDO_CHINESE_TRANSLATION"
+msgid "Chinese conversion"
+msgstr "Chinesische Konvertierung"
+
+#. Ah2Ez
+#: globstr.src
+msgctxt "STR_ERR_DATAPILOT_INPUT"
+msgid "You cannot change this part of the pivot table."
+msgstr "Sie können diesen Teil der Pivot-Tabelle nicht ändern."
+
+#. aqFcw
+#: globstr.src
+msgctxt "STR_RECALC_MANUAL"
+msgid "Manual"
+msgstr "Manuell"
+
+#. SEHZ2
+#: globstr.src
+msgctxt "STR_RECALC_AUTO"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. G4way
+#: globstr.src
+msgctxt "STR_ERR_LONG_NESTED_ARRAY"
+msgid "Nested arrays are not supported."
+msgstr "Verschachtelte Matrizen werden nicht unterstützt."
+
+#. n5PAG
+#: globstr.src
+msgctxt "STR_UNDO_TEXTTOCOLUMNS"
+msgid "Text to Columns"
+msgstr "Text in Spalten"
+
+#. VWhZ3
+#: globstr.src
+msgctxt "STR_DOC_UPDATED"
+msgid "Your spreadsheet has been updated with changes saved by other users."
+msgstr ""
+"Ihr Tabellendokument wurde mit Änderungen anderer Benutzer aktualisiert."
+
+#. RzxS3
+#: globstr.src
+msgctxt "STR_DOC_WILLBESAVED"
+msgid ""
+"The spreadsheet must be saved now to activate sharing mode.\n"
+"\n"
+"Do you want to continue?"
+msgstr ""
+"Das Tabellendokument muss jetzt gespeichert werden, um die Freigabe zu aktivieren.\n"
+"\n"
+"Möchten Sie fortfahren?"
+
+#. hRFbV
+#: globstr.src
+msgctxt "STR_DOC_WILLNOTBESAVED"
+msgid ""
+"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
+"\n"
+"Do you want to continue?"
+msgstr ""
+"Bereits aufgelöste Konflikte gehen verloren, Ihre Änderungen am Tabellendokument werden nicht gespeichert.\n"
+"\n"
+"Möchten Sie fortfahren?"
+
+#. 6JJGG
+#: globstr.src
+msgctxt "STR_DOC_DISABLESHARED"
+msgid ""
+"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
+"\n"
+"Do you want to continue?"
+msgstr ""
+"Wenn Sie die Freigabe des Tabellendokuments aufheben, können andere Benutzer ihre Änderungen nicht mehr in das Tabellendokument übernehmen.\n"
+"\n"
+"Möchten Sie fortfahren?"
+
+#. wQu4c
+#: globstr.src
+msgctxt "STR_DOC_NOLONGERSHARED"
+msgid ""
+"This spreadsheet is no longer in shared mode.\n"
+"\n"
+"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
+msgstr ""
+"Dieses Tabellendokument ist nicht mehr freigegeben.\n"
+"\n"
+"Speichern Sie Ihr Tabellendokument unter anderem Namen ab und übernehmen Sie die Änderungen in das Tabellendokument manuell."
+
+#. iukHL
+#: globstr.src
+msgctxt "STR_SHARED_DOC_WARNING"
+msgid ""
+"The spreadsheet is in shared mode. This allows multiple users to access and edit the spreadsheet at the same time.\n"
+"\n"
+"Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities."
+msgstr ""
+"Das Tabellendokument ist freigegeben. Dadurch können mehrere Benutzer auf das Tabellendokument zugreifen und Änderungen vornehmen.\n"
+"\n"
+"Änderungen von Formatierungen wie Schriftarten, Farben und Zahlenformate werden im freigegebenen Modus nicht gespeichert; außerdem stehen einige Funktionen, wie das Bearbeiten von Diagrammen und Zeichnungsobjekten nicht zur Verfügung. Heben Sie die Freigabe auf, um Exklusivzugriff zu erhalten, wenn Sie entsprechende Änderungen vornehmen möchten."
+
+#. Acijp
+#: globstr.src
+msgctxt "STR_FILE_LOCKED_TRY_LATER"
+msgid ""
+"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
+"\n"
+"Sharing mode of a locked file cannot be disabled. Try again later."
+msgstr ""
+"Das freigegebene Tabellendokument ist im Moment gesperrt, da der folgende Benutzer Änderungen vornimmt: '%1'\n"
+"\n"
+"Die Freigabe kann nicht aufgehoben werden, solange das Tabellendokument gesperrt ist. Wiederholen Sie den Vorgang später."
+
+#. tiq8b
+#: globstr.src
+msgctxt "STR_FILE_LOCKED_SAVE_LATER"
+msgid ""
+"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
+"\n"
+"Try again later to save your changes."
+msgstr ""
+"Das freigegebene Tabellendokument ist im Moment gesperrt, da der folgende Benutzer Änderungen vornimmt: '%1'\n"
+"\n"
+"Wiederholen Sie den Vorgang später, um Ihre Änderungen zu speichern."
+
+#. 67jJW
+#: globstr.src
+msgctxt "STR_UNKNOWN_USER"
+msgid "Unknown User"
+msgstr "Unbekannter Benutzer"
+
+#. x3xuD
+#: globstr.src
+msgctxt "STR_SHAPE_AUTOSHAPE"
+msgid "AutoShape"
+msgstr "AutoForm"
+
+#. c7YGt
+#: globstr.src
+msgctxt "STR_SHAPE_RECTANGLE"
+msgid "Rectangle"
+msgstr "Rechteck"
+
+#. 9jDFZ
+#: globstr.src
+msgctxt "STR_SHAPE_LINE"
+msgid "Line"
+msgstr "Linie"
+
+#. VqTJj
+#: globstr.src
+msgctxt "STR_SHAPE_OVAL"
+msgid "Oval"
+msgstr "Ellipse"
+
+#. e3mpj
+#: globstr.src
+msgctxt "STR_FORM_BUTTON"
+msgid "Button"
+msgstr "Schaltfläche"
+
+#. gkBcL
+#: globstr.src
+msgctxt "STR_FORM_CHECKBOX"
+msgid "Check Box"
+msgstr "Markierfeld"
+
+#. iivnN
+#: globstr.src
+msgctxt "STR_FORM_OPTIONBUTTON"
+msgid "Option Button"
+msgstr "Optionsfeld"
+
+#. PpNjE
+#: globstr.src
+msgctxt "STR_FORM_LABEL"
+msgid "Label"
+msgstr "Bezeichnung"
+
+#. 42WD2
+#: globstr.src
+msgctxt "STR_FORM_LISTBOX"
+msgid "List Box"
+msgstr "Listenfeld"
+
+#. avBTK
+#: globstr.src
+msgctxt "STR_FORM_GROUPBOX"
+msgid "Group Box"
+msgstr "Gruppenfeld"
+
+#. iSqdH
+#: globstr.src
+msgctxt "STR_FORM_DROPDOWN"
+msgid "Drop Down"
+msgstr "Ausklappen"
+
+#. cs76P
+#: globstr.src
+msgctxt "STR_FORM_SPINNER"
+msgid "Spinner"
+msgstr "Drehfeld"
+
+#. j8Dp2
+#: globstr.src
+msgctxt "STR_FORM_SCROLLBAR"
+msgid "Scroll Bar"
+msgstr "Bildlaufleiste"
+
+#. 7iaCJ
+#: globstr.src
+msgctxt "STR_STYLE_FAMILY_CELL"
+msgid "Cell Styles"
+msgstr "Zellvorlagen"
+
+#. BFwPp
+#: globstr.src
+msgctxt "STR_STYLE_FAMILY_PAGE"
+msgid "Page Styles"
+msgstr "Seitenvorlagen"
+
+#. GJEem
+#: globstr.src
+msgctxt "STR_ERR_DATAPILOTSOURCE"
+msgid "Pivot table source data is invalid."
+msgstr "Quelldaten der Pivot-Tabelle sind ungültig."
+
+#. qs9E5
+#: globstr.src
+msgctxt "STR_OPTIONS_WARN_SEPARATORS"
+msgid ""
+"Because the current formula separator settings conflict with the locale, the"
+" formula separators have been reset to their default values."
+msgstr ""
+"Da die aktuellen Formeltrenner mit dem Gebietsschema in Konflikt stehen, "
+"wurden die Formeltrenner auf ihre Standardwerte zurückgesetzt."
+
+#. QMTkA
+#: globstr.src
+msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
+msgid "Insert Current Date"
+msgstr "Aktuelles Datum einfügen"
+
+#. uoa4E
+#: globstr.src
+msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
+msgid "Insert Current Time"
+msgstr "Aktuelle Zeit einfügen"
+
+#. BZMPF
+#: globstr.src
+msgctxt "STR_MANAGE_NAMES"
+msgid "Manage Names..."
+msgstr "Namen verwalten..."
+
+#. AFC3z
+#: globstr.src
+msgctxt "STR_HEADER_NAME"
+msgid "Name"
+msgstr "Name"
+
+#. 6Wduj
+#: globstr.src
+msgctxt "STR_HEADER_RANGE_OR_EXPR"
+msgid "Range or formula expression"
+msgstr "Bereich oder Formelausdruck"
+
+#. TBNEY
+#: globstr.src
+msgctxt "STR_HEADER_SCOPE"
+msgid "Scope"
+msgstr "Inhalt"
+
+#. VEEep
+#: globstr.src
+msgctxt "STR_MULTI_SELECT"
+msgid "(multiple)"
+msgstr "(mehrere)"
+
+#. hucnc
+#: globstr.src
+msgctxt "STR_GLOBAL_SCOPE"
+msgid "Document (Global)"
+msgstr "Dokument (global)"
+
+#. Jhqkj
+#: globstr.src
+msgctxt "STR_ERR_NAME_EXISTS"
+msgid "Invalid name. Already in use for the selected scope."
+msgstr "Ungültiger Name. Er wird im ausgewählten Bereich bereits verwendet."
+
+#. mFEcH
+#: globstr.src
+msgctxt "STR_ERR_NAME_INVALID"
+msgid "Invalid name. Only use letters, numbers and underscore."
+msgstr ""
+"Ungültiger Name. Verwenden Sie nur Buchstaben, Zahlen und Unterstriche."
+
+#. owW4Y
+#: globstr.src
+msgctxt "STR_UNSAVED_EXT_REF"
+msgid ""
+"This Document contains external references to unsaved documents.\n"
+"\n"
+"Do you want to continue?"
+msgstr ""
+"Dieses Dokument enthält externe Verweise auf nicht gespeicherte Dokumente.\n"
+"\n"
+"Möchten Sie fortfahren?"
+
+#. dSCFD
+#: globstr.src
+msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
+msgid ""
+"This Document is referenced by another document and not yet saved. Closing "
+"it without saving will result in data loss."
+msgstr ""
+"Auf dieses Dokument wird von einem anderen noch nicht gespeicherten Dokument"
+" verwiesen. Schließen ohne Speichern wird zu Datenverlust führen."
+
+#. H2xrj
+#: globstr.src
+msgctxt "STR_HEADER_RANGE"
+msgid "Range"
+msgstr "Bereich"
+
+#. cQUGs
+#: globstr.src
+msgctxt "STR_HEADER_COND"
+msgid "First Condition"
+msgstr "Erste Bedingung"
+
+#. 5AM9B
+#: globstr.src
+msgctxt "STR_COND_CONDITION"
+msgid "Cell value is"
+msgstr "Zellwert ist"
+
+#. E8yxG
+#: globstr.src
+msgctxt "STR_COND_COLORSCALE"
+msgid "ColorScale"
+msgstr "Farbskala"
+
+#. 7eqFv
+#: globstr.src
+msgctxt "STR_COND_DATABAR"
+msgid "DataBar"
+msgstr "Datenbalken"
+
+#. eroC7
+#: globstr.src
+msgctxt "STR_COND_ICONSET"
+msgid "IconSet"
+msgstr "Symbolstil"
+
+#. CFQVT
+#: globstr.src
+msgctxt "STR_COND_BETWEEN"
+msgid "between"
+msgstr "zwischen"
+
+#. a3tJ6
+#: globstr.src
+msgctxt "STR_COND_NOTBETWEEN"
+msgid "not between"
+msgstr "nicht zwischen"
+
+#. GfkMv
+#: globstr.src
+msgctxt "STR_COND_UNIQUE"
+msgid "unique"
+msgstr "einmalig"
+
+#. aKqGp
+#: globstr.src
+msgctxt "STR_COND_DUPLICATE"
+msgid "duplicate"
+msgstr "Duplikat"
+
+#. owhPn
+#: globstr.src
+msgctxt "STR_COND_FORMULA"
+msgid "Formula is"
+msgstr "Formel ist"
+
+#. MFuAg
+#: globstr.src
+msgctxt "STR_COND_TOP10"
+msgid "Top Elements"
+msgstr "Höchste Elemente"
+
+#. iFMZF
+#: globstr.src
+msgctxt "STR_COND_BOTTOM10"
+msgid "Bottom Elements"
+msgstr "Niedrigste Elemente"
+
+#. ghXoD
+#: globstr.src
+msgctxt "STR_COND_TOP_PERCENT"
+msgid "Top Percent"
+msgstr "Höchster Prozentsatz"
+
+#. vRk5n
+#: globstr.src
+msgctxt "STR_COND_DATE"
+msgid "Date is"
+msgstr "Datum ist"
+
+#. tXo2p
+#: globstr.src
+msgctxt "STR_COND_BOTTOM_PERCENT"
+msgid "Bottom Percent"
+msgstr "Niedrigster Prozentsatz"
+
+#. pMnYe
+#: globstr.src
+msgctxt "STR_COND_ABOVE_AVERAGE"
+msgid "Above Average"
+msgstr "Überdurchschnittlich"
+
+#. EMygM
+#: globstr.src
+msgctxt "STR_COND_BELOW_AVERAGE"
+msgid "Below Average"
+msgstr "Unterdurchschnittlich"
+
+#. Ksm6X
+#: globstr.src
+msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
+msgid "Above or equal Average"
+msgstr "Mehr als oder gleich wie der Durchschnitt"
+
+#. WKy5B
+#: globstr.src
+msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
+msgid "Below or equal Average"
+msgstr "Weniger als oder gleich wie der Durchschnitt"
+
+#. 8ycGc
+#: globstr.src
+msgctxt "STR_COND_ERROR"
+msgid "an Error code"
+msgstr "Ein Fehlercode"
+
+#. q3Mwk
+#: globstr.src
+msgctxt "STR_COND_NOERROR"
+msgid "not an Error code"
+msgstr "Kein Fehlercode"
+
+#. 2ayAW
+#: globstr.src
+msgctxt "STR_COND_BEGINS_WITH"
+msgid "Begins with"
+msgstr "Beginnt mit"
+
+#. CiVgK
+#: globstr.src
+msgctxt "STR_COND_ENDS_WITH"
+msgid "Ends with"
+msgstr "Endet mit"
+
+#. xDh9S
+#: globstr.src
+msgctxt "STR_COND_CONTAINS"
+msgid "Contains"
+msgstr "Enthält"
+
+#. cXKoV
+#: globstr.src
+msgctxt "STR_COND_NOT_CONTAINS"
+msgid "Not Contains"
+msgstr "Enthält nicht"
+
+#. GvCEB
+#: globstr.src
+msgctxt "STR_COND_TODAY"
+msgid "today"
+msgstr "heute"
+
+#. ADfRQ
+#: globstr.src
+msgctxt "STR_COND_YESTERDAY"
+msgid "yesterday"
+msgstr "gestern"
+
+#. fTnD2
+#: globstr.src
+msgctxt "STR_COND_TOMORROW"
+msgid "tomorrow"
+msgstr "morgen"
+
+#. mvGBE
+#: globstr.src
+msgctxt "STR_COND_LAST7DAYS"
+msgid "in the last 7 days"
+msgstr "in den letzten 7 Tagen"
+
+#. DmaSj
+#: globstr.src
+msgctxt "STR_COND_THISWEEK"
+msgid "this week"
+msgstr "Diese Woche"
+
+#. a8Hdp
+#: globstr.src
+msgctxt "STR_COND_LASTWEEK"
+msgid "last week"
+msgstr "letzte Woche"
+
+#. ykG5k
+#: globstr.src
+msgctxt "STR_COND_NEXTWEEK"
+msgid "next week"
+msgstr "nächste Woche"
+
+#. NCSVV
+#: globstr.src
+msgctxt "STR_COND_THISMONTH"
+msgid "this month"
+msgstr "diesen Monat"
+
+#. zEYre
+#: globstr.src
+msgctxt "STR_COND_LASTMONTH"
+msgid "last month"
+msgstr "letzten Monat"
+
+#. ZrGrG
+#: globstr.src
+msgctxt "STR_COND_NEXTMONTH"
+msgid "next month"
+msgstr "nächsten Monat"
+
+#. Fczye
+#: globstr.src
+msgctxt "STR_COND_THISYEAR"
+msgid "this year"
+msgstr "dieses Jahr"
+
+#. gQynd
+#: globstr.src
+msgctxt "STR_COND_LASTYEAR"
+msgid "last year"
+msgstr "letztes Jahr"
+
+#. sdxMh
+#: globstr.src
+msgctxt "STR_COND_NEXTYEAR"
+msgid "next year"
+msgstr "nächstes Jahr"
+
+#. FGxFR
+#: globstr.src
+msgctxt "STR_COND_AND"
+msgid "and"
+msgstr "und"
+
+#. LvyCH
+#: globstr.src
+msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
+msgid ""
+"Conditional Formats can not be created, deleted or changed in protected "
+"sheets!"
+msgstr ""
+"Bedingte Formatierungen können in geschützten Tabellen nicht erstellt, "
+"gelöscht oder verändert werden!"
+
+#. EgDja
+#: globstr.src
+msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
+msgid ""
+"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
+"\n"
+" Do you want to edit the existing conditional format?"
+msgstr ""
+"Die ausgewählte Zelle enthält schon eine bedingte Formatierung. Sie können entweder das existierende bedingte Format bearbeiten oder ein neues bedingtes Format festlegen.\n"
+"\n"
+" Möchten Sie das existierende bedingte Format bearbeiten?"
+
+#. cisuZ
+#: globstr.src
+msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
+msgid ""
+"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
+"\n"
+"Do you want to recalculate all formula cells in this document now?"
+msgstr ""
+"Dieses Dokument wurde zuletzt durch eine andere Anwendung als %PRODUCTNAME gespeichert. Einige Formelzellen können abweichende Ergebnisse liefern, wenn sie neu berechnet werden.\n"
+"\n"
+"Möchten Sie alle Formelzellen in diesem Dokument jetzt neu berechnen?"
+
+#. eEHVA
+#: globstr.src
+msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
+msgid ""
+"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
+"\n"
+"Do you want to recalculate all formula cells now?"
+msgstr ""
+"Dieses Dokument wurde zuletzt in Excel gespeichert. Einige Formelzellen können abweichende Ergebnisse liefern, wenn sie neu berechnet werden.\n"
+"\n"
+"Möchten Sie alle Formelzellen in diesem Dokument jetzt neu berechnen?"
+
+#. PjQtD
+#: globstr.src
+msgctxt "STR_ALWAYS_PERFORM_SELECTED"
+msgid "Always perform this without prompt in the future."
+msgstr "Dies zukünftig immer ohne Bestätigung ausführen."
+
+#. YgjzK
+#: globstr.src
+msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
+msgid ""
+"You cannot insert or delete cells when the affected range intersects with "
+"pivot table."
+msgstr ""
+"Sie können keine Zellen einfügen oder löschen, wenn der betroffene Bereich "
+"Zellen einer Pivot-Tabelle enthält."
+
+#. FVE5v
+#: globstr.src
+msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
+msgid "Seconds"
+msgstr "Sekunden"
+
+#. FNjEk
+#: globstr.src
+msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
+msgid "Minutes"
+msgstr "Minuten"
+
+#. vAPxh
+#: globstr.src
+msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
+msgid "Hours"
+msgstr "Stunden"
+
+#. 9RT2A
+#: globstr.src
+msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
+msgid "Days"
+msgstr "Tage"
+
+#. pEFdE
+#: globstr.src
+msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
+msgid "Months"
+msgstr "Monate"
+
+#. F6C2z
+#: globstr.src
+msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
+msgid "Quarters"
+msgstr "Quartale"
+
+#. sNB8G
+#: globstr.src
+msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
+msgid "Years"
+msgstr "Jahre"
+
+#. xtZNy
+#: globstr.src
+msgctxt "STR_INVALIDVAL"
+msgid "Invalid target value."
+msgstr "Unzulässiger Zielwert."
+
+#. qdJmG
+#: globstr.src
+msgctxt "STR_INVALIDVAR"
+msgid "Undefined name for variable cell."
+msgstr "Undefinierter Name als variable Zelle."
+
+#. vvxwu
+#: globstr.src
+msgctxt "STR_INVALIDFORM"
+msgid "Undefined name as formula cell."
+msgstr "Undefinierter Name als Formelzelle."
+
+#. F2Piu
+#: globstr.src
+msgctxt "STR_NOFORMULA"
+msgid "Formula cell must contain a formula."
+msgstr "Formelzelle muss eine Formel enthalten."
+
+#. TAUZn
+#: globstr.src
+msgctxt "STR_INVALIDINPUT"
+msgid "Invalid input."
+msgstr "Ungültige Eingabe."
+
+#. sB4EW
+#: globstr.src
+msgctxt "STR_INVALIDCONDITION"
+msgid "Invalid condition."
+msgstr "Ungültige Bedingung."
+
+#. LEU8A
+#: globstr.src
+msgctxt "STR_QUERYREMOVE"
+msgid ""
+"Should the entry\n"
+"#\n"
+"be deleted?"
+msgstr ""
+"Soll der Eintrag\n"
+"#\n"
+"gelöscht werden?"
+
+#. VueA3
+#: globstr.src
+msgctxt "STR_COPYLIST"
+msgid "Copy List"
+msgstr "Liste kopieren"
+
+#. BsYEp
+#: globstr.src
+msgctxt "STR_COPYFROM"
+msgid "List from"
+msgstr "Liste aus"
+
+#. wxjFd
+#: globstr.src
+msgctxt "STR_COPYERR"
+msgid "Cells without text have been ignored."
+msgstr "Zellen ohne Text wurden ignoriert."
+
+#. oqysQ
+#: globstr.src
+msgctxt "STR_CTRLCLICKHYPERLINK"
+msgid "%s-click to follow hyperlink:"
+msgstr "%s-Klick, um der Verknüpfung zu folgen"
+
+#. 5SDf7
+#: globstr.src
+msgctxt "STR_CLICKHYPERLINK"
+msgid "click to open hyperlink:"
+msgstr "Klick, um Hyperlink zu öffnen:"
+
+#. VFyBY
+#: globstr.src
+msgctxt "STR_PRINT_PREVIEW_NODATA"
+msgid "No Data"
+msgstr "Keine Daten"
+
+#. he7Lf
+#: globstr.src
+msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
+msgid "Print Range Empty"
+msgstr "Leerer Druckbereich"
+
+#. 3GHaw
+#: globstr.src
+msgctxt "STR_UNDO_CONDFORMAT"
+msgid "Conditional Format"
+msgstr "Bedingte Formatierung"
+
+#. RJBPt
+#: globstr.src
+msgctxt "STR_UNDO_CONDFORMAT_LIST"
+msgid "Conditional Formats"
+msgstr "Bedingte Formatierung"
+
+#. G5NhD
+#: globstr.src
+msgctxt "STR_UNDO_FORMULA_TO_VALUE"
+msgid "Convert Formula To Value"
+msgstr "Formel in Wert umwandeln"
+
+#. dsjqi
+#: globstr.src
+msgctxt "STR_UNQUOTED_STRING"
+msgid "Strings without quotes are interpreted as column/row labels."
+msgstr ""
+"Zeichenketten ohne Anführungszeichen werden als "
+"Spalten-/Zeilenbeschriftungen interpretiert."
+
+#. rHjns
+#: globstr.src
+msgctxt "STR_ENTER_VALUE"
+msgid "Enter a value!"
+msgstr "Geben Sie einen Wert ein!"
+
+#. p6znj
+#: globstr.src
+msgctxt "STR_TABLE_COUNT"
+msgid "Sheet %1 of %2"
+msgstr "Tabelle %1 von %2"
+
+#. pWcDK
+#: globstr.src
+msgctxt "STR_FUNCTIONS_FOUND"
+msgid "%1 and %2 more"
+msgstr "%1 und %2 mehr"
+
+#. X3uUX
+#: globstr.src
+msgctxt "STR_GENERAL"
+msgid "General"
+msgstr "Allgemein"
+
+#. Ekqp8
+#: globstr.src
+msgctxt "STR_NUMBER"
+msgid "Number"
+msgstr "Dezimalzahl"
+
+#. guEBF
+#: globstr.src
+msgctxt "STR_PERCENT"
+msgid "Percent"
+msgstr "Prozent"
+
+#. 7G5Cc
+#: globstr.src
+msgctxt "STR_CURRENCY"
+msgid "Currency"
+msgstr "Währung"
+
+#. CqECX
+#: globstr.src
+msgctxt "STR_DATE"
+msgid "Date"
+msgstr "Datum"
+
+#. faYaf
+#: globstr.src
+msgctxt "STR_TIME"
+msgid "Time"
+msgstr "Uhrzeit"
+
+#. 7uBV4
+#: globstr.src
+msgctxt "STR_SCIENTIFIC"
+msgid "Scientific"
+msgstr "Wissenschaftlich"
+
+#. DGyo9
+#: globstr.src
+msgctxt "STR_FRACTION"
+msgid "Fraction"
+msgstr "Bruch"
+
+#. AftLk
+#: globstr.src
+msgctxt "STR_BOOLEAN_VALUE"
+msgid "Boolean Value"
+msgstr "Wahrheitswert"
+
+#. HBUym
+#: globstr.src
+msgctxt "STR_TEXT"
+msgid "Text"
+msgstr "Text"
+
+#. KyGvM
+#: globstr.src
+msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
+msgid ""
+"The selected sheet(s) contain source data of related pivot tables that will "
+"be lost. Are you sure you want to delete the selected sheet(s)?"
+msgstr ""
+"Die ausgewählte(n) Tabelle(n) enthält/enthalten Quelldaten der zugehörigen "
+"Pivot-Tabellen, welche verloren gehen. Sind Sie sicher, dass Sie die "
+"ausgewählte(n) Tabelle(n) löschen möchten?"
+
+#. 5uVFF
+#: globstr.src
+msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
+msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
+msgstr ""
+"Ungültiger Name. Bezüge zu einer Zelle oder einem Zellbereich sind nicht "
+"erlaubt."
+
+#. tCBGH
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT"
+msgid ""
+"Counts the cells of a data range whose contents match the search criteria."
+msgstr ""
+"Zählt alle Zellen eines Datenbereichs, deren Inhalte den Suchkriterien "
+"entsprechen."
+
+#. aTVmu
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT"
+msgid "Database"
+msgstr "Datenbank"
+
+#. vXEcE
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT"
+msgid "The range of cells containing data."
+msgstr "Der Zellbereich, der die Daten enthält."
+
+#. uA67X
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT"
+msgid "Database field"
+msgstr "Datenbankfeld"
+
+#. Wt9jj
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT"
+msgid ""
+"Indicates which database field (column) is to be used for the search "
+"criteria."
+msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
+
+#. 8Ervr
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT"
+msgid "Search criteria"
+msgstr "Suchkriterien"
+
+#. wPWY7
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT"
+msgid "Defines the cell range containing the search criteria."
+msgstr "Gibt den Zellbereich mit den Suchkriterien an."
+
+#. DFDyC
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT_2"
+msgid ""
+"Counts all non-blank cells of a data range where the content corresponds to "
+"the search criteria."
+msgstr ""
+"Zählt alle nicht leeren Zellen eines Datenbereichs, deren Inhalte den "
+"Suchkriterien entsprechen."
+
+#. Mcdmw
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT_2"
+msgid "Database"
+msgstr "Datenbank"
+
+#. Y4aFY
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT_2"
+msgid "The range of cells containing data."
+msgstr "Der Zellbereich, der die Daten enthält."
+
+#. tSCCy
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT_2"
+msgid "Database field"
+msgstr "Datenbankfeld"
+
+#. tSaFS
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT_2"
+msgid ""
+"Indicates which database field (column) is to be used for the search "
+"criteria."
+msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
+
+#. dVD5s
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT_2"
+msgid "Search criteria"
+msgstr "Suchkriterien"
+
+#. fnGyQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_COUNT_2"
+msgid "Defines the cell range containing the search criteria."
+msgstr "Gibt den Zellbereich mit den Suchkriterien an."
+
+#. qk8Wr
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_AVERAGE"
+msgid ""
+"Returns the average value of all the cells of a data range whose contents "
+"match the search criteria."
+msgstr ""
+"Bildet den Mittelwert aller Zellen eines Datenbereichs, deren Inhalte den "
+"Suchkriterien entsprechen."
+
+#. GnTLE
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_AVERAGE"
+msgid "Database"
+msgstr "Datenbank"
+
+#. f4VD9
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_AVERAGE"
+msgid "The range of cells containing data."
+msgstr "Der Zellbereich, der die Daten enthält."
+
+#. YYexB
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_AVERAGE"
+msgid "Database field"
+msgstr "Datenbankfeld"
+
+#. CVsjy
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_AVERAGE"
+msgid ""
+"Indicates which database field (column) is to be used for the search "
+"criteria."
+msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
+
+#. P5Y5u
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_AVERAGE"
+msgid "Search criteria"
+msgstr "Suchkriterien"
+
+#. Z66TT
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_AVERAGE"
+msgid "Defines the cell range containing the search criteria."
+msgstr "Gibt den Zellbereich mit den Suchkriterien an."
+
+#. GTs4S
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_GET"
+msgid ""
+"Defines the contents of the cell of a data range which matches the search "
+"criteria."
+msgstr ""
+"Liefert den Inhalt der Zelle eines Datenbereichs, deren Inhalt den "
+"Suchkriterien entspricht."
+
+#. 5mxLQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_GET"
+msgid "Database"
+msgstr "Datenbank"
+
+#. bgtKB
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_GET"
+msgid "The range of cells containing data."
+msgstr "Der Zellbereich, der die Daten enthält."
+
+#. TiuQb
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_GET"
+msgid "Database field"
+msgstr "Datenbankfeld"
+
+#. GGESr
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_GET"
+msgid ""
+"Indicates which database field (column) is to be used for the search "
+"criteria."
+msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
+
+#. 4myua
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_GET"
+msgid "Search criteria"
+msgstr "Suchkriterien"
+
+#. sdZvW
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_GET"
+msgid "Defines the cell range containing the search criteria."
+msgstr "Gibt den Zellbereich mit den Suchkriterien an."
+
+#. fQPHB
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MAX"
+msgid ""
+"Returns the maximum value from all of the cells of a data range which "
+"correspond to the search criteria."
+msgstr ""
+"Bestimmt das Maximum aller Zellen eines Datenbereichs, deren Inhalte den "
+"Suchkriterien entsprechen."
+
+#. bQKFQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MAX"
+msgid "Database"
+msgstr "Datenbank"
+
+#. LHxtZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MAX"
+msgid "The range of cells containing data."
+msgstr "Der Zellbereich, der die Daten enthält."
+
+#. bpaoh
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MAX"
+msgid "Database field"
+msgstr "Datenbankfeld"
+
+#. rWDqj
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MAX"
+msgid ""
+"Indicates which database field (column) is to be used for the search "
+"criteria."
+msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
+
+#. S46CC
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MAX"
+msgid "Search criteria"
+msgstr "Suchkriterien"
+
+#. ih9zC
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MAX"
+msgid "Defines the cell range containing the search criteria."
+msgstr "Gibt den Zellbereich mit den Suchkriterien an."
+
+#. e9z3D
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MIN"
+msgid ""
+"Returns the minimum of all cells of a data range where the contents "
+"correspond to the search criteria."
+msgstr ""
+"Bestimmt das Minimum aller Zellen eines Datenbereichs, deren Inhalte den "
+"Suchkriterien entsprechen."
+
+#. 4P9kg
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MIN"
+msgid "Database"
+msgstr "Datenbank"
+
+#. jnVP7
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MIN"
+msgid "The range of cells containing data."
+msgstr "Der Zellbereich, der die Daten enthält."
+
+#. EFANN
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MIN"
+msgid "Database field"
+msgstr "Datenbankfeld"
+
+#. fXhtr
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MIN"
+msgid ""
+"Indicates which database field (column) is to be used for the search "
+"criteria."
+msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
+
+#. s3ERe
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MIN"
+msgid "Search criteria"
+msgstr "Suchkriterien"
+
+#. De53J
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_MIN"
+msgid "Defines the cell range containing the search criteria."
+msgstr "Gibt den Zellbereich mit den Suchkriterien an."
+
+#. 8hsR2
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_PRODUCT"
+msgid ""
+"Multiplies all cells of a data range where the contents match the search "
+"criteria."
+msgstr ""
+"Multipliziert alle Zellen eines Datenbereichs, deren Inhalte den "
+"Suchkriterien entsprechen."
+
+#. jDDb8
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_PRODUCT"
+msgid "Database"
+msgstr "Datenbank"
+
+#. SGWXS
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_PRODUCT"
+msgid "The range of cells containing data."
+msgstr "Der Zellbereich, der die Daten enthält."
+
+#. X2HYT
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_PRODUCT"
+msgid "Database field"
+msgstr "Datenbankfeld"
+
+#. FBAfq
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_PRODUCT"
+msgid ""
+"Indicates which database field (column) is to be used for the search "
+"criteria."
+msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
+
+#. FF26s
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_PRODUCT"
+msgid "Search criteria"
+msgstr "Suchkriterien"
+
+#. Jd4Du
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_PRODUCT"
+msgid "Defines the cell range containing the search criteria."
+msgstr "Gibt den Zellbereich mit den Suchkriterien an."
+
+#. Gee8U
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV"
+msgid ""
+"Calculates the standard deviation of all cells in a data range whose "
+"contents match the search criteria."
+msgstr ""
+"Bestimmt die Standardabweichung aller Zellen eines Datenbereichs, deren "
+"Inhalte den Suchkriterien entsprechen."
+
+#. abeZd
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV"
+msgid "Database"
+msgstr "Datenbank"
+
+#. UofeG
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV"
+msgid "The range of cells containing data."
+msgstr "Der Zellbereich, der die Daten enthält."
+
+#. heAy5
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV"
+msgid "Database field"
+msgstr "Datenbankfeld"
+
+#. dRSCB
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV"
+msgid ""
+"Indicates which database field (column) is to be used for the search "
+"criteria."
+msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
+
+#. dD6gG
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV"
+msgid "Search criteria"
+msgstr "Suchkriterien"
+
+#. rLi2s
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV"
+msgid "Defines the cell range containing the search criteria."
+msgstr "Gibt den Zellbereich mit den Suchkriterien an."
+
+#. UUJKA
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV_P"
+msgid ""
+"Returns the standard deviation with regards to the population of all cells "
+"of a data range matching the search criteria."
+msgstr ""
+"Bestimmt die Standardabweichung bzgl. der Grundgesamtheit aller Zellen eines"
+" Datenbereichs, deren Inhalte den Suchkriterien entsprechen."
+
+#. pEAMu
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV_P"
+msgid "Database"
+msgstr "Datenbank"
+
+#. tz4DV
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV_P"
+msgid "The range of cells containing data."
+msgstr "Der Zellbereich, der die Daten enthält."
+
+#. NwZA9
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV_P"
+msgid "Database field"
+msgstr "Datenbankfeld"
+
+#. pBQCf
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV_P"
+msgid ""
+"Indicates which database field (column) is to be used for the search "
+"criteria."
+msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
+
+#. AsSFP
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV_P"
+msgid "Search criteria"
+msgstr "Suchkriterien"
+
+#. HpKAQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_STD_DEV_P"
+msgid "Defines the cell range containing the search criteria."
+msgstr "Gibt den Zellbereich mit den Suchkriterien an."
+
+#. rFsPm
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_SUM"
+msgid ""
+"Adds all the cells of a data range where the contents match the search "
+"criteria."
+msgstr ""
+"Addiert alle Zellen eines Datenbereichs, deren Inhalte den Suchkriterien "
+"entsprechen."
+
+#. gCXg5
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_SUM"
+msgid "Database"
+msgstr "Datenbank"
+
+#. dZVHm
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_SUM"
+msgid "The range of cells containing data."
+msgstr "Der Zellbereich, der die Daten enthält."
+
+#. 3rKRS
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_SUM"
+msgid "Database field"
+msgstr "Datenbankfeld"
+
+#. u5jpX
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_SUM"
+msgid ""
+"Indicates which database field (column) is to be used for the search "
+"criteria."
+msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
+
+#. mFJzB
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_SUM"
+msgid "Search criteria"
+msgstr "Suchkriterien"
+
+#. PS4U2
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_SUM"
+msgid "Defines the cell range containing the search criteria."
+msgstr "Gibt den Zellbereich mit den Suchkriterien an."
+
+#. ucdoS
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR"
+msgid ""
+"Determines the variance of all the cells in a data range where the contents "
+"match the search criteria."
+msgstr ""
+"Bestimmt die Varianz aller Zellen eines Datenbereichs, deren Inhalte den "
+"Suchkriterien entsprechen."
+
+#. ktEWn
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR"
+msgid "Database"
+msgstr "Datenbank"
+
+#. wC9cr
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR"
+msgid "The range of cells containing data."
+msgstr "Der Zellbereich, der die Daten enthält."
+
+#. D4jW9
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR"
+msgid "Database field"
+msgstr "Datenbankfeld"
+
+#. UqEio
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR"
+msgid ""
+"Indicates which database field (column) is to be used for the search "
+"criteria."
+msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
+
+#. yQknz
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR"
+msgid "Search criteria"
+msgstr "Suchkriterien"
+
+#. xUdEG
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR"
+msgid "Defines the cell range containing the search criteria."
+msgstr "Gibt den Zellbereich mit den Suchkriterien an."
+
+#. m7qTy
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR_P"
+msgid ""
+"Determines variance of a population based on all cells in a data range where"
+" contents match the search criteria."
+msgstr ""
+"Bestimmt die Varianz bzgl. der Grundgesamtheit aller Zellen eines "
+"Datenbereichs, deren Inhalte den Suchkriterien entsprechen."
+
+#. ZiVej
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR_P"
+msgid "Database"
+msgstr "Datenbank"
+
+#. UDMqU
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR_P"
+msgid "The range of cells containing data."
+msgstr "Der Zellbereich, der die Daten enthält."
+
+#. cekAy
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR_P"
+msgid "Database field"
+msgstr "Datenbankfeld"
+
+#. ytNLt
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR_P"
+msgid ""
+"Indicates which database field (column) is to be used for the search "
+"criteria."
+msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
+
+#. nqjUR
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR_P"
+msgid "Search criteria"
+msgstr "Suchkriterien"
+
+#. MgJYB
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB_VAR_P"
+msgid "Defines the cell range containing the search criteria."
+msgstr "Gibt den Zellbereich mit den Suchkriterien an."
+
+#. AhrEw
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATE"
+msgid "Provides an internal number for the date given."
+msgstr "Liefert die interne Zahl für das angegebene Datum."
+
+#. 2RYeQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATE"
+msgid "year"
+msgstr "Jahr"
+
+#. 6BwEu
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATE"
+msgid ""
+"An integer between 1583 and 9956 or 0 and 99 (19xx or 20xx depending on the "
+"defined option)."
+msgstr ""
+"Eine ganze Zahl zwischen 1583 und 9956, oder 0 und 99 (19xx oder 20xx gemäß "
+"eingestellter Option)."
+
+#. VUJBD
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATE"
+msgid "month"
+msgstr "Monat"
+
+#. DymKU
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATE"
+msgid "An integer between 1 and 12 representing the month."
+msgstr "Eine ganze Zahl zwischen 1 und 12 für den Monat."
+
+#. w9EhG
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATE"
+msgid "day"
+msgstr "Tag"
+
+#. McM2X
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATE"
+msgid "An integer between 1 and 31 representing the day of the month."
+msgstr "Eine ganze Zahl zwischen 1 und 31 für den Tag."
+
+#. RCsfH
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATE_VALUE"
+msgid "Returns an internal number for a text having a possible date format."
+msgstr ""
+"Bestimmt aus einem Text in einem möglichen Datumseingabeformat eine interne "
+"Zahl."
+
+#. LA8sH
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATE_VALUE"
+msgid "text"
+msgstr "Text"
+
+#. yTX6f
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATE_VALUE"
+msgid ""
+"A text enclosed in quotation marks which returns a date in a %PRODUCTNAME "
+"date format."
+msgstr ""
+"Ein in Anführungszeichen eingeschlossener Text, der ein Datum in einem "
+"%PRODUCTNAME Datumsformat wiedergibt."
+
+#. enYun
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DAY"
+msgid ""
+"Returns the sequential date of the month as an integer (1-31) in relation to"
+" the date value."
+msgstr ""
+"Bestimmt zu dem Datumswert den fortlaufenden Tag des Monats als Zahl (1 - "
+"31)."
+
+#. mCQeQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DAY"
+msgid "Number"
+msgstr "Zahl"
+
+#. Jcj9b
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DAY"
+msgid "The internal number for the date."
+msgstr "Interne Zahl des Datums."
+
+#. F2GNE
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
+msgid ""
+"Calculates the number of days between two dates based on a 360-day year."
+msgstr ""
+"Bestimmt die Tagesdifferenz zweier Daten bei 360-Tage/Jahr-Berechnung."
+
+#. xGnGZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
+msgid "Date_1"
+msgstr "Datum_1"
+
+#. isAbX
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
+msgid "The start date for calculating the difference in days."
+msgstr "Früheres Datum für die Tagesdifferenz."
+
+#. WA2EQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
+msgid "Date_2"
+msgstr "Datum_2"
+
+#. 9DEEN
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
+msgid "The end date for calculating the difference in days."
+msgstr "Späteres Datum für die Tagesdifferenz."
+
+#. snNiF
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
+msgid "Type"
+msgstr "Art"
+
+#. E6rUB
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
+msgid ""
+"Method used to form differences: Type = 0 denotes US method (NASD), Type = 1"
+" denotes the European method."
+msgstr ""
+"Art der Differenzbildung: Art = 0 heißt US-Methode (NASD), Art = 1 heißt "
+"europäische Methode."
+
+#. WxBru
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS"
+msgid ""
+"Returns the number of workdays between two dates using arguments to indicate"
+" weekenddays and holidays."
+msgstr ""
+"Gibt die Anzahl der Arbeitstage zwischen zwei Daten aus, wobei Argumente zum"
+" Kennzeichnen von Wochenend- und Feiertagen benutzt werden."
+
+#. 8yY4q
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS"
+msgid "Start Date"
+msgstr "Startdatum"
+
+#. EE6Eh
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS"
+msgid "Start date for calculation."
+msgstr "Startdatum für die Berechnung."
+
+#. EhcBS
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS"
+msgid "End Date"
+msgstr "Enddatum"
+
+#. 6BzAF
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS"
+msgid "End date for calculation."
+msgstr "Enddatum für die Berechnung."
+
+#. FgUEM
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS"
+msgid "list of dates"
+msgstr "Freie Tage"
+
+#. 2Br3z
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS"
+msgid "Optional set of one or more dates to be considered as holiday."
+msgstr ""
+"Optionale Angabe von einem oder mehreren Daten, die als freie Tage "
+"angerechnet werden sollen."
+
+#. dGKNx
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS"
+msgid "array"
+msgstr "Wochenende"
+
+#. 73dG6
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS"
+msgid ""
+"Optional list of numbers to indicate working (0) and weekend (non-zero) "
+"days. When omitted, weekend is Saturday and Sunday."
+msgstr ""
+"Optionale Liste an Zahlen, um Arbeits- (0) und Wochenendtage (nicht Null) zu"
+" kennzeichnen. Falls fehlend, ist das Wochenende Samstag und Sonntag."
+
+#. fmBGW
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS_MS"
+msgid ""
+"Returns the number of workdays between two dates using arguments to indicate"
+" weekend days and holidays."
+msgstr ""
+"Gibt die Anzahl der Arbeitstage zwischen zwei Daten unter Berücksichtigung "
+"von Argumenten, welche Wochenend- und Ferientage vorgeben, zurück."
+
+#. v4qxw
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS_MS"
+msgid "Start Date"
+msgstr "Startdatum"
+
+#. wKgJr
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS_MS"
+msgid "Start date for calculation."
+msgstr "Startdatum für die Berechnung."
+
+#. SbKiF
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS_MS"
+msgid "End Date"
+msgstr "Enddatum"
+
+#. ora8B
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS_MS"
+msgid "End date for calculation."
+msgstr "Enddatum für die Berechnung."
+
+#. BxaU9
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS_MS"
+msgid "number or string"
+msgstr "Wochenende"
+
+#. 7Sxtc
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS_MS"
+msgid ""
+"Optional number or string to indicate when weekends occur. When omitted, "
+"weekend is Saturday and Sunday."
+msgstr ""
+"Optionale Zahl oder Zeichenkette, die festlegt, wann Wochenendtage liegen. "
+"Falls fehlend, werden Samstag und Sonntag als Wochenendtage gezählt."
+
+#. DgmtV
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS_MS"
+msgid "array"
+msgstr "Freie Tage"
+
+#. Sk8Tf
+#: scfuncs.src
+msgctxt "SC_OPCODE_NETWORKDAYS_MS"
+msgid "Optional set of one or more dates to be considered as holiday."
+msgstr ""
+"Optionale Angabe von einem oder mehreren Daten, die als freie Tage "
+"angerechnet werden sollen."
+
+#. 5iAyC
+#: scfuncs.src
+msgctxt "SC_OPCODE_WORKDAY_MS"
+msgid ""
+"Returns the serial number of the date before or after a number of workdays "
+"using arguments to indicate weekend days and holidays."
+msgstr ""
+"Gibt die laufende Nummer des Datums vor oder nach einer Anzahl von Werktagen"
+" unter Berücksichtigung von Argumenten, welche Wochenend- und Ferientage "
+"vorgeben, zurück."
+
+#. BxNRA
+#: scfuncs.src
+msgctxt "SC_OPCODE_WORKDAY_MS"
+msgid "Start Date"
+msgstr "Startdatum"
+
+#. 6LCTC
+#: scfuncs.src
+msgctxt "SC_OPCODE_WORKDAY_MS"
+msgid "Start date for calculation."
+msgstr "Startdatum für die Berechnung."
+
+#. 8hcDG
+#: scfuncs.src
+msgctxt "SC_OPCODE_WORKDAY_MS"
+msgid "Days"
+msgstr "Tage"
+
+#. ANEEJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_WORKDAY_MS"
+msgid "The number of workdays before or after start date."
+msgstr "Anzahl der Arbeitstage vor oder nach dem Startdatum."
+
+#. CZATJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_WORKDAY_MS"
+msgid "number or string"
+msgstr "Wochenende"
+
+#. jwRnD
+#: scfuncs.src
+msgctxt "SC_OPCODE_WORKDAY_MS"
+msgid ""
+"Optional number or string to indicate when weekends occur. When omitted, "
+"weekend is Saturday and Sunday."
+msgstr ""
+"Optionale Zahl oder Zeichenkette, die festlegt, wann Wochenendtage liegen. "
+"Falls fehlend, werden Samstag und Sonntag als Wochenendtage gezählt."
+
+#. BeHBq
+#: scfuncs.src
+msgctxt "SC_OPCODE_WORKDAY_MS"
+msgid "array"
+msgstr "Freie Tage"
+
+#. UhRAn
+#: scfuncs.src
+msgctxt "SC_OPCODE_WORKDAY_MS"
+msgid "Optional set of one or more dates to be considered as holiday."
+msgstr ""
+"Optionale Angabe von einem oder mehreren Daten, die als freie Tage "
+"angerechnet werden sollen."
+
+#. VC8Lk
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_HOUR"
+msgid ""
+"Determines the sequential number of the hour of the day (0-23) for the time "
+"value."
+msgstr ""
+"Bestimmt zu dem Zeitwert die fortlaufende Stunde des Tags als Zahl (0 - 23)."
+
+#. 9EWGn
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_HOUR"
+msgid "Number"
+msgstr "Zahl"
+
+#. wKdxd
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_HOUR"
+msgid "Internal time value"
+msgstr "Interner Zeitwert."
+
+#. sVCpp
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_MIN"
+msgid ""
+"Determines the sequential number for the minute of the hour (0-59) for the "
+"time value."
+msgstr ""
+"Bestimmt zu dem Zeitwert die fortlaufende Minute pro Stunde als Zahl (0 - "
+"59)."
+
+#. DF6zG
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_MIN"
+msgid "Number"
+msgstr "Zahl"
+
+#. 3CDne
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_MIN"
+msgid "Internal time value."
+msgstr "Interner Zeitwert."
+
+#. xnEn2
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_MONTH"
+msgid ""
+"Determines the sequential number of a month of the year (1-12) for the date "
+"value."
+msgstr ""
+"Bestimmt zu dem Datumswert den fortlaufenden Monat im Jahr als Zahl (1 - "
+"12)."
+
+#. VAaar
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_MONTH"
+msgid "Number"
+msgstr "Zahl"
+
+#. wSC7p
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_MONTH"
+msgid "The internal number of the date."
+msgstr "Interne Zahl des Datums."
+
+#. orccZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_ACT_TIME"
+msgid "Determines the current time of the computer."
+msgstr "Bestimmt die aktuelle Zeit des Computers."
+
+#. YDEUs
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_SEC"
+msgid ""
+"Determines the sequential number of the second of a minute (0-59) for the "
+"time value."
+msgstr ""
+"Bestimmt zu dem Zeitwert die fortlaufende Sekunde in einer Minute als Zahl "
+"(0 - 59)."
+
+#. fdSoC
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_SEC"
+msgid "Number"
+msgstr "Zahl"
+
+#. BRfEW
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_SEC"
+msgid "The internal time value."
+msgstr "Interner Zeitwert."
+
+#. vncGX
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_TIME"
+msgid "Determines a time value from the details for hour, minute and second."
+msgstr ""
+"Bestimmt einen Zeitwert aus Zahlangaben für Stunde, Minute und Sekunde."
+
+#. TFrmJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_TIME"
+msgid "hour"
+msgstr "Stunde"
+
+#. AGPC5
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_TIME"
+msgid "The integer for the hour."
+msgstr "Ganze Zahl für die Stunde."
+
+#. GCzoV
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_TIME"
+msgid "minute"
+msgstr "Minute"
+
+#. oeChi
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_TIME"
+msgid "The integer for the minute."
+msgstr "Ganze Zahl für die Minute."
+
+#. mSuUM
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_TIME"
+msgid "second"
+msgstr "Sekunde"
+
+#. iTyzy
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_TIME"
+msgid "The integer for the second."
+msgstr "Ganze Zahl für die Sekunde."
+
+#. BSYE2
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_TIME_VALUE"
+msgid ""
+"Returns a sequential number for a text shown in a possible time entry "
+"format."
+msgstr ""
+"Bestimmt aus einem Text in einem möglichen Zeiteingabeformat eine "
+"fortlaufende Zahl."
+
+#. B6oDD
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_TIME_VALUE"
+msgid "text"
+msgstr "Text"
+
+#. efjBJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_TIME_VALUE"
+msgid ""
+"A text enclosed in quotation marks which returns a time in a %PRODUCTNAME "
+"time format."
+msgstr ""
+"Ein in Anführungszeichen eingeschlossener Text, der eine Zeitangabe in einem"
+" %PRODUCTNAME Zeitformat wiedergibt."
+
+#. tGJaZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_ACT_DATE"
+msgid "Determines the current date of the computer."
+msgstr "Bestimmt das aktuelle Datum des Computers."
+
+#. dz6Z6
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DAY_OF_WEEK"
+msgid "Returns the day of the week for the date value as an integer."
+msgstr "Bestimmt zu dem Datumswert den Wochentag als ganze Zahl."
+
+#. mkqTM
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DAY_OF_WEEK"
+msgid "Number"
+msgstr "Zahl"
+
+#. PPLKU
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DAY_OF_WEEK"
+msgid "The internal number for the date."
+msgstr "Interne Zahl des Datums."
+
+#. d6CQC
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DAY_OF_WEEK"
+msgid "Type"
+msgstr "Art"
+
+#. HdEwa
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DAY_OF_WEEK"
+msgid ""
+"Fixes the beginning of the week and the type of calculation to be used."
+msgstr "Legt den Wochenanfang und die Art der Berechnung fest."
+
+#. 54GgL
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_YEAR"
+msgid "Returns the year of a date value as an integer."
+msgstr "Bestimmt zu dem Datumswert das Jahr als Zahl."
+
+#. HpEkw
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_YEAR"
+msgid "Number"
+msgstr "Zahl"
+
+#. jBwJk
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_YEAR"
+msgid "Internal number of the date."
+msgstr "Interne Zahl des Datums."
+
+#. BjW3K
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DIFF_DATE"
+msgid "Calculates the number of days between two dates."
+msgstr "Bestimmt die Tagesdifferenz zweier Daten."
+
+#. iUJYo
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DIFF_DATE"
+msgid "Date_2"
+msgstr "Datum_2"
+
+#. u2ebL
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DIFF_DATE"
+msgid "The end date for calculating the difference in days."
+msgstr "Späteres Datum für die Tagesdifferenz."
+
+#. cWfWD
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DIFF_DATE"
+msgid "Date_1"
+msgstr "Datum_1"
+
+#. hPAVA
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DIFF_DATE"
+msgid "The start date for calculating the difference in days."
+msgstr "Früheres Datum für die Tagesdifferenz."
+
+#. FiEhB
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATEDIF"
+msgid ""
+"Returns the number of whole days, months or years between 'start date' and "
+"'end date'."
+msgstr ""
+"Gibt die Anzahl der ganzen Tage, Monate oder Jahre zwischen 'Startdatum' und"
+" 'Enddatum' zurück."
+
+#. NrRAv
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATEDIF"
+msgid "Start date"
+msgstr "Startdatum"
+
+#. K3Aik
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATEDIF"
+msgid "The start date."
+msgstr "Das Startdatum."
+
+#. L2fRC
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATEDIF"
+msgid "End date"
+msgstr "Enddatum"
+
+#. ygB8c
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATEDIF"
+msgid "The end date."
+msgstr "Das Enddatum."
+
+#. jFhKf
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATEDIF"
+msgid "Interval"
+msgstr "Intervall"
+
+#. BqQrQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_DATEDIF"
+msgid "Interval to be calculated. Can be \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
+msgstr "Das zu berechnende Intervall. Möglich sind \"d\", \"m\", \"y\", \"ym\", \"md\" oder \"yd\"."
+
+#. v6aoY
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEEK"
+msgid "Calculates the calendar week corresponding to the given date."
+msgstr "Bestimmt zu dem Datumswert die Kalenderwoche im Jahr."
+
+#. wSYNs
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEEK"
+msgid "Number"
+msgstr "Zahl"
+
+#. B7EuC
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEEK"
+msgid "The internal number of the date."
+msgstr "Interne Zahl des Datums."
+
+#. oiUki
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEEK"
+msgid "mode"
+msgstr "Modus"
+
+#. g8e5w
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEEK"
+msgid "Indicates the first day of the week and when week 1 starts."
+msgstr "Legt den ersten Tag der Woche fest und wann die erste Woche beginnt."
+
+#. DXa5y
+#: scfuncs.src
+msgctxt "SC_OPCODE_ISOWEEKNUM"
+msgid "Calculates the ISO 8601 calendar week for the given date."
+msgstr "Bestimmt zum angegebenen Datumswert die ISO-8601 Kalenderwoche."
+
+#. Rx8bG
+#: scfuncs.src
+msgctxt "SC_OPCODE_ISOWEEKNUM"
+msgid "Number"
+msgstr "Zahl"
+
+#. egCHH
+#: scfuncs.src
+msgctxt "SC_OPCODE_ISOWEEKNUM"
+msgid "The internal number of the date."
+msgstr "Die interne Zahl des Datums."
+
+#. HVtZ8
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEEKNUM_OOO"
+msgid ""
+"Calculates the calendar week corresponding to the given date.\n"
+"This function only provides interoperability with %PRODUCTNAME 5.0 and earlier and OpenOffice.org."
+msgstr ""
+"Bestimmt zum Datumswert die Kalenderwoche im Jahr.\n"
+"Diese Funktion existiert nur zur Kompatibilität mit %PRODUCTNAME 5.0 und älter sowie mit OpenOffice.org."
+
+#. CquiW
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEEKNUM_OOO"
+msgid "Number"
+msgstr "Zahl"
+
+#. D5VMW
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEEKNUM_OOO"
+msgid "The internal number of the date."
+msgstr "Die interne Zahl des Datums."
+
+#. wrxDW
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEEKNUM_OOO"
+msgid "mode"
+msgstr "Modus"
+
+#. hwgEb
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEEKNUM_OOO"
+msgid ""
+"Indicates the first day of the week (1 = Sunday, other values = Monday)."
+msgstr ""
+"Legt den ersten Tag in der Woche fest (1 = Sonntag, andere Werte = Montag)."
+
+#. qMwEN
+#: scfuncs.src
+msgctxt "SC_OPCODE_EASTERSUNDAY"
+msgid "Calculates the date of Easter Sunday in a given year."
+msgstr "Bestimmt das Datum des Ostersonntags eines Jahres."
+
+#. GCAAS
+#: scfuncs.src
+msgctxt "SC_OPCODE_EASTERSUNDAY"
+msgid "year"
+msgstr "Jahr"
+
+#. oBcHn
+#: scfuncs.src
+msgctxt "SC_OPCODE_EASTERSUNDAY"
+msgid ""
+"An integer between 1583 and 9956, or 0 and 99 (19xx or 20xx depending on the"
+" option set)."
+msgstr ""
+"Eine ganze Zahl zwischen 1583 und 9956, oder 0 und 99 (19xx oder 20xx gemäß "
+"eingestellter Option)."
+
+#. kmFgp
+#: scfuncs.src
+msgctxt "SC_OPCODE_PV"
+msgid "Present value. Calculates the present value of an investment."
+msgstr "Barwert. Berechnet den Barwert einer Investition."
+
+#. 9D92F
+#: scfuncs.src
+msgctxt "SC_OPCODE_PV"
+msgid "Rate"
+msgstr "Zins"
+
+#. q3iQz
+#: scfuncs.src
+msgctxt "SC_OPCODE_PV"
+msgid "The rate of interest for the period given."
+msgstr "Der Zinssatz pro Periode."
+
+#. FrWSE
+#: scfuncs.src
+msgctxt "SC_OPCODE_PV"
+msgid "NPER"
+msgstr "ZZR"
+
+#. 9pXAB
+#: scfuncs.src
+msgctxt "SC_OPCODE_PV"
+msgid ""
+"The payment period. The total number of periods in which the annuity is "
+"paid."
+msgstr ""
+"Das Zahlungsziel. Die Gesamtzahl an Perioden, in denen die Raten gezahlt "
+"werden sollen."
+
+#. NUecK
+#: scfuncs.src
+msgctxt "SC_OPCODE_PV"
+msgid "PMT"
+msgstr "RMZ"
+
+#. zL2Zo
+#: scfuncs.src
+msgctxt "SC_OPCODE_PV"
+msgid ""
+"Regular payments. The constant amount of annuity that is paid in each "
+"period."
+msgstr ""
+"Regelmäßige Zahlungen. Die regelmäßige Zahl an Zahlungen, die in jeder "
+"Periode gezahlt werden sollen."
+
+#. BazeD
+#: scfuncs.src
+msgctxt "SC_OPCODE_PV"
+msgid "FV"
+msgstr "ZW"
+
+#. R2jiN
+#: scfuncs.src
+msgctxt "SC_OPCODE_PV"
+msgid ""
+"Future value. The value (final value) to be attained after the last payment."
+msgstr ""
+"Zukunftswert. Der (End-) Wert, der nach der letzten Zahlung erreicht werden "
+"soll."
+
+#. regEY
+#: scfuncs.src
+msgctxt "SC_OPCODE_PV"
+msgid "Type"
+msgstr "Art"
+
+#. RXXux
+#: scfuncs.src
+msgctxt "SC_OPCODE_PV"
+msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
+msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
+
+#. JWMSe
+#: scfuncs.src
+msgctxt "SC_OPCODE_FV"
+msgid ""
+"Future value. Returns the future value of an investment based on regular "
+"payments and a constant interest rate."
+msgstr ""
+"Zukunftswert. Gibt den Zukunftswert einer Anlage aufgrund von regelmäßigen "
+"Zahlungen und einem konstanten Zinssatz zurück."
+
+#. NdU3B
+#: scfuncs.src
+msgctxt "SC_OPCODE_FV"
+msgid "Rate"
+msgstr "Zins"
+
+#. G5BK8
+#: scfuncs.src
+msgctxt "SC_OPCODE_FV"
+msgid "The rate of interest per period."
+msgstr "Der Zinssatz pro Periode."
+
+#. 2RFVA
+#: scfuncs.src
+msgctxt "SC_OPCODE_FV"
+msgid "NPER"
+msgstr "ZZR"
+
+#. 4qF8W
+#: scfuncs.src
+msgctxt "SC_OPCODE_FV"
+msgid ""
+"Payment period. The total number of periods in which the annuity (pension) "
+"is paid."
+msgstr ""
+"Zahlungsziel. Die Gesamtzahl an Perioden, in denen die Raten (Renten) "
+"gezahlt werden sollen."
+
+#. LWkAe
+#: scfuncs.src
+msgctxt "SC_OPCODE_FV"
+msgid "PMT"
+msgstr "RMZ"
+
+#. ejKWM
+#: scfuncs.src
+msgctxt "SC_OPCODE_FV"
+msgid "Regular payments. The constant annuity to be paid in each period."
+msgstr ""
+"Regelmäßige Zahlung. Die konstante Annuität, die in jeder Periode gezahlt "
+"wird."
+
+#. RHEUR
+#: scfuncs.src
+msgctxt "SC_OPCODE_FV"
+msgid "PV"
+msgstr "BW"
+
+#. GcZVp
+#: scfuncs.src
+msgctxt "SC_OPCODE_FV"
+msgid "Present value. The current value of a series of payments"
+msgstr "Barwert. Der derzeitige Wert einer Reihe von Zahlungen."
+
+#. eC5FU
+#: scfuncs.src
+msgctxt "SC_OPCODE_FV"
+msgid "Type"
+msgstr "Art"
+
+#. 7qWZT
+#: scfuncs.src
+msgctxt "SC_OPCODE_FV"
+msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
+msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
+
+#. c6Y23
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPER"
+msgid ""
+"Payment period. Calculates the number of payment periods for an investment "
+"based on regular payments and a constant interest rate."
+msgstr ""
+"Zahlungszeitraum. Berechnet die Anzahl der Zahlungsperioden einer "
+"Investition bei regelmäßigen Zahlungen und konstantem Zinssatz."
+
+#. GgGha
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPER"
+msgid "Rate"
+msgstr "Zins"
+
+#. pKSEE
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPER"
+msgid "The rate of interest per period."
+msgstr "Der Zinssatz pro Periode."
+
+#. muaGG
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPER"
+msgid "PMT"
+msgstr "RMZ"
+
+#. HG72G
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPER"
+msgid "Regular payments. The constant annuity to be paid in each period."
+msgstr ""
+"Regelmäßige Zahlung. Die konstante Annuität, die in jeder Periode gezahlt "
+"wird."
+
+#. UHQkU
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPER"
+msgid "PV"
+msgstr "BW"
+
+#. w7dJS
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPER"
+msgid "Present value. The current value of a series of payments"
+msgstr "Barwert. Der derzeitige Wert einer Reihe von Zahlungen."
+
+#. FSFEQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPER"
+msgid "FV"
+msgstr "ZW"
+
+#. ELxmu
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPER"
+msgid ""
+"Future value. The value (end value) to be attained after the final payment."
+msgstr ""
+"Zukunftswert. Der (End-) Wert, der nach der letzten Zahlung erreicht werden "
+"soll."
+
+#. yFiVM
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPER"
+msgid "Type"
+msgstr "Art"
+
+#. ADNoC
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPER"
+msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
+msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
+
+#. zkuDn
+#: scfuncs.src
+msgctxt "SC_OPCODE_PMT"
+msgid ""
+"Regular payments. Returns the periodic payment of an annuity, based on "
+"regular payments and a fixed periodic interest rate."
+msgstr ""
+"Regelmäßige Zahlungen. Gibt die periodische Zahlung einer Jahresrente aus, "
+"die auf regelmäßigen Zahlungen und einen vorgegebenen periodischen Zinssatz "
+"basiert."
+
+#. FBNre
+#: scfuncs.src
+msgctxt "SC_OPCODE_PMT"
+msgid "Rate"
+msgstr "Zins"
+
+#. 3hDjt
+#: scfuncs.src
+msgctxt "SC_OPCODE_PMT"
+msgid "The rate of interest per period."
+msgstr "Der Zinssatz pro Periode."
+
+#. 9xiKf
+#: scfuncs.src
+msgctxt "SC_OPCODE_PMT"
+msgid "NPER"
+msgstr "ZZR"
+
+#. D7fDk
+#: scfuncs.src
+msgctxt "SC_OPCODE_PMT"
+msgid ""
+"Payment period. The total number of periods in which the annuity (pension) "
+"is paid."
+msgstr ""
+"Zahlungsziel. Die Gesamtzahl an Perioden, in denen die Raten (Renten) "
+"gezahlt werden sollen."
+
+#. BfoBd
+#: scfuncs.src
+msgctxt "SC_OPCODE_PMT"
+msgid "PV"
+msgstr "BW"
+
+#. 4CkcJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_PMT"
+msgid "Present value. The current value of a series of payments"
+msgstr "Barwert. Der derzeitige Wert einer Reihe von Zahlungen."
+
+#. wLxeH
+#: scfuncs.src
+msgctxt "SC_OPCODE_PMT"
+msgid "FV"
+msgstr "ZW"
+
+#. XspLk
+#: scfuncs.src
+msgctxt "SC_OPCODE_PMT"
+msgid ""
+"Future value. The value (end value) to be attained after the final payment."
+msgstr ""
+"Zukunftswert. Der (End-) Wert, der nach der letzten Zahlung erreicht werden "
+"soll."
+
+#. XctnR
+#: scfuncs.src
+msgctxt "SC_OPCODE_PMT"
+msgid "Type"
+msgstr "Art"
+
+#. RGFhE
+#: scfuncs.src
+msgctxt "SC_OPCODE_PMT"
+msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
+msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
+
+#. e8CMw
+#: scfuncs.src
+msgctxt "SC_OPCODE_RATE"
+msgid ""
+"Calculates the constant interest rate of an investment with regular "
+"payments."
+msgstr ""
+"Berechnet den konstanten Zinssatz einer Investition bei regelmäßigen "
+"Zahlungen."
+
+#. MeabD
+#: scfuncs.src
+msgctxt "SC_OPCODE_RATE"
+msgid "NPER"
+msgstr "ZZR"
+
+#. fzWTA
+#: scfuncs.src
+msgctxt "SC_OPCODE_RATE"
+msgid ""
+"Payment period. The total number of periods in which the annuity (pension) "
+"is paid."
+msgstr ""
+"Zahlungszeitraum. Die Gesamtanzahl der Perioden, in denen die Annuität "
+"(Rente) gezahlt wird."
+
+#. TPtCR
+#: scfuncs.src
+msgctxt "SC_OPCODE_RATE"
+msgid "PMT"
+msgstr "RMZ"
+
+#. zNa65
+#: scfuncs.src
+msgctxt "SC_OPCODE_RATE"
+msgid "Regular payments. The constant annuity to be paid in each period."
+msgstr ""
+"Regelmäßige Zahlung. Die konstante Annuität, die in jeder Periode gezahlt "
+"wird."
+
+#. CfjNt
+#: scfuncs.src
+msgctxt "SC_OPCODE_RATE"
+msgid "PV"
+msgstr "BW"
+
+#. AFyTZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_RATE"
+msgid "Present value. The current value of a series of payments"
+msgstr "Barwert. Der derzeitige Wert einer Reihe von Zahlungen."
+
+#. XLtt7
+#: scfuncs.src
+msgctxt "SC_OPCODE_RATE"
+msgid "FV"
+msgstr "ZW"
+
+#. D2vEu
+#: scfuncs.src
+msgctxt "SC_OPCODE_RATE"
+msgid ""
+"Future value. The value (end value) to be attained after the final payment."
+msgstr ""
+"Zukünftiger Wert. Der Wert (Endwert), der nach der letzten Zahlung erreicht "
+"werden soll."
+
+#. prU5x
+#: scfuncs.src
+msgctxt "SC_OPCODE_RATE"
+msgid "Type"
+msgstr "Art"
+
+#. 9hNfn
+#: scfuncs.src
+msgctxt "SC_OPCODE_RATE"
+msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
+msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
+
+#. B6jVk
+#: scfuncs.src
+msgctxt "SC_OPCODE_RATE"
+msgid "Guess"
+msgstr "SW"
+
+#. HWAzL
+#: scfuncs.src
+msgctxt "SC_OPCODE_RATE"
+msgid ""
+"Guess. The estimate of the interest rate for the iterative calculating "
+"method."
+msgstr ""
+"Schätzwert. Der Schätzwert des Zinses für das iterative "
+"Berechnungsverfahren."
+
+#. hd9mD
+#: scfuncs.src
+msgctxt "SC_OPCODE_IPMT"
+msgid ""
+"Compounded interest. Calculates the interest payment on the principal for an"
+" investment with regular payments and a constant interest rate for a given "
+"period."
+msgstr ""
+"Zinseszins. Berechnet für einen bestimmten Zeitraum die Zinszahlung eines "
+"Grundbetrags für eine Investition bei regelmäßigen Zahlungen und konstantem "
+"Zinssatz."
+
+#. NeBtb
+#: scfuncs.src
+msgctxt "SC_OPCODE_IPMT"
+msgid "Rate"
+msgstr "Zins"
+
+#. Jz3cj
+#: scfuncs.src
+msgctxt "SC_OPCODE_IPMT"
+msgid "The rate of interest per period."
+msgstr "Der Zinssatz pro Periode."
+
+#. KFWZb
+#: scfuncs.src
+msgctxt "SC_OPCODE_IPMT"
+msgid "Period"
+msgstr "Periode"
+
+#. 7k2BJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_IPMT"
+msgid ""
+"Periods. The periods for which the compounded interest is to be calculated. "
+"P = 1 denotes for the first period, P = NPER for the last one."
+msgstr ""
+"Periode. Die Periode, für welche die Zinseszinsen berechnet werden. P = 1 "
+"heißt für die erste, P = ZZR für die letzte Periode."
+
+#. 2JYMa
+#: scfuncs.src
+msgctxt "SC_OPCODE_IPMT"
+msgid "NPER"
+msgstr "ZZR"
+
+#. T6Dnp
+#: scfuncs.src
+msgctxt "SC_OPCODE_IPMT"
+msgid ""
+"Payment period. The total number of periods in which the annuity (pension) "
+"is paid."
+msgstr ""
+"Zahlungszeitraum. Die Gesamtanzahl der Perioden, in denen die Annuität "
+"(Rente) gezahlt wird."
+
+#. uDv8v
+#: scfuncs.src
+msgctxt "SC_OPCODE_IPMT"
+msgid "pv"
+msgstr "BW"
+
+#. z26Wm
+#: scfuncs.src
+msgctxt "SC_OPCODE_IPMT"
+msgid "Present value. The current value of a series of payments"
+msgstr "Barwert. Der derzeitige Wert einer Reihe von Zahlungen."
+
+#. YBHug
+#: scfuncs.src
+msgctxt "SC_OPCODE_IPMT"
+msgid "FV"
+msgstr "ZW"
+
+#. esEXY
+#: scfuncs.src
+msgctxt "SC_OPCODE_IPMT"
+msgid ""
+"Future value. The value (end value) to be attained after the final payment."
+msgstr ""
+"Zukünftiger Wert. Der Wert (Endwert), der nach der letzten Zahlung erreicht "
+"werden soll."
+
+#. eDepL
+#: scfuncs.src
+msgctxt "SC_OPCODE_IPMT"
+msgid "Type"
+msgstr "Art"
+
+#. ZCCRB
+#: scfuncs.src
+msgctxt "SC_OPCODE_IPMT"
+msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
+msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
+
+#. Z65oQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_PPMT"
+msgid ""
+"Repayment. Calculates the repayment amount for a period for an investment "
+"whereby the payments are at regular intervals and the interest rate "
+"constant."
+msgstr ""
+"Tilgung. Berechnet den Tilgungsbetrag einer Periode für eine Investition, "
+"wobei die Zahlungen regelmäßig und der Zinssatz konstant sind."
+
+#. pNF3b
+#: scfuncs.src
+msgctxt "SC_OPCODE_PPMT"
+msgid "Rate"
+msgstr "Zins"
+
+#. ozXtG
+#: scfuncs.src
+msgctxt "SC_OPCODE_PPMT"
+msgid "The interest rate per period."
+msgstr "Der Zinssatz pro Periode."
+
+#. HvuAN
+#: scfuncs.src
+msgctxt "SC_OPCODE_PPMT"
+msgid "Period"
+msgstr "Periode"
+
+#. V2ZLc
+#: scfuncs.src
+msgctxt "SC_OPCODE_PPMT"
+msgid ""
+"Period. The period for which the repayments are to be calculated. Per = 1 "
+"denotes for the first period, P = NPER for the last"
+msgstr ""
+"Periode. Die Periode, für welche die Tilgung berechnet werden soll. P = 1 "
+"heißt für die erste, P = ZZR für die letzte Periode."
+
+#. dasVa
+#: scfuncs.src
+msgctxt "SC_OPCODE_PPMT"
+msgid "NPER"
+msgstr "ZZR"
+
+#. Rhzii
+#: scfuncs.src
+msgctxt "SC_OPCODE_PPMT"
+msgid ""
+"The payment period. The total number of periods in which the annuity "
+"(pension) is paid."
+msgstr ""
+"Zahlungszeitraum. Die Gesamtanzahl der Perioden, in denen die Annuität "
+"(Rente) gezahlt wird."
+
+#. eKjez
+#: scfuncs.src
+msgctxt "SC_OPCODE_PPMT"
+msgid "PV"
+msgstr "BW"
+
+#. BKYVD
+#: scfuncs.src
+msgctxt "SC_OPCODE_PPMT"
+msgid ""
+"The present value. The present value or the amount the annuity is currently "
+"worth."
+msgstr ""
+"Barwert. Der derzeitige Wert oder die Menge, welche die Annuität gegenwärtig"
+" wert ist."
+
+#. MgtBv
+#: scfuncs.src
+msgctxt "SC_OPCODE_PPMT"
+msgid "FV"
+msgstr "ZW"
+
+#. PLTpz
+#: scfuncs.src
+msgctxt "SC_OPCODE_PPMT"
+msgid ""
+"Future value. The value (end value) attained after the last payment has been"
+" made."
+msgstr ""
+"Zukunftswert. Der (End-) Wert, der nach der letzten Zahlung erreicht werden "
+"soll."
+
+#. 7vmFL
+#: scfuncs.src
+msgctxt "SC_OPCODE_PPMT"
+msgid "Type"
+msgstr "Art"
+
+#. EDqck
+#: scfuncs.src
+msgctxt "SC_OPCODE_PPMT"
+msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
+msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
+
+#. DuivC
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_PRINC"
+msgid ""
+"Cumulative Capital. Calculates the total amount of the repayment share in a "
+"period for an investment with constant interest rate."
+msgstr ""
+"Kumuliertes Kapital. Berechnet den Gesamtbetrag der Tilgungsanteile in einem"
+" Zeitraum für eine Investition bei konstantem Zinssatz."
+
+#. yY5uB
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_PRINC"
+msgid "Rate"
+msgstr "Zins"
+
+#. gEMGN
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_PRINC"
+msgid "The rate of interest per period."
+msgstr "Der Zinssatz pro Periode."
+
+#. UCaLA
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_PRINC"
+msgid "NPER"
+msgstr "ZZR"
+
+#. gUNCC
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_PRINC"
+msgid ""
+"Payment period. The total number of periods in which the annuity (pension) "
+"is paid."
+msgstr ""
+"Zahlungsziel. Die Gesamtzahl an Perioden, in denen die Raten (Renten) "
+"gezahlt werden sollen."
+
+#. ALmpB
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_PRINC"
+msgid "PV"
+msgstr "BW"
+
+#. SraT8
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_PRINC"
+msgid ""
+"The present value. The present value or the amount the annuity is currently "
+"worth."
+msgstr ""
+"Barwert. Der derzeitige Wert oder die Menge, welche die Annuität gegenwärtig"
+" wert ist."
+
+#. MBKJZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_PRINC"
+msgid "S"
+msgstr "S"
+
+#. AsSot
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_PRINC"
+msgid ""
+"The start period. The first period to be taken into account. S = 1 denotes "
+"the very first period."
+msgstr ""
+"Anfangsperiode. Die erste Periode, die berücksichtigt wird. A = 1 heißt die "
+"allererste Periode."
+
+#. cyCEm
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_PRINC"
+msgid "E"
+msgstr "E"
+
+#. 3AMAi
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_PRINC"
+msgid "End period. The last period to be taken into account."
+msgstr "Endperiode. Die letzte Periode, die berücksichtigt wird."
+
+#. G7UqU
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_PRINC"
+msgid "Type"
+msgstr "Art"
+
+#. mA9uk
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_PRINC"
+msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
+msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
+
+#. xc89X
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_IPMT"
+msgid ""
+"Cumulative compounded interest. Calculates the total amount of the interest "
+"share in a period for an investment with a constant interest rate."
+msgstr ""
+"Kumulierte Zinseszinsen. Berechnet den Gesamtbetrag der Zinsanteile in einem"
+" Zeitraum für eine Investition bei konstantem Zinssatz."
+
+#. nNUsr
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_IPMT"
+msgid "Rate"
+msgstr "Zins"
+
+#. XFyVW
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_IPMT"
+msgid "The rate of interest per period."
+msgstr "Der Zinssatz pro Periode."
+
+#. baFJs
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_IPMT"
+msgid "NPER"
+msgstr "ZZR"
+
+#. 73ZYA
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_IPMT"
+msgid ""
+"Payment period. The total number of periods in which the annuity (pension) "
+"is paid."
+msgstr ""
+"Zahlungsziel. Die Gesamtzahl an Perioden, in denen die Raten (Renten) "
+"gezahlt werden sollen."
+
+#. AANDt
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_IPMT"
+msgid "pv"
+msgstr "BW"
+
+#. c4i6Z
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_IPMT"
+msgid ""
+"The present value. The present value or the amount the annuity is currently "
+"worth."
+msgstr ""
+"Barwert. Der derzeitige Wert oder die Menge, welche die Annuität gegenwärtig"
+" wert ist."
+
+#. 4NC9T
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_IPMT"
+msgid "S"
+msgstr "S"
+
+#. ySdbV
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_IPMT"
+msgid ""
+"The start period. The first period to be taken into account. S = 1 denotes "
+"the very first period."
+msgstr ""
+"Anfangsperiode. Die erste Periode, die berücksichtigt wird. A = 1 heißt die "
+"allererste Periode."
+
+#. kbzPo
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_IPMT"
+msgid "E"
+msgstr "E"
+
+#. 33EVk
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_IPMT"
+msgid "The end period. The last period to be taken into account."
+msgstr "Endperiode. Die letzte Periode, die berücksichtigt wird."
+
+#. 5v5oC
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_IPMT"
+msgid "Type"
+msgstr "Art"
+
+#. 9jvEd
+#: scfuncs.src
+msgctxt "SC_OPCODE_CUM_IPMT"
+msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
+msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
+
+#. mfMoZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_SYD"
+msgid ""
+"Calculates the arithmetically declining value of an asset (depreciation) for"
+" a specified period."
+msgstr ""
+"Berechnet den arithmetisch abnehmenden Wert eines Vermögenswerts "
+"(Abschreibung) für einen festgelegten Zeitraum."
+
+#. omwrF
+#: scfuncs.src
+msgctxt "SC_OPCODE_SYD"
+msgid "Cost"
+msgstr "AW"
+
+#. EYzJR
+#: scfuncs.src
+msgctxt "SC_OPCODE_SYD"
+msgid "Acquisition costs. The initial cost of the asset."
+msgstr "Anschaffungswert. Die Anschaffungskosten des Wirtschaftgutes."
+
+#. KrdVt
+#: scfuncs.src
+msgctxt "SC_OPCODE_SYD"
+msgid "Salvage"
+msgstr "RW"
+
+#. uBpZg
+#: scfuncs.src
+msgctxt "SC_OPCODE_SYD"
+msgid "Salvage: The remaining value of the asset at the end of its life."
+msgstr "Restwert: Der verbleibende Wert am Ende der Nutzungsdauer."
+
+#. qMZUE
+#: scfuncs.src
+msgctxt "SC_OPCODE_SYD"
+msgid "Life"
+msgstr "ND"
+
+#. EShNS
+#: scfuncs.src
+msgctxt "SC_OPCODE_SYD"
+msgid "Useful life. The number of periods in the useful life of the asset."
+msgstr ""
+"Nutzungsdauer. Die Anzahl der Perioden, über die das Wirtschaftsgut "
+"abgeschrieben wird."
+
+#. shx5j
+#: scfuncs.src
+msgctxt "SC_OPCODE_SYD"
+msgid "Period"
+msgstr "Periode"
+
+#. 3NBRL
+#: scfuncs.src
+msgctxt "SC_OPCODE_SYD"
+msgid ""
+"Period. The depreciation period which must have the same time unit as "
+"average useful life."
+msgstr ""
+"Zeitraum. Die Periode der Abschreibung, welche dieselbe Zeiteinheit wie die "
+"durchschnittliche Nutzungsdauer haben muss."
+
+#. vhWFe
+#: scfuncs.src
+msgctxt "SC_OPCODE_SLN"
+msgid "Calculates the linear depreciation per period."
+msgstr "Berechnet die lineare Abschreibung pro Periode."
+
+#. tm58T
+#: scfuncs.src
+msgctxt "SC_OPCODE_SLN"
+msgid "Cost"
+msgstr "AW"
+
+#. gfSPc
+#: scfuncs.src
+msgctxt "SC_OPCODE_SLN"
+msgid "Acquisition cost. The initial cost of an asset."
+msgstr "Anschaffungswert. Die Anschaffungskosten des Wirtschaftgutes."
+
+#. CrHAF
+#: scfuncs.src
+msgctxt "SC_OPCODE_SLN"
+msgid "Salvage"
+msgstr "RW"
+
+#. UUGWj
+#: scfuncs.src
+msgctxt "SC_OPCODE_SLN"
+msgid "Salvage: The remaining value of the asset at the end of its life."
+msgstr "Restwert: Der verbleibende Wert am Ende der Nutzungsdauer."
+
+#. rMQPS
+#: scfuncs.src
+msgctxt "SC_OPCODE_SLN"
+msgid "Life"
+msgstr "ND"
+
+#. S4CdQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_SLN"
+msgid "Useful life. The number of periods in the useful life of the asset."
+msgstr ""
+"Nutzungsdauer. Die Anzahl der Perioden, über die das Wirtschaftsgut "
+"abgeschrieben wird."
+
+#. bAXP7
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDB"
+msgid ""
+"Calculates the depreciation of an asset for a specific period using the "
+"double-declining balance method or declining balance factor."
+msgstr ""
+"Berechnet die Abschreibung eines Vermögenswerts für einen festgelegten "
+"Zeitraum, wobei die doppelt-degressive Bilanzmethode oder der degressive "
+"Balancefaktor verwendet wird."
+
+#. ECRmm
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDB"
+msgid "Cost"
+msgstr "AW"
+
+#. BYjeB
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDB"
+msgid "Acquisition costs. The initial cost of the asset."
+msgstr "Anschaffungswert. Die Anschaffungskosten des Wirtschaftgutes."
+
+#. Vkj3N
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDB"
+msgid "Salvage"
+msgstr "RW"
+
+#. aNBXv
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDB"
+msgid "Salvage: The remaining value of the asset at the end of its life."
+msgstr "Restwert: Der verbleibende Wert am Ende der Nutzungsdauer."
+
+#. GV6bk
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDB"
+msgid "Life"
+msgstr "ND"
+
+#. Pddd2
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDB"
+msgid "Useful life. The number of periods in the useful life of the asset."
+msgstr ""
+"Nutzungsdauer. Die Anzahl der Perioden, über die das Wirtschaftsgut "
+"abgeschrieben wird."
+
+#. bHPSG
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDB"
+msgid "Period"
+msgstr "Periode"
+
+#. 7xUey
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDB"
+msgid ""
+"Period. The depreciation period in the same time unit as the average useful "
+"life entry."
+msgstr ""
+"Periode. Die Periode der Abschreibung in derselben Zeiteinheit wie die "
+"durchschnittliche Nutzungsdauer."
+
+#. ZNCzZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDB"
+msgid "Factor"
+msgstr "FA"
+
+#. AApLf
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDB"
+msgid ""
+"Factor. The factor for balance decline. F = 2 means a double declining "
+"balance factor"
+msgstr ""
+"Faktor. Der Faktor für den Balancerückgang. F = 2 heißt doppelt-degressiver "
+"Balancefaktor."
+
+#. PAWDA
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB"
+msgid ""
+"Returns the real depreciation of an asset for a specified period using the "
+"fixed-declining balance method."
+msgstr ""
+"Berechnet die geometrisch-degressive Abschreibung für eine bestimmte "
+"Periode."
+
+#. w3E7K
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB"
+msgid "Cost"
+msgstr "AW"
+
+#. 6vicC
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB"
+msgid "Acquisition costs: The initial cost of the asset."
+msgstr "Anschaffungswert: Die Anschaffungskosten des Wirtschaftsgutes."
+
+#. jsYeb
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB"
+msgid "Salvage"
+msgstr "RW"
+
+#. J2fyR
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB"
+msgid "Salvage: The remaining value of the asset at the end of its life."
+msgstr "Restwert: Der verbleibende Wert am Ende der Nutzungsdauer."
+
+#. ycHNJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB"
+msgid "Life"
+msgstr "ND"
+
+#. TfXDA
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB"
+msgid "Useful life. The number of periods in the useful life of the asset."
+msgstr ""
+"Nutzungsdauer. Die Anzahl der Perioden, über die das Wirtschaftsgut "
+"abgeschrieben wird."
+
+#. Et7Hg
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB"
+msgid "Period"
+msgstr "Periode"
+
+#. dskVE
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB"
+msgid ""
+"Periods: The period for which the depreciation is calculated. The time unit "
+"used for period must be the same as that for the useful life."
+msgstr ""
+"Periode: Die Periode, für welche die Abschreibung berechnet wird. Die "
+"benutzte Zeiteinheit für die Periode muss dieselbe sein wie die für die "
+"Nutzungsdauer."
+
+#. rNt3V
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB"
+msgid "month"
+msgstr "Monat"
+
+#. k74Wp
+#: scfuncs.src
+msgctxt "SC_OPCODE_DB"
+msgid "Months: The number of months in the first year of depreciation."
+msgstr "Monate: Die Anzahl der Monate im ersten Jahr der Abschreibung."
+
+#. srZj2
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid ""
+"Variable declining balance. Returns the declining balance depreciation for a"
+" particular period."
+msgstr ""
+"Variable declining balance. Berechnet die arithmetisch-degressive "
+"Abschreibung für eine bestimmte Periode."
+
+#. 6B2pr
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid "Cost"
+msgstr "AW"
+
+#. DEgvG
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid "Cost. The initial cost of the asset."
+msgstr "Anschaffungswert. Die Anschaffungskosten des Wirtschaftgutes."
+
+#. W2GXE
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid "Salvage"
+msgstr "RW"
+
+#. HALLL
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid "Salvage. The salvage value of an asset at the end of its useful life."
+msgstr "Restwert. Der verbleibende Wert am Ende der Nutzungsdauer."
+
+#. 8UMes
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid "Life"
+msgstr "ND"
+
+#. ppWNR
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid "Useful life. The number of periods in the useful life of the asset."
+msgstr ""
+"Nutzungsdauer. Die Anzahl der Perioden, über die das Wirtschaftsgut "
+"abgeschrieben wird."
+
+#. N7BDV
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid "S"
+msgstr "S"
+
+#. J9NcQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid ""
+"Start. The first period for depreciation in the same time unit as the useful"
+" life."
+msgstr ""
+"Anfang. Die erste Periode der Abschreibung in derselben Zeiteinheit wie die "
+"Nutzungsdauer."
+
+#. WPC4y
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid "end"
+msgstr "Ende"
+
+#. QoA9A
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid ""
+"End. The last period of the depreciation using the same time unit as for the"
+" useful life."
+msgstr ""
+"Ende. Die letzte Periode der Abschreibung in derselben Zeiteinheit wie die "
+"Nutzungsdauer."
+
+#. RMiCB
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid "Factor"
+msgstr "FA"
+
+#. zdq8N
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid ""
+"Factor. The factor for the reduction of the depreciation. F = 2 denotes "
+"double rate depreciation."
+msgstr ""
+"Faktor. Der Faktor für die Abnahme der Abschreibung. F = 2 heißt "
+"Doppelraten-Abschreibung."
+
+#. i6EaD
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid "Type"
+msgstr "Art"
+
+#. thMPo
+#: scfuncs.src
+msgctxt "SC_OPCODE_VBD"
+msgid ""
+"Do not alter. Type = 1 denotes switch to linear depreciation, type = 0 do "
+"not switch."
+msgstr ""
+"Nicht wechseln. Art = 1 heißt Umschalten auf lineare Abschreibung, Art = 0 "
+"heißt kein Umschalten."
+
+#. 7A9Cf
+#: scfuncs.src
+msgctxt "SC_OPCODE_EFFECT"
+msgid "Calculates the annual net interest rate for a nominal interest rate."
+msgstr ""
+"Berechnet die jährliche Effektivverzinsung zu einer Nominalverzinsung."
+
+#. BcSMW
+#: scfuncs.src
+msgctxt "SC_OPCODE_EFFECT"
+msgid "NOM"
+msgstr "NZ"
+
+#. s7oTd
+#: scfuncs.src
+msgctxt "SC_OPCODE_EFFECT"
+msgid "Nominal Interest"
+msgstr "Nominalverzinsung"
+
+#. EZJye
+#: scfuncs.src
+msgctxt "SC_OPCODE_EFFECT"
+msgid "P"
+msgstr "P"
+
+#. oG7XH
+#: scfuncs.src
+msgctxt "SC_OPCODE_EFFECT"
+msgid "Periods. The number of interest payments per year."
+msgstr "Perioden. Die Anzahl der Zinszahlungen pro Jahr."
+
+#. yCgjr
+#: scfuncs.src
+msgctxt "SC_OPCODE_NOMINAL"
+msgid ""
+"Calculates the yearly nominal interest rate as an effective interest rate."
+msgstr "Berechnet die jährlichen Nominalzinsen zu einer Effektivverzinsung."
+
+#. MjFwN
+#: scfuncs.src
+msgctxt "SC_OPCODE_NOMINAL"
+msgid "effect_rate"
+msgstr "EZ"
+
+#. nruwX
+#: scfuncs.src
+msgctxt "SC_OPCODE_NOMINAL"
+msgid "The effective interest rate"
+msgstr "Effektiver Zinssatz"
+
+#. AgAsy
+#: scfuncs.src
+msgctxt "SC_OPCODE_NOMINAL"
+msgid "npery"
+msgstr "npery"
+
+#. XQD9K
+#: scfuncs.src
+msgctxt "SC_OPCODE_NOMINAL"
+msgid "Periods. The number of interest payment per year."
+msgstr "Perioden. Die Anzahl der Zinszahlungen pro Jahr."
+
+#. 4pCL3
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPV"
+msgid ""
+"Net present value. Calculates the net present value of an investment based "
+"on a series of periodic payments and a discount rate."
+msgstr ""
+"Nettobarwert. Berechnet den Kapitalwert einer Investition auf Basis eines "
+"Abzinsungsfaktors bei periodischen Zahlungen."
+
+#. VNGEr
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPV"
+msgid "RATE"
+msgstr "ZINS"
+
+#. EdCXc
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPV"
+msgid "The rate of discount for one period."
+msgstr "Der Abzinsungssatz für eine Periode."
+
+#. vumdu
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPV"
+msgid "value "
+msgstr "Wert "
+
+#. T63zL
+#: scfuncs.src
+msgctxt "SC_OPCODE_NPV"
+msgid ""
+"Value 1, value 2,... are 1 to 30 arguments representing payments and income."
+msgstr "Wert 1, Wert 2, ... sind 1 bis 30 Werte für Zahlungen und Einnahmen."
+
+#. zwY4W
+#: scfuncs.src
+msgctxt "SC_OPCODE_IRR"
+msgid ""
+"Returns the actuarial rate of interest of an investment excluding costs or "
+"profits."
+msgstr ""
+"Berechnet den internen Zinsfuß einer Investition ohne Kosten oder Gewinne."
+
+#. TLAzY
+#: scfuncs.src
+msgctxt "SC_OPCODE_IRR"
+msgid "Values"
+msgstr "Werte"
+
+#. G5SG2
+#: scfuncs.src
+msgctxt "SC_OPCODE_IRR"
+msgid ""
+"An array or reference to cells whose contents correspond to the payments. "
+msgstr ""
+"Matrix oder Zellbezug auf Zellen, deren Inhalt den Zahlungen entsprechen. "
+
+#. ZA6d7
+#: scfuncs.src
+msgctxt "SC_OPCODE_IRR"
+msgid "Guess"
+msgstr "SW"
+
+#. uxdTD
+#: scfuncs.src
+msgctxt "SC_OPCODE_IRR"
+msgid ""
+"Guess. An estimated value of the rate of return to be used for the iteration"
+" calculation."
+msgstr "Schätzwert. Startwert des Zinsfußes für das Iterationsverfahren."
+
+#. 9kYck
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIRR"
+msgid ""
+"Returns the modified internal rate of return for a series of investments."
+msgstr ""
+"Berechnet den modifizierten internen Zinsfuß einer Reihe von Investitionen."
+
+#. pCnP9
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIRR"
+msgid "Values"
+msgstr "Werte"
+
+#. D6tGr
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIRR"
+msgid ""
+"An array or reference to cells whose contents correspond to the payments."
+msgstr ""
+"Matrix oder Zellbezug auf Zellen, deren Inhalt den Zahlungen entsprechen."
+
+#. GS9Gn
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIRR"
+msgid "investment"
+msgstr "Investition"
+
+#. Mp4Sr
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIRR"
+msgid "Interest rate for investments (the negative values in the array)."
+msgstr "Zinsfuß der Investitionen (die negativen Werte der Matrix)."
+
+#. dvMeG
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIRR"
+msgid "reinvest_rate"
+msgstr "Reinvestition"
+
+#. ErMGC
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIRR"
+msgid "interest rate for reinvestments (the positive values in the array)."
+msgstr "Zinsfuß der Reinvestitionen (die positiven Werte der Matrix)."
+
+#. xeEfA
+#: scfuncs.src
+msgctxt "SC_OPCODE_ISPMT"
+msgid "Returns the amount of interest for constant amortization rates."
+msgstr "Berechnet die Höhe der Zinsen bei gleich bleibenden Tilgungsraten."
+
+#. zAy6W
+#: scfuncs.src
+msgctxt "SC_OPCODE_ISPMT"
+msgid "rate"
+msgstr "Zins"
+
+#. Q35Lv
+#: scfuncs.src
+msgctxt "SC_OPCODE_ISPMT"
+msgid "Interest rate for a single amortization rate."
+msgstr "Zinssatz für eine Tilgungsrate."
+
+#. tUhDa
+#: scfuncs.src
+msgctxt "SC_OPCODE_ISPMT"
+msgid "Period"
+msgstr "Periode"
+
+#. CqKcE
+#: scfuncs.src
+msgctxt "SC_OPCODE_ISPMT"
+msgid "Number of amortization periods for the calculation of the interest."
+msgstr "Anzahl der Tilgungszeiträume für die Berechnung der Zinsen."
+
+#. ZSvUn
+#: scfuncs.src
+msgctxt "SC_OPCODE_ISPMT"
+msgid "total_periods"
+msgstr "Gesamt_Zeitraum"
+
+#. iYD4K
+#: scfuncs.src
+msgctxt "SC_OPCODE_ISPMT"
+msgid "Sum total of amortization periods."
+msgstr "Gesamtanzahl der Tilgungszeiträume."
+
+#. WDME2
+#: scfuncs.src
+msgctxt "SC_OPCODE_ISPMT"
+msgid "invest"
+msgstr "Invest"
+
+#. wry9z
+#: scfuncs.src
+msgctxt "SC_OPCODE_ISPMT"
+msgid "Amount of the investment."
+msgstr "Betrag der Investition."
+
+#. 566bB
+#: scfuncs.src
+msgctxt "SC_OPCODE_PDURATION"
+msgid ""
+"Duration. Calculates the number of periods required by an investment to "
+"attain the desired value."
+msgstr ""
+"Laufzeit. Berechnet die Anzahl der Perioden, die eine Investition benötigt, "
+"um auf einen angestrebten Wert zu kommen."
+
+#. F4VXE
+#: scfuncs.src
+msgctxt "SC_OPCODE_PDURATION"
+msgid "RATE"
+msgstr "ZINS"
+
+#. 48B25
+#: scfuncs.src
+msgctxt "SC_OPCODE_PDURATION"
+msgid "The constant rate of interest."
+msgstr "Der konstante Zinsatz."
+
+#. EFDek
+#: scfuncs.src
+msgctxt "SC_OPCODE_PDURATION"
+msgid "pv"
+msgstr "BW"
+
+#. zJDGh
+#: scfuncs.src
+msgctxt "SC_OPCODE_PDURATION"
+msgid "The present value. The current value of the investment."
+msgstr "Barwert. Der momentane Wert der Investition."
+
+#. ADZAS
+#: scfuncs.src
+msgctxt "SC_OPCODE_PDURATION"
+msgid "FV"
+msgstr "ZW"
+
+#. xAsCF
+#: scfuncs.src
+msgctxt "SC_OPCODE_PDURATION"
+msgid "The future value of the investment."
+msgstr "Zukünftiger Wert der Investition."
+
+#. fCHvr
+#: scfuncs.src
+msgctxt "SC_OPCODE_RRI"
+msgid ""
+"Interest. Calculates the interest rate which represents the rate of return "
+"from an investment."
+msgstr ""
+"Zins. Berechnet den Zinssatz, der die Rendite aus einer Investition "
+"darstellt."
+
+#. B9Axq
+#: scfuncs.src
+msgctxt "SC_OPCODE_RRI"
+msgid "P"
+msgstr "P"
+
+#. DwcDi
+#: scfuncs.src
+msgctxt "SC_OPCODE_RRI"
+msgid "The number of periods used in the calculation."
+msgstr "Anzahl der Perioden für die Berechnung."
+
+#. L58C9
+#: scfuncs.src
+msgctxt "SC_OPCODE_RRI"
+msgid "pv"
+msgstr "BW"
+
+#. NH8RT
+#: scfuncs.src
+msgctxt "SC_OPCODE_RRI"
+msgid "Present value. The current value of the investment."
+msgstr "Barwert. Der momentane Wert der Investition."
+
+#. 83egL
+#: scfuncs.src
+msgctxt "SC_OPCODE_RRI"
+msgid "FV"
+msgstr "ZW"
+
+#. GXH2D
+#: scfuncs.src
+msgctxt "SC_OPCODE_RRI"
+msgid "The future value of the investment."
+msgstr "Zukünftiger Wert der Investition."
+
+#. XPjdG
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_REF"
+msgid "Returns TRUE if value is a reference."
+msgstr "Liefert WAHR, wenn der Wert ein Bezug ist."
+
+#. pHmH3
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_REF"
+msgid "value"
+msgstr "Wert"
+
+#. HaNny
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_REF"
+msgid "The value to be tested."
+msgstr "Der Wert, der geprüft werden soll."
+
+#. Ajcxx
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_ERR"
+msgid "Returns TRUE if the value is an error value not equal to #N/A."
+msgstr "Liefert WAHR, wenn der Wert ein Fehlerwert ungleich #NV ist."
+
+#. 2BKWh
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_ERR"
+msgid "value"
+msgstr "Wert"
+
+#. hapC3
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_ERR"
+msgid "The value to be tested."
+msgstr "Der Wert, der geprüft werden soll."
+
+#. D4RCC
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_ERROR"
+msgid "Returns TRUE if the value is an error value."
+msgstr "Liefert WAHR, wenn der Wert ein Fehlerwert ist."
+
+#. BjwJ2
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_ERROR"
+msgid "value"
+msgstr "Wert"
+
+#. G8ADa
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_ERROR"
+msgid "The value to be tested."
+msgstr "Der Wert, der geprüft werden soll."
+
+#. yFuFE
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_EMPTY"
+msgid "Returns TRUE if value refers to an empty cell."
+msgstr "Liefert WAHR, wenn der Wert ein Bezug auf eine leere Zelle ist."
+
+#. oN6st
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_EMPTY"
+msgid "value"
+msgstr "Wert"
+
+#. 8G57D
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_EMPTY"
+msgid "The value to be tested."
+msgstr "Der Wert, der geprüft werden soll."
+
+#. KopZh
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_LOGICAL"
+msgid "Returns TRUE if the value carries a logical number format."
+msgstr "Liefert WAHR, wenn der Wert ein logisches Zahlenformat trägt."
+
+#. NBQdn
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_LOGICAL"
+msgid "value"
+msgstr "Wert"
+
+#. SJxHe
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_LOGICAL"
+msgid "The value to be tested."
+msgstr "Der Wert, der geprüft werden soll."
+
+#. YSyGh
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_NV"
+msgid "Returns TRUE if value equals #N/A."
+msgstr "Liefert WAHR, wenn der Wert gleich #NV ist."
+
+#. EPSkk
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_NV"
+msgid "value"
+msgstr "Wert"
+
+#. afSHE
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_NV"
+msgid "The value to be tested."
+msgstr "Der Wert, der geprüft werden soll."
+
+#. N7VEW
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_NON_STRING"
+msgid "Returns TRUE if the value is not text."
+msgstr "Liefert WAHR, wenn der Wert kein Text ist."
+
+#. Gw6EG
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_NON_STRING"
+msgid "value"
+msgstr "Wert"
+
+#. Ggazf
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_NON_STRING"
+msgid "The value to be tested."
+msgstr "Der Wert, der geprüft werden soll."
+
+#. 2j93h
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_STRING"
+msgid "Returns TRUE if value is text."
+msgstr "Liefert WAHR, wenn der Wert ein Text ist."
+
+#. c5mVR
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_STRING"
+msgid "value"
+msgstr "Wert"
+
+#. v9uiA
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_STRING"
+msgid "The value to be tested."
+msgstr "Der Wert, der geprüft werden soll."
+
+#. GNhGh
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_VALUE"
+msgid "Returns TRUE if value is a number."
+msgstr "Liefert WAHR, wenn der Wert eine Zahl ist."
+
+#. ia6uj
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_VALUE"
+msgid "value"
+msgstr "Wert"
+
+#. wvRcF
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_VALUE"
+msgid "The value to be tested."
+msgstr "Der Wert, der geprüft werden soll."
+
+#. FYhn6
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_FORMULA"
+msgid "Returns TRUE if the cell is a formula cell."
+msgstr "Liefert WAHR, wenn die Zelle eine Formelzelle ist."
+
+#. xxgAt
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_FORMULA"
+msgid "reference"
+msgstr "Bezug"
+
+#. FrgGY
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_FORMULA"
+msgid "The cell to be checked."
+msgstr "Die Zelle, die überprüft werden soll."
+
+#. 7dDn8
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORMULA"
+msgid "Returns the formula of a formula cell."
+msgstr "Liefert die Formel einer Formelzelle."
+
+#. 8ZmRa
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORMULA"
+msgid "Reference"
+msgstr "Bezug"
+
+#. bJjWf
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORMULA"
+msgid "The formula cell."
+msgstr "Die Formelzelle."
+
+#. yKm8E
+#: scfuncs.src
+msgctxt "SC_OPCODE_N"
+msgid "Converts a value to a number."
+msgstr "Wandelt einen Wert in eine Zahl."
+
+#. HNLGw
+#: scfuncs.src
+msgctxt "SC_OPCODE_N"
+msgid "value"
+msgstr "Wert"
+
+#. EDBJx
+#: scfuncs.src
+msgctxt "SC_OPCODE_N"
+msgid "The value to be interpreted as a number."
+msgstr "Der Wert, der als Zahl interpretiert wird."
+
+#. AEGQL
+#: scfuncs.src
+msgctxt "SC_OPCODE_NO_VALUE"
+msgid "Not available. Returns the error value #N/A."
+msgstr "Nicht verfügbar. Setzt eine Zelle auf den Fehlerwert #NV."
+
+#. Q7UfD
+#: scfuncs.src
+msgctxt "SC_OPCODE_TYPE"
+msgid ""
+"Returns the data type of a value (1 = number, 2 = text, 4 = Boolean value, 8"
+" = formula, 16 = error value, 64 = array)."
+msgstr ""
+"Gibt den Datentyp eines Werts zurück (1 = Zahl, 2 = Text, 4 = Boolescher "
+"Wert, 8 = Formel, 16 = Fehlerwert , 64 = Matrix)."
+
+#. JvGbU
+#: scfuncs.src
+msgctxt "SC_OPCODE_TYPE"
+msgid "value"
+msgstr "Wert"
+
+#. yKxJG
+#: scfuncs.src
+msgctxt "SC_OPCODE_TYPE"
+msgid "The value for which the data type is to be determined."
+msgstr "Der Wert, dessen Datentyp bestimmt wird."
+
+#. VP7rD
+#: scfuncs.src
+msgctxt "SC_OPCODE_CELL"
+msgid ""
+"Determines information about address, formatting or contents of a cell."
+msgstr ""
+"Ermittelt Informationen über Adresse, Formatierung oder Inhalt einer Zelle."
+
+#. CxyDt
+#: scfuncs.src
+msgctxt "SC_OPCODE_CELL"
+msgid "info_type"
+msgstr "Infotyp"
+
+#. fUHwm
+#: scfuncs.src
+msgctxt "SC_OPCODE_CELL"
+msgid "String that specifies the type of information."
+msgstr "Zeichenkette, welche die Art der Information bestimmt."
+
+#. XYdFV
+#: scfuncs.src
+msgctxt "SC_OPCODE_CELL"
+msgid "Reference"
+msgstr "Bezug"
+
+#. eBw5E
+#: scfuncs.src
+msgctxt "SC_OPCODE_CELL"
+msgid "The position of the cell you want to examine."
+msgstr "Die Position der zu untersuchenden Zelle."
+
+#. ADdsf
+#: scfuncs.src
+msgctxt "SC_OPCODE_CURRENT"
+msgid "Calculates the current value of the formula at the present location. "
+msgstr ""
+"Ermittelt den aktuellen Wert der Formel an der Position, an der diese "
+"Funktion steht. "
+
+#. yQMAM
+#: scfuncs.src
+msgctxt "SC_OPCODE_FALSE"
+msgid "Defines the logical value as FALSE."
+msgstr "Setzt den Wahrheitswert FALSCH."
+
+#. gBTKc
+#: scfuncs.src
+msgctxt "SC_OPCODE_NOT"
+msgid "Reverses the value of the argument."
+msgstr "Kehrt den Wert des Argumentes um."
+
+#. RFgjB
+#: scfuncs.src
+msgctxt "SC_OPCODE_NOT"
+msgid "Logical value"
+msgstr "Wahrheitswert"
+
+#. AjEum
+#: scfuncs.src
+msgctxt "SC_OPCODE_NOT"
+msgid "An expression that can be either TRUE or FALSE."
+msgstr "Ein Ausdruck, der WAHR oder FALSCH annehmen kann."
+
+#. LzbKn
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRUE"
+msgid "Returns the logical value TRUE."
+msgstr "Setzt den Wahrheitswert WAHR."
+
+#. v3TGN
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF"
+msgid "Specifies a logical test to be performed."
+msgstr "Gibt eine Wahrheitsprüfung an, die durchgeführt werden soll."
+
+#. MYB24
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF"
+msgid "Test"
+msgstr "Prüfung"
+
+#. CTh7g
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF"
+msgid "Any value or expression which can be either TRUE or FALSE."
+msgstr "Ein beliebiger Wert oder Ausdruck, der WAHR oder FALSCH sein kann."
+
+#. kDQrP
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF"
+msgid "Then_value"
+msgstr "Dann_Wert"
+
+#. 6D8BZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF"
+msgid "The result of the function if the logical test returns a TRUE."
+msgstr "Das Ergebnis der Funktion, wenn die Wahrheitsprüfung WAHR ergibt."
+
+#. jaRnS
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF"
+msgid "Otherwise_value"
+msgstr "Sonst_Wert"
+
+#. eEZDV
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF"
+msgid "The result of the function if the logical test returns FALSE."
+msgstr "Das Ergebnis der Funktion, wenn die Wahrheitsprüfung FALSCH ergibt."
+
+#. edvgD
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF_ERROR"
+msgid "Returns value if not an error value, else alternative."
+msgstr ""
+"Liefert einen Wert zurück, wenn es kein Fehlerwert ist, ansonsten den "
+"Alternativwert."
+
+#. J7vCa
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF_ERROR"
+msgid "value"
+msgstr "Wert"
+
+#. a9eFD
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF_ERROR"
+msgid "The value to be calculated."
+msgstr "Der zu berechnende Wert."
+
+#. YPjuf
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF_ERROR"
+msgid "alternative value"
+msgstr "Alternativer Wert"
+
+#. aigz7
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF_ERROR"
+msgid "The alternative to be returned, should value be an error value."
+msgstr ""
+"Der Alternativwert, der zurückgeliefert wird, wenn ein Wert ein Fehlerwert "
+"ist."
+
+#. AEkuH
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF_NA"
+msgid "Returns value if not a #N/A error, else alternative."
+msgstr ""
+"Liefert einen Wert zurück, wenn kein #NV-Fehler vorliegt, ansonsten den "
+"Alternativwert."
+
+#. rxFfB
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF_NA"
+msgid "value"
+msgstr "Wert"
+
+#. GRMGK
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF_NA"
+msgid "The value to be calculated."
+msgstr "Der zu berechnende Wert."
+
+#. zTZsS
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF_NA"
+msgid "alternative value"
+msgstr "Alternativer Wert"
+
+#. dFWuU
+#: scfuncs.src
+msgctxt "SC_OPCODE_IF_NA"
+msgid "The alternative to be returned, should value be a #N/A error."
+msgstr ""
+"Der Alternativwert, der zurückgeliefert wird, wenn ein #NV-Fehler vorliegt."
+
+#. xUnPu
+#: scfuncs.src
+msgctxt "SC_OPCODE_OR"
+msgid "Returns TRUE if an argument is TRUE."
+msgstr "Setzt WAHR, wenn ein Argument WAHR ist."
+
+#. kHpqi
+#: scfuncs.src
+msgctxt "SC_OPCODE_OR"
+msgid "Logical value "
+msgstr "Wahrheitswert "
+
+#. F27JQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_OR"
+msgid ""
+"Logical value 1, logical value 2,... are 1 to 30 conditions to be tested and"
+" which return either TRUE or FALSE."
+msgstr ""
+"Wahrheitswert 1, Wahrheitswert 2, ... sind 1 bis 30 Bedingungen, die "
+"überprüft werden sollen und jeweils entweder WAHR oder FALSCH liefern."
+
+#. oWP6A
+#: scfuncs.src
+msgctxt "SC_OPCODE_XOR"
+msgid "Returns TRUE if an odd number of arguments evaluates to TRUE."
+msgstr "Gibt WAHR zurück, wenn eine ungerade Anzahl an Argumenten WAHR ist."
+
+#. k66Hq
+#: scfuncs.src
+msgctxt "SC_OPCODE_XOR"
+msgid "Logical value "
+msgstr "Wahrheitswert "
+
+#. norop
+#: scfuncs.src
+msgctxt "SC_OPCODE_XOR"
+msgid ""
+"Logical value 1, logical value 2, ... are 1 to 30 conditions to be tested "
+"and which return either TRUE or FALSE."
+msgstr ""
+"Wahrheitswert 1, Wahrheitswert 2, ... sind 1 bis 30 Bedingungen, die "
+"überprüft werden sollen und jeweils entweder WAHR oder FALSCH liefern."
+
+#. DrctE
+#: scfuncs.src
+msgctxt "SC_OPCODE_AND"
+msgid "Returns TRUE if all arguments are TRUE."
+msgstr "Setzt WAHR, wenn alle Argumente WAHR sind."
+
+#. xY9uD
+#: scfuncs.src
+msgctxt "SC_OPCODE_AND"
+msgid "Logical value "
+msgstr "Wahrheitswert "
+
+#. F8gBN
+#: scfuncs.src
+msgctxt "SC_OPCODE_AND"
+msgid ""
+"Logical value 1, logical value 2;...are 1 to 30 conditions to be tested and "
+"each returns either TRUE or FALSE."
+msgstr ""
+"Wahrheitswert 1, Wahrheitswert 2, ... sind 1 bis 30 Bedingungen, die "
+"überprüft werden sollen und jeweils entweder WAHR oder FALSCH liefern."
+
+#. EXiAr
+#: scfuncs.src
+msgctxt "SC_OPCODE_ABS"
+msgid "Absolute value of a number."
+msgstr "Berechnet den Betrag (Absolutwert) einer Zahl."
+
+#. 9NoUK
+#: scfuncs.src
+msgctxt "SC_OPCODE_ABS"
+msgid "Number"
+msgstr "Zahl"
+
+#. FzBD9
+#: scfuncs.src
+msgctxt "SC_OPCODE_ABS"
+msgid "The number whose absolute value is to be returned."
+msgstr "Die Zahl, deren Absolutwert berechnet werden soll."
+
+#. c2x4N
+#: scfuncs.src
+msgctxt "SC_OPCODE_POWER"
+msgid "Returns a^b, base a raised to the power of exponent b."
+msgstr "Liefert a^b, die Potenz für Basis a hoch Exponent b."
+
+#. 3FCiX
+#: scfuncs.src
+msgctxt "SC_OPCODE_POWER"
+msgid "Base"
+msgstr "Basis"
+
+#. WAWLC
+#: scfuncs.src
+msgctxt "SC_OPCODE_POWER"
+msgid "The base a of the power a^b."
+msgstr "Die Basis der Potenz a^b."
+
+#. iUBVy
+#: scfuncs.src
+msgctxt "SC_OPCODE_POWER"
+msgid "Exponent"
+msgstr "Exponent"
+
+#. baWUA
+#: scfuncs.src
+msgctxt "SC_OPCODE_POWER"
+msgid "The exponent b of the power a^b."
+msgstr "Der Exponent b der Potenz a^b."
+
+#. 8fGhf
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS"
+msgid "Counts the blank cells in a specified range."
+msgstr "Zählt die leeren Zellen in einem Bereich."
+
+#. fFh89
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS"
+msgid "range"
+msgstr "Bereich"
+
+#. p3U4L
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS"
+msgid "The range in which empty cells are to be counted."
+msgstr "Bereich in dem leere Zellen gezählt werden."
+
+#. NRYYy
+#: scfuncs.src
+msgctxt "SC_OPCODE_PI"
+msgid "Returns the value of the number Pi."
+msgstr "Liefert den Wert der Zahl Pi."
+
+#. oGC5R
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM"
+msgid "Returns the sum of all arguments."
+msgstr "Summiert die Argumente."
+
+#. vsHNb
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM"
+msgid "number "
+msgstr "Zahl "
+
+#. UXiLN
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 arguments whose total is to be "
+"calculated."
+msgstr ""
+"Zahl 1;Zahl 2;... sind 1 bis 30 Argumente, deren Summe berechnet werden "
+"soll."
+
+#. G3hS7
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_SQ"
+msgid "Returns the sum of the squares of the arguments."
+msgstr "Summiert die Quadrate der Argumente."
+
+#. pMrYh
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_SQ"
+msgid "number "
+msgstr "Zahl "
+
+#. ght6E
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_SQ"
+msgid ""
+"Number 1, number 2,... are 1 to 30 arguments for which the sum of the "
+"squares is to be calculated."
+msgstr ""
+"Zahl 1;Zahl 2;... sind 1 bis 30 Argumente, deren Quadratesumme berechnet "
+"werden soll."
+
+#. CAYq3
+#: scfuncs.src
+msgctxt "SC_OPCODE_PRODUCT"
+msgid "Multiplies the arguments."
+msgstr "Multipliziert die Argumente."
+
+#. nh4bQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_PRODUCT"
+msgid "Number "
+msgstr "Zahl "
+
+#. To8ga
+#: scfuncs.src
+msgctxt "SC_OPCODE_PRODUCT"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 arguments to be multiplied and a result "
+"returned."
+msgstr ""
+"Zahl 1;Zahl 2;... sind 1 bis 30 Argumente, deren Produkt berechnet werden "
+"soll."
+
+#. FATwX
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IF"
+msgid "Totals the arguments that meet the condition."
+msgstr "Summiert die Argumente, die der Bedingung genügen."
+
+#. JF648
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IF"
+msgid "range"
+msgstr "Bereich"
+
+#. je6F2
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IF"
+msgid "The range to be evaluated by the criteria given."
+msgstr "Der Bereich, auf den die Bedingung angewendet wird."
+
+#. 6soAm
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IF"
+msgid "criteria"
+msgstr "Bedingung"
+
+#. GBGyP
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IF"
+msgid "The criteria to be applied to the range."
+msgstr "Die Bedingung, die auf einen Bereich angewendet wird."
+
+#. fZp44
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IF"
+msgid "sum_range"
+msgstr "Summenbereich"
+
+#. TE6jW
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IF"
+msgid "The range from which the values are to be totalled."
+msgstr "Bereich, aus dem die Werte summiert werden."
+
+#. 6CEv7
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IF"
+msgid "Averages the arguments that meet the conditions."
+msgstr ""
+"Berechnet den Mittelwert der Argumente, welche die Bedingung erfüllen."
+
+#. pgEAg
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IF"
+msgid "range"
+msgstr "Bereich"
+
+#. i6C6r
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IF"
+msgid "The range to be evaluated by the criteria given."
+msgstr "Der Bereich, auf den die vorgegebene Bedingung angewendet wird."
+
+#. QcZEa
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IF"
+msgid "criteria"
+msgstr "Bedingung"
+
+#. mHjDY
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IF"
+msgid "The criteria to be applied to the range."
+msgstr "Die Bedingung, die auf den Bereich angewendet wird."
+
+#. 24GSD
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IF"
+msgid "average_range"
+msgstr "Mittelwertbereich"
+
+#. dRAB6
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IF"
+msgid "The range from which the values are to be averaged."
+msgstr "Der Bereich, für den die Mittelwerte berechnet werden."
+
+#. RqVYL
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IFS"
+msgid ""
+"Totals the values of cells in a range that meet multiple criteria in "
+"multiple ranges."
+msgstr ""
+"Summiert die Werte der Zellen in einem Bereich, die mehrere Bedingungen in "
+"mehreren Bereichen erfüllen."
+
+#. EEpts
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IFS"
+msgid "sum_range"
+msgstr "Summenbereich"
+
+#. qS2sr
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IFS"
+msgid "The range from which the values are to be totalled."
+msgstr "Bereich, aus dem die Werte summiert werden."
+
+#. dQHTm
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IFS"
+msgid "range "
+msgstr "Bereich "
+
+#. 9qDvh
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IFS"
+msgid ""
+"Range 1, range 2,... are the ranges to be evaluated by the criteria given."
+msgstr ""
+"Bereich 1, Bereich 2,... sind die Bereiche, die mittels der vorgegebenen "
+"Bedingungen beurteilt werden."
+
+#. 6JETV
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IFS"
+msgid "criteria "
+msgstr "Bedingung "
+
+#. 4QoCb
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_IFS"
+msgid ""
+"Criteria 1, criteria 2,... are the criteria to be applied to the ranges "
+"given."
+msgstr ""
+"Bedingung 1, Bedingung 2,... sind die Bedingungen, welche auf den "
+"angegebenen Bereich angewendet werden."
+
+#. AoDCe
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IFS"
+msgid ""
+"Averages the value of the cells that meet multiple criteria in multiple "
+"ranges."
+msgstr ""
+"Berechnet den Mittelwert der Zellen, auf die mehrere Bedingungen in mehreren"
+" Bereichen zutreffen."
+
+#. yxipX
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IFS"
+msgid "average_range"
+msgstr "Mittelwertbereich"
+
+#. o52rT
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IFS"
+msgid "The range from which the values are to be averaged."
+msgstr "Bereich, für den die Mittelwerte berechnet werden."
+
+#. xv9MC
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IFS"
+msgid "range "
+msgstr "Bereich "
+
+#. wvbDq
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IFS"
+msgid ""
+"Range 1, range 2,... are the ranges to be evaluated by the criteria given."
+msgstr ""
+"Bereich 1, Bereich 2,... sind die Bereiche, auf welche die vorgegebenen "
+"Bedingungen angewendet werden."
+
+#. 47L6Y
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IFS"
+msgid "criteria "
+msgstr "Bedingung "
+
+#. RTV4C
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_IFS"
+msgid ""
+"Criteria 1, criteria 2,... are the criteria to be applied to the ranges "
+"given."
+msgstr ""
+"Bedingung 1, Bedingung 2,... sind die Bedingungen, welche auf die "
+"vorgegebenen Bereiche angewendet werden."
+
+#. 8NmPC
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_IFS"
+msgid "Counts the cells that meet multiple criteria in multiple ranges."
+msgstr ""
+"Zählt die Zellen, auf die mehrere Bedingungen in mehreren Bereichen "
+"zutreffen."
+
+#. 8Zvhp
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_IFS"
+msgid "range "
+msgstr "Bereich "
+
+#. 8GRAv
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_IFS"
+msgid ""
+"Range 1, range 2,... are the ranges to be evaluated by the criteria given."
+msgstr ""
+"Bereich 1, Bereich 2,... sind die Bereiche, die mittels der vorgegebenen "
+"Bedingungen beurteilt werden."
+
+#. 9DtGp
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_IFS"
+msgid "criteria "
+msgstr "Bedingung "
+
+#. CBZSu
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_IFS"
+msgid ""
+"Criteria 1, criteria 2,... are the criteria to be applied to the ranges "
+"given."
+msgstr ""
+"Bedingung 1, Bedingung 2,... sind die Bedingungen, welche auf den "
+"angegebenen Bereich angewendet werden."
+
+#. wKWDz
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_IF"
+msgid "Counts the arguments which meet the set conditions."
+msgstr "Zählt die Argumente, die den Bedingungen genügen."
+
+#. sdX9m
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_IF"
+msgid "range"
+msgstr "Bereich"
+
+#. KXd5A
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_IF"
+msgid "The range of cells to be evaluated by the criteria given."
+msgstr "Zellbereich, auf den die Bedingung angewendet wird."
+
+#. z75Aq
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_IF"
+msgid "criteria"
+msgstr "Bedingung"
+
+#. Dv9PK
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_IF"
+msgid "The criteria to be applied to the range."
+msgstr "Die Bedingung, welche auf den Bereich angewendet wird."
+
+#. hUVL8
+#: scfuncs.src
+msgctxt "SC_OPCODE_SQRT"
+msgid "Returns the square root of a number."
+msgstr "Berechnet die Quadratwurzel einer Zahl."
+
+#. 5D4Qf
+#: scfuncs.src
+msgctxt "SC_OPCODE_SQRT"
+msgid "number"
+msgstr "Zahl"
+
+#. c7XVK
+#: scfuncs.src
+msgctxt "SC_OPCODE_SQRT"
+msgid "A positive value for which the square root is to be calculated."
+msgstr "Ein positiver Wert, dessen Quadratwurzel berechnet werden soll."
+
+#. KJ7e9
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANDOM"
+msgid "Returns a random number between 0 and 1."
+msgstr "Liefert eine Zufallszahl zwischen 0 und 1."
+
+#. QugqG
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_EVEN"
+msgid "Returns TRUE if value is an even integer."
+msgstr "Liefert WAHR, wenn der Wert eine gerade Zahl ist."
+
+#. e9WCh
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_EVEN"
+msgid "value"
+msgstr "Wert"
+
+#. m8q4f
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_EVEN"
+msgid "The value to be tested."
+msgstr "Der Wert, der geprüft werden soll."
+
+#. M8AAF
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_ODD"
+msgid "Returns TRUE if value is an odd integer."
+msgstr "Liefert WAHR, wenn der Wert eine ungerade Zahl ist."
+
+#. 8XJs5
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_ODD"
+msgid "value"
+msgstr "Wert"
+
+#. YvE5M
+#: scfuncs.src
+msgctxt "SC_OPCODE_IS_ODD"
+msgid "The value to be tested."
+msgstr "Der Wert, der geprüft werden soll."
+
+#. ACNEb
+#: scfuncs.src
+msgctxt "SC_OPCODE_COMBIN"
+msgid "Calculates the number of combinations for elements without repetition."
+msgstr ""
+"Berechnet die Anzahl der Kombinationen von Elementen ohne Wiederholung."
+
+#. BVWac
+#: scfuncs.src
+msgctxt "SC_OPCODE_COMBIN"
+msgid "number_1"
+msgstr "Anzahl 1"
+
+#. ACGaC
+#: scfuncs.src
+msgctxt "SC_OPCODE_COMBIN"
+msgid "The total number of elements."
+msgstr "Gesamtanzahl der Elemente."
+
+#. CXBcD
+#: scfuncs.src
+msgctxt "SC_OPCODE_COMBIN"
+msgid "number_2"
+msgstr "Anzahl 2"
+
+#. JKD75
+#: scfuncs.src
+msgctxt "SC_OPCODE_COMBIN"
+msgid "The number of elements selected."
+msgstr "Anzahl der ausgewählten Elemente."
+
+#. ct5pJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_COMBIN_A"
+msgid ""
+"Calculates the number of combinations of elements including repetition."
+msgstr ""
+"Berechnet die Anzahl der Kombinationen von Elementen mit Wiederholung."
+
+#. AbDDQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_COMBIN_A"
+msgid "number_1"
+msgstr "Anzahl 1"
+
+#. smqPP
+#: scfuncs.src
+msgctxt "SC_OPCODE_COMBIN_A"
+msgid "The total number of elements."
+msgstr "Gesamtanzahl der Elemente."
+
+#. DhYFZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_COMBIN_A"
+msgid "number_2"
+msgstr "Anzahl 2"
+
+#. F9A6f
+#: scfuncs.src
+msgctxt "SC_OPCODE_COMBIN_A"
+msgid "The number of elements selected."
+msgstr "Anzahl der ausgewählten Elemente."
+
+#. QPAG9
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_COS"
+msgid "Returns the arccosine of a number."
+msgstr "Berechnet den Arkuskosinus einer Zahl."
+
+#. HRPpD
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_COS"
+msgid "Number"
+msgstr "Zahl"
+
+#. 3DWTM
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_COS"
+msgid "A value between -1 and 1 for which the arccosine is to be returned."
+msgstr ""
+"Eine Zahl zwischen -1 und 1, deren Arkuskosinus berechnet werden soll."
+
+#. tAK2r
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_SIN"
+msgid "Returns the arcsine of a number."
+msgstr "Berechnet den Arkussinus einer Zahl."
+
+#. hEinR
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_SIN"
+msgid "Number"
+msgstr "Zahl"
+
+#. qLmmB
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_SIN"
+msgid "A value between -1 and 1 for which the arcsine is to be returned."
+msgstr "Ein Wert zwischen -1 und 1, dessen Arkussinus berechnet werden soll."
+
+#. zEn7k
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_COS_HYP"
+msgid "Returns the inverse hyperbolic cosine of a number."
+msgstr "Berechnet den Areakosinus Hyperbolicus einer Zahl."
+
+#. jMBBc
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_COS_HYP"
+msgid "Number"
+msgstr "Zahl"
+
+#. XXCab
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_COS_HYP"
+msgid ""
+"A value greater than or equal to 1 for which the inverse hyperbolic cosine "
+"is to be returned."
+msgstr ""
+"Ein Wert größer oder gleich 1, für den der Areakosinus Hyperbolicus "
+"berechnet werden soll."
+
+#. 6Soyt
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_SIN_HYP"
+msgid "Returns the inverse hyperbolic sine of a number."
+msgstr "Berechnet den Areasinus Hyperbolicus einer Zahl."
+
+#. C6BAQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_SIN_HYP"
+msgid "Number"
+msgstr "Zahl"
+
+#. g538f
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_SIN_HYP"
+msgid "The value for which the inverse hyperbolic sine is to be returned."
+msgstr "Der Wert, dessen Areasinus Hyperbolicus berechnet werden soll."
+
+#. XB4s8
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_COT"
+msgid "Returns the inverse cotangent of a number."
+msgstr "Berechnet den Arkuskotangens einer Zahl."
+
+#. gufZ7
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_COT"
+msgid "Number"
+msgstr "Zahl"
+
+#. DMjNA
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_COT"
+msgid "The value for which the inverse cotangent is to be returned."
+msgstr "Der Wert, dessen Arkuskotangens berechnet werden soll."
+
+#. EmMe7
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_TAN"
+msgid "Returns the arctangent of a number."
+msgstr "Berechnet den Arkustangens einer Zahl."
+
+#. FauoY
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_TAN"
+msgid "Number"
+msgstr "Zahl"
+
+#. CShfM
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_TAN"
+msgid "The value for which the arctangent is to be returned."
+msgstr "Der Wert, dessen Arkustangens berechnet werden soll."
+
+#. Fak4u
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_COT_HYP"
+msgid "Returns the inverse hyperbolic cotangent of a number."
+msgstr "Berechnet den Areakotanges Hyperbolicus einer Zahl."
+
+#. xw5qx
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_COT_HYP"
+msgid "Number"
+msgstr "Zahl"
+
+#. DoCMo
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_COT_HYP"
+msgid ""
+"A value smaller than -1 or greater than 1 for which the inverse hyperbolic "
+"cotangent is to be returned."
+msgstr ""
+"Ein Wert kleiner als -1 oder größer als 1, dessen Areakotanges Hyperbolicus "
+"berechnet werden soll."
+
+#. rHP2u
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_TAN_HYP"
+msgid "Returns the inverse hyperbolic tangent of a number."
+msgstr "Berechnet den Areatangens Hyperbolicus einer Zahl."
+
+#. yVfL2
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_TAN_HYP"
+msgid "Number"
+msgstr "Zahl"
+
+#. aJFAn
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_TAN_HYP"
+msgid ""
+"A value between -1 and 1 for which the inverse hyperbolic tangent is to be "
+"returned."
+msgstr ""
+"Ein Wert zwischen -1 und 1, dessen Areatanges Hyperbolicus berechnet werden "
+"soll."
+
+#. Vj2jZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_COS"
+msgid "Returns the cosine of a number."
+msgstr "Berechnet den Kosinus einer Zahl."
+
+#. UTGDD
+#: scfuncs.src
+msgctxt "SC_OPCODE_COS"
+msgid "Number"
+msgstr "Zahl"
+
+#. jghqr
+#: scfuncs.src
+msgctxt "SC_OPCODE_COS"
+msgid "The angle in the radians for which the cosine is to be returned."
+msgstr "Der Winkel im Bogenmaß, dessen Kosinus berechnet werden soll."
+
+#. sqQxE
+#: scfuncs.src
+msgctxt "SC_OPCODE_SIN"
+msgid "Returns the sine of a number."
+msgstr "Berechnet den Sinus einer Zahl."
+
+#. D8uXJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_SIN"
+msgid "number"
+msgstr "Zahl"
+
+#. oEkWa
+#: scfuncs.src
+msgctxt "SC_OPCODE_SIN"
+msgid "The angle in radians for which the sine is to be calculated."
+msgstr "Der Winkel im Bogenmaß, dessen Sinus berechnet werden soll."
+
+#. kSc7G
+#: scfuncs.src
+msgctxt "SC_OPCODE_COT"
+msgid "Returns the cotangent of a number."
+msgstr "Berechnet den Kotangens einer Zahl."
+
+#. M6YP7
+#: scfuncs.src
+msgctxt "SC_OPCODE_COT"
+msgid "Number"
+msgstr "Zahl"
+
+#. PpPgM
+#: scfuncs.src
+msgctxt "SC_OPCODE_COT"
+msgid "The angle in radians whose cotangent value is to be returned."
+msgstr "Der Winkel im Bogenmaß, dessen Kotangens berechnet werden soll."
+
+#. LRJoG
+#: scfuncs.src
+msgctxt "SC_OPCODE_TAN"
+msgid "Returns the tangent of a number."
+msgstr "Berechnet den Tangens einer Zahl."
+
+#. fUiWT
+#: scfuncs.src
+msgctxt "SC_OPCODE_TAN"
+msgid "number"
+msgstr "Zahl"
+
+#. DsPvx
+#: scfuncs.src
+msgctxt "SC_OPCODE_TAN"
+msgid "The angle in radians for which the tangent is to be calculated."
+msgstr "Der Winkel im Bogenmaß, dessen Tangens berechnet werden soll."
+
+#. 6mhty
+#: scfuncs.src
+msgctxt "SC_OPCODE_COS_HYP"
+msgid "Returns the hyperbolic cosine of a number."
+msgstr "Berechnet den Kosinus Hyperbolicus einer Zahl."
+
+#. fyReM
+#: scfuncs.src
+msgctxt "SC_OPCODE_COS_HYP"
+msgid "Number"
+msgstr "Zahl"
+
+#. anyG2
+#: scfuncs.src
+msgctxt "SC_OPCODE_COS_HYP"
+msgid "The value for which the hyperbolic cosine is to be returned."
+msgstr "Der Wert, dessen Kosinus Hyperbolicus berechnet werden soll."
+
+#. oGJMo
+#: scfuncs.src
+msgctxt "SC_OPCODE_SIN_HYP"
+msgid "Returns the hyperbolic sine of a number."
+msgstr "Berechnet den Sinus Hyperbolicus einer Zahl."
+
+#. JFRRa
+#: scfuncs.src
+msgctxt "SC_OPCODE_SIN_HYP"
+msgid "number"
+msgstr "Zahl"
+
+#. gBB9w
+#: scfuncs.src
+msgctxt "SC_OPCODE_SIN_HYP"
+msgid "The value for which the hyperbolic sine is to be calculated."
+msgstr "Der Wert, dessen Sinus Hyperbolicus berechnet werden soll."
+
+#. 9j9Hg
+#: scfuncs.src
+msgctxt "SC_OPCODE_COT_HYP"
+msgid "Returns the hyperbolic cotangent of a number."
+msgstr "Berechnet den Kotangens Hyperbolicus einer Zahl."
+
+#. UKBBG
+#: scfuncs.src
+msgctxt "SC_OPCODE_COT_HYP"
+msgid "Number"
+msgstr "Zahl"
+
+#. ermmU
+#: scfuncs.src
+msgctxt "SC_OPCODE_COT_HYP"
+msgid ""
+"A value not equal to 0 for which the hyperbolic cotangent is to be returned."
+msgstr ""
+"Ein Wert ungleich 0, dessen Kotangens Hyperbolicus berechnet werden soll."
+
+#. epvJu
+#: scfuncs.src
+msgctxt "SC_OPCODE_TAN_HYP"
+msgid "Returns the hyperbolic tangent of a number."
+msgstr "Berechnet den Tangens Hyperbolicus einer Zahl."
+
+#. omrDq
+#: scfuncs.src
+msgctxt "SC_OPCODE_TAN_HYP"
+msgid "number"
+msgstr "Zahl"
+
+#. pG8mV
+#: scfuncs.src
+msgctxt "SC_OPCODE_TAN_HYP"
+msgid "The value for which the hyperbolic tangent is to be calculated."
+msgstr "Der Wert, dessen Tangens Hyperbolicus berechnet werden soll."
+
+#. 8U6yM
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_TAN_2"
+msgid "Returns the arctangent for the specified coordinates."
+msgstr "Berechnet den Arkustangens zu den angegebenen Koordinaten."
+
+#. DJaCU
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_TAN_2"
+msgid "number_x"
+msgstr "Zahl_X"
+
+#. jG59A
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_TAN_2"
+msgid "The value for the x coordinate."
+msgstr "Wert für die X-Koordinate."
+
+#. tLuBo
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_TAN_2"
+msgid "number_y"
+msgstr "Zahl_Y"
+
+#. nibff
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARC_TAN_2"
+msgid "The value for the y coordinate."
+msgstr "Wert für die Y-Koordinate."
+
+#. ZFTPM
+#: scfuncs.src
+msgctxt "SC_OPCODE_COSECANT"
+msgid "Return the cosecant of an angle. CSC(x)=1/SIN(x)"
+msgstr "Gibt den Kosekans eines Winkels aus. COSEC(x)=1/SIN(x)"
+
+#. FQv4p
+#: scfuncs.src
+msgctxt "SC_OPCODE_COSECANT"
+msgid "Angle"
+msgstr "Winkel"
+
+#. qstEs
+#: scfuncs.src
+msgctxt "SC_OPCODE_COSECANT"
+msgid "The angle in radians for which the cosecant is to be calculated."
+msgstr "Der Winkel im Bogenmaß, dessen Kosekans berechnet werden soll."
+
+#. hw7ij
+#: scfuncs.src
+msgctxt "SC_OPCODE_SECANT"
+msgid "Return the secant of an angle. SEC(x)=1/COS(x)"
+msgstr "Gibt den Sekans eines Winkels aus. SEC(x)=1/COS(x)"
+
+#. scavM
+#: scfuncs.src
+msgctxt "SC_OPCODE_SECANT"
+msgid "Angle"
+msgstr "Winkel"
+
+#. TxD7C
+#: scfuncs.src
+msgctxt "SC_OPCODE_SECANT"
+msgid "The angle in radians for which the secant is to be calculated."
+msgstr "Der Winkel im Bogenmaß, dessen Sekans berechnet werden soll."
+
+#. yRkbY
+#: scfuncs.src
+msgctxt "SC_OPCODE_COSECANT_HYP"
+msgid ""
+"Return the hyperbolic cosecant of a hyperbolic angle. CSCH(x)=1/SINH(x)"
+msgstr ""
+"Berechnet den Kosekans Hyperbolicus einer Zahl. COSECHYP(x)=1/SINHYP(x)"
+
+#. qeU9p
+#: scfuncs.src
+msgctxt "SC_OPCODE_COSECANT_HYP"
+msgid "Angle"
+msgstr "Winkel"
+
+#. cu47J
+#: scfuncs.src
+msgctxt "SC_OPCODE_COSECANT_HYP"
+msgid ""
+"The hyperbolic angle in radians for which the hyperbolic cosecant is to be "
+"calculated."
+msgstr ""
+"Der Winkel im Bogenmaß, dessen Kosekans Hyperbolicus berechnet werden soll."
+
+#. P8KDD
+#: scfuncs.src
+msgctxt "SC_OPCODE_SECANT_HYP"
+msgid "Return the hyperbolic secant of a hyperbolic angle. SECH(x)=1/COSH(x)"
+msgstr "Berechnet den Sekans Hyperbolicus einer Zahl. SECHYP(x)=1/COSHYP(x)"
+
+#. 7PJUN
+#: scfuncs.src
+msgctxt "SC_OPCODE_SECANT_HYP"
+msgid "Angle"
+msgstr "Winkel"
+
+#. roiJn
+#: scfuncs.src
+msgctxt "SC_OPCODE_SECANT_HYP"
+msgid ""
+"The hyperbolic angle in radians for which the hyperbolic secant is to be "
+"calculated."
+msgstr ""
+"Der Winkel im Bogenmaß, dessen Sekans Hyperbolicus berechnet werden soll."
+
+#. dnE9t
+#: scfuncs.src
+msgctxt "SC_OPCODE_DEG"
+msgid "Converts a radian to degrees"
+msgstr "Wandelt Bogenmaß (Radiant) in Grad um."
+
+#. nsDD4
+#: scfuncs.src
+msgctxt "SC_OPCODE_DEG"
+msgid "Number"
+msgstr "Zahl"
+
+#. GoxCo
+#: scfuncs.src
+msgctxt "SC_OPCODE_DEG"
+msgid "The angle in a radian"
+msgstr "Der Winkel im Bogenmaß (Radiant)."
+
+#. RGeKe
+#: scfuncs.src
+msgctxt "SC_OPCODE_RAD"
+msgid "Converts degrees to radians"
+msgstr "Wandelt Grad in Bogenmaß (Radiant) um."
+
+#. n5GJL
+#: scfuncs.src
+msgctxt "SC_OPCODE_RAD"
+msgid "Number"
+msgstr "Zahl"
+
+#. ZB9Je
+#: scfuncs.src
+msgctxt "SC_OPCODE_RAD"
+msgid "The angle in degrees."
+msgstr "Der Winkel in Grad."
+
+#. VpCaP
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP"
+msgid "Calculates the exponent for basis e."
+msgstr "Berechnet die Exponentialfunktion zur Basis e."
+
+#. Q2Dz8
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP"
+msgid "Number"
+msgstr "Zahl"
+
+#. gA6nM
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP"
+msgid "The exponent applied to base e."
+msgstr "Der Exponent zur Basis e."
+
+#. mFmKs
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG"
+msgid "Calculates the logarithm to any specified base."
+msgstr "Berechnet den Logarithmus zu einer beliebigen Basis."
+
+#. QAiC6
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG"
+msgid "Number"
+msgstr "Zahl"
+
+#. T62dc
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG"
+msgid "A value greater than 0 for which the logarithm is to be calculated."
+msgstr "Ein Wert größer als 0, dessen Logarithmus berechnet wird."
+
+#. otWNB
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG"
+msgid "Base"
+msgstr "Basis"
+
+#. kojFq
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG"
+msgid "The base of the logarithm. If omitted, the base is regarded as 10."
+msgstr ""
+"Die Basis für die Logarithmusberechnung. FAlls leer, wird 10 als Basis "
+"angenommen."
+
+#. iqpsE
+#: scfuncs.src
+msgctxt "SC_OPCODE_LN"
+msgid "Calculates the natural logarithm of a number."
+msgstr "Berechnet den natürlichen Logarithmus einer Zahl."
+
+#. K2PSj
+#: scfuncs.src
+msgctxt "SC_OPCODE_LN"
+msgid "Number"
+msgstr "Zahl"
+
+#. 2bhWj
+#: scfuncs.src
+msgctxt "SC_OPCODE_LN"
+msgid ""
+"A value greater than 0 for which the natural logarithm is to be calculated."
+msgstr "Ein Wert größer als 0, dessen natürlicher Logarithmus berechnet wird."
+
+#. r8TBm
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG10"
+msgid "Calculates the base-10 logarithm of a number."
+msgstr "Berechnet den Logarithmus zu der Basis 10."
+
+#. EAwMz
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG10"
+msgid "Number"
+msgstr "Zahl"
+
+#. 4V33B
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG10"
+msgid "A value greater than 0 for which the logarithm is to be calculated."
+msgstr "Ein Wert größer als 0, dessen Logarithmus berechnet wird."
+
+#. kBynB
+#: scfuncs.src
+msgctxt "SC_OPCODE_FACT"
+msgid "Calculates the factorial of a number."
+msgstr "Berechnet die Fakultät einer Zahl."
+
+#. TX9Jb
+#: scfuncs.src
+msgctxt "SC_OPCODE_FACT"
+msgid "Number"
+msgstr "Zahl"
+
+#. 9mxUk
+#: scfuncs.src
+msgctxt "SC_OPCODE_FACT"
+msgid "The number for which the factorial is to be calculated."
+msgstr "Die Zahl, deren Fakultät berechnet wird."
+
+#. DAGMD
+#: scfuncs.src
+msgctxt "SC_OPCODE_MOD"
+msgid "Calculates the remainder of a division."
+msgstr "Berechnet den Rest einer Division."
+
+#. WZ3zS
+#: scfuncs.src
+msgctxt "SC_OPCODE_MOD"
+msgid "Dividend"
+msgstr "Dividend"
+
+#. XG8Ef
+#: scfuncs.src
+msgctxt "SC_OPCODE_MOD"
+msgid "The number to be divided."
+msgstr "Die Zahl, die geteilt wird."
+
+#. ETV6E
+#: scfuncs.src
+msgctxt "SC_OPCODE_MOD"
+msgid "Divisor"
+msgstr "Divisor"
+
+#. 6GDF3
+#: scfuncs.src
+msgctxt "SC_OPCODE_MOD"
+msgid "The number by which the dividend is divided."
+msgstr "Die Zahl, durch die geteilt wird."
+
+#. DrEgm
+#: scfuncs.src
+msgctxt "SC_OPCODE_PLUS_MINUS"
+msgid "Returns the algebraic sign of a number."
+msgstr "Liefert das Vorzeichen einer Zahl."
+
+#. V9Zjk
+#: scfuncs.src
+msgctxt "SC_OPCODE_PLUS_MINUS"
+msgid "Number"
+msgstr "Zahl"
+
+#. nrwRF
+#: scfuncs.src
+msgctxt "SC_OPCODE_PLUS_MINUS"
+msgid "The number for which the algebraic sign is to be determined."
+msgstr "Die Zahl, deren Vorzeichen bestimmt wird."
+
+#. fektj
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUB_TOTAL"
+msgid "Calculates subtotals in a spreadsheet."
+msgstr "Berechnet Zwischenergebnisse in einem Tabellendokument."
+
+#. CcwkE
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUB_TOTAL"
+msgid "Function"
+msgstr "Funktion"
+
+#. xvBnz
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUB_TOTAL"
+msgid "Function index. Is an index of the possible functions Total, Max, ..."
+msgstr ""
+"Funktionsindex. Ist ein Index auf die möglichen Funktion Summe, Max, ..."
+
+#. gAqj5
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUB_TOTAL"
+msgid "range "
+msgstr "Bereich "
+
+#. QkjWV
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUB_TOTAL"
+msgid "The cells of the range which are to be taken into account."
+msgstr "Der Bereich, dessen Zellen berücksichtigt werden."
+
+#. us3F9
+#: scfuncs.src
+msgctxt "SC_OPCODE_AGGREGATE"
+msgid "Calculates an aggregate in a spreadsheet."
+msgstr "Berechnet eine Gesamtheit in einem Tabellendokument."
+
+#. jBsfF
+#: scfuncs.src
+msgctxt "SC_OPCODE_AGGREGATE"
+msgid "Function"
+msgstr "Funktion"
+
+#. tfQUS
+#: scfuncs.src
+msgctxt "SC_OPCODE_AGGREGATE"
+msgid "Function index. Is an index of the possible functions Total, Max, ..."
+msgstr ""
+"Funktionsindex. Ist ein Index auf die mögliche Funktion Summe, Max, ..."
+
+#. 2FmK3
+#: scfuncs.src
+msgctxt "SC_OPCODE_AGGREGATE"
+msgid "Options"
+msgstr "Option"
+
+#. hGncF
+#: scfuncs.src
+msgctxt "SC_OPCODE_AGGREGATE"
+msgid "Option index. Is an index of the possible ignore options."
+msgstr "Optionsindex. Ist ein Index, um Optionen zu ignorieren."
+
+#. SEXWC
+#: scfuncs.src
+msgctxt "SC_OPCODE_AGGREGATE"
+msgid "Ref1 or array "
+msgstr "Bezug 1 oder Bereich"
+
+#. Zv6Z4
+#: scfuncs.src
+msgctxt "SC_OPCODE_AGGREGATE"
+msgid "The cell(s) of the range which are to be taken into account."
+msgstr "Der Bereich, dessen Zelle(n) berücksichtigt werden sollen."
+
+#. dnCEx
+#: scfuncs.src
+msgctxt "SC_OPCODE_AGGREGATE"
+msgid "Ref2..n or k "
+msgstr "Bezug 2 ... n oder k "
+
+#. WRZtk
+#: scfuncs.src
+msgctxt "SC_OPCODE_AGGREGATE"
+msgid ""
+"The cells of the range which are to be taken into account or mandatory 2nd "
+"argument for certain functions."
+msgstr ""
+"Der Bereich, dessen Zellen berücksichtigt werden sollen, oder obligatorisch "
+"als zweites Argument für bestimmte Funktionen."
+
+#. qUPdR
+#: scfuncs.src
+msgctxt "SC_OPCODE_INT"
+msgid "Rounds a number down to the nearest integer."
+msgstr "Rundet eine Zahl auf die nächst kleinere ganze Zahl ab."
+
+#. BqQd7
+#: scfuncs.src
+msgctxt "SC_OPCODE_INT"
+msgid "Number"
+msgstr "Zahl"
+
+#. 2fNKB
+#: scfuncs.src
+msgctxt "SC_OPCODE_INT"
+msgid "The number to be rounded down."
+msgstr "Die Zahl, die abgerundet werden soll."
+
+#. ZBDWW
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRUNC"
+msgid "Truncates the decimal places of a number."
+msgstr "Schneidet Nachkommastellen einer Zahl ab."
+
+#. q2ic7
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRUNC"
+msgid "number"
+msgstr "Zahl"
+
+#. GwSqA
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRUNC"
+msgid "The number to be truncated."
+msgstr "Die Zahl, deren Nachkommastellen abgeschnitten werden."
+
+#. ZSDVS
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRUNC"
+msgid "count"
+msgstr "Anzahl"
+
+#. SQUuq
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRUNC"
+msgid ""
+"The number of places after the decimal point that are not to be truncated."
+msgstr "Die Anzahl der Nachkommastellen, die nicht abgeschnitten werden."
+
+#. E6J66
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND"
+msgid "Rounds a number to a predefined accuracy."
+msgstr "Runden einer Zahl auf eine vorgegebene Genauigkeit."
+
+#. UoCD7
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND"
+msgid "number"
+msgstr "Zahl"
+
+#. iT8aD
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND"
+msgid "The number to be rounded."
+msgstr "Die Zahl, die gerundet werden soll."
+
+#. CtVDy
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND"
+msgid "count"
+msgstr "Stellen"
+
+#. sYkZY
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND"
+msgid "The number of places to which a number is to be rounded."
+msgstr "Die Anzahl der Stellen, auf die gerundet werden soll."
+
+#. iBJsA
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND_UP"
+msgid "Rounds a number up to the predefined accuracy."
+msgstr "Rundet eine Zahl auf eine vorgegebene Genauigkeit auf."
+
+#. XNfQm
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND_UP"
+msgid "number"
+msgstr "Zahl"
+
+#. DsW3B
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND_UP"
+msgid "The number to be rounded up."
+msgstr "Die Zahl, die aufgerundet werden soll."
+
+#. ipswG
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND_UP"
+msgid "count"
+msgstr "Stellen"
+
+#. S8Kef
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND_UP"
+msgid "The number of places to which a number is to be rounded."
+msgstr "Die Anzahl der Stellen, auf die gerundet werden soll."
+
+#. B3zfB
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND_DOWN"
+msgid "Rounds a number down to a predefined accuracy."
+msgstr "Rundet eine Zahl auf eine vorgegebene Genauigkeit ab."
+
+#. 9PobZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND_DOWN"
+msgid "number"
+msgstr "Zahl"
+
+#. PBMH2
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND_DOWN"
+msgid "The number to be rounded down."
+msgstr "Die Zahl, die abgerundet werden soll."
+
+#. m9GAr
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND_DOWN"
+msgid "count"
+msgstr "Stellen"
+
+#. mYjqF
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUND_DOWN"
+msgid "The number of places down to which a number is to be rounded."
+msgstr "Die Anzahl der Stellen, auf die abgerundet werden soll."
+
+#. HA6AT
+#: scfuncs.src
+msgctxt "SC_OPCODE_EVEN"
+msgid ""
+"Rounds a positive number up and negative number down to the nearest even "
+"integer."
+msgstr ""
+"Rundet eine positive Zahl auf die nächste gerade Ganzzahl auf und eine "
+"negative Zahl auf die nächste gerade Ganzzahl ab."
+
+#. r7k5d
+#: scfuncs.src
+msgctxt "SC_OPCODE_EVEN"
+msgid "Number"
+msgstr "Zahl"
+
+#. C6Pao
+#: scfuncs.src
+msgctxt "SC_OPCODE_EVEN"
+msgid "The number to be rounded up."
+msgstr "Die Zahl, die aufgerundet werden soll."
+
+#. ViufC
+#: scfuncs.src
+msgctxt "SC_OPCODE_ODD"
+msgid ""
+"Rounds a positive number up and negative number down to the nearest odd "
+"integer."
+msgstr ""
+"Rundet eine positive Zahl auf die nächste ungerade Ganzzahl auf und eine "
+"negative Zahl auf die nächste ungerade Ganzzahl ab."
+
+#. 4J3AU
+#: scfuncs.src
+msgctxt "SC_OPCODE_ODD"
+msgid "Number"
+msgstr "Zahl"
+
+#. gzuwc
+#: scfuncs.src
+msgctxt "SC_OPCODE_ODD"
+msgid "The number to be rounded up."
+msgstr "Die Zahl, die aufgerundet werden soll."
+
+#. Ab3DG
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_MS"
+msgid ""
+"Rounds a number away from zero to the nearest multiple of significance.\n"
+"This function exists for interoperability with Microsoft Excel 2007 or older versions."
+msgstr ""
+"Rundet eine Zahl weg von Null auf das nächste Vielfache der Schrittweite.\n"
+"Diese Funktion existiert für die Kompatibilität zu Microsoft Excel 2007 oder älter."
+
+#. mUd2c
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. 4rgZq
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_MS"
+msgid "The number to be rounded up."
+msgstr "Die Zahl, die aufgerundet werden soll."
+
+#. EZCfu
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_MS"
+msgid "Significance"
+msgstr "Schrittweite"
+
+#. 9KDXm
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_MS"
+msgid "The number to whose multiple the value is rounded."
+msgstr "Die Zahl, auf deren Vielfaches der Wert aufgerundet wird."
+
+#. 5vQRv
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_PRECISE"
+msgid ""
+"Rounds a number up to the nearest multiple of significance, regardless of "
+"sign of significance."
+msgstr ""
+"Rundet eine Zahl zum nächsten Vielfachen der Schrittweite auf, unabhängig "
+"vom Vorzeichen der Schrittweite."
+
+#. vKknK
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_PRECISE"
+msgid "Number"
+msgstr "Zahl"
+
+#. bdQc9
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_PRECISE"
+msgid "The number to be rounded up."
+msgstr "Die Zahl, die aufgerundet werden soll."
+
+#. q4Ruw
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_PRECISE"
+msgid "Significance"
+msgstr "Schrittweite"
+
+#. MaoHR
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_PRECISE"
+msgid "The number to whose multiple the value is rounded."
+msgstr "Die Zahl, auf deren Vielfaches der Wert aufgerundet wird."
+
+#. edDBP
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_ISO"
+msgid ""
+"Rounds a number up to the nearest multiple of significance, regardless of "
+"sign of significance."
+msgstr ""
+"Rundet eine Zahl zum nächsten Vielfachen der Schrittweite auf, unabhängig "
+"vom Vorzeichen der Schrittweite."
+
+#. NG3Y9
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_ISO"
+msgid "Number"
+msgstr "Zahl"
+
+#. TjC5H
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_ISO"
+msgid "The number to be rounded up."
+msgstr "Die Zahl, die aufgerundet werden soll."
+
+#. gAmRk
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_ISO"
+msgid "Significance"
+msgstr "Schrittweite"
+
+#. uZqnP
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_ISO"
+msgid "The number to whose multiple the value is rounded."
+msgstr "Die Zahl, auf deren Vielfaches der Wert aufgerundet wird."
+
+#. SMSMv
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL"
+msgid "Rounds a number up to the nearest multiple of significance."
+msgstr "Rundet eine Zahl auf das nächste Vielfache der Schrittweite auf."
+
+#. so3Cd
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL"
+msgid "Number"
+msgstr "Zahl"
+
+#. kuRc4
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL"
+msgid "The number to be rounded up."
+msgstr "Die Zahl, die aufgerundet werden soll."
+
+#. cNoTN
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL"
+msgid "Significance"
+msgstr "Schrittweite"
+
+#. tp6SD
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL"
+msgid ""
+"If given the number to whose multiple the value is rounded, else -1 or 1 "
+"depending on sign of Number."
+msgstr ""
+"Falls angegeben: die Zahl, zu derem Vielfachen der Wert gerundet wird, sonst"
+" -1 oder 1, abhängig vom Vorzeichen der Zahl."
+
+#. tBvNu
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL"
+msgid "Mode"
+msgstr "Modus"
+
+#. tNjRg
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL"
+msgid ""
+"If given and not equal to zero then rounded up according to amount when a "
+"negative number and significance."
+msgstr ""
+"Wenn angegeben und ungleich Null wird bei negativer Zahl und Schrittweite "
+"betragsmäßig aufgerundet."
+
+#. 6M8Fz
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_MATH"
+msgid "Rounds a number up to the nearest multiple of significance."
+msgstr "Rundet eine Zahl auf das nächste Vielfache der Schrittweite auf."
+
+#. aZfnw
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_MATH"
+msgid "Number"
+msgstr "Zahl"
+
+#. FgFpW
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_MATH"
+msgid "The number to be rounded up."
+msgstr "Die Zahl, die aufgerundet werden soll."
+
+#. d8QkM
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_MATH"
+msgid "Significance"
+msgstr "Schrittweite"
+
+#. 3RoYe
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_MATH"
+msgid "If given the number to whose multiple the value is rounded, else 1."
+msgstr ""
+"Falls angegeben: die Zahl, zu derem Vielfachen der Wert gerundet wird, sonst"
+" 1."
+
+#. K3ya2
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_MATH"
+msgid "Mode"
+msgstr "Modus"
+
+#. xT75H
+#: scfuncs.src
+msgctxt "SC_OPCODE_CEIL_MATH"
+msgid ""
+"For negative numbers; if given and not equal to zero then rounds away from "
+"zero, else rounds towards zero."
+msgstr ""
+"Für negative Zahlen; falls angegeben und ungleich Null, wird von Null weg "
+"gerundet, sonst zu Null hin."
+
+#. zGxYF
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR"
+msgid "Rounds number down to the nearest multiple of significance."
+msgstr "Rundet eine Zahl auf das nächste Vielfache der Schrittweite ab."
+
+#. rEBiB
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR"
+msgid "Number"
+msgstr "Zahl"
+
+#. RBzNk
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR"
+msgid "The number to be rounded down."
+msgstr "Die Zahl, die abgerundet werden soll."
+
+#. vZ2tB
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR"
+msgid "Significance"
+msgstr "Schrittweite"
+
+#. gV64T
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR"
+msgid "The number to whose multiple the value is to be rounded down."
+msgstr "Die Zahl, auf deren Vielfaches der Wert abgerundet wird."
+
+#. CAUCc
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR"
+msgid "Mode"
+msgstr "Modus"
+
+#. QQWo6
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR"
+msgid ""
+"If given and not equal to zero then rounded towards zero with negative "
+"number and significance."
+msgstr ""
+"Wenn angegeben und ungleich Null wird bei negativer Zahl und Schrittweite "
+"betragsmäßig abgerundet."
+
+#. 2oGdX
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_MS"
+msgid ""
+"Rounds number towards zero to the nearest multiple of absolute value of significance.\n"
+"This function exists for interoperability with Microsoft Excel 2007 or older versions."
+msgstr ""
+"Rundet eine Zahl in Richtung Null auf das nächste Vielfache des Betrags (Absolutwert) der Schrittweite.\n"
+"Diese Funktion existiert für die Kompatibilität zu Microsoft Excel 2007 oder älter."
+
+#. F27ze
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. P986N
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_MS"
+msgid "The number to be rounded down."
+msgstr "Die Zahl, die abgerundet werden soll."
+
+#. w4Xsk
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_MS"
+msgid "Significance"
+msgstr "Schrittweite"
+
+#. ougtr
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_MS"
+msgid "The number to whose multiple the value is to be rounded down."
+msgstr "Die Zahl, auf deren Vielfaches der Wert abgerundet wird."
+
+#. uT8wa
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_MATH"
+msgid ""
+"Rounds number down to the nearest multiple of significance, regardless of "
+"sign of significance."
+msgstr ""
+"Rundet eine Zahl zum nächsten Vielfachen der Schrittweite ab, unabhängig vom"
+" Vorzeichen der Schrittweite."
+
+#. U6Tyw
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_MATH"
+msgid "Number"
+msgstr "Zahl"
+
+#. sHVCJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_MATH"
+msgid "The number to be rounded down."
+msgstr "Die Zahl, die abgerundet werden soll."
+
+#. AK8Fp
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_MATH"
+msgid "Significance"
+msgstr "Schrittweite"
+
+#. FYVCb
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_MATH"
+msgid "The number to whose multiple the value is to be rounded down."
+msgstr "Die Zahl, auf deren Vielfaches der Wert abgerundet wird."
+
+#. yTCb8
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_MATH"
+msgid "Mode"
+msgstr "Modus"
+
+#. xD3A4
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_MATH"
+msgid ""
+"For negative numbers; if given and not equal to or less than zero rounds "
+"towards zero."
+msgstr ""
+"Für negative Zahlen; falls angegeben und größer Null, wird zu Null hin "
+"gerundet."
+
+#. GHb43
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_PRECISE"
+msgid ""
+"Rounds number down (towards -∞) to the nearest multiple of significance."
+msgstr ""
+"Rundet eine Zahl auf das nächste Vielfache der Schrittweite ab (Richtung "
+"-∞)."
+
+#. h593W
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_PRECISE"
+msgid "Number"
+msgstr "Zahl"
+
+#. yUt4j
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_PRECISE"
+msgid "The number to be rounded down."
+msgstr "Die Zahl, die abgerundet werden soll."
+
+#. E7YQj
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_PRECISE"
+msgid "Significance"
+msgstr "Schrittweite"
+
+#. Az63G
+#: scfuncs.src
+msgctxt "SC_OPCODE_FLOOR_PRECISE"
+msgid ""
+"The number to whose multiple the value is to be rounded down. Sign has no "
+"meaning."
+msgstr ""
+"Die Zahl, auf deren Vielfaches der Wert abgerundet wird. Das Vorzeichen ist "
+"irrelevant."
+
+#. 3WD9m
+#: scfuncs.src
+msgctxt "SC_OPCODE_GCD"
+msgid "Greatest Common Divisor"
+msgstr "Größter gemeinsamer Teiler."
+
+#. fD5Bm
+#: scfuncs.src
+msgctxt "SC_OPCODE_GCD"
+msgid "Integer "
+msgstr "Ganzzahl "
+
+#. QMVyz
+#: scfuncs.src
+msgctxt "SC_OPCODE_GCD"
+msgid ""
+"Integer 1; integer 2,... are integers for which the greatest common divisor "
+"is to be calculated."
+msgstr ""
+"Ganzzahl 1;Ganzzahl 2,... sind ganze Zahlen, deren größter gemeinsamer "
+"Teiler berechnet wird."
+
+#. 8Bp3W
+#: scfuncs.src
+msgctxt "SC_OPCODE_LCM"
+msgid "Lowest common multiple"
+msgstr "Kleinstes gemeinsames Vielfaches."
+
+#. bDNix
+#: scfuncs.src
+msgctxt "SC_OPCODE_LCM"
+msgid "Integer "
+msgstr "Ganzzahl "
+
+#. cbExQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_LCM"
+msgid ""
+"Integer 1; integer 2,... are integers whose smallest common multiple is to "
+"be calculated."
+msgstr ""
+"Ganzzahl 1;Ganzzahl 2,... sind ganze Zahlen, deren kleinstes gemeinsames "
+"Vielfaches berechnet wird."
+
+#. DHxNC
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_TRANS"
+msgid "Array transposition. Exchanges the rows and columns of an array."
+msgstr "Matrixtransponierung. Vertauscht Zeilen und Spalten einer Matrix."
+
+#. eCGH5
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_TRANS"
+msgid "array"
+msgstr "Matrix"
+
+#. RpAQz
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_TRANS"
+msgid "The array in which the rows and columns have been transposed."
+msgstr "Die Matrix, deren Zeilen und Spalten vertauscht werden."
+
+#. jc4zS
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_MULT"
+msgid "Array multiplication. Returns the product of two arrays."
+msgstr "Matrixmultiplikation. Bildet das Produkt zweier Matrizen."
+
+#. dwb4J
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_MULT"
+msgid "array_1"
+msgstr "Matrix_1"
+
+#. FdTzG
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_MULT"
+msgid "The first array for the array product."
+msgstr "Die erste Matrix für das Matrixprodukt."
+
+#. juN2T
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_MULT"
+msgid "array_2"
+msgstr "Matrix_2"
+
+#. 3xEDC
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_MULT"
+msgid ""
+"The second array having the same number of rows as the first array has "
+"columns."
+msgstr ""
+"Die zweite Matrix mit der gleichen Anzahl von Zeilen, wie die erste Matrix "
+"Spalten hat."
+
+#. FEfgL
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_DET"
+msgid "Returns the array determinant."
+msgstr "Bestimmt die Matrixdeterminante."
+
+#. 9Af8T
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_DET"
+msgid "array"
+msgstr "Matrix"
+
+#. Aa8fB
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_DET"
+msgid "The array for which the determinant is to be determined."
+msgstr "Die Matrix, deren Determinante bestimmt wird."
+
+#. QkN5Q
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_INV"
+msgid "Returns the inverse of an array."
+msgstr "Bestimmt die Inverse einer Matrix."
+
+#. ST4bt
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_INV"
+msgid "array"
+msgstr "Matrix"
+
+#. TWy2P
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAT_INV"
+msgid "The array to be inverted."
+msgstr "Die Matrix, die invertiert wird."
+
+#. 6FfMG
+#: scfuncs.src
+msgctxt "SC_OPCODE_MATRIX_UNIT"
+msgid "Returns the unitary square array of a certain size."
+msgstr "Bestimmt die quadratische Einheitsmatrix einer bestimmten Größe."
+
+#. LjQFC
+#: scfuncs.src
+msgctxt "SC_OPCODE_MATRIX_UNIT"
+msgid "Dimensions"
+msgstr "Dimension"
+
+#. 4teei
+#: scfuncs.src
+msgctxt "SC_OPCODE_MATRIX_UNIT"
+msgid "The size of the unitary array."
+msgstr "Die Größe der Einheitsmatrix."
+
+#. dg4DZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_PRODUCT"
+msgid "(Inner products) Returns the sum of the products of array arguments."
+msgstr "(Skalarprodukt) Summiert die Produkte der Argumente von Matrizen."
+
+#. pZTDb
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_PRODUCT"
+msgid "Array "
+msgstr "Matrix "
+
+#. uDvaL
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_PRODUCT"
+msgid ""
+"Array 1, array 2, ... are up to 30 arrays whose arguments are to be "
+"multiplied."
+msgstr ""
+"Matrix 1; Matrix 2,... sind bis zu 30 Matrizen, deren Argumente "
+"multipliziert werden."
+
+#. uPVf6
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_X2MY2"
+msgid "Returns the sum of the difference of squares of two arrays."
+msgstr "Summiert die Differenzen der Quadrate zweier Matrizen."
+
+#. wmAT6
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_X2MY2"
+msgid "array_x"
+msgstr "Matrix_X"
+
+#. 9vSGo
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_X2MY2"
+msgid "First array where the square of the arguments are totalled."
+msgstr "Erste Matrix, deren Argumente quadriert summiert werden."
+
+#. CjLSC
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_X2MY2"
+msgid "array_y"
+msgstr "Matrix_Y"
+
+#. 9T4Rr
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_X2MY2"
+msgid "Second array where the square of the arguments is to be subtracted."
+msgstr "Zweite Matrix, deren Argumente quadriert abgezogen werden."
+
+#. hMGY3
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_X2DY2"
+msgid "Returns the total of the square sum of two arrays."
+msgstr "Summiert die Quadratesummen zweier Matrizen."
+
+#. rbtCQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_X2DY2"
+msgid "array_x"
+msgstr "Matrix_X"
+
+#. H8mTf
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_X2DY2"
+msgid "First array where the square of the arguments are totalled."
+msgstr "Erste Matrix, deren Argumente quadriert summiert werden."
+
+#. FdbDA
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_X2DY2"
+msgid "array_y"
+msgstr "Matrix_Y"
+
+#. reqfP
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_X2DY2"
+msgid "Second array where the square of the arguments is to be totalled."
+msgstr "Zweite Matrix, deren Argumente quadriert summiert werden."
+
+#. 2Z63V
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_XMY2"
+msgid "Returns the sum of squares of differences of two arrays."
+msgstr "Summiert die Quadrate der Differenzen zweier Matrizen."
+
+#. BBs9s
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_XMY2"
+msgid "array_x"
+msgstr "Matrix_X"
+
+#. 53FNi
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_XMY2"
+msgid "First array for forming argument differences."
+msgstr "Erste Matrix zur Bildung der Argumentdifferenzen."
+
+#. v9cAg
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_XMY2"
+msgid "array_y"
+msgstr "Matrix_Y"
+
+#. 2mWCE
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUM_XMY2"
+msgid "Second array for forming the argument differences."
+msgstr "Zweite Matrix zur Bildung der Argumentdifferenzen."
+
+#. DQZg5
+#: scfuncs.src
+msgctxt "SC_OPCODE_FREQUENCY"
+msgid "Returns a frequency distribution as a vertical array."
+msgstr "Erstellt eine Häufigkeitsverteilung als Spaltenmatrix."
+
+#. gCCGb
+#: scfuncs.src
+msgctxt "SC_OPCODE_FREQUENCY"
+msgid "data"
+msgstr "Daten"
+
+#. 8EzEW
+#: scfuncs.src
+msgctxt "SC_OPCODE_FREQUENCY"
+msgid "The array of the data."
+msgstr "Die Matrix der Daten."
+
+#. TBpCD
+#: scfuncs.src
+msgctxt "SC_OPCODE_FREQUENCY"
+msgid "classes"
+msgstr "Klassen"
+
+#. mtdmt
+#: scfuncs.src
+msgctxt "SC_OPCODE_FREQUENCY"
+msgid "The array for forming classes."
+msgstr "Die Matrix zur Klassenbildung."
+
+#. BDaQC
+#: scfuncs.src
+msgctxt "SC_OPCODE_LINEST"
+msgid "Calculates parameters of the linear regression as an array."
+msgstr "Berechnet Kenngrößen der linearen Regression als Matrix."
+
+#. wzYXe
+#: scfuncs.src
+msgctxt "SC_OPCODE_LINEST"
+msgid "data_Y"
+msgstr "Daten_Y"
+
+#. fyrtU
+#: scfuncs.src
+msgctxt "SC_OPCODE_LINEST"
+msgid "The Y data array."
+msgstr "Die Matrix der Y-Daten."
+
+#. C3oWu
+#: scfuncs.src
+msgctxt "SC_OPCODE_LINEST"
+msgid "data_X"
+msgstr "Daten_X"
+
+#. aKFRR
+#: scfuncs.src
+msgctxt "SC_OPCODE_LINEST"
+msgid "The X data array."
+msgstr "Die Matrix der X-Daten."
+
+#. EH3xb
+#: scfuncs.src
+msgctxt "SC_OPCODE_LINEST"
+msgid "Linear_type"
+msgstr "Art_der_Geraden"
+
+#. P3b7m
+#: scfuncs.src
+msgctxt "SC_OPCODE_LINEST"
+msgid ""
+"If type = 0 the linears will be calculated through the zero point, or else "
+"moved linears."
+msgstr ""
+"Falls Art = 0, werden Geraden durch den Nullpunkt berechnet, sonst "
+"verschobene Geraden."
+
+#. CWKmp
+#: scfuncs.src
+msgctxt "SC_OPCODE_LINEST"
+msgid "stats"
+msgstr "Kenngrößen"
+
+#. GeEDo
+#: scfuncs.src
+msgctxt "SC_OPCODE_LINEST"
+msgid ""
+"If parameter = 0 then only the regression coefficient will be calculated, "
+"otherwise other values as well."
+msgstr ""
+"Ist Kenngrößen=0, so werden nur die Regressionskoeffizienten berechnet, "
+"sonst noch weitere Werte."
+
+#. TjhxE
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOGEST"
+msgid ""
+"Calculates the parameters of the exponential regression curve as an array."
+msgstr "Berechnet Kenngrößen der exponentiellen Regression als Matrix."
+
+#. JfhKJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOGEST"
+msgid "data_Y"
+msgstr "Daten_Y"
+
+#. qwCCT
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOGEST"
+msgid "The Y data array."
+msgstr "Die Matrix der Y-Daten."
+
+#. ghvJG
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOGEST"
+msgid "data_X"
+msgstr "Daten_X"
+
+#. kMYqN
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOGEST"
+msgid "The X data array."
+msgstr "Die Matrix der X-Daten."
+
+#. kSuyD
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOGEST"
+msgid "Function_type"
+msgstr "Art_der_Funktion"
+
+#. ksiif
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOGEST"
+msgid ""
+"If type = 0 then the functions will be calculated in the form of y=m^x, or "
+"also functions y=b*m^x."
+msgstr ""
+"Falls Art = 0, werden Funktionen der Form y=m^x berechnet, sonst Funktionen "
+"der Form y=b*m^x."
+
+#. MUHM3
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOGEST"
+msgid "stats"
+msgstr "Kenngrößen"
+
+#. Epsjr
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOGEST"
+msgid ""
+"If parameter = 0 then only the regression coefficient will be calculated, "
+"otherwise other values as well."
+msgstr ""
+"Ist Kenngrößen=0, so werden nur die Regressionskoeffizienten berechnet, "
+"sonst noch weitere Werte."
+
+#. FABFr
+#: scfuncs.src
+msgctxt "SC_OPCODE_TREND"
+msgid "Calculates points along a regression line."
+msgstr "Berechnet Punkte auf der Regressiongeraden."
+
+#. HhBxK
+#: scfuncs.src
+msgctxt "SC_OPCODE_TREND"
+msgid "data_Y"
+msgstr "Daten_Y"
+
+#. XBTHe
+#: scfuncs.src
+msgctxt "SC_OPCODE_TREND"
+msgid "The Y data array."
+msgstr "Die Matrix der Y-Daten."
+
+#. Tf3yF
+#: scfuncs.src
+msgctxt "SC_OPCODE_TREND"
+msgid "data_X"
+msgstr "Daten_X"
+
+#. LhqAb
+#: scfuncs.src
+msgctxt "SC_OPCODE_TREND"
+msgid "The X data array as the basis for the regression."
+msgstr "Die Matrix der X-Daten als Grundlage zur Regression."
+
+#. BJbht
+#: scfuncs.src
+msgctxt "SC_OPCODE_TREND"
+msgid "new data_X"
+msgstr "Neue_Daten_X"
+
+#. JedWB
+#: scfuncs.src
+msgctxt "SC_OPCODE_TREND"
+msgid "The array of X data for recalculating the values."
+msgstr "Die Matrix der X-Daten zur Neuberechnung von Werten."
+
+#. 8xLoc
+#: scfuncs.src
+msgctxt "SC_OPCODE_TREND"
+msgid "Linear_type"
+msgstr "Art_der_Geraden"
+
+#. PzJhE
+#: scfuncs.src
+msgctxt "SC_OPCODE_TREND"
+msgid ""
+"If type = 0 the linears will be calculated through the zero point, or else "
+"moved linears."
+msgstr ""
+"Ist Art=0, so werden Geraden durch den Nullpunkt berechnet, sonst auch "
+"verschobene Geraden."
+
+#. Qadzq
+#: scfuncs.src
+msgctxt "SC_OPCODE_GROWTH"
+msgid "Calculates points on the exponential regression function."
+msgstr "Berechnet Punkte auf der exponentiellen Regressionsfunktion."
+
+#. E8owu
+#: scfuncs.src
+msgctxt "SC_OPCODE_GROWTH"
+msgid "data_Y"
+msgstr "Daten_Y"
+
+#. 4kBWF
+#: scfuncs.src
+msgctxt "SC_OPCODE_GROWTH"
+msgid "The Y data array."
+msgstr "Die Matrix der Y-Daten."
+
+#. U6Yve
+#: scfuncs.src
+msgctxt "SC_OPCODE_GROWTH"
+msgid "data_X"
+msgstr "Daten_X"
+
+#. iGU4n
+#: scfuncs.src
+msgctxt "SC_OPCODE_GROWTH"
+msgid "The X data array as the basis for the regression."
+msgstr "Die Matrix der X-Daten als Grundlage zur Regression."
+
+#. jymaR
+#: scfuncs.src
+msgctxt "SC_OPCODE_GROWTH"
+msgid "new_data_X"
+msgstr "Neue_Daten_X"
+
+#. kFxgD
+#: scfuncs.src
+msgctxt "SC_OPCODE_GROWTH"
+msgid "The array of X data for recalculating the values."
+msgstr "Die Matrix der X-Daten zur Neuberechnung von Werten."
+
+#. H5FEC
+#: scfuncs.src
+msgctxt "SC_OPCODE_GROWTH"
+msgid "Function_type"
+msgstr "Art_der_Funktion"
+
+#. JCsCQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_GROWTH"
+msgid ""
+"If type = 0 then the functions will be calculated in the form of y=m^x, or "
+"also functions y=b*m^x."
+msgstr ""
+"Ist Art=0, so werden Funktionen der Form y=m^x berechnet, sonst auch "
+"Funktionen y=b*m^x."
+
+#. kgGDC
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT"
+msgid "Counts how many numbers are in the list of arguments."
+msgstr "Zählt, wie viele Zahlen eine Liste von Argumenten enthält."
+
+#. YrFrD
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT"
+msgid "value "
+msgstr "Wert "
+
+#. rA8ve
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT"
+msgid ""
+"Value 1, value 2, ... are 1 to 30 arguments containing different data types "
+"but where only numbers are counted."
+msgstr ""
+"Wert 1; Wert 2;... sind 1 bis 30 Argumente mit unterschiedlichen Datentypen,"
+" wobei nur Zahlen in die Zählung eingehen."
+
+#. NoX9E
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_2"
+msgid "Counts how many values are in the list of arguments."
+msgstr "Zählt, wie viele Werte eine Liste von Argumenten enthält."
+
+#. Y4tkQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_2"
+msgid "value "
+msgstr "Wert "
+
+#. V9W8g
+#: scfuncs.src
+msgctxt "SC_OPCODE_COUNT_2"
+msgid ""
+"Value 1, value 2, ... are 1 to 30 arguments representing the values to be "
+"counted."
+msgstr ""
+"Wert 1; Wert 2;... sind 1 bis 30 Argumente, die den zu zählenden Werten "
+"entsprechen."
+
+#. qEEma
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAX"
+msgid "Returns the maximum value in a list of arguments."
+msgstr "Liefert die größte Zahl einer Argumentliste."
+
+#. PNurw
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAX"
+msgid "number "
+msgstr "Zahl "
+
+#. EUwxe
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAX"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments for which the "
+"largest number is to be determined."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, deren größte Zahl "
+"bestimmt werden soll."
+
+#. vAvc6
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAX_A"
+msgid ""
+"Returns the maximum value in a list of arguments. Text is evaluated as Zero."
+msgstr ""
+"Liefert den größten Wert einer Argumentliste. Text wird als Null gewertet."
+
+#. DDyFC
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAX_A"
+msgid "value "
+msgstr "Wert "
+
+#. FGiDj
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAX_A"
+msgid ""
+"Value 1, value 2, are 1 to 30 arguments whose largest value is to be "
+"determined."
+msgstr ""
+"Wert 1, Wert 2, ... sind 1 bis 30 Argumente, deren größter Wert bestimmt "
+"werden soll."
+
+#. KCSbZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIN"
+msgid "Returns the minimum value in a list of arguments."
+msgstr "Liefert die kleinste Zahl einer Argumentliste."
+
+#. CiDuj
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIN"
+msgid "number "
+msgstr "Zahl "
+
+#. HHGPF
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIN"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments for which the "
+"smallest number is to be determined."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, deren kleinste Zahl "
+"bestimmt werden soll."
+
+#. DYsAS
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIN_A"
+msgid ""
+"Returns the smallest value in a list of arguments. Text is evaluated as "
+"zero."
+msgstr ""
+"Liefert den kleinsten Wert einer Argumentliste. Text wird als Null gewertet."
+
+#. sAgkU
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIN_A"
+msgid "value "
+msgstr "Wert "
+
+#. ce98m
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIN_A"
+msgid ""
+"Value 1; value 2;... are 1 to 30 arguments whose smallest number is to be "
+"determined."
+msgstr ""
+"Wert 1; Wert 2;... sind 1 bis 30 Argumente, deren kleinste Zahl bestimmt "
+"werden soll."
+
+#. wGyMr
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR"
+msgid "Calculates the variance based on a sample."
+msgstr "Berechnet die Varianz, ausgehend von einer Stichprobe."
+
+#. er8Y6
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR"
+msgid "number "
+msgstr "Zahl "
+
+#. vEHzZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
+"sample of a population."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine, aus einer "
+"Grundgesamtheit gezogene, Stichprobe darstellen."
+
+#. nWiPN
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_S"
+msgid "Calculates the variance based on a sample."
+msgstr "Berechnet die Varianz, ausgehend von einer Stichprobe."
+
+#. TdYSv
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_S"
+msgid "number "
+msgstr "Zahl "
+
+#. zkqGU
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_S"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
+"sample of a population."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine, aus einer "
+"Grundgesamtheit gezogene, Stichprobe darstellen."
+
+#. RLBWa
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_A"
+msgid "Returns the variance based on a sample. Text is evaluated as zero."
+msgstr ""
+"Berechnet die Varianz, ausgehend von einer Stichprobe. Text wird als Null "
+"gewertet."
+
+#. 9qkWr
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_A"
+msgid "value "
+msgstr "Wert "
+
+#. LhaT7
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_A"
+msgid ""
+"Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from"
+" a basic total population."
+msgstr ""
+"Wert 1; Wert 2;... sind 1 bis 30 Argumente, die eine, aus einer "
+"Grundgesamtheit gezogene, Stichprobe darstellen."
+
+#. gB6db
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_P"
+msgid "Calculates variance based on the entire population."
+msgstr "Berechnet die Varianz, ausgehend von der Grundgesamtheit."
+
+#. WrF4X
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_P"
+msgid "number "
+msgstr "Zahl "
+
+#. WTrGA
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_P"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which represent a "
+"population."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die einer "
+"Grundgesamtheit entsprechen."
+
+#. AFynp
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_P_MS"
+msgid "Calculates variance based on the entire population."
+msgstr "Berechnet die Varianz, ausgehend von der Grundgesamtheit."
+
+#. Ljus4
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_P_MS"
+msgid "number "
+msgstr "Zahl "
+
+#. BeVmk
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_P_MS"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which represent a "
+"population."
+msgstr ""
+"Zahl_1, Zahl_2,... sind 1 bis 30 numerische Argumente, die einer "
+"Grundgesamtheit entsprechen."
+
+#. 7BF8p
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_P_A"
+msgid ""
+"Returns the variance based on the entire population. Text is evaluated as "
+"zero."
+msgstr ""
+"Berechnet die Varianz, ausgehend von der Grundgesamtheit. Text wird als Null"
+" gewertet."
+
+#. tdVtp
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_P_A"
+msgid "value "
+msgstr "Wert "
+
+#. kQ86x
+#: scfuncs.src
+msgctxt "SC_OPCODE_VAR_P_A"
+msgid "Value 1; value 2;... are 1 to 30 arguments representing a population."
+msgstr ""
+"Wert 1; Wert 2;... sind 1 bis 30 Argumente, die einer Grundgesamtheit "
+"entsprechen."
+
+#. krvZ6
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV"
+msgid "Calculates the standard deviation based on a sample."
+msgstr "Berechnet die Standardabweichung, ausgehend von einer Stichprobe."
+
+#. shhBj
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV"
+msgid "number "
+msgstr "Zahl "
+
+#. wEPFU
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
+"sample of a population."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine, aus einer "
+"Grundgesamtheit gezogene, Stichprobe darstellen."
+
+#. hkvjB
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_S"
+msgid "Calculates the standard deviation based on a sample."
+msgstr "Berechnet die Standardabweichung, ausgehend von einer Stichprobe."
+
+#. GiEiY
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_S"
+msgid "number "
+msgstr "Zahl "
+
+#. R8vDL
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_S"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
+"sample of a population."
+msgstr ""
+"Zahl_1, Zahl_2,... sind 1 bis 30 numerische Argumente, die eine, aus einer "
+"Grundgesamtheit gezogene, Stichprobe darstellen."
+
+#. BV6Gb
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_A"
+msgid ""
+"Returns the standard deviation based on a sample. Text is evaluated as zero."
+msgstr ""
+"Berechnet die Standardabweichung, ausgehend von einer Stichprobe. Text wird "
+"als Null gewertet."
+
+#. p8b5o
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_A"
+msgid "value "
+msgstr "Wert "
+
+#. ApweA
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_A"
+msgid ""
+"Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from"
+" a basic total population."
+msgstr ""
+"Wert 1; Wert 2;... sind 1 bis 30 Argumente, die eine, aus einer "
+"Grundgesamtheit gezogene, Stichprobe darstellen."
+
+#. 4gTUB
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_P"
+msgid "Calculates the standard deviation based on the entire population."
+msgstr "Berechnet die Standardabweichung, ausgehend von der Grundgesamtheit."
+
+#. DVxDy
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_P"
+msgid "number "
+msgstr "Zahl "
+
+#. tnDDj
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_P"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
+"population."
+msgstr ""
+"Zahl_1, Zahl_2,... sind 1 bis 30 numerische Argumente, die einer "
+"Grundgesamtheit entsprechen."
+
+#. MH6d3
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_P_MS"
+msgid "Calculates the standard deviation based on the entire population."
+msgstr "Berechnet die Standardabweichung, ausgehend von der Grundgesamtheit."
+
+#. yxMV5
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_P_MS"
+msgid "number "
+msgstr "Zahl "
+
+#. aiRwU
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_P_MS"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
+"population."
+msgstr ""
+"Zahl_1, Zahl_2,... sind 1 bis 30 numerische Argumente, die einer "
+"Grundgesamtheit entsprechen."
+
+#. mLDRD
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_P_A"
+msgid ""
+"Returns the standard deviation based on the entire population. Text is "
+"evaluated as zero."
+msgstr ""
+"Berechnet die Standardabweichung, ausgehend von der Grundgesamtheit. Text "
+"wird als Null gewertet."
+
+#. mNMAF
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_P_A"
+msgid "value "
+msgstr "Wert "
+
+#. SrFny
+#: scfuncs.src
+msgctxt "SC_OPCODE_ST_DEV_P_A"
+msgid ""
+"Value 1; value 2;... are 1 to 30 arguments corresponding to a population."
+msgstr ""
+"Wert 1; Wert 2;... sind 1 bis 30 Argumente, die einer Grundgesamtheit "
+"entsprechen."
+
+#. GGXRy
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE"
+msgid "Returns the average of a sample."
+msgstr "Berechnet den Mittelwert einer Stichprobe."
+
+#. GutBS
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE"
+msgid "number "
+msgstr "Zahl "
+
+#. QMFCH
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE"
+msgid ""
+"Number 1, number 2;...are 1 to 30 numeric arguments representing a "
+"population sample."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine, aus einer "
+"Grundgesamtheit gezogene, Stichprobe darstellen."
+
+#. UZBe5
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_A"
+msgid "Returns the average value for a sample. Text is evaluated as zero."
+msgstr ""
+"Berechnet den Mittelwert einer Stichprobe. Text wird als Null gewertet."
+
+#. tyCwT
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_A"
+msgid "value "
+msgstr "Wert "
+
+#. BesSA
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVERAGE_A"
+msgid ""
+"Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from"
+" a basic total population."
+msgstr ""
+"Wert 1; Wert 2;... sind 1 bis 30 Argumente, die eine, aus einer "
+"Grundgesamtheit gezogene, Stichprobe darstellen."
+
+#. H6DCB
+#: scfuncs.src
+msgctxt "SC_OPCODE_DEV_SQ"
+msgid "Returns the sum of squares of deviations from the sample mean value"
+msgstr ""
+"Berechnet die Summe der quadratischen Abweichung einer Stichprobe vom "
+"Mittelwert."
+
+#. kwRtX
+#: scfuncs.src
+msgctxt "SC_OPCODE_DEV_SQ"
+msgid "number "
+msgstr "Zahl "
+
+#. YUKiV
+#: scfuncs.src
+msgctxt "SC_OPCODE_DEV_SQ"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
+"sample."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe "
+"darstellen."
+
+#. zhbqF
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVE_DEV"
+msgid ""
+"Returns the average of the absolute deviations of a sample from the mean."
+msgstr ""
+"Berechnet die durchschnittliche absolute Abweichung einer Stichprobe vom "
+"Mittelwert."
+
+#. cqttx
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVE_DEV"
+msgid "number "
+msgstr "Zahl "
+
+#. gkcBA
+#: scfuncs.src
+msgctxt "SC_OPCODE_AVE_DEV"
+msgid ""
+"Number 1, number 2;...are 1 to 30 numerical arguments representing a sample."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe "
+"darstellen."
+
+#. d8XUA
+#: scfuncs.src
+msgctxt "SC_OPCODE_SKEW"
+msgid "Returns the skewness of a distribution."
+msgstr "Berechnet die Schiefe einer Verteilung."
+
+#. Wu4a9
+#: scfuncs.src
+msgctxt "SC_OPCODE_SKEW"
+msgid "number "
+msgstr "Zahl "
+
+#. 9ogLK
+#: scfuncs.src
+msgctxt "SC_OPCODE_SKEW"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments portraying a sample "
+"of the distribution."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe "
+"der Verteilung darstellen."
+
+#. wCDBj
+#: scfuncs.src
+msgctxt "SC_OPCODE_SKEWP"
+msgid ""
+"Returns the skewness of a distribution using the population of a random "
+"variable."
+msgstr ""
+"Gibt die Schräge einer Verteilung durch den Gebrauch der Population einer "
+"zufälligen Variable aus."
+
+#. cDs47
+#: scfuncs.src
+msgctxt "SC_OPCODE_SKEWP"
+msgid "number "
+msgstr "Zahl "
+
+#. 9hYmh
+#: scfuncs.src
+msgctxt "SC_OPCODE_SKEWP"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments portraying the "
+"population."
+msgstr ""
+"Zahl 1, Zahl 2, ... sind 1 bis 30 numerische Argumente, welche die "
+"Population darstellen."
+
+#. wwgFL
+#: scfuncs.src
+msgctxt "SC_OPCODE_KURT"
+msgid "Returns the kurtosis of a distribution."
+msgstr "Berechnet die Kurtosis einer Verteilung."
+
+#. RjQC3
+#: scfuncs.src
+msgctxt "SC_OPCODE_KURT"
+msgid "number "
+msgstr "Zahl "
+
+#. P4F69
+#: scfuncs.src
+msgctxt "SC_OPCODE_KURT"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments, representing a "
+"sample of the distribution."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe "
+"der Verteilung darstellen."
+
+#. KkCFM
+#: scfuncs.src
+msgctxt "SC_OPCODE_GEO_MEAN"
+msgid "Returns the geometric mean of a sample."
+msgstr "Berechnet den geometrischen Mittelwert einer Stichprobe."
+
+#. nyAiA
+#: scfuncs.src
+msgctxt "SC_OPCODE_GEO_MEAN"
+msgid "number "
+msgstr "Zahl "
+
+#. R7kvG
+#: scfuncs.src
+msgctxt "SC_OPCODE_GEO_MEAN"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
+"sample."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe "
+"darstellen."
+
+#. X8KCZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_HAR_MEAN"
+msgid "Returns the harmonic mean of a sample."
+msgstr "Berechnet den harmonischen Mittelwert einer Stichprobe."
+
+#. LYnZv
+#: scfuncs.src
+msgctxt "SC_OPCODE_HAR_MEAN"
+msgid "number "
+msgstr "Zahl "
+
+#. kmBQE
+#: scfuncs.src
+msgctxt "SC_OPCODE_HAR_MEAN"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
+"sample."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe "
+"darstellen."
+
+#. RpbdF
+#: scfuncs.src
+msgctxt "SC_OPCODE_MODAL_VALUE"
+msgid "Returns the most common value in a sample."
+msgstr "Berechnet den häufigsten Wert in einer Stichprobe."
+
+#. PKyRv
+#: scfuncs.src
+msgctxt "SC_OPCODE_MODAL_VALUE"
+msgid "number "
+msgstr "Zahl "
+
+#. Myok8
+#: scfuncs.src
+msgctxt "SC_OPCODE_MODAL_VALUE"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
+"sample."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe "
+"darstellen."
+
+#. P78Ym
+#: scfuncs.src
+msgctxt "SC_OPCODE_MODAL_VALUE_MS"
+msgid "Returns the most common value in a sample."
+msgstr "Berechnet den häufigsten Wert in einer Stichprobe."
+
+#. fjiso
+#: scfuncs.src
+msgctxt "SC_OPCODE_MODAL_VALUE_MS"
+msgid "number "
+msgstr "Zahl "
+
+#. UT44F
+#: scfuncs.src
+msgctxt "SC_OPCODE_MODAL_VALUE_MS"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
+"sample."
+msgstr ""
+"Zahl 1, Zahl 2, ... sind 1 bis 30 numerische Argumente, welche ein Beispiel "
+"darstellen."
+
+#. CkE7G
+#: scfuncs.src
+msgctxt "SC_OPCODE_MODAL_VALUE_MULTI"
+msgid "Returns the most common value in a sample."
+msgstr "Berechnet den häufigsten Wert in einer Stichprobe."
+
+#. C4EgV
+#: scfuncs.src
+msgctxt "SC_OPCODE_MODAL_VALUE_MULTI"
+msgid "number "
+msgstr "Zahl "
+
+#. h2KJC
+#: scfuncs.src
+msgctxt "SC_OPCODE_MODAL_VALUE_MULTI"
+msgid ""
+"Number 1, number 2, ... are 1 to 254 numerical arguments which portray a "
+"sample."
+msgstr ""
+"Zahl 1; Zahl 2; ... sind 1 bis 254 numerische Argumente, die eine Stichprobe"
+" darstellen."
+
+#. WohRf
+#: scfuncs.src
+msgctxt "SC_OPCODE_MEDIAN"
+msgid "Returns the median of a given sample."
+msgstr "Berechnet den Median einer Stichprobe."
+
+#. DYLyP
+#: scfuncs.src
+msgctxt "SC_OPCODE_MEDIAN"
+msgid "number "
+msgstr "Zahl "
+
+#. AKo9i
+#: scfuncs.src
+msgctxt "SC_OPCODE_MEDIAN"
+msgid ""
+"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a "
+"sample."
+msgstr ""
+"Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe "
+"darstellen."
+
+#. ZpWVZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE"
+msgid "Returns the alpha quantile of a sample."
+msgstr "Berechnet ein Alpha-Quantil einer Stichprobe."
+
+#. 8WBCq
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE"
+msgid "data"
+msgstr "Daten"
+
+#. QzeFE
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. ojZCE
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE"
+msgid "Alpha"
+msgstr "Alpha"
+
+#. BGTaw
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE"
+msgid "The percentage rate of the quantile between 0 and 1."
+msgstr "Der Prozentwert des Quantils zwischen 0 und 1."
+
+#. pEFyv
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE_EXC"
+msgid "Returns the alpha percentile of a sample."
+msgstr "Berechnet ein Alpha-Quantil einer Stichprobe."
+
+#. cSZx4
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE_EXC"
+msgid "data"
+msgstr "Daten"
+
+#. eF3iC
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE_EXC"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. 2Xss9
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE_EXC"
+msgid "Alpha"
+msgstr "Alpha"
+
+#. b82AQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE_EXC"
+msgid "The percentile value, range 0...1, exclusive."
+msgstr "Quantilwert, Bereich 0...1, exklusiv."
+
+#. fdiei
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE_INC"
+msgid "Returns the alpha percentile of a sample."
+msgstr "Berechnet ein Alpha-Quantil einer Stichprobe."
+
+#. jkNGi
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE_INC"
+msgid "data"
+msgstr "Daten"
+
+#. f5Hig
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE_INC"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. KCoTn
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE_INC"
+msgid "Alpha"
+msgstr "Alpha"
+
+#. 8cdtc
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENTILE_INC"
+msgid "The percentile value, range 0...1, inclusive."
+msgstr "Quantilwert, Bereich 0...1, inklusiv."
+
+#. TDZ7r
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE"
+msgid "Returns the quartile of a sample."
+msgstr "Berechnet ein Quartil einer Stichprobe."
+
+#. LDTvB
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE"
+msgid "data"
+msgstr "Daten"
+
+#. VT77G
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. FTjuA
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE"
+msgid "Type"
+msgstr "Art"
+
+#. zTQEz
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE"
+msgid ""
+"The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)."
+msgstr "Die Art des Quartils (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)."
+
+#. URenM
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE_EXC"
+msgid "Returns the quartile of a sample."
+msgstr "Berechnet ein Quartil einer Stichprobe."
+
+#. vASxw
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE_EXC"
+msgid "data"
+msgstr "Daten"
+
+#. GVYTe
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE_EXC"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. awisv
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE_EXC"
+msgid "Type"
+msgstr "Art"
+
+#. LAZDu
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE_EXC"
+msgid "The type of the quartile (1 = 25%, 2 = 50%, 3 = 75%)."
+msgstr "Die Art des Quartils (1 = 25%, 2 = 50%, 3 = 75%)."
+
+#. 47cAT
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE_INC"
+msgid "Returns the quartile of a sample."
+msgstr "Berechnet ein Quartil einer Stichprobe."
+
+#. Z3MGF
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE_INC"
+msgid "data"
+msgstr "Daten"
+
+#. FbmTA
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE_INC"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. mhCBG
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE_INC"
+msgid "Type"
+msgstr "Art"
+
+#. SytHE
+#: scfuncs.src
+msgctxt "SC_OPCODE_QUARTILE_INC"
+msgid ""
+"The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)."
+msgstr "Die Art des Quartils (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)."
+
+#. DraGu
+#: scfuncs.src
+msgctxt "SC_OPCODE_LARGE"
+msgid "Returns the k-th largest value of a sample."
+msgstr "Berechnet den k-größten Wert einer Stichprobe."
+
+#. WVTCv
+#: scfuncs.src
+msgctxt "SC_OPCODE_LARGE"
+msgid "data"
+msgstr "Daten"
+
+#. aCZTT
+#: scfuncs.src
+msgctxt "SC_OPCODE_LARGE"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. 56z88
+#: scfuncs.src
+msgctxt "SC_OPCODE_LARGE"
+msgid "Rank_c"
+msgstr "Rang_K"
+
+#. wE8Uv
+#: scfuncs.src
+msgctxt "SC_OPCODE_LARGE"
+msgid "The ranking of the value."
+msgstr "Der Rang des Werts."
+
+#. HCszB
+#: scfuncs.src
+msgctxt "SC_OPCODE_SMALL"
+msgid "Returns the k-th smallest value of a sample."
+msgstr "Berechnet den k-kleinsten Wert einer Stichprobe."
+
+#. hAAsM
+#: scfuncs.src
+msgctxt "SC_OPCODE_SMALL"
+msgid "data"
+msgstr "Daten"
+
+#. 2JKnR
+#: scfuncs.src
+msgctxt "SC_OPCODE_SMALL"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. mJo3U
+#: scfuncs.src
+msgctxt "SC_OPCODE_SMALL"
+msgid "Rank_c"
+msgstr "Rang_K"
+
+#. Qd8EW
+#: scfuncs.src
+msgctxt "SC_OPCODE_SMALL"
+msgid "The ranking of the value."
+msgstr "Der Rang des Werts."
+
+#. tfvUj
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK"
+msgid "Returns the percentage rank of a value in a sample."
+msgstr "Berechnet den prozentualen Rang eines Wertes in einer Stichprobe."
+
+#. Y7ueG
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK"
+msgid "data"
+msgstr "Daten"
+
+#. 6pfJB
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. sGECS
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK"
+msgid "value"
+msgstr "Wert"
+
+#. Qavnz
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK"
+msgid "The value for which percentage ranking is to be determined."
+msgstr "Der Wert, dessen prozentualer Rang bestimmt wird."
+
+#. pFn62
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK"
+msgid "significance"
+msgstr "Signifikanz"
+
+#. w9GhY
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK"
+msgid ""
+"The number of significant digits for the returned percentage: if omitted, a "
+"value of 3 is used."
+msgstr ""
+"Die Anzahl der signifikanten Stellen des zurückgegebenen Prozentwerts: falls"
+" fehlend, wird ein Wert von 3 verwendet."
+
+#. DyyD5
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
+msgid "Returns the percentage rank (0..1, exclusive) of a value in a sample."
+msgstr ""
+"Gibt den Prozentrang (0...1, exklusiv) eines Werts in einem Beispiel zurück."
+
+#. SaNaF
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
+msgid "data"
+msgstr "Daten"
+
+#. 5FeiY
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. HxQBW
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
+msgid "value"
+msgstr "Wert"
+
+#. D94FR
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
+msgid "The value for which percentage ranking is to be determined."
+msgstr "Der Wert, dessen prozentualer Rang bestimmt wird."
+
+#. EhjrX
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
+msgid "significance"
+msgstr "Signifikanz"
+
+#. fvDSA
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
+msgid ""
+"The number of significant digits for the returned percentage: if omitted, a "
+"value of 3 is used."
+msgstr ""
+"Die Anzahl der signifikanten Stellen des zurückgegebenen Prozentwerts: falls"
+" fehlend, wird ein Wert von 3 verwendet."
+
+#. 8F33F
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_INC"
+msgid "Returns the percentage rank (0..1, inclusive) of a value in a sample."
+msgstr ""
+"Gibt den Prozentrang (0...1, inklusiv) eines Werts in einem Beispiel zurück."
+
+#. utZzw
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_INC"
+msgid "data"
+msgstr "Daten"
+
+#. 6Rsi4
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_INC"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. GACCJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_INC"
+msgid "value"
+msgstr "Wert"
+
+#. DTLoG
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_INC"
+msgid "The value for which percentage ranking is to be determined."
+msgstr "Der Wert, dessen prozentualer Rang bestimmt wird."
+
+#. JFJGW
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_INC"
+msgid "significance"
+msgstr "Signifikanz"
+
+#. FSg7m
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERCENT_RANK_INC"
+msgid ""
+"The number of significant digits for the returned percentage: if omitted, a "
+"value of 3 is used."
+msgstr ""
+"Die Anzahl der signifikanten Stellen des zurückgegebenen Prozentwerts: falls"
+" fehlend, wird ein Wert von 3 benutzt."
+
+#. whrMs
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK"
+msgid "Returns the ranking of a value in a sample."
+msgstr "Berechnet den Rang eines Wertes in einer Stichprobe."
+
+#. kP4d2
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK"
+msgid "value"
+msgstr "Wert"
+
+#. q36PR
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK"
+msgid "The value for which the rank is to be determined."
+msgstr "Der Wert, dessen Rang bestimmt wird."
+
+#. e3CY7
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK"
+msgid "Data"
+msgstr "Daten"
+
+#. EqDZB
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. YmafZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK"
+msgid "Type"
+msgstr "Art"
+
+#. EAmuG
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK"
+msgid ""
+"Sequence order: 0 or omitted means descending, any other value than 0 means "
+"ascending."
+msgstr ""
+"Die Anordnung der Rangfolge: 0 oder nicht angegeben bedeutet absteigend, ein"
+" Wert ungleich 0 bedeutet aufsteigend."
+
+#. 5sAFj
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_EQ"
+msgid ""
+"Returns the ranking of a value in a sample; if more than one value has the "
+"same rank, the top rank of that set of values is returned."
+msgstr ""
+"Gibt den Rang eines Werts in einem Beispiel zurück; falls mehr als ein Wert "
+"denselben Rang hat, wird der höchste Rang dieses Wertesatzes zurückgegeben."
+
+#. CZFai
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_EQ"
+msgid "value"
+msgstr "Wert"
+
+#. XDE5Z
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_EQ"
+msgid "The value for which the rank is to be determined."
+msgstr "Der Wert, dessen Rang bestimmt wird."
+
+#. UyjWf
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_EQ"
+msgid "Data"
+msgstr "Daten"
+
+#. Q9hFR
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_EQ"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. aFChD
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_EQ"
+msgid "Type"
+msgstr "Art"
+
+#. sDqC4
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_EQ"
+msgid ""
+"Sequence order: 0 or omitted means descending, any other value than 0 means "
+"ascending."
+msgstr ""
+"Reihenfolge: 0 oder weggelassen bedeutet absteigend, jeder anderer Wert "
+"außer 0 bedeutet aufsteigend."
+
+#. 6VJyB
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_AVG"
+msgid ""
+"Returns the ranking of a value in a sample; if more than one value has the "
+"same rank, the average rank is returned."
+msgstr ""
+"Gibt den Rang eines Werts in einem Beispiel zurück; falls mehr als ein Wert "
+"denselben Rang hat, wird der Durchschnittsrang zurückgegeben."
+
+#. stUpG
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_AVG"
+msgid "value"
+msgstr "Wert"
+
+#. jfRiZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_AVG"
+msgid "The value for which the rank is to be determined."
+msgstr "Der Wert, dessen Rang bestimmt wird."
+
+#. FPuzE
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_AVG"
+msgid "Data"
+msgstr "Daten"
+
+#. B57dE
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_AVG"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. 5e2Co
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_AVG"
+msgid "Type"
+msgstr "Art"
+
+#. AEDS8
+#: scfuncs.src
+msgctxt "SC_OPCODE_RANK_AVG"
+msgid ""
+"Sequence order: 0 or omitted means descending, any other value than 0 means "
+"ascending."
+msgstr ""
+"Reihenfolge: 0 oder weggelassen bedeutet absteigend, jeder andere Wert außer"
+" 0 bedeutet aufsteigend."
+
+#. i5gm7
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRIM_MEAN"
+msgid "Returns the mean of a sample without including the marginal values."
+msgstr "Berechnet den Mittelwert einer Stichprobe ohne die Randwerte."
+
+#. hAXGH
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRIM_MEAN"
+msgid "data"
+msgstr "Daten"
+
+#. qdPdp
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRIM_MEAN"
+msgid "The array of the data in the sample."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. cHNxJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRIM_MEAN"
+msgid "Alpha"
+msgstr "Alpha"
+
+#. pBS9z
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRIM_MEAN"
+msgid "The percentage of marginal data that is not to be taken into account."
+msgstr "Der Prozentsatz der Randdaten, die nicht berücksichtigt werden."
+
+#. PMiis
+#: scfuncs.src
+msgctxt "SC_OPCODE_PROB"
+msgid "Returns the discrete probability of an interval."
+msgstr "Berechnet diskrete Wahrscheinlichkeiten eines Intervalls."
+
+#. SgN5M
+#: scfuncs.src
+msgctxt "SC_OPCODE_PROB"
+msgid "data"
+msgstr "Daten"
+
+#. G9hSp
+#: scfuncs.src
+msgctxt "SC_OPCODE_PROB"
+msgid "The sample data array."
+msgstr "Die Matrix der Daten in der Stichprobe."
+
+#. CBBBZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_PROB"
+msgid "probability"
+msgstr "Wahrscheinlichkeiten"
+
+#. uRCZ2
+#: scfuncs.src
+msgctxt "SC_OPCODE_PROB"
+msgid "The array of the associated probabilities."
+msgstr "Die Matrix der dazugehörigen Wahrscheinlichkeiten."
+
+#. bryLB
+#: scfuncs.src
+msgctxt "SC_OPCODE_PROB"
+msgid "Start"
+msgstr "Anfang"
+
+#. EAFpQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_PROB"
+msgid "The start of the value interval whose probabilities is to be totalled."
+msgstr ""
+"Der Anfang des Werteintervalls, dessen Wahrscheinlichkeiten aufsummiert "
+"werden."
+
+#. jsUwC
+#: scfuncs.src
+msgctxt "SC_OPCODE_PROB"
+msgid "End"
+msgstr "Ende"
+
+#. HFi7t
+#: scfuncs.src
+msgctxt "SC_OPCODE_PROB"
+msgid ""
+"The end of the value interval where the probabilities are to be totalled."
+msgstr ""
+"Das Ende des Werteintervalls, dessen Wahrscheinlichkeiten aufsummiert "
+"werden."
+
+#. K7rEA
+#: scfuncs.src
+msgctxt "SC_OPCODE_B"
+msgid "Returns the probability of a trial result using binomial distribution."
+msgstr ""
+"Berechnet die Wahrscheinlichkeit eines Versuchsergebnisses mit der "
+"Binomialverteilung."
+
+#. LGCWF
+#: scfuncs.src
+msgctxt "SC_OPCODE_B"
+msgid "trials"
+msgstr "Versuche"
+
+#. HmRqv
+#: scfuncs.src
+msgctxt "SC_OPCODE_B"
+msgid "The number of trials."
+msgstr "Anzahl der Versuche."
+
+#. 6exAv
+#: scfuncs.src
+msgctxt "SC_OPCODE_B"
+msgid "SP"
+msgstr "SP"
+
+#. NXjwx
+#: scfuncs.src
+msgctxt "SC_OPCODE_B"
+msgid "The individual probability of a trial result."
+msgstr "Einzelwahrscheinlichkeit eines Versuchsergebnis."
+
+#. AeNXZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_B"
+msgid "T_1"
+msgstr "S_1"
+
+#. iJngC
+#: scfuncs.src
+msgctxt "SC_OPCODE_B"
+msgid "Lower limit for the number of trials."
+msgstr "Untere Schranke der Versuchsanzahl."
+
+#. DcbZQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_B"
+msgid "T_2"
+msgstr "S_2"
+
+#. eoDC3
+#: scfuncs.src
+msgctxt "SC_OPCODE_B"
+msgid "Upper limit for the number of trials."
+msgstr "Obere Schranke der Versuchsanzahl."
+
+#. Zidgx
+#: scfuncs.src
+msgctxt "SC_OPCODE_PHI"
+msgid ""
+"Values of the distribution function for a standard normal distribution."
+msgstr "Werte der Verteilungsfunktion zur Standardnormalverteilung."
+
+#. ox28F
+#: scfuncs.src
+msgctxt "SC_OPCODE_PHI"
+msgid "number"
+msgstr "Zahl"
+
+#. C8K6z
+#: scfuncs.src
+msgctxt "SC_OPCODE_PHI"
+msgid ""
+"The value for which the standard normal distribution is to be calculated."
+msgstr "Der Wert, zu dem die Standardnormalverteilung berechnet wird."
+
+#. WsS4w
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAUSS"
+msgid ""
+"Returns the integral values of the standard normal cumulative distribution."
+msgstr "Integralwerte der Standardnormalverteilung."
+
+#. cCAae
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAUSS"
+msgid "Number"
+msgstr "Zahl"
+
+#. CBFMv
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAUSS"
+msgid ""
+"The value for which the integral value of the standard normal distribution "
+"is to be calculated."
+msgstr ""
+"Der Wert, zu dem der Integralwert der Standardnormalverteilung berechnet "
+"wird."
+
+#. kv48J
+#: scfuncs.src
+msgctxt "SC_OPCODE_FISHER"
+msgid "Returns the Fisher transformation."
+msgstr "Berechnung der Fisher-Transformation."
+
+#. v2tPB
+#: scfuncs.src
+msgctxt "SC_OPCODE_FISHER"
+msgid "Number"
+msgstr "Zahl"
+
+#. D9FC4
+#: scfuncs.src
+msgctxt "SC_OPCODE_FISHER"
+msgid "The value to be transformed (-1 < VALUE < 1)."
+msgstr "Der Wert, der transformiert wird (-1 < WERT < 1)."
+
+#. Jk2Wx
+#: scfuncs.src
+msgctxt "SC_OPCODE_FISHER_INV"
+msgid "Returns the inverse of the Fisher transformation."
+msgstr "Berechnung der inversen Fisher-Transformation."
+
+#. Mw3ET
+#: scfuncs.src
+msgctxt "SC_OPCODE_FISHER_INV"
+msgid "Number"
+msgstr "Zahl"
+
+#. 348vV
+#: scfuncs.src
+msgctxt "SC_OPCODE_FISHER_INV"
+msgid "The value that is to be transformed back."
+msgstr "Der Wert, der rücktransformiert wird."
+
+#. T4nhz
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST"
+msgid "Values of the binomial distribution."
+msgstr "Werte der Binomialverteilung."
+
+#. 35XRK
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST"
+msgid "X"
+msgstr "X"
+
+#. aNu4Z
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST"
+msgid "The number of successes in a series of trials."
+msgstr "Die Anzahl der Erfolge in der Versuchsreihe."
+
+#. cK3uX
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST"
+msgid "trials"
+msgstr "Versuche"
+
+#. tByhD
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST"
+msgid "The total number of trials."
+msgstr "Die Gesamtanzahl der Versuche."
+
+#. ywzAU
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST"
+msgid "SP"
+msgstr "SP"
+
+#. HvfHc
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST"
+msgid "The success probability of a trial."
+msgstr "Die Erfolgswahrscheinlichkeit eines Versuchs."
+
+#. gVKYD
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST"
+msgid "C"
+msgstr "C"
+
+#. ZLkQt
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST"
+msgid ""
+"Cumulated. C=0 calculates the individual probability, C=1 the cumulated "
+"probability."
+msgstr ""
+"Kumuliert. K = 0 berechnet die Einzel-, K = 1 die kumulierte "
+"Wahrscheinlichkeit."
+
+#. yqqv9
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST_MS"
+msgid "Values of the binomial distribution."
+msgstr "Werte der Binomialverteilung."
+
+#. BrSwp
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST_MS"
+msgid "X"
+msgstr "X"
+
+#. mMqrV
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST_MS"
+msgid "The number of successes in a series of trials."
+msgstr "Die Anzahl der Erfolge in der Versuchsreihe."
+
+#. K5VVm
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST_MS"
+msgid "trials"
+msgstr "Versuche"
+
+#. ASbAp
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST_MS"
+msgid "The total number of trials."
+msgstr "Die Gesamtanzahl der Versuche."
+
+#. xJQhw
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST_MS"
+msgid "SP"
+msgstr "SP"
+
+#. hRieg
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST_MS"
+msgid "The success probability of a trial."
+msgstr "Die Erfolgswahrscheinlichkeit eines Versuchs."
+
+#. wRN5v
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST_MS"
+msgid "C"
+msgstr "K"
+
+#. DvwzR
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_DIST_MS"
+msgid ""
+"Cumulated. C=0 calculates the individual probability, C=1 the cumulated "
+"probability."
+msgstr ""
+"Kumuliert. K = 0 berechnet die Einzel-, K = 1 die kumulierte "
+"Wahrscheinlichkeit."
+
+#. zGzDq
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_VERT"
+msgid "Values of the negative binomial distribution."
+msgstr "Werte der negativen Binomialverteilung."
+
+#. tUTgu
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_VERT"
+msgid "X"
+msgstr "X"
+
+#. iGgRs
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_VERT"
+msgid "The number of failures in the trial range."
+msgstr "Die Anzahl der Misserfolge in der Versuchsreihe."
+
+#. 57RuM
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_VERT"
+msgid "R"
+msgstr "R"
+
+#. 5YiDW
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_VERT"
+msgid "The number of successes in the trial sequence."
+msgstr "Die Anzahl der Erfolge in der Versuchsreihe."
+
+#. STXEv
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_VERT"
+msgid "SP"
+msgstr "SP"
+
+#. jnRhm
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_VERT"
+msgid "The success probability of a trial."
+msgstr "Die Erfolgswahrscheinlichkeit eines Versuchs."
+
+#. bZRUF
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
+msgid "Values of the negative binomial distribution."
+msgstr "Werte der negativen Binomialverteilung."
+
+#. kcgW7
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
+msgid "X"
+msgstr "X"
+
+#. vDsaA
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
+msgid "The number of failures in the trial range."
+msgstr "Die Anzahl der Misserfolge in der Versuchsreihe."
+
+#. DFAjY
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
+msgid "R"
+msgstr "R"
+
+#. krw9Y
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
+msgid "The number of successes in the trial sequence."
+msgstr "Die Anzahl der Erfolge in der Versuchsreihe."
+
+#. SUGek
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
+msgid "SP"
+msgstr "SP"
+
+#. 8TieV
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
+msgid "The success probability of a trial."
+msgstr "Die Erfolgswahrscheinlichkeit eines Versuchs."
+
+#. wG4JU
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. 892xF
+#: scfuncs.src
+msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS"
+msgid ""
+"0 or FALSE calculates the probability density function. Any other value or "
+"TRUE calculates the cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere "
+"Wert oder WAHR berechnet die kumulierte Verteilungsfunktion."
+
+#. ehpkD
+#: scfuncs.src
+msgctxt "SC_OPCODE_CRIT_BINOM"
+msgid ""
+"Returns the smallest value for which the cumulative binomial distribution is"
+" greater than or equal to a criterion value."
+msgstr ""
+"Gibt den kleinsten Wert zurück, für den die kumulative Binomialverteilung "
+"größer oder gleich dem Wert der Bedingung ist."
+
+#. Aav7c
+#: scfuncs.src
+msgctxt "SC_OPCODE_CRIT_BINOM"
+msgid "trials"
+msgstr "Versuche"
+
+#. PEFmL
+#: scfuncs.src
+msgctxt "SC_OPCODE_CRIT_BINOM"
+msgid "The total number of trials."
+msgstr "Die Gesamtanzahl der Versuche."
+
+#. qoaNX
+#: scfuncs.src
+msgctxt "SC_OPCODE_CRIT_BINOM"
+msgid "SP"
+msgstr "SP"
+
+#. 4QEtN
+#: scfuncs.src
+msgctxt "SC_OPCODE_CRIT_BINOM"
+msgid "The success probability of a trial."
+msgstr "Die Erfolgswahrscheinlichkeit eines Versuchs."
+
+#. WNoQu
+#: scfuncs.src
+msgctxt "SC_OPCODE_CRIT_BINOM"
+msgid "alpha"
+msgstr "Alpha"
+
+#. x9QPt
+#: scfuncs.src
+msgctxt "SC_OPCODE_CRIT_BINOM"
+msgid "The border probability that is attained or exceeded."
+msgstr "Die Grenzwahrscheinlichkeit, die erreicht oder überschritten wird."
+
+#. uHvfK
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_INV"
+msgid ""
+"Returns the smallest value for which the cumulative binomial distribution is"
+" greater than or equal to a criterion value."
+msgstr ""
+"Berechnet den kleinsten Wert, für den die kumulierte Wahrscheinlichkeit der "
+"Binomialverteilung größer oder gleich dem Wert einer bestimmten "
+"Grenzwahrscheinlichkeit ist."
+
+#. CVwp8
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_INV"
+msgid "trials"
+msgstr "Versuche"
+
+#. nx8DH
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_INV"
+msgid "The total number of trials."
+msgstr "Die Gesamtanzahl der Versuche."
+
+#. KZN2c
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_INV"
+msgid "SP"
+msgstr "SP"
+
+#. 2Mrbj
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_INV"
+msgid "The success probability of a trial."
+msgstr "Die Erfolgswahrscheinlichkeit eines Versuchs."
+
+#. uZ32s
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_INV"
+msgid "alpha"
+msgstr "Alpha"
+
+#. STnLG
+#: scfuncs.src
+msgctxt "SC_OPCODE_BINOM_INV"
+msgid "The border probability that is attained or exceeded."
+msgstr "Die Grenzwahrscheinlichkeit, die erreicht oder überschritten wird."
+
+#. qpmzB
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST"
+msgid "Returns the Poisson distribution."
+msgstr "Berechnung der Poisson-Verteilung."
+
+#. SzTsq
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST"
+msgid "Number"
+msgstr "Zahl"
+
+#. LUCHn
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST"
+msgid "The value for which the Poisson distribution is to be calculated."
+msgstr "Der Wert, zu dem die Poisson-Verteilung berechnet werden soll."
+
+#. ftwTr
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST"
+msgid "mean"
+msgstr "MW"
+
+#. JGFGC
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST"
+msgid "Mean. The mean value of the Poisson distribution."
+msgstr "Mittelwert. Der Mittelwert der Poisson-Verteilung."
+
+#. KThWA
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. RJaxg
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST"
+msgid ""
+"0 or FALSE calculates the probability density function. Any other value or "
+"TRUE or omitted calculates the cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere "
+"Wert, WAHR oder ein fehlender Wert berechnet die kumulierte "
+"Verteilungsfunktion."
+
+#. XEzR8
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST_MS"
+msgid "Returns the Poisson distribution."
+msgstr "Berechnung der Poisson-Verteilung."
+
+#. 97a86
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. jXN5x
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST_MS"
+msgid "The value for which the Poisson distribution is to be calculated."
+msgstr "Der Wert, zu dem die Poisson-Verteilung berechnet werden soll."
+
+#. hBGvY
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST_MS"
+msgid "mean"
+msgstr "MW"
+
+#. D3EP7
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST_MS"
+msgid "Mean. The mean value of the Poisson distribution."
+msgstr "Mittelwert. Der Mittelwert der Poisson-Verteilung."
+
+#. kfFbC
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST_MS"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. YQypg
+#: scfuncs.src
+msgctxt "SC_OPCODE_POISSON_DIST_MS"
+msgid ""
+"0 or FALSE calculates the probability density function. Any other value or "
+"TRUE or omitted calculates the cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere "
+"Wert, WAHR oder ein fehlender Wert berechnet die kumulierte "
+"Verteilungsfunktion."
+
+#. m4pDe
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST"
+msgid "Values of the normal distribution."
+msgstr "Werte der Normalverteilung."
+
+#. RPzKS
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST"
+msgid "Number"
+msgstr "Zahl"
+
+#. jg6Vw
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST"
+msgid "The value for which the normal distribution is to be calculated."
+msgstr "Der Wert, zu dem die Normalverteilung berechnet werden soll."
+
+#. fXJBs
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST"
+msgid "Mean"
+msgstr "Mittelwert"
+
+#. NPCBC
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST"
+msgid "The mean value. The mean value of the normal distribution."
+msgstr "Mittelwert. Der Mittelwert der Normalverteilung."
+
+#. F8RCc
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST"
+msgid "STDEV"
+msgstr "STABW"
+
+#. Di2pF
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST"
+msgid "Standard deviation. The standard deviation of the normal distribution."
+msgstr "Standardabweichung. Die Standardabweichung der Normalverteilung."
+
+#. qMewn
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST"
+msgid "C"
+msgstr "C"
+
+#. X8LU5
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST"
+msgid ""
+"0 or FALSE calculates the probability density function. Any other value or "
+"TRUE or omitted calculates the cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere "
+"Wert, WAHR oder ein fehlender Wert berechnet die kumulierte "
+"Verteilungsfunktion."
+
+#. rGWSr
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST_MS"
+msgid "Values of the normal distribution."
+msgstr "Werte der Normalverteilung."
+
+#. SkS5e
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. 3dHdW
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST_MS"
+msgid "The value for which the normal distribution is to be calculated."
+msgstr "Der Wert, zu dem die Normalverteilung berechnet werden soll."
+
+#. dESaP
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST_MS"
+msgid "Mean"
+msgstr "Mittelwert"
+
+#. EV9Ro
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST_MS"
+msgid "The mean value. The mean value of the normal distribution."
+msgstr "Mittelwert. Der Mittelwert der Normalverteilung."
+
+#. n48EF
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST_MS"
+msgid "STDEV"
+msgstr "STABW"
+
+#. jh4jc
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST_MS"
+msgid "Standard deviation. The standard deviation of the normal distribution."
+msgstr "Standardabweichung. Die Standardabweichung der Normalverteilung."
+
+#. CqHN6
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST_MS"
+msgid "C"
+msgstr "C"
+
+#. b8GNG
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_DIST_MS"
+msgid ""
+"0 or FALSE calculates the probability density function. Any other value or "
+"TRUE calculates the cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere "
+"Wert oder WAHR berechnet die kumulierte Verteilungsfunktion."
+
+#. 66pXD
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV"
+msgid "Values of the inverse normal distribution."
+msgstr "Werte der inversen Normalverteilung."
+
+#. fao8q
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV"
+msgid "number"
+msgstr "Zahl"
+
+#. FhwYp
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV"
+msgid ""
+"The probability value for which the inverse normal distribution is to be "
+"calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse Normalverteilung berechnet "
+"werden soll."
+
+#. FMG7a
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV"
+msgid "mean"
+msgstr "MW"
+
+#. FTSYV
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV"
+msgid "The mean value. The mean value of the normal distribution."
+msgstr "Mittelwert. Der Mittelwert der Normalverteilung."
+
+#. AdBuo
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV"
+msgid "STDEV"
+msgstr "STABW"
+
+#. QKHxf
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV"
+msgid "Standard deviation. The standard deviation of the normal distribution."
+msgstr "Standardabweichung. Die Standardabweichung der Normalverteilung."
+
+#. wodEb
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV_MS"
+msgid "Values of the inverse normal distribution."
+msgstr "Werte der inversen Normalverteilung."
+
+#. FabG6
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV_MS"
+msgid "number"
+msgstr "Zahl"
+
+#. VifTr
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV_MS"
+msgid ""
+"The probability value for which the inverse normal distribution is to be "
+"calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, für den die Inversnormalverteilung berechnet "
+"wird."
+
+#. 59FGq
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV_MS"
+msgid "mean"
+msgstr "MW"
+
+#. Fu34P
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV_MS"
+msgid "The mean value. The mean value of the normal distribution."
+msgstr "Mittelwert. Der Mittelwert der Normalverteilung."
+
+#. pRhBy
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV_MS"
+msgid "STDEV"
+msgstr "STABW"
+
+#. 6vPvh
+#: scfuncs.src
+msgctxt "SC_OPCODE_NORM_INV_MS"
+msgid "Standard deviation. The standard deviation of the normal distribution."
+msgstr "Standardabweichung. Die Standardabweichung der Normalverteilung."
+
+#. yX9mS
+#: scfuncs.src
+msgctxt "SC_OPCODE_STD_NORM_DIST"
+msgid "The values of the standard normal cumulative distribution."
+msgstr "Werte der Standardnormalverteilung."
+
+#. KAfpq
+#: scfuncs.src
+msgctxt "SC_OPCODE_STD_NORM_DIST"
+msgid "Number"
+msgstr "Zahl"
+
+#. 6A537
+#: scfuncs.src
+msgctxt "SC_OPCODE_STD_NORM_DIST"
+msgid ""
+"The value for which the standard normal distribution is to be calculated."
+msgstr "Der Wert, zu dem die Standardnormalverteilung berechnet wird."
+
+#. zuSQk
+#: scfuncs.src
+msgctxt "SC_OPCODE_STD_NORM_DIST_MS"
+msgid "The values of the standard normal distribution."
+msgstr "Werte der Standardnormalverteilung."
+
+#. NH6EA
+#: scfuncs.src
+msgctxt "SC_OPCODE_STD_NORM_DIST_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. BjLDt
+#: scfuncs.src
+msgctxt "SC_OPCODE_STD_NORM_DIST_MS"
+msgid ""
+"The value for which the standard normal distribution is to be calculated."
+msgstr "Der Wert, zu dem die Standardnormalverteilung berechnet werden soll."
+
+#. FEB7N
+#: scfuncs.src
+msgctxt "SC_OPCODE_STD_NORM_DIST_MS"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. Zitt9
+#: scfuncs.src
+msgctxt "SC_OPCODE_STD_NORM_DIST_MS"
+msgid ""
+"0 or FALSE calculates the probability density function. Any other value or "
+"TRUE calculates the cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere "
+"Wert oder WAHR berechnet die Gesamtverteilungsfunktion."
+
+#. NzGrF
+#: scfuncs.src
+msgctxt "SC_OPCODE_S_NORM_INV"
+msgid "Values of the inverse standard normal distribution."
+msgstr "Werte der inversen Standardnormalverteilung."
+
+#. BoAUt
+#: scfuncs.src
+msgctxt "SC_OPCODE_S_NORM_INV"
+msgid "number"
+msgstr "Zahl"
+
+#. AGkzA
+#: scfuncs.src
+msgctxt "SC_OPCODE_S_NORM_INV"
+msgid ""
+"The probability value for which the inverse standard normal distribution is "
+"to be calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse Standardnormalverteilung "
+"berechnet werden soll."
+
+#. Cd7DU
+#: scfuncs.src
+msgctxt "SC_OPCODE_S_NORM_INV_MS"
+msgid "Values of the inverse standard normal distribution."
+msgstr "Werte der inversen Standardnormalverteilung."
+
+#. qfxj5
+#: scfuncs.src
+msgctxt "SC_OPCODE_S_NORM_INV_MS"
+msgid "number"
+msgstr "Zahl"
+
+#. noaRM
+#: scfuncs.src
+msgctxt "SC_OPCODE_S_NORM_INV_MS"
+msgid ""
+"The probability value for which the inverse standard normal distribution is "
+"to be calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die Inversstandardnormalverteilung "
+"berechnet werden soll."
+
+#. iDXnR
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST"
+msgid "Values of the log normal distribution."
+msgstr "Werte der Lognormalverteilung."
+
+#. Ki8Dr
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST"
+msgid "Number"
+msgstr "Zahl"
+
+#. mwMAz
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST"
+msgid "The value for which the log normal distribution is to be calculated."
+msgstr "Der Wert, zu dem die Lognormalverteilung berechnet werden soll."
+
+#. esNPB
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST"
+msgid "mean"
+msgstr "MW"
+
+#. ekGoh
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST"
+msgid ""
+"The mean value of the log normal distribution. It is set to 0 if omitted."
+msgstr ""
+"Der Mittelwert der Lognormalverteilung. 0, wenn nicht anders angegeben."
+
+#. aJf8v
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST"
+msgid "STDEV"
+msgstr "STABW"
+
+#. JvuRB
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST"
+msgid ""
+"The standard deviation of the log normal distribution. It is set to 1 if "
+"omitted."
+msgstr ""
+"Die Standardabweichung der Lognormalverteilung. 1, wenn nicht anders "
+"angegeben."
+
+#. VsLsD
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. 7bRWW
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST"
+msgid ""
+"0 or FALSE calculates the probability density function. Any other value or "
+"TRUE or omitted calculates the cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Ein "
+"beliebiger anderer Wert, WAHR oder ein fehlender Wert berechnet die "
+"kumulative Verteilungsfunktion."
+
+#. ZgdzP
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
+msgid "Values of the log normal distribution."
+msgstr "Werte der Lognormalverteilung."
+
+#. tG5vo
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. 88B3n
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
+msgid "The value for which the log normal distribution is to be calculated."
+msgstr "Der Wert, zu dem die Lognormalverteilung berechnet werden soll."
+
+#. CCKF3
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
+msgid "mean"
+msgstr "MW"
+
+#. qNMyM
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
+msgid "The mean value of the log normal distribution."
+msgstr "Der Mittelwert der Lognormalverteilung."
+
+#. HSDAn
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
+msgid "STDEV"
+msgstr "STABW"
+
+#. DkbJX
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
+msgid "The standard deviation of the log normal distribution."
+msgstr "Die Standardabweichung der Lognormalverteilung."
+
+#. JeiQB
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. WcV7z
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_NORM_DIST_MS"
+msgid ""
+"0 or FALSE calculates the probability density function. Any other value or "
+"TRUE calculates the cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere "
+"Wert oder WAHR berechnet die kumulierte Verteilungsfunktion."
+
+#. vGkMb
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV"
+msgid "Values of the inverse of the lognormal distribution."
+msgstr "Werte der inversen Lognormalverteilung."
+
+#. hGwY5
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV"
+msgid "number"
+msgstr "Zahl"
+
+#. mLwp6
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV"
+msgid ""
+"The probability value for which the inverse log normal distribution is to be"
+" calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse Lognormalverteilung "
+"berechnet werden soll."
+
+#. CpE7G
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV"
+msgid "mean"
+msgstr "MW"
+
+#. PMBtZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV"
+msgid "Mean value. The mean value of the log normal distribution."
+msgstr "Mittelwert. Der Mittelwert der Lognormalverteilung."
+
+#. aMDvP
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV"
+msgid "STDEV"
+msgstr "STABW"
+
+#. 2GWhL
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV"
+msgid ""
+"Standard deviation. The standard deviation of the log normal distribution."
+msgstr "Standardabweichung. Die Standardabweichung der Lognormalverteilung."
+
+#. T4N5D
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV_MS"
+msgid "Values of the inverse of the lognormal distribution."
+msgstr "Werte der inversen Lognormalverteilung."
+
+#. PB2yK
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV_MS"
+msgid "number"
+msgstr "Zahl"
+
+#. 3dBqA
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV_MS"
+msgid ""
+"The probability value for which the inverse log normal distribution is to be"
+" calculated."
+msgstr ""
+"Der Prozentwert, für den die inverse Lognormalverteilung berechnet werden "
+"soll."
+
+#. GkVYn
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV_MS"
+msgid "mean"
+msgstr "MW"
+
+#. mhYEa
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV_MS"
+msgid "Mean value. The mean value of the log normal distribution."
+msgstr "Mittelwert. Der Mittelwert der Lognormalverteilung."
+
+#. rzAiX
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV_MS"
+msgid "STDEV"
+msgstr "STABW"
+
+#. ae6FC
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOG_INV_MS"
+msgid ""
+"Standard deviation. The standard deviation of the log normal distribution."
+msgstr "Standardabweichung. Die Standardabweichung der Lognormalverteilung."
+
+#. 8wWP2
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST"
+msgid "Values of the exponential distribution."
+msgstr "Werte der Exponentialverteilung."
+
+#. FU5Fy
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST"
+msgid "Number"
+msgstr "Zahl"
+
+#. rADTw
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST"
+msgid "The value to which the exponential distribution is to be calculated."
+msgstr "Der Wert, zu dem die Exponentialverteilung berechnet werden soll."
+
+#. oFtYw
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST"
+msgid "lambda"
+msgstr "Lambda"
+
+#. i7v6W
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST"
+msgid "The parameters of the exponential distribution."
+msgstr "Der Parameter der Exponentialverteilung."
+
+#. DaEE7
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST"
+msgid "C"
+msgstr "C"
+
+#. HUSCi
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST"
+msgid "Cumulated. C=0 calculates the density function, C=1 the distribution."
+msgstr "Kumuliert. K = 0 berechnet die Dichtefunktion, K = 1 die Verteilung."
+
+#. 7i2aN
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST_MS"
+msgid "Values of the exponential distribution."
+msgstr "Werte der Exponentialverteilung."
+
+#. E3Fwz
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. 5U9h6
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST_MS"
+msgid "The value to which the exponential distribution is to be calculated."
+msgstr "Der Wert, zu dem die Exponentialverteilung berechnet werden soll."
+
+#. nodF3
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST_MS"
+msgid "lambda"
+msgstr "Lambda"
+
+#. wPVU9
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST_MS"
+msgid "The parameters of the exponential distribution."
+msgstr "Der Parameter der Exponentialverteilung."
+
+#. KJ8Eo
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST_MS"
+msgid "C"
+msgstr "K"
+
+#. CHL5y
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXP_DIST_MS"
+msgid "Cumulated. C=0 calculates the density function, C=1 the distribution."
+msgstr "Kumuliert. K = 0 berechnet die Dichtefunktion, K = 1 die Verteilung."
+
+#. QJrVu
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST"
+msgid ""
+"Returns the value of the probability density function or the cumulative "
+"distribution function for the Gamma distribution."
+msgstr ""
+"Berechnet die Werte der Wahrscheinlichkeitsdichtefunktion oder der "
+"kumulativen Verteilungsfunktion der Gammaverteilung."
+
+#. D32pE
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST"
+msgid "Number"
+msgstr "Zahl"
+
+#. wYfwF
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST"
+msgid "The value for which the gamma distribution is to be calculated."
+msgstr "Der Wert, zu dem die Gamma-Verteilung berechnet werden soll."
+
+#. kYGuJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST"
+msgid "alpha"
+msgstr "Alpha"
+
+#. DuXbh
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST"
+msgid "The Alpha parameter of the Gamma distribution."
+msgstr "Der Parameter Alpha der Gamma-Verteilung."
+
+#. 5xuk5
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST"
+msgid "beta"
+msgstr "Beta"
+
+#. Ci6xi
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST"
+msgid "The Beta parameter of the Gamma distribution."
+msgstr "Der Parameter Beta der Gamma-Verteilung."
+
+#. MsyLG
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. 4uBHp
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST"
+msgid ""
+"0 or FALSE calculates the probability density function. Any other value or "
+"TRUE or omitted calculates the cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Ein "
+"beliebiger anderer Wert, WAHR oder ein fehlender Wert berechnet die "
+"kumulierte Verteilungsfunktion."
+
+#. 5PpFd
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST_MS"
+msgid ""
+"Returns the value of the probability density function or the cumulative "
+"distribution function for the Gamma distribution."
+msgstr ""
+"Gibt den Wert der Wahrscheinlichkeitsdichtefunktion oder der "
+"Gesamtverteilungsfunktion für die Gammaverteilung zurück."
+
+#. 5Vm8n
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. Rm9aD
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST_MS"
+msgid "The value for which the gamma distribution is to be calculated."
+msgstr "Der Wert, zu dem die Gamma-Verteilung berechnet werden soll."
+
+#. ZCbAk
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST_MS"
+msgid "alpha"
+msgstr "Alpha"
+
+#. BEt2Z
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST_MS"
+msgid "The Alpha parameter of the Gamma distribution."
+msgstr "Der Parameter Alpha der Gamma-Verteilung."
+
+#. RsoY7
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST_MS"
+msgid "beta"
+msgstr "Beta"
+
+#. K96HW
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST_MS"
+msgid "The Beta parameter of the Gamma distribution."
+msgstr "Der Parameter Beta der Gamma-Verteilung."
+
+#. KbAwa
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST_MS"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. K6yj5
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_DIST_MS"
+msgid ""
+"0 or FALSE calculates the probability density function. Any other value or "
+"TRUE calculates the cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere "
+"Wert oder WAHR berechnet die kumulierte Verteilungsfunktion."
+
+#. EADC9
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV"
+msgid "Values of the inverse gamma distribution."
+msgstr "Werte der inversen Gamma-Verteilung."
+
+#. JKWZq
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV"
+msgid "Number"
+msgstr "Zahl"
+
+#. WByv9
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV"
+msgid ""
+"The probability value for which the inverse gamma distribution is to be "
+"calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse Gamma-Verteilung berechnet "
+"werden soll."
+
+#. AZxD3
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV"
+msgid "alpha"
+msgstr "Alpha"
+
+#. zKEYZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV"
+msgid "The Alpha (shape) parameter of the Gamma distribution."
+msgstr "Der Parameter Alpha der Gamma-Verteilung."
+
+#. GEHWA
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV"
+msgid "beta"
+msgstr "Beta"
+
+#. YsdCG
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV"
+msgid "The Beta (scale) parameter of the Gamma distribution."
+msgstr "Der Parameter Beta der Gamma-Verteilung."
+
+#. k5hjT
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV_MS"
+msgid "Values of the inverse gamma distribution."
+msgstr "Werte der inversen Gamma-Verteilung."
+
+#. EiRMA
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. YfEHF
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV_MS"
+msgid ""
+"The probability value for which the inverse gamma distribution is to be "
+"calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, für welchen die Inversgammaverteilung berechnet"
+" werden soll."
+
+#. dXpAg
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV_MS"
+msgid "alpha"
+msgstr "Alpha"
+
+#. BDjGU
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV_MS"
+msgid "The Alpha (shape) parameter of the Gamma distribution."
+msgstr "Der Parameter Alpha der Gamma-Verteilung."
+
+#. WrcLN
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV_MS"
+msgid "beta"
+msgstr "Beta"
+
+#. CAMha
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_INV_MS"
+msgid "The Beta (scale) parameter of the Gamma distribution."
+msgstr "Der Parameter Beta der Gamma-Verteilung."
+
+#. iwMRE
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_LN"
+msgid "Returns the natural logarithm of the gamma function."
+msgstr "Logarithmische Werte der Gamma-Funktion."
+
+#. TAHfb
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_LN"
+msgid "Number"
+msgstr "Zahl"
+
+#. pi8GA
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_LN"
+msgid ""
+"The value for which the natural logarithm of the gamma function is to be "
+"calculated."
+msgstr ""
+"Der Wert, zu dem der natürliche Logarithmus der Gamma-Funktion berechnet "
+"werden soll."
+
+#. XekJH
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_LN_MS"
+msgid "Returns the natural logarithm of the gamma function."
+msgstr "Logarithmische Werte der Gamma-Funktion."
+
+#. YErpk
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_LN_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. 7mRCZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA_LN_MS"
+msgid ""
+"The value for which the natural logarithm of the gamma function is to be "
+"calculated."
+msgstr ""
+"Der Wert, für welchen der natürliche Logarithmus der Gammafunktion berechnet"
+" werden soll."
+
+#. TBAms
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA"
+msgid "Returns the value of the Gamma function."
+msgstr "Liefert den Wert der Gamma-Funktion."
+
+#. 49Yj3
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA"
+msgid "Number"
+msgstr "Zahl"
+
+#. fnb4d
+#: scfuncs.src
+msgctxt "SC_OPCODE_GAMMA"
+msgid "The value for which the Gamma function is to be calculated."
+msgstr "Der Wert, für den die Gamma-Funktion berechnet wird."
+
+#. 23rEs
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST"
+msgid "Values of the beta distribution."
+msgstr "Werte der Beta-Verteilung."
+
+#. tuo86
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST"
+msgid "number"
+msgstr "Zahl"
+
+#. xFPt8
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST"
+msgid "The value for which the beta distribution is to be calculated."
+msgstr "Der Wert, zu dem die Beta-Verteilung berechnet werden soll."
+
+#. kZsuE
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST"
+msgid "alpha"
+msgstr "Alpha"
+
+#. WzYZp
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST"
+msgid "The Alpha parameter of the Beta distribution."
+msgstr "Der Parameter Alpha der Beta-Verteilung."
+
+#. eGi5D
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST"
+msgid "beta"
+msgstr "Beta"
+
+#. CCVAM
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST"
+msgid "The Beta parameter of the Beta distribution."
+msgstr "Der Parameter Beta der Beta-Verteilung."
+
+#. DawE4
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST"
+msgid "Start"
+msgstr "Anfang"
+
+#. JGoXx
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST"
+msgid "The starting value for the value interval of the distribution."
+msgstr "Der Anfangswert für das Werteintervall der Verteilung."
+
+#. zTPsU
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST"
+msgid "End"
+msgstr "Ende"
+
+#. Muuss
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST"
+msgid "The final value for the value interval of the distribution."
+msgstr "Der Endwert für das Werteintervall der Verteilung."
+
+#. EKtCA
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. pD7cA
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST"
+msgid ""
+"0 or FALSE for probability density function, any other value or TRUE or "
+"omitted for cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion, ein "
+"beliebiger anderer Wert, WAHR oder ein fehlender Wert berechnet die "
+"kumulierte Verteilungsfunktion."
+
+#. nonyN
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV"
+msgid "Values of the inverse beta distribution."
+msgstr "Werte der inversen Beta-Verteilung."
+
+#. FeCDX
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV"
+msgid "number"
+msgstr "Zahl"
+
+#. xCRFD
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV"
+msgid ""
+"The probability value for which the inverse beta distribution is to be "
+"calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse Beta-Verteilung berechnet "
+"werden soll."
+
+#. rGotF
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV"
+msgid "alpha"
+msgstr "Alpha"
+
+#. AX75A
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV"
+msgid "The Alpha parameter of the Beta distribution."
+msgstr "Der Parameter Alpha der Beta-Verteilung."
+
+#. BKpwo
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV"
+msgid "beta"
+msgstr "Beta"
+
+#. 3GR8e
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV"
+msgid "The Beta parameter of the Beta distribution."
+msgstr "Der Parameter Beta der Beta-Verteilung."
+
+#. KzjDM
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV"
+msgid "Start"
+msgstr "Anfang"
+
+#. tBHKE
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV"
+msgid "The starting value for the value interval of the distribution."
+msgstr "Der Anfangswert für das Werteintervall der Verteilung."
+
+#. tQNGz
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV"
+msgid "End"
+msgstr "Ende"
+
+#. CaC33
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV"
+msgid "The final value for the value interval of the distribution."
+msgstr "Der Endwert für das Werteintervall der Verteilung."
+
+#. 6aRHE
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST_MS"
+msgid "Values of the beta distribution."
+msgstr "Werte der Beta-Verteilung."
+
+#. Q3CKs
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST_MS"
+msgid "number"
+msgstr "Zahl"
+
+#. bDE2Q
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST_MS"
+msgid "The value for which the beta distribution is to be calculated."
+msgstr "Der Wert, zu dem die Beta-Verteilung berechnet werden soll."
+
+#. 4QbLr
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST_MS"
+msgid "alpha"
+msgstr "Alpha"
+
+#. WCEz5
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST_MS"
+msgid "The Alpha parameter of the Beta distribution."
+msgstr "Der Parameter Alpha der Beta-Verteilung."
+
+#. WKwqC
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST_MS"
+msgid "beta"
+msgstr "Beta"
+
+#. n7EVd
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST_MS"
+msgid "The Beta parameter of the Beta distribution."
+msgstr "Der Parameter Beta der Beta-Verteilung."
+
+#. AkpZ2
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST_MS"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. FXBJe
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST_MS"
+msgid ""
+"0 or FALSE for probability density function, any other value or TRUE or "
+"omitted for cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion, jeder andere "
+"Wert, WAHR oder ein fehlender Wert berechnet die kumulierte "
+"Verteilungsfunktion."
+
+#. UBfep
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST_MS"
+msgid "Start"
+msgstr "Anfang"
+
+#. GGvQZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST_MS"
+msgid "The starting value for the value interval of the distribution."
+msgstr "Der Anfangswert für das Werteintervall der Verteilung."
+
+#. UmfwG
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST_MS"
+msgid "End"
+msgstr "Ende"
+
+#. yYqWp
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_DIST_MS"
+msgid "The final value for the value interval of the distribution."
+msgstr "Der Endwert für das Werteintervall der Verteilung."
+
+#. 5kAK6
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV_MS"
+msgid "Values of the inverse beta distribution."
+msgstr "Werte der inversen Beta-Verteilung."
+
+#. YBRtP
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV_MS"
+msgid "number"
+msgstr "Zahl"
+
+#. dT87p
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV_MS"
+msgid ""
+"The probability value for which the inverse beta distribution is to be "
+"calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse Beta-Verteilung berechnet "
+"werden soll."
+
+#. A6x2V
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV_MS"
+msgid "alpha"
+msgstr "Alpha"
+
+#. y7SDy
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV_MS"
+msgid "The Alpha parameter of the Beta distribution."
+msgstr "Der Parameter Alpha der Beta-Verteilung."
+
+#. 5oQzB
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV_MS"
+msgid "beta"
+msgstr "Beta"
+
+#. nbDz3
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV_MS"
+msgid "The Beta parameter of the Beta distribution."
+msgstr "Der Parameter Beta der Beta-Verteilung."
+
+#. jBtqf
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV_MS"
+msgid "Start"
+msgstr "Anfang"
+
+#. rvfGx
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV_MS"
+msgid "The starting value for the value interval of the distribution."
+msgstr "Der Anfangswert für das Werteintervall der Verteilung."
+
+#. GWDpp
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV_MS"
+msgid "End"
+msgstr "Ende"
+
+#. PVFJN
+#: scfuncs.src
+msgctxt "SC_OPCODE_BETA_INV_MS"
+msgid "The final value for the value interval of the distribution."
+msgstr "Der Endwert für das Werteintervall der Verteilung."
+
+#. BT53q
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL"
+msgid "Returns the values of the Weibull distribution."
+msgstr "Werte der Weibull-Verteilung."
+
+#. hy9dU
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL"
+msgid "Number"
+msgstr "Zahl"
+
+#. fMG7J
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL"
+msgid "The value for which the Weibull distribution is to be calculated."
+msgstr "Der Wert, zu dem die Weibull-Verteilung berechnet werden soll."
+
+#. GEeYu
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL"
+msgid "Alpha"
+msgstr "Alpha"
+
+#. JREDG
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL"
+msgid "The Alpha parameter of the Weibull distribution."
+msgstr "Der Parameter Alpha der Weibull-Verteilung."
+
+#. CJBFC
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL"
+msgid "beta"
+msgstr "Beta"
+
+#. k8PNM
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL"
+msgid "The Beta parameter of the Weibull distribution."
+msgstr "Der Parameter Beta der Weibull-Verteilung."
+
+#. tQHbF
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL"
+msgid "C"
+msgstr "C"
+
+#. o2XuL
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL"
+msgid "Cumulated. C=0 calculates the density function, C=1 the distribution."
+msgstr "Kumuliert. K = 0 berechnet die Dichtefunktion, K = 1 die Verteilung."
+
+#. 3cKfF
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL_MS"
+msgid "Returns the values of the Weibull distribution."
+msgstr "Werte der Weibull-Verteilung."
+
+#. Dx7qt
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. 3udwk
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL_MS"
+msgid "The value for which the Weibull distribution is to be calculated."
+msgstr "Der Wert, zu dem die Weibull-Verteilung berechnet werden soll."
+
+#. np6gD
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL_MS"
+msgid "Alpha"
+msgstr "Alpha"
+
+#. DFebd
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL_MS"
+msgid "The Alpha parameter of the Weibull distribution."
+msgstr "Der Parameter Alpha der Weibull-Verteilung."
+
+#. B9APk
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL_MS"
+msgid "beta"
+msgstr "Beta"
+
+#. TDzms
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL_MS"
+msgid "The Beta parameter of the Weibull distribution."
+msgstr "Der Parameter Beta der Weibull-Verteilung."
+
+#. zsBgB
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL_MS"
+msgid "C"
+msgstr "K"
+
+#. tQDCB
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEIBULL_MS"
+msgid "Cumulated. C=0 calculates the density function, C=1 the distribution."
+msgstr "Kumuliert. K = 0 berechnet die Dichtefunktion, K = 1 die Verteilung."
+
+#. X6EvS
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST"
+msgid "Values of the hypergeometric distribution."
+msgstr "Werte der hypergeometrischen Verteilung."
+
+#. Mpxny
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST"
+msgid "X"
+msgstr "X"
+
+#. AAgVE
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST"
+msgid "The number of successes in the sample."
+msgstr "Die Anzahl der Erfolge in der Stichprobe."
+
+#. pujGX
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST"
+msgid "n_sample"
+msgstr "N_Stich"
+
+#. 8zaJ8
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST"
+msgid "The size of the sample."
+msgstr "Die Größe der Stichprobe."
+
+#. DTqJ9
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST"
+msgid "successes"
+msgstr "Erfolge"
+
+#. MUkyB
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST"
+msgid "The number of successes in the population."
+msgstr "Die Anzahl der Erfolge in der Grundgesamtheit."
+
+#. BtivP
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST"
+msgid "n_population"
+msgstr "N_Gesamt"
+
+#. YbCGU
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST"
+msgid "The population size."
+msgstr "Die Größe der Grundgesamtheit."
+
+#. JFfow
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. 5WYBD
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST"
+msgid ""
+"Cumulated. TRUE calculates the cumulative distribution function, FALSE the "
+"probability mass function."
+msgstr ""
+"Kummuliert. WAHR berechnet die kumulierte Verteilungsfunktion, FALSCH die "
+"Wahrscheinlichkeitsdichtefunktion."
+
+#. Ljr28
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
+msgid "Values of the hypergeometric distribution."
+msgstr "Werte der hypergeometrischen Verteilung."
+
+#. EujFt
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
+msgid "X"
+msgstr "X"
+
+#. yH8n4
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
+msgid "The number of successes in the sample."
+msgstr "Die Anzahl der Erfolge in der Stichprobe."
+
+#. FmFQZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
+msgid "n_sample"
+msgstr "N_Stich"
+
+#. kPFzD
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
+msgid "The size of the sample."
+msgstr "Die Größe der Stichprobe."
+
+#. ZAN4u
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
+msgid "successes"
+msgstr "Erfolge"
+
+#. WGQ3f
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
+msgid "The number of successes in the population."
+msgstr "Die Anzahl der Erfolge in der Grundgesamtheit."
+
+#. 4jaBR
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
+msgid "n_population"
+msgstr "N_Gesamt"
+
+#. gbH2X
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
+msgid "The population size."
+msgstr "Die Größe der Grundgesamtheit."
+
+#. RxQZ8
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. XojAK
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
+msgid ""
+"Cumulated. TRUE calculates the cumulative distribution function, FALSE the "
+"probability mass function."
+msgstr ""
+"Kummuliert. WAHR berechnet die kumulierte Verteilungsfunktion, FALSCH die "
+"Wahrscheinlichkeitsdichtefunktion."
+
+#. 39jmN
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST"
+msgid "Returns the t-distribution."
+msgstr "Werte der t-Verteilung."
+
+#. uGqDD
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST"
+msgid "Number"
+msgstr "Zahl"
+
+#. zjM5M
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST"
+msgid "The value for which the T distribution is to be calculated."
+msgstr "Der Wert, zu dem die t-Verteilung berechnet werden soll."
+
+#. qRCkq
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST"
+msgid "degrees_freedom"
+msgstr "Freiheitsgrade"
+
+#. shGjB
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST"
+msgid "The degrees of freedom of the T distribution."
+msgstr "Die Freiheitsgrade der t-Verteilung."
+
+#. h5UxT
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST"
+msgid "mode"
+msgstr "Modus"
+
+#. gvAFA
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST"
+msgid "Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution."
+msgstr "Modus = 1 berechnet den einseitigen Test, Modus = 2 den zweiseitigen."
+
+#. RssQW
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_2T"
+msgid "Returns the two-tailed t-distribution."
+msgstr "Gibt die zweiseitige T-Verteilung zurück."
+
+#. DmQVU
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_2T"
+msgid "Number"
+msgstr "Zahl"
+
+#. nuCaK
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_2T"
+msgid "The value for which the T distribution is to be calculated."
+msgstr "Der Wert, zu dem die t-Verteilung berechnet werden soll."
+
+#. WZRNb
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_2T"
+msgid "degrees_freedom"
+msgstr "Freiheitsgrade"
+
+#. Vukti
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_2T"
+msgid "The degrees of freedom of the T distribution."
+msgstr "Die Freiheitsgrade der t-Verteilung."
+
+#. 8Sznm
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_MS"
+msgid "Returns the t-distribution."
+msgstr "Werte der t-Verteilung."
+
+#. j8Fn8
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. kABq7
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_MS"
+msgid "The value for which the T distribution is to be calculated."
+msgstr "Der Wert, zu dem die t-Verteilung berechnet werden soll."
+
+#. GpdwG
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_MS"
+msgid "degrees_freedom"
+msgstr "Freiheitsgrade"
+
+#. VtM7A
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_MS"
+msgid "The degrees of freedom of the T distribution."
+msgstr "Die Freiheitsgrade der t-Verteilung."
+
+#. fzEH4
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_MS"
+msgid "cumulative"
+msgstr "Kumuliert"
+
+#. wDjRi
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_MS"
+msgid ""
+"True calculates the cumulative distribution function, false the probability "
+"density function."
+msgstr ""
+"WAHR berechnet die Gesamtverteilungsfunktion, FALSCH die "
+"Wahrscheinlichkeitsdichtefunktion."
+
+#. JkdGt
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_RT"
+msgid "Returns the right-tailed t-distribution."
+msgstr "Gibt die rechtsseitige T-Verteilung zurück."
+
+#. ao7MQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_RT"
+msgid "Number"
+msgstr "Zahl"
+
+#. ED72k
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_RT"
+msgid "The value for which the T distribution is to be calculated."
+msgstr "Der Wert, zu dem die t-Verteilung berechnet werden soll."
+
+#. E74FF
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_RT"
+msgid "degrees_freedom"
+msgstr "Freiheitsgrade"
+
+#. gvc5Z
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_DIST_RT"
+msgid "The degrees of freedom of the T distribution."
+msgstr "Die Freiheitsgrade der t-Verteilung."
+
+#. P4JED
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV"
+msgid "Values of the inverse t-distribution."
+msgstr "Werte der inversen t-Verteilung."
+
+#. KE2P5
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV"
+msgid "number"
+msgstr "Zahl"
+
+#. oCJ6r
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV"
+msgid ""
+"The probability value for which the inverse T distribution is to be "
+"calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse t-Verteilung berechnet "
+"werden soll."
+
+#. fwmcY
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV"
+msgid "degrees_freedom"
+msgstr "Freiheitsgrade"
+
+#. TKfSC
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV"
+msgid "The degrees of freedom of the T distribution."
+msgstr "Die Freiheitsgrade der t-Verteilung."
+
+#. xbXUk
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV_MS"
+msgid "Values of the left-tailed inverse t-distribution."
+msgstr "Werte der linksseitigen inversen T-Verteilung."
+
+#. t9dzp
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV_MS"
+msgid "number"
+msgstr "Zahl"
+
+#. ztQgd
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV_MS"
+msgid ""
+"The probability value for which the inverse T distribution is to be "
+"calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, für den die inverse T-Verteilung berechnet "
+"werden soll."
+
+#. FpEaC
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV_MS"
+msgid "degrees_freedom"
+msgstr "Freiheitsgrade"
+
+#. DnZLA
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV_MS"
+msgid "The degrees of freedom of the T distribution."
+msgstr "Die Freiheitsgrade der t-Verteilung."
+
+#. sjJCx
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV_2T"
+msgid "Values of the two-tailed inverse t-distribution."
+msgstr "Werte der zweiseitigen inversen T-Verteilung."
+
+#. 8vuHD
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV_2T"
+msgid "number"
+msgstr "Zahl"
+
+#. erEYR
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV_2T"
+msgid ""
+"The probability value for which the inverse T distribution is to be "
+"calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, für den die inverse T-Verteilung berechnet "
+"werden soll."
+
+#. xZsAf
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV_2T"
+msgid "degrees_freedom"
+msgstr "Freiheitsgrade"
+
+#. DoFYb
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_INV_2T"
+msgid "The degrees of freedom of the T distribution."
+msgstr "Die Freiheitsgrade der t-Verteilung."
+
+#. 29d9Q
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST"
+msgid "Values of the F probability distribution."
+msgstr "Werte der F-Verteilung."
+
+#. B2Ytr
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST"
+msgid "Number"
+msgstr "Zahl"
+
+#. kxECY
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST"
+msgid "The value for which the F distribution is to be calculated."
+msgstr "Der Wert, zu dem die F-Verteilung berechnet werden soll."
+
+#. EQBM9
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST"
+msgid "degrees_freedom_1"
+msgstr "Freiheitsgrade_1"
+
+#. KYyaV
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST"
+msgid "The degrees of freedom in the numerator of the F distribution."
+msgstr "Die Freiheitsgrade im Zähler der F-Verteilung."
+
+#. HJWKj
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST"
+msgid "degrees_freedom_2"
+msgstr "Freiheitsgrade_2"
+
+#. 9uERz
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST"
+msgid "The degrees of freedom in the denominator of the F distribution."
+msgstr "Die Freiheitsgrade im Nenner der F-Verteilung."
+
+#. ZB7wi
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_LT"
+msgid "Values of the left tail F probability distribution."
+msgstr "Werte der linksseitigen F-Verteilung."
+
+#. GwxtM
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_LT"
+msgid "Number"
+msgstr "Zahl"
+
+#. HGZbw
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_LT"
+msgid "The value for which the F distribution is to be calculated."
+msgstr "Der Wert, zu dem die F-Verteilung berechnet werden soll."
+
+#. xFaDS
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_LT"
+msgid "degrees_freedom_1"
+msgstr "Freiheitsgrade_1"
+
+#. oMuVC
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_LT"
+msgid "The degrees of freedom in the numerator of the F distribution."
+msgstr "Die Freiheitsgrade im Zähler der F-Verteilung."
+
+#. WDPFK
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_LT"
+msgid "degrees_freedom_2"
+msgstr "Freiheitsgrade_2"
+
+#. NKz4T
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_LT"
+msgid "The degrees of freedom in the denominator of the F distribution."
+msgstr "Die Freiheitsgrade im Nenner der F-Verteilung."
+
+#. FGVGz
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_LT"
+msgid "cumulative"
+msgstr "Kumuliert"
+
+#. 7KJJv
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_LT"
+msgid ""
+"Cumulative distribution function (TRUE) or probability density function "
+"(FALSE)."
+msgstr ""
+"Kumulierte Verteilungsfunktion (WAHR) oder Wahrscheinlichkeitsdichtefunktion"
+" (FALSCH)."
+
+#. ketyL
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_RT"
+msgid "Values of the right tail F probability distribution."
+msgstr "Werte der rechtsseitigen F-Verteilung."
+
+#. oLHty
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_RT"
+msgid "Number"
+msgstr "Zahl"
+
+#. wtiPo
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_RT"
+msgid "The value for which the F distribution is to be calculated."
+msgstr "Der Wert, zu dem die F-Verteilung berechnet werden soll."
+
+#. vE74s
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_RT"
+msgid "degrees_freedom_1"
+msgstr "Freiheitsgrade_1"
+
+#. rGfRz
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_RT"
+msgid "The degrees of freedom in the numerator of the F distribution."
+msgstr "Die Freiheitsgrade im Zähler der F-Verteilung."
+
+#. YCm2z
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_RT"
+msgid "degrees_freedom_2"
+msgstr "Freiheitsgrade_2"
+
+#. XkzrA
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_DIST_RT"
+msgid "The degrees of freedom in the denominator of the F distribution."
+msgstr "Die Freiheitsgrade im Nenner der F-Verteilung."
+
+#. YvZEM
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV"
+msgid "Values of the inverse F distribution."
+msgstr "Werte der inversen F-Verteilung."
+
+#. tzGFW
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV"
+msgid "number"
+msgstr "Zahl"
+
+#. wzbhN
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV"
+msgid ""
+"The probability value for which the inverse F distribution is to be "
+"calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse F-Verteilung berechnet "
+"werden soll."
+
+#. vtw8G
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV"
+msgid "degrees_freedom_1"
+msgstr "Freiheitsgrade_1"
+
+#. cddNQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV"
+msgid "The degrees of freedom in the numerator of the F distribution."
+msgstr "Die Freiheitsgrade im Zähler der F-Verteilung."
+
+#. Yv96p
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV"
+msgid "degrees_freedom_2"
+msgstr "Freiheitsgrade_2"
+
+#. YnBhQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV"
+msgid "The degrees of freedom in the denominator of the F distribution."
+msgstr "Die Freiheitsgrade im Nenner der F-Verteilung."
+
+#. ZUjMG
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_LT"
+msgid "Values of the inverse left tail F distribution."
+msgstr "Werte der inversen linksseitigen F-Verteilung."
+
+#. x79pZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_LT"
+msgid "number"
+msgstr "Zahl"
+
+#. Ur3ES
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_LT"
+msgid ""
+"The probability value for which the inverse F distribution is to be "
+"calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse F-Verteilung berechnet "
+"werden soll."
+
+#. bfuqE
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_LT"
+msgid "degrees_freedom_1"
+msgstr "Freiheitsgrade_1"
+
+#. bAmiD
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_LT"
+msgid "The degrees of freedom in the numerator of the F distribution."
+msgstr "Die Freiheitsgrade im Zähler der F-Verteilung."
+
+#. mdFof
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_LT"
+msgid "degrees_freedom_2"
+msgstr "Freiheitsgrade_2"
+
+#. GvYvE
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_LT"
+msgid "The degrees of freedom in the denominator of the F distribution."
+msgstr "Die Freiheitsgrade im Nenner der F-Verteilung."
+
+#. Ab33s
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_RT"
+msgid "Values of the inverse right tail F distribution."
+msgstr "Werte der inversen rechtsseitigen F-Verteilung."
+
+#. PTTp4
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_RT"
+msgid "number"
+msgstr "Zahl"
+
+#. AB6gZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_RT"
+msgid ""
+"The probability value for which the inverse F distribution is to be "
+"calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse F-Verteilung berechnet "
+"werden soll."
+
+#. deFrE
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_RT"
+msgid "degrees_freedom_1"
+msgstr "Freiheitsgrade_1"
+
+#. W5XD8
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_RT"
+msgid "The degrees of freedom in the numerator of the F distribution."
+msgstr "Die Freiheitsgrade im Zähler der F-Verteilung."
+
+#. jcStn
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_RT"
+msgid "degrees_freedom_2"
+msgstr "Freiheitsgrade_2"
+
+#. pHY8v
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_INV_RT"
+msgid "The degrees of freedom in the denominator of the F distribution."
+msgstr "Die Freiheitsgrade im Nenner der F-Verteilung."
+
+#. EPpFa
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_DIST"
+msgid "Returns the right-tail probability of the chi-square distribution."
+msgstr ""
+"Liefert die rechtsseitige Wahrscheinlichkeit der Chi-Quadrat-Verteilung."
+
+#. sASJa
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_DIST"
+msgid "Number"
+msgstr "Zahl"
+
+#. aLsFJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_DIST"
+msgid "The value for which the chi square distribution is to be calculated."
+msgstr "Der Wert, zu dem die Chi-Quadrat-Verteilung berechnet werden soll."
+
+#. 6EDde
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_DIST"
+msgid "degrees_freedom"
+msgstr "Freiheitsgrade"
+
+#. fp4Bb
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_DIST"
+msgid "The degrees of freedom of the chi square distribution."
+msgstr "Die Freiheitsgrade der Chi-Quadrat-Verteilung."
+
+#. DhUAr
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_DIST_MS"
+msgid "Returns the right-tail probability of the chi-square distribution."
+msgstr ""
+"Liefert die rechtsseitige Wahrscheinlichkeit der Chi-Quadrat-Verteilung."
+
+#. DnW2U
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_DIST_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. pocbP
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_DIST_MS"
+msgid "The value for which the chi square distribution is to be calculated."
+msgstr "Der Wert, zu dem die Chi-Quadrat-Verteilung berechnet werden soll."
+
+#. yBuqc
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_DIST_MS"
+msgid "degrees_freedom"
+msgstr "Freiheitsgrade"
+
+#. HkQSM
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_DIST_MS"
+msgid "The degrees of freedom of the chi square distribution."
+msgstr "Die Freiheitsgrade der Chi-Quadrat-Verteilung."
+
+#. 6tL8y
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST"
+msgid ""
+"Returns left-tail probability of the cumulative distribution function or "
+"values of the probability density function of the chi-square distribution."
+msgstr ""
+"Liefert Werte der linksseitigen Verteilungsfunktion oder Werte der "
+"Wahrscheinlichkeitsdichtefunktion der Chi-Quadrat-Verteilung."
+
+#. 9GsxA
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST"
+msgid "Number"
+msgstr "Zahl"
+
+#. wjQVM
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST"
+msgid ""
+"The value for which the probability density function or cumulative "
+"distribution function is to be calculated."
+msgstr ""
+"Der Wert, für den die Wahrscheinlichkeitsdichtefunktion oder die kumulative "
+"Verteilungsfunktion berechnet wird."
+
+#. h4QjX
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST"
+msgid "Degrees of Freedom"
+msgstr "Freiheitsgrade"
+
+#. LGdRH
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST"
+msgid "The degrees of freedom of the chi-square distribution."
+msgstr "Freiheitsgrade der Chi-Quadrat-Verteilung."
+
+#. LnN7o
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. 8vo6m
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST"
+msgid ""
+"0 or FALSE calculates the probability density function. Any other value or "
+"TRUE or omitted calculates the cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere "
+"Wert, WAHR oder ein fehlender Wert berechnet die kumulierte "
+"Verteilungsfunktion."
+
+#. reAtC
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST_MS"
+msgid ""
+"Returns left-tail probability of the cumulative distribution function or "
+"values of the probability density function of the chi-square distribution."
+msgstr ""
+"Liefert Werte der linksseitigen Verteilungsfunktion oder Werte der "
+"Wahrscheinlichkeitsdichtefunktion der Chi-Quadrat-Verteilung."
+
+#. DrvkR
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST_MS"
+msgid "Number"
+msgstr "Zahl"
+
+#. VizLc
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST_MS"
+msgid ""
+"The value for which the probability density function or cumulative "
+"distribution function is to be calculated."
+msgstr ""
+"Der Wert, für den die Wahrscheinlichkeitsdichtefunktion oder die kumulative "
+"Verteilungsfunktion berechnet wird."
+
+#. D4xte
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST_MS"
+msgid "Degrees of Freedom"
+msgstr "Freiheitsgrade"
+
+#. GDZpd
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST_MS"
+msgid "The degrees of freedom of the chi-square distribution."
+msgstr "Freiheitsgrade der Chi-Quadrat-Verteilung."
+
+#. fgBPQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST_MS"
+msgid "Cumulative"
+msgstr "Kumuliert"
+
+#. hwNnE
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_DIST_MS"
+msgid ""
+"0 or FALSE calculates the probability density function. Any other value or "
+"TRUE calculates the cumulative distribution function."
+msgstr ""
+"0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere "
+"Wert oder WAHR berechnet die kumulierte Verteilungsfunktion."
+
+#. zGN5H
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_INV"
+msgid "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."
+msgstr "Werte der Inversen von CHIVERT(x; Freiheitsgrade)."
+
+#. yAMm7
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_INV"
+msgid "number"
+msgstr "Zahl"
+
+#. QWfxh
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_INV"
+msgid ""
+"The probability value for which the inverse chi square distribution is to be"
+" calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse Chi-Quadrat-Verteilung "
+"berechnet werden soll."
+
+#. CzJ2o
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_INV"
+msgid "degrees_freedom"
+msgstr "Freiheitsgrade"
+
+#. jdv4f
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_INV"
+msgid "The degrees of freedom of the chi square distribution."
+msgstr "Die Freiheitsgrade der Chi-Quadrat-Verteilung."
+
+#. AqhLE
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_INV_MS"
+msgid "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."
+msgstr "Werte der Inversen von CHIVERT(x; Freiheitsgrade)."
+
+#. aQDwh
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_INV_MS"
+msgid "number"
+msgstr "Zahl"
+
+#. fv25C
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_INV_MS"
+msgid ""
+"The probability value for which the inverse chi square distribution is to be"
+" calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse Chi-Quadrat-Verteilung "
+"berechnet werden soll."
+
+#. ucScG
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_INV_MS"
+msgid "degrees_freedom"
+msgstr "Freiheitsgrade"
+
+#. TBGPq
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_INV_MS"
+msgid "The degrees of freedom of the chi square distribution."
+msgstr "Die Freiheitsgrade der Chi-Quadrat-Verteilung."
+
+#. vA5pq
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_INV"
+msgid "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())."
+msgstr "Werte der inversen Funktion für CHIQUVERT(x;Freiheitsgrade;WAHR())."
+
+#. ZKhAF
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_INV"
+msgid "Probability"
+msgstr "Wahrscheinlichkeit"
+
+#. x8dMV
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_INV"
+msgid ""
+"The probability value for which the inverse of the chi square distribution "
+"is to be calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse Chi-Quadrat-Verteilung "
+"berechnet werden soll."
+
+#. AebLU
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_INV"
+msgid "Degrees of Freedom"
+msgstr "Freiheitsgrade"
+
+#. 5nK9R
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_INV"
+msgid "The degrees of freedom of the chi square distribution."
+msgstr "Die Freiheitsgrade der Chi-Quadrat-Verteilung."
+
+#. M8PMA
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_INV_MS"
+msgid "Values of the inverse of CHISQ.DIST(x;DegreesOfFreedom;TRUE())."
+msgstr "Werte der inversen Funktion für CHIQU.VERT(x;Freiheitsgrade;WAHR())."
+
+#. 4TDNd
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_INV_MS"
+msgid "Probability"
+msgstr "Wahrscheinlichkeit"
+
+#. Ux2Ly
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_INV_MS"
+msgid ""
+"The probability value for which the inverse of the chi square distribution "
+"is to be calculated."
+msgstr ""
+"Der Wahrscheinlichkeitswert, zu dem die inverse Chi-Quadrat-Verteilung "
+"berechnet werden soll."
+
+#. jEF5F
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_INV_MS"
+msgid "Degrees of Freedom"
+msgstr "Freiheitsgrade"
+
+#. NXEiP
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHISQ_INV_MS"
+msgid "The degrees of freedom of the chi square distribution."
+msgstr "Die Freiheitsgrade der Chi-Quadrat-Verteilung."
+
+#. ycGVn
+#: scfuncs.src
+msgctxt "SC_OPCODE_STANDARD"
+msgid "Converts a random variable to a normalized value."
+msgstr "Umrechnung einer Zufallsvariablen auf standardisierte Werte."
+
+#. FXUuo
+#: scfuncs.src
+msgctxt "SC_OPCODE_STANDARD"
+msgid "Number"
+msgstr "Zahl"
+
+#. 8yf6s
+#: scfuncs.src
+msgctxt "SC_OPCODE_STANDARD"
+msgid "The value to be standardized."
+msgstr "Der Wert, der standardisiert werden soll."
+
+#. sbhUb
+#: scfuncs.src
+msgctxt "SC_OPCODE_STANDARD"
+msgid "mean"
+msgstr "MW"
+
+#. Bh7dX
+#: scfuncs.src
+msgctxt "SC_OPCODE_STANDARD"
+msgid "The mean value used for moving."
+msgstr "Der Mittelwert, um den verschoben wird."
+
+#. HvYmB
+#: scfuncs.src
+msgctxt "SC_OPCODE_STANDARD"
+msgid "STDEV"
+msgstr "STABW"
+
+#. dqC4E
+#: scfuncs.src
+msgctxt "SC_OPCODE_STANDARD"
+msgid "The standard deviation used for scaling."
+msgstr "Die Standardabweichung, um die skaliert wird."
+
+#. bDxG9
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERMUT"
+msgid ""
+"Returns the number of permutations for a given number of elements without "
+"repetition."
+msgstr "Berechnet die Anzahl der Variationen von Elementen ohne Wiederholung."
+
+#. rKKyb
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERMUT"
+msgid "Count_1"
+msgstr "Anzahl 1"
+
+#. Mhy9M
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERMUT"
+msgid "The total number of elements."
+msgstr "Gesamtanzahl der Elemente."
+
+#. URewA
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERMUT"
+msgid "Count_2"
+msgstr "Anzahl 2"
+
+#. B6kTa
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERMUT"
+msgid "The selection number taken from the elements."
+msgstr "Anzahl der ausgewählten Elemente."
+
+#. Gd89a
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERMUTATION_A"
+msgid ""
+"Returns the number of permutations for a given number of objects (repetition"
+" allowed)."
+msgstr ""
+"Berechnet die Anzahl der Variationen von Elementen (mit Wiederholung)."
+
+#. XwBiA
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERMUTATION_A"
+msgid "Count_1"
+msgstr "Anzahl 1"
+
+#. fddDy
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERMUTATION_A"
+msgid "The total number of elements."
+msgstr "Gesamtanzahl der Elemente."
+
+#. yuykb
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERMUTATION_A"
+msgid "Count_2"
+msgstr "Anzahl 2"
+
+#. TRZcL
+#: scfuncs.src
+msgctxt "SC_OPCODE_PERMUTATION_A"
+msgid "The selection number taken from the elements."
+msgstr "Anzahl der ausgewählten Elemente."
+
+#. mC7Bc
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE"
+msgid "Returns a (1-alpha) confidence interval for a normal distribution."
+msgstr "Berechnet ein (1-alpha)-Konfidenzintervall einer Normalverteilung."
+
+#. GCDMZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE"
+msgid "alpha"
+msgstr "Alpha"
+
+#. Szx4d
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE"
+msgid "The level of the confidence interval."
+msgstr "Das Niveau des Konfidenzintervalls."
+
+#. ChCsC
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE"
+msgid "STDEV"
+msgstr "STABW"
+
+#. NZFsb
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE"
+msgid "The standard deviation of the population."
+msgstr "Die Standardabweichung der Grundgesamtheit."
+
+#. xjBAY
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE"
+msgid "size"
+msgstr "Größe"
+
+#. jsKiq
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE"
+msgid "The size of the population."
+msgstr "Die Größe der Grundgesamtheit."
+
+#. hdBGE
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_N"
+msgid "Returns a (1-alpha) confidence interval for a normal distribution."
+msgstr "Berechnet ein (1-alpha)-Konfidenzintervall einer Normalverteilung."
+
+#. UvX5G
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_N"
+msgid "alpha"
+msgstr "Alpha"
+
+#. iFajV
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_N"
+msgid "The level of the confidence interval."
+msgstr "Das Niveau des Konfidenzintervalls."
+
+#. YJwYV
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_N"
+msgid "STDEV"
+msgstr "STABW"
+
+#. yFes5
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_N"
+msgid "The standard deviation of the population."
+msgstr "Die Standardabweichung der Grundgesamtheit."
+
+#. LVdAS
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_N"
+msgid "size"
+msgstr "Größe"
+
+#. 6dDs8
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_N"
+msgid "The size of the population."
+msgstr "Die Größe der Grundgesamtheit."
+
+#. zAcVE
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_T"
+msgid ""
+"Returns a (1-alpha) confidence interval for a Student's t distribution."
+msgstr ""
+"Berechnet ein (1-alpha)-Konfidenzintervall einer studentischen t-Verteilung."
+
+#. UkAhF
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_T"
+msgid "alpha"
+msgstr "Alpha"
+
+#. yBpFn
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_T"
+msgid "The level of the confidence interval."
+msgstr "Das Niveau des Konfidenzintervalls."
+
+#. YGBES
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_T"
+msgid "STDEV"
+msgstr "STABW"
+
+#. 5xFoF
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_T"
+msgid "The standard deviation of the population."
+msgstr "Die Standardabweichung der Grundgesamtheit."
+
+#. 8WKV3
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_T"
+msgid "size"
+msgstr "Größe"
+
+#. czDyb
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONFIDENCE_T"
+msgid "The size of the population."
+msgstr "Die Größe der Grundgesamtheit."
+
+#. cFdps
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST"
+msgid ""
+"Calculates the probability of observing a z-statistic greater than the one "
+"computed based on a sample."
+msgstr ""
+"Berechnet die Wahrscheinlichkeit einer z-Statistik, die größer als die auf "
+"Basis der Stichprobe errechneten ist."
+
+#. yZgpC
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST"
+msgid "data"
+msgstr "Daten"
+
+#. pbALa
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST"
+msgid "The given sample, drawn from a normally distributed population."
+msgstr ""
+"Die Stichprobe, die aus einer normalverteilten Grundgesamtheit gewählt "
+"wurde."
+
+#. j6cxd
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST"
+msgid "mu"
+msgstr "my"
+
+#. fgaDX
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST"
+msgid "The known mean of the population."
+msgstr "Der bekannte Mittelwert der Grundgesamtheit."
+
+#. ZngJE
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST"
+msgid "sigma"
+msgstr "sigma"
+
+#. wFiKZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST"
+msgid ""
+"The known standard deviation of the population. If omitted, the standard "
+"deviation of the given sample is used."
+msgstr ""
+"Die bekannte Standardabweichung der Grundgesamtheit. Falls nicht anders "
+"angegeben, wird die Standardabweichung der Stichprobe angenommen."
+
+#. wxJ43
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST_MS"
+msgid ""
+"Calculates the probability of observing a z-statistic greater than the one "
+"computed based on a sample."
+msgstr ""
+"Berechnet die Wahrscheinlichkeit des Beobachtens einer Z-Statistik, die "
+"größer ist als die auf einem Beispiel berechnete."
+
+#. AukFv
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST_MS"
+msgid "data"
+msgstr "Daten"
+
+#. qG2z4
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST_MS"
+msgid "The given sample, drawn from a normally distributed population."
+msgstr ""
+"Die Stichprobe, die aus einer normalverteilten Grundgesamtheit gewählt "
+"wurde."
+
+#. Bj2P8
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST_MS"
+msgid "mu"
+msgstr "my"
+
+#. sXzNL
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST_MS"
+msgid "The known mean of the population."
+msgstr "Der bekannte Mittelwert der Grundgesamtheit."
+
+#. Bxo8Y
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST_MS"
+msgid "sigma"
+msgstr "sigma"
+
+#. XGeXM
+#: scfuncs.src
+msgctxt "SC_OPCODE_Z_TEST_MS"
+msgid ""
+"The known standard deviation of the population. If omitted, the standard "
+"deviation of the given sample is used."
+msgstr ""
+"Die bekannte Standardabweichung der Population. Falls fehlend, wird die "
+"Standardabweichung des gegebenen Beispiels benutzt."
+
+#. msJXN
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_TEST"
+msgid "Returns the chi square independence test."
+msgstr "Berechnet den Chi-Quadrat-Unabhängigkeitstest."
+
+#. TC8P5
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_TEST"
+msgid "Data_B"
+msgstr "Daten_B"
+
+#. 9ECN3
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_TEST"
+msgid "The observed data array."
+msgstr "Die Matrix der beobachteten Daten."
+
+#. EAFGw
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_TEST"
+msgid "data_E"
+msgstr "Daten_E"
+
+#. E4yRB
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_TEST"
+msgid "The expected data array."
+msgstr "Die Matrix der erwarteten Daten."
+
+#. 34jxF
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_TEST_MS"
+msgid "Returns the chi square independence test."
+msgstr "Berechnet den Chi-Quadrat-Unabhängigkeitstest."
+
+#. YabE7
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_TEST_MS"
+msgid "Data_B"
+msgstr "Daten_B"
+
+#. zmUWQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_TEST_MS"
+msgid "The observed data array."
+msgstr "Die Matrix der beobachteten Daten."
+
+#. DcS7y
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_TEST_MS"
+msgid "data_E"
+msgstr "Daten_E"
+
+#. NwGZE
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHI_TEST_MS"
+msgid "The expected data array."
+msgstr "Die Matrix der erwarteten Daten."
+
+#. CfCjB
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_TEST"
+msgid "Calculates the F test."
+msgstr "Berechnet den F-Varianztest."
+
+#. 3e4HL
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_TEST"
+msgid "data_1"
+msgstr "Daten_1"
+
+#. YfKrA
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_TEST"
+msgid "The first record array."
+msgstr "Die Matrix des ersten Datensatzes."
+
+#. JcpFV
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_TEST"
+msgid "data_2"
+msgstr "Daten_2"
+
+#. DdRTF
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_TEST"
+msgid "The second record array."
+msgstr "Die Matrix des zweiten Datensatzes."
+
+#. xAyB8
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_TEST_MS"
+msgid "Calculates the F test."
+msgstr "Berechnet den F-Varianztest."
+
+#. G3AaD
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_TEST_MS"
+msgid "data_1"
+msgstr "Daten_1"
+
+#. tEFdd
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_TEST_MS"
+msgid "The first record array."
+msgstr "Die Matrix des ersten Datensatzes."
+
+#. D5Xco
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_TEST_MS"
+msgid "data_2"
+msgstr "Daten_2"
+
+#. NcENT
+#: scfuncs.src
+msgctxt "SC_OPCODE_F_TEST_MS"
+msgid "The second record array."
+msgstr "Die Matrix des zweiten Datensatzes."
+
+#. TZSAL
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST"
+msgid "Calculates the T test."
+msgstr "Berechnet den t-Test."
+
+#. mUCTg
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST"
+msgid "data_1"
+msgstr "Daten_1"
+
+#. E6YmJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST"
+msgid "The first record array."
+msgstr "Die Matrix des ersten Datensatzes."
+
+#. bWZVH
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST"
+msgid "data_2"
+msgstr "Daten_2"
+
+#. 2scEP
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST"
+msgid "The second record array."
+msgstr "Die Matrix des zweiten Datensatzes."
+
+#. jrq6t
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST"
+msgid "mode"
+msgstr "Modus"
+
+#. VvhaK
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST"
+msgid ""
+"Mode specifies the number of distribution tails to return. 1= one-tailed, 2 "
+"= two-tailed distribution"
+msgstr ""
+"Modus legt die Anzahl der zu berechnenden Verteilungsseiten fest. Modus = 1 "
+"berechnet die einseitige, Modus = 2 die zweiseitige Verteilung."
+
+#. fYNDT
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST"
+msgid "Type"
+msgstr "Art"
+
+#. cKsJd
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST"
+msgid "The type of the T test."
+msgstr "Der Typ des t-Tests."
+
+#. 692Pk
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST_MS"
+msgid "Calculates the T test."
+msgstr "Berechnet den t-Test."
+
+#. Cf2Af
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST_MS"
+msgid "data_1"
+msgstr "Daten_1"
+
+#. F5qSy
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST_MS"
+msgid "The first record array."
+msgstr "Die Matrix des ersten Datensatzes."
+
+#. BdnCE
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST_MS"
+msgid "data_2"
+msgstr "Daten_2"
+
+#. D6yiE
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST_MS"
+msgid "The second record array."
+msgstr "Die Matrix des zweiten Datensatzes."
+
+#. JxNwf
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST_MS"
+msgid "mode"
+msgstr "Modus"
+
+#. t8ViT
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST_MS"
+msgid ""
+"Mode specifies the number of distribution tails to return. 1= one-tailed, 2 "
+"= two-tailed distribution"
+msgstr ""
+"Modus legt die Anzahl der zu berechnenden Verteilungsseiten fest. Modus = 1 "
+"berechnet die einseitige, Modus = 2 die zweiseitige Verteilung."
+
+#. 5Sqnp
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST_MS"
+msgid "Type"
+msgstr "Art"
+
+#. iJaCD
+#: scfuncs.src
+msgctxt "SC_OPCODE_T_TEST_MS"
+msgid "The type of the T test."
+msgstr "Der Typ des t-Tests."
+
+#. GLrcB
+#: scfuncs.src
+msgctxt "SC_OPCODE_RSQ"
+msgid ""
+"Returns the square of the Pearson product moment correlation coefficient."
+msgstr ""
+"Berechnet den Pearsonschen Korrelationskoeffizienten in quadrierter Form."
+
+#. CCLYs
+#: scfuncs.src
+msgctxt "SC_OPCODE_RSQ"
+msgid "data_Y"
+msgstr "Daten_Y"
+
+#. cDSEe
+#: scfuncs.src
+msgctxt "SC_OPCODE_RSQ"
+msgid "The Y data array."
+msgstr "Die Matrix der Y-Daten."
+
+#. wAAZg
+#: scfuncs.src
+msgctxt "SC_OPCODE_RSQ"
+msgid "data_X"
+msgstr "Daten_X"
+
+#. hcEaB
+#: scfuncs.src
+msgctxt "SC_OPCODE_RSQ"
+msgid "The X data array."
+msgstr "Die Matrix der X-Daten."
+
+#. EeGGQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_INTERCEPT"
+msgid "Returns the intercept of the linear regression line and the Y axis."
+msgstr "Berechnet den Schnittpunkt der Regressionsgeraden mit der Y-Achse."
+
+#. JbQ68
+#: scfuncs.src
+msgctxt "SC_OPCODE_INTERCEPT"
+msgid "data_Y"
+msgstr "Daten_Y"
+
+#. WXipw
+#: scfuncs.src
+msgctxt "SC_OPCODE_INTERCEPT"
+msgid "The Y data array."
+msgstr "Die Matrix der Y-Daten."
+
+#. gdE5A
+#: scfuncs.src
+msgctxt "SC_OPCODE_INTERCEPT"
+msgid "data_X"
+msgstr "Daten_X"
+
+#. T4PDz
+#: scfuncs.src
+msgctxt "SC_OPCODE_INTERCEPT"
+msgid "The X data array."
+msgstr "Die Matrix der X-Daten."
+
+#. DCeGA
+#: scfuncs.src
+msgctxt "SC_OPCODE_SLOPE"
+msgid "Returns the slope of the linear regression line."
+msgstr "Berechnet die Steigung der Regressionsgeraden."
+
+#. 2ijLF
+#: scfuncs.src
+msgctxt "SC_OPCODE_SLOPE"
+msgid "data_Y"
+msgstr "Daten_Y"
+
+#. uaECq
+#: scfuncs.src
+msgctxt "SC_OPCODE_SLOPE"
+msgid "The Y data array."
+msgstr "Die Matrix der Y-Daten."
+
+#. qkUMK
+#: scfuncs.src
+msgctxt "SC_OPCODE_SLOPE"
+msgid "data_X"
+msgstr "Daten_X"
+
+#. xFSqB
+#: scfuncs.src
+msgctxt "SC_OPCODE_SLOPE"
+msgid "The X data array."
+msgstr "Die Matrix der X-Daten."
+
+#. xfNoa
+#: scfuncs.src
+msgctxt "SC_OPCODE_STEYX"
+msgid "Returns the standard error of the linear regression."
+msgstr "Berechnet den Standardfehler bei der linearen Regression."
+
+#. ZGDJ7
+#: scfuncs.src
+msgctxt "SC_OPCODE_STEYX"
+msgid "data_Y"
+msgstr "Daten_Y"
+
+#. iURZt
+#: scfuncs.src
+msgctxt "SC_OPCODE_STEYX"
+msgid "The Y data array."
+msgstr "Die Matrix der Y-Daten."
+
+#. BEzKB
+#: scfuncs.src
+msgctxt "SC_OPCODE_STEYX"
+msgid "data_X"
+msgstr "Daten_X"
+
+#. o5k38
+#: scfuncs.src
+msgctxt "SC_OPCODE_STEYX"
+msgid "The X data array."
+msgstr "Die Matrix der X-Daten."
+
+#. pamGW
+#: scfuncs.src
+msgctxt "SC_OPCODE_PEARSON"
+msgid "Returns the Pearson product moment correlation coefficient."
+msgstr "Berechnet den Pearsonschen Korrelationskoeffizienten."
+
+#. xMtR9
+#: scfuncs.src
+msgctxt "SC_OPCODE_PEARSON"
+msgid "Data_1"
+msgstr "Daten_1"
+
+#. RAEvh
+#: scfuncs.src
+msgctxt "SC_OPCODE_PEARSON"
+msgid "The first record array."
+msgstr "Die Matrix des ersten Datensatzes."
+
+#. WPGPj
+#: scfuncs.src
+msgctxt "SC_OPCODE_PEARSON"
+msgid "Data_2"
+msgstr "Daten_2"
+
+#. EEAuv
+#: scfuncs.src
+msgctxt "SC_OPCODE_PEARSON"
+msgid "The second record array."
+msgstr "Die Matrix des zweiten Datensatzes."
+
+#. WDcKB
+#: scfuncs.src
+msgctxt "SC_OPCODE_CORREL"
+msgid "Returns the correlation coefficient."
+msgstr "Berechnet den Korrelationskoeffizienten."
+
+#. e632B
+#: scfuncs.src
+msgctxt "SC_OPCODE_CORREL"
+msgid "Data_1"
+msgstr "Daten_1"
+
+#. 7VtBm
+#: scfuncs.src
+msgctxt "SC_OPCODE_CORREL"
+msgid "The first record array."
+msgstr "Die Matrix des ersten Datensatzes."
+
+#. p4q4a
+#: scfuncs.src
+msgctxt "SC_OPCODE_CORREL"
+msgid "Data_2"
+msgstr "Daten_2"
+
+#. aNhvr
+#: scfuncs.src
+msgctxt "SC_OPCODE_CORREL"
+msgid "The second record array."
+msgstr "Die Matrix des zweiten Datensatzes."
+
+#. QR42t
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVAR"
+msgid "Calculates the population covariance."
+msgstr "Berechnet die Kovarianz einer Population."
+
+#. 3xCcA
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVAR"
+msgid "Data_1"
+msgstr "Daten_1"
+
+#. skBUc
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVAR"
+msgid "The first record array."
+msgstr "Die Matrix des ersten Datensatzes."
+
+#. Jrxai
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVAR"
+msgid "Data_2"
+msgstr "Daten_2"
+
+#. 2KRqV
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVAR"
+msgid "The second record array."
+msgstr "Die Matrix des zweiten Datensatzes."
+
+#. fbobA
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVARIANCE_P"
+msgid "Calculates the population covariance."
+msgstr "Berechnet die Kovarianz einer Population."
+
+#. GdJxY
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVARIANCE_P"
+msgid "Data_1"
+msgstr "Daten_1"
+
+#. AQzmF
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVARIANCE_P"
+msgid "The first record array."
+msgstr "Die Matrix des ersten Datensatzes."
+
+#. DffvR
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVARIANCE_P"
+msgid "Data_2"
+msgstr "Daten_2"
+
+#. 7Bt3T
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVARIANCE_P"
+msgid "The second record array."
+msgstr "Die Matrix des zweiten Datensatzes."
+
+#. 3L3ku
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVARIANCE_S"
+msgid "Calculates the sample covariance."
+msgstr "Berechnet die Beispielkovarianz."
+
+#. oE9Pa
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVARIANCE_S"
+msgid "Data_1"
+msgstr "Daten_1"
+
+#. VZuaM
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVARIANCE_S"
+msgid "The first record array."
+msgstr "Die Matrix des ersten Datensatzes."
+
+#. hCwRB
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVARIANCE_S"
+msgid "Data_2"
+msgstr "Daten_2"
+
+#. QPWqm
+#: scfuncs.src
+msgctxt "SC_OPCODE_COVARIANCE_S"
+msgid "The second record array."
+msgstr "Die Matrix des zweiten Datensatzes."
+
+#. BiBeC
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST"
+msgid "Returns a value along a linear regression"
+msgstr "Berechnet einen Wert auf der Regressionsgeraden."
+
+#. EfhSC
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST"
+msgid "value"
+msgstr "Wert"
+
+#. vQ4CY
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST"
+msgid ""
+"The X value for which the Y value on the regression linear is to be "
+"calculated."
+msgstr ""
+"Der X-Wert, zu dem der Y-Wert auf der Regressionsgeraden berechnet wird."
+
+#. YxDeW
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST"
+msgid "data_Y"
+msgstr "Daten_Y"
+
+#. 5dSvW
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST"
+msgid "The Y data array."
+msgstr "Die Matrix der Y-Daten."
+
+#. AvRfm
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST"
+msgid "data_X"
+msgstr "Daten_X"
+
+#. 2EEKK
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST"
+msgid "The X data array."
+msgstr "Die Matrix der X-Daten."
+
+#. XHpHo
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
+msgid ""
+"Calculates future value(s) using additive Exponential Smoothing algorithm."
+msgstr ""
+"Berechnet zukünftige(n) Wert(e) unter Verwendung der additiven "
+"exponentiellen Glättung."
+
+#. 9KKpU
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
+msgid "target"
+msgstr "Stellen"
+
+#. j3uBB
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
+msgid "The date (array) for which you want to predict a value."
+msgstr "Das Datum (Matix), für welches der Wert berechnet werden soll."
+
+#. kFRWx
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
+msgid "values"
+msgstr "Werte"
+
+#. NxuDU
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
+msgid "The data array from which you want to forecast."
+msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
+
+#. yDezv
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
+msgid "timeline"
+msgstr "Zeitraum"
+
+#. 9FNwQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
+msgid "The date or numeric array; a consistent step between values is needed."
+msgstr ""
+"Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen "
+"den Werten ist notwendig."
+
+#. dh4m5
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
+msgid "period length"
+msgstr "Periodenlänge"
+
+#. GFGx6
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
+msgid ""
+"Number of Samples in Period (default 1); length of the seasonal pattern."
+msgstr "Anzahl an Proben pro Periode (Standardwert: 1); Länge der Periode."
+
+#. opYZM
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
+msgid "data completion"
+msgstr "Vervollständigung"
+
+#. yxmfo
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
+msgid ""
+"Data completion (default 1); 0 treats missing points as zero, 1 "
+"interpolates."
+msgstr ""
+"Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1"
+" interpoliert sie."
+
+#. PqNWU
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
+msgid "aggregation"
+msgstr "Näherung"
+
+#. BSPXj
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
+msgid ""
+"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
+"(time) values."
+msgstr ""
+"Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von "
+"(Zeit-) Werten verwendet wird."
+
+#. ZE4ec
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
+msgid ""
+"Calculates future value(s) using multiplicative Exponential Smoothing "
+"algorithm."
+msgstr ""
+"Berechnet zukünftige(n) Wert(e) unter Verwendung der multiplikativen "
+"exponentiellen Glättung."
+
+#. 2EmFi
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
+msgid "target"
+msgstr "Stellen"
+
+#. u9yCC
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
+msgid "The date (array) for which you want to predict a value."
+msgstr "Das Datum (Matix), für welches der Wert berechnet werden soll."
+
+#. u2oNe
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
+msgid "values"
+msgstr "Werte"
+
+#. wz4Wi
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
+msgid "The data array from which you want to forecast."
+msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
+
+#. TcPbX
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
+msgid "timeline"
+msgstr "Zeitraum"
+
+#. LK8MK
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
+msgid "The date or numeric array; a consistent step between values is needed."
+msgstr ""
+"Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen "
+"den Werten ist notwendig."
+
+#. CzVWp
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
+msgid "period length"
+msgstr "Periodenlänge"
+
+#. tuV9p
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
+msgid ""
+"Number of Samples in Period (default 1); length of the seasonal pattern."
+msgstr "Anzahl an Proben pro Periode (Standardwert: 1); Länge der Periode."
+
+#. o3ffN
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
+msgid "data completion"
+msgstr "Vervollständigung"
+
+#. 8j9pp
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
+msgid ""
+"Data completion (default 1); 0 treats missing points as zero, 1 "
+"interpolates."
+msgstr ""
+"Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1"
+" interpoliert sie."
+
+#. gA7G7
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
+msgid "aggregation"
+msgstr "Näherung"
+
+#. DLNXz
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
+msgid ""
+"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
+"(time) values."
+msgstr ""
+"Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von "
+"(Zeit-) Werten verwendet wird."
+
+#. JNrxu
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid ""
+"Returns a prediction interval at the specified target value(s) for additive "
+"Exponential Smoothing method"
+msgstr ""
+"Liefert zu (einem) vorgegebenen Zielwert(en) ein Vorhersageintervall unter "
+"Verwendung der additiven exponentiellen Glättung"
+
+#. fGAYm
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid "target"
+msgstr "Stellen"
+
+#. 5N352
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid "The date (array) for which you want to predict a value."
+msgstr "Das Datum (Matix), für welches der Wert berechnet werden soll."
+
+#. HLGnh
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid "values"
+msgstr "Werte"
+
+#. AB8YT
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid "The data array from which you want to forecast."
+msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
+
+#. GegzY
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid "timeline"
+msgstr "Zeitraum"
+
+#. egeiz
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid "The date or numeric array; a consistent step between values is needed."
+msgstr ""
+"Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen "
+"den Werten ist notwendig."
+
+#. Be6ZH
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid "confidence level"
+msgstr "Konfidenzintervall"
+
+#. AnyEk
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid ""
+"Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% "
+"calculated prediction interval."
+msgstr ""
+"Konfidenzintervall (Standardwert: 0,95); Wert zwischen 0 und 1 (exklusiv) "
+"für 0% bis 100% zur Berechnung des Vorhersageintervalls."
+
+#. 8nbwg
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid "period length"
+msgstr "Periodenlänge"
+
+#. gdQkL
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid ""
+"Number of Samples in Period (default 1); length of the seasonal pattern."
+msgstr "Anzahl an Proben pro Periode (Standardwert: 1); Länge der Periode."
+
+#. SGRFJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid "data completion"
+msgstr "Vervollständigung"
+
+#. WSnES
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid ""
+"Data completion (default 1); 0 treats missing points as zero, 1 "
+"interpolates."
+msgstr ""
+"Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1"
+" interpoliert sie."
+
+#. k9EHF
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid "aggregation"
+msgstr "Näherung"
+
+#. DHDcQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
+msgid ""
+"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
+"(time) values."
+msgstr ""
+"Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von "
+"(Zeit-) Werten verwendet wird."
+
+#. bFPyC
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid ""
+"Returns a prediction interval at the specified target value(s) for "
+"multiplicative Exponential Smoothing method"
+msgstr ""
+"Liefert zu (einem) vorgegebenen Zielwert(en) ein Vorhersageintervall unter "
+"Verwendung der multiplikativen exponentiellen Glättung"
+
+#. UVJE5
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid "target"
+msgstr "Stellen"
+
+#. EpyMY
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid "The date (array) for which you want to predict a value."
+msgstr "Das Datum (Matix), für welches der Wert berechnet werden soll."
+
+#. JhQRJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid "values"
+msgstr "Werte"
+
+#. TWBVi
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid "The data array from which you want to forecast."
+msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
+
+#. 2gSGN
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid "timeline"
+msgstr "Zeitraum"
+
+#. r2iNX
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid "The date or numeric array; a consistent step between values is needed."
+msgstr ""
+"Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen "
+"den Werten ist notwendig."
+
+#. M9ksd
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid "confidence level"
+msgstr "Konfidenzintervall"
+
+#. CuGJw
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid ""
+"Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% "
+"calculated prediction interval."
+msgstr ""
+"Konfidenzintervall (Standardwert: 0,95); Wert zwischen 0 und 1 (exklusiv) "
+"für 0% bis 100% zur Berechnung des Vorhersageintervalls."
+
+#. VDDSd
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid "period length"
+msgstr "Periodenlänge"
+
+#. v4qC7
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid ""
+"Number of Samples in Period (default 1); length of the seasonal pattern."
+msgstr "Anzahl an Proben pro Periode (Standardwert: 1); Länge der Periode."
+
+#. BqK9f
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid "data completion"
+msgstr "Vervollständigung"
+
+#. cEkQY
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid ""
+"Data completion (default 1); 0 treats missing points as zero, 1 "
+"interpolates."
+msgstr ""
+"Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1"
+" interpoliert sie."
+
+#. bhysh
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid "aggregation"
+msgstr "Näherung"
+
+#. zUo5Q
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
+msgid ""
+"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
+"(time) values."
+msgstr ""
+"Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von "
+"(Zeit-) Werten verwendet wird."
+
+#. SN7GC
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
+msgid ""
+"Calculates the number of samples in period (season) using additive "
+"Exponential Triple Smoothing algorithm."
+msgstr ""
+"Berechnet die Anzahl an Proben pro Periode (Saison) unter Verwendung der "
+"additiven exponentiellen Glättung."
+
+#. StMnU
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
+msgid "values"
+msgstr "Werte"
+
+#. EwPnV
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
+msgid "The data array from which you want to forecast."
+msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
+
+#. JecTu
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
+msgid "timeline"
+msgstr "Zeitraum"
+
+#. FhYX9
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
+msgid "The date or numeric array; a consistent step between values is needed."
+msgstr ""
+"Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen "
+"den Werten ist notwendig."
+
+#. 49zX8
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
+msgid "data completion"
+msgstr "Vervollständigung"
+
+#. EFtF8
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
+msgid ""
+"Data completion (default 1); 0 treats missing points as zero, 1 "
+"interpolates."
+msgstr ""
+"Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1"
+" interpoliert sie."
+
+#. 7XMoF
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
+msgid "aggregation"
+msgstr "Näherung"
+
+#. DBEmf
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
+msgid ""
+"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
+"(time) values."
+msgstr ""
+"Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von "
+"(Zeit-) Werten verwendet wird."
+
+#. c2bd2
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STA"
+msgid ""
+"Returns statistical value(s) using additive Exponential Smoothing algorithm."
+msgstr ""
+"Gibt (einen) statistische(n) Wert(e) unter Verwendung der additiven "
+"exponentiellen Glättung zurück."
+
+#. k3FLs
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STA"
+msgid "values"
+msgstr "Werte"
+
+#. TDZmA
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STA"
+msgid "The data array from which you want to forecast."
+msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
+
+#. DzdRE
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STA"
+msgid "timeline"
+msgstr "Zeitraum"
+
+#. bEes4
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STA"
+msgid "The date or numeric array; a consistent step between values is needed."
+msgstr ""
+"Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen "
+"den Werten ist notwendig."
+
+#. ytjpN
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STA"
+msgid "statistic type"
+msgstr "Statistiktyp"
+
+#. F7YmU
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STA"
+msgid ""
+"Value (1-9) or array of values, indicating which statistic will be returned "
+"for the calculated forecast"
+msgstr ""
+"Wert (1-9) bzw. Matrix mit Werten, der angibt, wecher Statistikwert für die "
+"zu berechnende Prognose zurückgegeben werden soll"
+
+#. 5AuSk
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STA"
+msgid "period length"
+msgstr "Periodenlänge"
+
+#. DCr83
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STA"
+msgid ""
+"Number of Samples in Period (default 1); length of the seasonal pattern."
+msgstr "Anzahl an Proben pro Periode (Standardwert: 1); Länge der Periode."
+
+#. LVxs7
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STA"
+msgid "data completion"
+msgstr "Vervollständigung"
+
+#. AAdQ3
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STA"
+msgid ""
+"Data completion (default 1); 0 treats missing points as zero, 1 "
+"interpolates."
+msgstr ""
+"Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1"
+" interpoliert sie."
+
+#. vjYLF
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STA"
+msgid "aggregation"
+msgstr "Näherung"
+
+#. 3d8ES
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STA"
+msgid ""
+"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
+"(time) values."
+msgstr ""
+"Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von "
+"(Zeit-) Werten verwendet wird."
+
+#. deJuC
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STM"
+msgid ""
+"Returns statistical value(s) using multiplicative Exponential Smoothing "
+"algorithm."
+msgstr ""
+"Gibt (einen) statistische(n) Wert(e) unter Verwendung der multiplikativen "
+"exponentiellen Glättung zurück."
+
+#. wqRjF
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STM"
+msgid "values"
+msgstr "Werte"
+
+#. AwcpJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STM"
+msgid "The data array from which you want to forecast."
+msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
+
+#. P3XAg
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STM"
+msgid "timeline"
+msgstr "Zeitraum"
+
+#. wUiFY
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STM"
+msgid "The date or numeric array; a consistent step between values is needed."
+msgstr ""
+"Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen "
+"den Werten ist notwendig."
+
+#. qoNxu
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STM"
+msgid "statistic type"
+msgstr "Statistiktyp"
+
+#. FAGyf
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STM"
+msgid ""
+"Value (1-9) or array of values, indicating which statistic will be returned "
+"for the calculated forecast"
+msgstr ""
+"Wert (1-9) bzw. Matrix mit Werten, der angibt, wecher Statistikwert für die "
+"zu berechnende Prognose zurückgegeben werden soll"
+
+#. Sg2wq
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STM"
+msgid "period length"
+msgstr "Periodenlänge"
+
+#. uLBkK
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STM"
+msgid ""
+"Number Of Samples in Period (default 1); length of the seasonal pattern."
+msgstr "Anzahl an Proben pro Periode (Standardwert: 1); Länge der Periode."
+
+#. d3rym
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STM"
+msgid "data completion"
+msgstr "Vervollständigung"
+
+#. 8WfE5
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STM"
+msgid ""
+"Data completion (default 1); 0 treats missing points as zero, 1 "
+"interpolates."
+msgstr ""
+"Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1"
+" interpoliert sie."
+
+#. ZGEnh
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STM"
+msgid "aggregation"
+msgstr "Näherung"
+
+#. FQxVS
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_ETS_STM"
+msgid ""
+"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical "
+"(time) values."
+msgstr ""
+"Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von "
+"(Zeit-) Werten verwendet wird."
+
+#. KdhBr
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_LIN"
+msgid "Returns a value along a linear regression"
+msgstr "Berechnet einen Wert auf der Regressionsgeraden"
+
+#. QCaT5
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_LIN"
+msgid "value"
+msgstr "Wert"
+
+#. 2SBHF
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_LIN"
+msgid ""
+"The X value for which the Y value on the regression linear is to be "
+"calculated."
+msgstr ""
+"Der X-Wert, zu dem der Y-Wert auf der Regressionsgeraden berechnet werden "
+"soll."
+
+#. TZLcb
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_LIN"
+msgid "data_Y"
+msgstr "Daten_Y"
+
+#. peRhT
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_LIN"
+msgid "The Y data array."
+msgstr "Die Matrix der Y-Daten."
+
+#. HXAdx
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_LIN"
+msgid "data_X"
+msgstr "Daten_X"
+
+#. mBkBN
+#: scfuncs.src
+msgctxt "SC_OPCODE_FORECAST_LIN"
+msgid "The X data array."
+msgstr "Die Matrix der X-Daten."
+
+#. 5KaAD
+#: scfuncs.src
+msgctxt "SC_OPCODE_ADDRESS"
+msgid "Returns the reference to a cell as text."
+msgstr "Bestimmt den Bezug auf eine Zelle als Text."
+
+#. 8vACG
+#: scfuncs.src
+msgctxt "SC_OPCODE_ADDRESS"
+msgid "row"
+msgstr "Zeile"
+
+#. txqX5
+#: scfuncs.src
+msgctxt "SC_OPCODE_ADDRESS"
+msgid "The row number of the cell."
+msgstr "Die Zeilennummer der Zelle."
+
+#. 7K6DD
+#: scfuncs.src
+msgctxt "SC_OPCODE_ADDRESS"
+msgid "column"
+msgstr "Spalte"
+
+#. aSeXE
+#: scfuncs.src
+msgctxt "SC_OPCODE_ADDRESS"
+msgid "The column number of the cell."
+msgstr "Die Spaltennummer der Zelle."
+
+#. AC8DD
+#: scfuncs.src
+msgctxt "SC_OPCODE_ADDRESS"
+msgid "ABS"
+msgstr "Bezug"
+
+#. EqYrn
+#: scfuncs.src
+msgctxt "SC_OPCODE_ADDRESS"
+msgid "Specifies whether absolute or relative referencing is to be used."
+msgstr "Legt fest, ob absolute oder relative Bezüge verwendet werden."
+
+#. Cs9py
+#: scfuncs.src
+msgctxt "SC_OPCODE_ADDRESS"
+msgid "A1"
+msgstr "A1"
+
+#. 7tpgu
+#: scfuncs.src
+msgctxt "SC_OPCODE_ADDRESS"
+msgid ""
+"The reference style: 0 or FALSE means R1C1 style, any other value or omitted"
+" means A1 style."
+msgstr ""
+"Die Bezugsart: 0 oder FALSCH entspricht der Z1S1-Bezugsart, ein anderer oder"
+" kein Wert bedeuten A1-Bezugsart."
+
+#. eMDEG
+#: scfuncs.src
+msgctxt "SC_OPCODE_ADDRESS"
+msgid "sheet"
+msgstr "Tabelle"
+
+#. 4Wrvi
+#: scfuncs.src
+msgctxt "SC_OPCODE_ADDRESS"
+msgid "The spreadsheet name of the cell reference."
+msgstr "Der Tabellendokumentname des Zellbezugs."
+
+#. iBFLd
+#: scfuncs.src
+msgctxt "SC_OPCODE_AREAS"
+msgid ""
+"Returns the number of individual ranges that belong to a (multiple) range."
+msgstr ""
+"Bestimmt die Anzahl der Einzelbereiche, die zu einem (Mehrfach-) Bereich "
+"gehören."
+
+#. QVbku
+#: scfuncs.src
+msgctxt "SC_OPCODE_AREAS"
+msgid "reference"
+msgstr "Bezug"
+
+#. KWXav
+#: scfuncs.src
+msgctxt "SC_OPCODE_AREAS"
+msgid "The reference to a (multiple) range."
+msgstr "Der Bezug auf einen (Mehrfach-) Bereich."
+
+#. HDBnC
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHOOSE"
+msgid "Selects a value from a list of up to 30 value arguments."
+msgstr "Wählt einen Wert aus bis zu 30 Argumenten aus."
+
+#. G4rK9
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHOOSE"
+msgid "Index"
+msgstr "Index"
+
+#. GUMqQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHOOSE"
+msgid "The index of the value (1..30) selected."
+msgstr "Der Index des ausgewählten Wertes (1...30)."
+
+#. pwW5L
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHOOSE"
+msgid "value "
+msgstr "Wert "
+
+#. 3cXEF
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHOOSE"
+msgid ""
+"Value 1, value 2,... The list of arguments from which a value is chosen."
+msgstr ""
+"Wert 1; Wert 2;... Die Liste der Argumente, aus der ein Wert ausgewählt "
+"wird."
+
+#. BqwDQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLUMN"
+msgid "Returns the internal column number of a reference."
+msgstr "Bestimmt die interne Spaltennummer eines Bezugs."
+
+#. BPgQR
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLUMN"
+msgid "reference"
+msgstr "Bezug"
+
+#. RkpSJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLUMN"
+msgid "The reference to a cell or a range."
+msgstr "Der Bezug auf eine Zelle oder einen Bereich."
+
+#. Nn2dh
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROW"
+msgid "Defines the internal row number of a reference."
+msgstr "Bestimmt die interne Zeilennummer eines Bezugs."
+
+#. SuqCz
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROW"
+msgid "reference"
+msgstr "Bezug"
+
+#. qeWp3
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROW"
+msgid "The reference to a cell or a range."
+msgstr "Der Bezug auf eine Zelle oder einen Bereich."
+
+#. njgey
+#: scfuncs.src
+msgctxt "SC_OPCODE_SHEET"
+msgid "Returns the internal sheet number of a reference or a string."
+msgstr ""
+"Bestimmt die interne Tabellennummer eines Bezugs oder einer Zeichenkette."
+
+#. dJZ6b
+#: scfuncs.src
+msgctxt "SC_OPCODE_SHEET"
+msgid "reference"
+msgstr "Bezug"
+
+#. GJdEA
+#: scfuncs.src
+msgctxt "SC_OPCODE_SHEET"
+msgid ""
+"The reference to a cell or a range or the character string of a sheet name."
+msgstr ""
+"Der Bezug auf eine Zelle oder einen Bereich oder die Zeichenkette eines "
+"Tabellennamens."
+
+#. MXaHK
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLUMNS"
+msgid "Returns the number of columns in an array or reference."
+msgstr "Bestimmt die Anzahl der Spalten eines Bezugs oder einer Matrix."
+
+#. UA3e6
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLUMNS"
+msgid "array"
+msgstr "Matrix"
+
+#. CuyRx
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLUMNS"
+msgid ""
+"The array (reference) for which the number of columns is to be determined."
+msgstr "Die Matrix (der Bezug), deren Spaltenanzahl bestimmt werden soll."
+
+#. DtZRC
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROWS"
+msgid "Returns the number of rows in a reference or array."
+msgstr "Bestimmt die Anzahl der Zeilen eines Bezugs oder einer Matrix."
+
+#. cdBE3
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROWS"
+msgid "array"
+msgstr "Matrix"
+
+#. CULSp
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROWS"
+msgid ""
+"The array (reference) for which the number of rows is to be determined."
+msgstr "Die Matrix (der Bezug), deren Zeilenanzahl bestimmt werden soll."
+
+#. PJXet
+#: scfuncs.src
+msgctxt "SC_OPCODE_SHEETS"
+msgid ""
+"Returns the number of sheets of a given reference. If no parameter has been "
+"entered, the total number of sheets in the document is returned."
+msgstr ""
+"Bestimmt die Anzahl Tabellen eines Bezugs. Ist kein Parameter angegeben, "
+"wird die Anzahl Tabellen des Dokuments zurückgegeben."
+
+#. FZfqe
+#: scfuncs.src
+msgctxt "SC_OPCODE_SHEETS"
+msgid "reference"
+msgstr "Bezug"
+
+#. TCiaZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_SHEETS"
+msgid "The reference to a cell or a range."
+msgstr "Der Bezug auf eine Zelle oder einen Bereich."
+
+#. eCUid
+#: scfuncs.src
+msgctxt "SC_OPCODE_H_LOOKUP"
+msgid "Horizontal search and reference to the cells located below."
+msgstr "Waagerechte Suche und Verweis auf darunter stehende Zellen."
+
+#. JCXTx
+#: scfuncs.src
+msgctxt "SC_OPCODE_H_LOOKUP"
+msgid "search_criteria"
+msgstr "Suchkriterium"
+
+#. ZAJVk
+#: scfuncs.src
+msgctxt "SC_OPCODE_H_LOOKUP"
+msgid "The value to be found in the first row."
+msgstr "Der Wert, nach dem in der ersten Zeile gesucht wird."
+
+#. GPsEC
+#: scfuncs.src
+msgctxt "SC_OPCODE_H_LOOKUP"
+msgid "array"
+msgstr "Matrix"
+
+#. 5hKGB
+#: scfuncs.src
+msgctxt "SC_OPCODE_H_LOOKUP"
+msgid "The array or the range for the reference."
+msgstr "Die Matrix oder der Bereich für den Verweis."
+
+#. PZDud
+#: scfuncs.src
+msgctxt "SC_OPCODE_H_LOOKUP"
+msgid "Index"
+msgstr "Index"
+
+#. QVoEL
+#: scfuncs.src
+msgctxt "SC_OPCODE_H_LOOKUP"
+msgid "The row index in the array."
+msgstr "Zeilenindex in der Matrix."
+
+#. ZkRt3
+#: scfuncs.src
+msgctxt "SC_OPCODE_H_LOOKUP"
+msgid "sorted"
+msgstr "Sortiert"
+
+#. v7STG
+#: scfuncs.src
+msgctxt "SC_OPCODE_H_LOOKUP"
+msgid ""
+"If the value is TRUE or not given, the search row of the array must be "
+"sorted in ascending order."
+msgstr ""
+"Ist der Wert WAHR oder nicht angegeben, muss die Suchzeile der Matrix "
+"aufsteigend sortiert sein."
+
+#. Qid6E
+#: scfuncs.src
+msgctxt "SC_OPCODE_V_LOOKUP"
+msgid "Vertical search and reference to indicated cells."
+msgstr "Senkrechte Suche und Verweis auf nebenliegende Zellen."
+
+#. K5MyL
+#: scfuncs.src
+msgctxt "SC_OPCODE_V_LOOKUP"
+msgid "Search criterion"
+msgstr "Suchkriterium"
+
+#. uJXUC
+#: scfuncs.src
+msgctxt "SC_OPCODE_V_LOOKUP"
+msgid "The value to be found in the first column."
+msgstr "Der Wert, nach dem in der ersten Spalte gesucht wird."
+
+#. VtGQY
+#: scfuncs.src
+msgctxt "SC_OPCODE_V_LOOKUP"
+msgid "array"
+msgstr "Matrix"
+
+#. F33tJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_V_LOOKUP"
+msgid "The array or range for referencing."
+msgstr "Die Matrix oder der Bereich für den Verweis."
+
+#. jzXj7
+#: scfuncs.src
+msgctxt "SC_OPCODE_V_LOOKUP"
+msgid "Index"
+msgstr "Index"
+
+#. xpSFz
+#: scfuncs.src
+msgctxt "SC_OPCODE_V_LOOKUP"
+msgid "Column index number in the array."
+msgstr "Spaltenindex in der Matrix."
+
+#. VHizo
+#: scfuncs.src
+msgctxt "SC_OPCODE_V_LOOKUP"
+msgid "sort order"
+msgstr "Sortiert"
+
+#. UNH9A
+#: scfuncs.src
+msgctxt "SC_OPCODE_V_LOOKUP"
+msgid ""
+"If the value is TRUE or not given, the search column of the array must be "
+"sorted in ascending order."
+msgstr ""
+"Ist der Wert WAHR oder nicht angegeben, muss die Suchspalte der Matrix "
+"aufsteigend sortiert sein."
+
+#. KZapz
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDEX"
+msgid "Returns a reference to a cell from a defined range."
+msgstr "Bestimmt einen Bezug auf eine Zelle aus einem angegebenen Bereich."
+
+#. 7CsEX
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDEX"
+msgid "reference"
+msgstr "Bezug"
+
+#. GyDXz
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDEX"
+msgid "The reference to a (multiple) range."
+msgstr "Der Bezug auf einen (Mehrfach-) Bereich."
+
+#. LdF3f
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDEX"
+msgid "row"
+msgstr "Zeile"
+
+#. EgnSK
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDEX"
+msgid "The row in the range."
+msgstr "Die Zeile in dem Bereich."
+
+#. oeqGA
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDEX"
+msgid "column"
+msgstr "Spalte"
+
+#. bt7AW
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDEX"
+msgid "The column in the range."
+msgstr "Die Spalte in dem Bereich."
+
+#. GDdBf
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDEX"
+msgid "range"
+msgstr "Bereich"
+
+#. U4YBB
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDEX"
+msgid "The index of the subrange if referring to a multiple range."
+msgstr ""
+"Der Index des Teilbereichs, falls es sich um einen Mehrfachbereich handelt."
+
+#. AAABU
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDIRECT"
+msgid "Returns the contents of a cell that is referenced in text form."
+msgstr "Bestimmt den Inhalt einer als Bezug in Textform angegebenen Zelle."
+
+#. LobBw
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDIRECT"
+msgid "ref "
+msgstr "Bezug "
+
+#. 4qVBB
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDIRECT"
+msgid ""
+"The cell whose contents are to be evaluated is to be referenced in text form"
+" (e.g. \"A1\")."
+msgstr ""
+"Die Zelle, deren Inhalt ausgewertet werden soll als Bezug in Textform "
+"(beispielsweise \"A1\")."
+
+#. SVXmp
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDIRECT"
+msgid "A1"
+msgstr "A1"
+
+#. S9xs6
+#: scfuncs.src
+msgctxt "SC_OPCODE_INDIRECT"
+msgid ""
+"The reference style: 0 or FALSE means R1C1 style, any other value or omitted"
+" means A1 style."
+msgstr ""
+"Die Bezugsart: 0 oder FALSCH entspricht der Z1S1-Bezugsart, ein anderer oder"
+" kein Wert bedeuten A1-Bezugsart."
+
+#. 269jg
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOOKUP"
+msgid ""
+"Determines a value in a vector by comparison to values in another vector."
+msgstr ""
+"Bestimmt einen Wert in einem Vektor durch Wertvergleich in einem anderen "
+"Vektor."
+
+#. yMPMz
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOOKUP"
+msgid "Search criterion"
+msgstr "Suchkriterium"
+
+#. pPzq4
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOOKUP"
+msgid "The value to be used for comparison."
+msgstr "Der Wert, mit dem verglichen wird."
+
+#. TXZS5
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOOKUP"
+msgid "Search vector"
+msgstr "Suchvektor"
+
+#. DCfYa
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOOKUP"
+msgid "The vector (row or column) in which to search."
+msgstr "Der Vektor (die Zeile oder Spalte), in dem gesucht werden soll."
+
+#. orvai
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOOKUP"
+msgid "result_vector"
+msgstr "Ergebnisvektor"
+
+#. zEJE2
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOOKUP"
+msgid "The vector (row or range) from which the value is to be determined."
+msgstr ""
+"Der Vektor (die Zeile oder Spalte), aus dem der Wert bestimmt werden soll."
+
+#. JGER6
+#: scfuncs.src
+msgctxt "SC_OPCODE_MATCH"
+msgid "Defines a position in a array after comparing values."
+msgstr "Bestimmt eine Position in einer Matrix nach einem Wertvergleich."
+
+#. AGtj9
+#: scfuncs.src
+msgctxt "SC_OPCODE_MATCH"
+msgid "Search criterion"
+msgstr "Suchkriterium"
+
+#. MPAAm
+#: scfuncs.src
+msgctxt "SC_OPCODE_MATCH"
+msgid "The value to be used for comparison."
+msgstr "Der Wert, mit dem verglichen wird."
+
+#. FGFYC
+#: scfuncs.src
+msgctxt "SC_OPCODE_MATCH"
+msgid "lookup_array"
+msgstr "Suchmatrix"
+
+#. cdkps
+#: scfuncs.src
+msgctxt "SC_OPCODE_MATCH"
+msgid "The array (range) in which the search is made."
+msgstr "Die Matrix (der Bereich), in der gesucht werden soll."
+
+#. WuncN
+#: scfuncs.src
+msgctxt "SC_OPCODE_MATCH"
+msgid "Type"
+msgstr "Art"
+
+#. 8nZrb
+#: scfuncs.src
+msgctxt "SC_OPCODE_MATCH"
+msgid ""
+"Type can take the value 1, 0 or -1 and determines the criteria are to be "
+"used for comparison purposes."
+msgstr ""
+"Typ kann die Werte 1, 0 oder -1 annehmen und bestimmt, nach welchen "
+"Kriterien verglichen wird."
+
+#. XJ4FS
+#: scfuncs.src
+msgctxt "SC_OPCODE_OFFSET"
+msgid ""
+"Returns a reference which has been moved in relation to the starting point."
+msgstr "Bestimmt einen Bezug, der gegenüber dem Ausgangspunkt verschoben ist."
+
+#. tivCp
+#: scfuncs.src
+msgctxt "SC_OPCODE_OFFSET"
+msgid "reference"
+msgstr "Bezug"
+
+#. CdqxU
+#: scfuncs.src
+msgctxt "SC_OPCODE_OFFSET"
+msgid "The reference (cell) from which to base the movement."
+msgstr ""
+"Der Bezug (die Zelle), von der ab die Verschiebung bestimmt werden soll."
+
+#. svEFf
+#: scfuncs.src
+msgctxt "SC_OPCODE_OFFSET"
+msgid "rows"
+msgstr "Zeilen"
+
+#. ZjvPt
+#: scfuncs.src
+msgctxt "SC_OPCODE_OFFSET"
+msgid "The number of rows to be moved either up or down."
+msgstr "Die Anzahl der Zeilen, um die nach oben oder unten verschoben wird."
+
+#. c7YVr
+#: scfuncs.src
+msgctxt "SC_OPCODE_OFFSET"
+msgid "columns"
+msgstr "Spalten"
+
+#. D2DEc
+#: scfuncs.src
+msgctxt "SC_OPCODE_OFFSET"
+msgid ""
+"The number of columns that are to be moved to the left or to the right."
+msgstr ""
+"Die Anzahl der Spalten, um die nach links oder rechts verschoben wird."
+
+#. K7w2w
+#: scfuncs.src
+msgctxt "SC_OPCODE_OFFSET"
+msgid "height"
+msgstr "Höhe"
+
+#. EsLfR
+#: scfuncs.src
+msgctxt "SC_OPCODE_OFFSET"
+msgid "The number of rows of the moved reference."
+msgstr "Die Anzahl der Zeilen des verschobenen Bezugs."
+
+#. UJwdy
+#: scfuncs.src
+msgctxt "SC_OPCODE_OFFSET"
+msgid "width"
+msgstr "Breite"
+
+#. RBhpn
+#: scfuncs.src
+msgctxt "SC_OPCODE_OFFSET"
+msgid "The number of columns in the moved reference."
+msgstr "Die Anzahl der Spalten des verschobenen Bezugs."
+
+#. 94GDy
+#: scfuncs.src
+msgctxt "SC_OPCODE_ERROR_TYPE"
+msgid "Returns a number corresponding to an error type"
+msgstr "Bestimmt die Fehlernummer zu aufgetretenen Fehlern."
+
+#. Juu7E
+#: scfuncs.src
+msgctxt "SC_OPCODE_ERROR_TYPE"
+msgid "reference"
+msgstr "Bezug"
+
+#. xeYrB
+#: scfuncs.src
+msgctxt "SC_OPCODE_ERROR_TYPE"
+msgid "The reference (cell) in which the error occurred."
+msgstr "Der Bezug (die Zelle), in dem der Fehler aufgetreten ist."
+
+#. RdoaE
+#: scfuncs.src
+msgctxt "SC_OPCODE_ERROR_TYPE_ODF"
+msgid ""
+"Returns a number corresponding to one of the error values or #N/A if no "
+"error exists"
+msgstr ""
+"Gibt eine Zahl zurück, die einem der Fehlerwerte entspricht, oder #NV, falls"
+" kein Fehler existiert."
+
+#. 2deiq
+#: scfuncs.src
+msgctxt "SC_OPCODE_ERROR_TYPE_ODF"
+msgid "expression"
+msgstr "Ausdruck"
+
+#. VAzuw
+#: scfuncs.src
+msgctxt "SC_OPCODE_ERROR_TYPE_ODF"
+msgid ""
+"The error value whose identifying number you want to find. Can be the actual"
+" error value or a reference to a cell that you want to test."
+msgstr ""
+"Der Fehlerwert, dessen Kennnummer Sie suchen möchten. Dies kann der "
+"Fehlerwert direkt oder ein Bezug zu einer Zelle sein, die Sie testen "
+"möchten."
+
+#. AAEbG
+#: scfuncs.src
+msgctxt "SC_OPCODE_STYLE"
+msgid "Applies a Style to the formula cell."
+msgstr "Weist der Formelzelle eine Formatvorlage zu."
+
+#. NQuDE
+#: scfuncs.src
+msgctxt "SC_OPCODE_STYLE"
+msgid "Style"
+msgstr "Vorlage"
+
+#. BoEep
+#: scfuncs.src
+msgctxt "SC_OPCODE_STYLE"
+msgid "The name of the Style to be applied."
+msgstr "Der Name der Vorlage, die zugewiesen wird."
+
+#. CW5zj
+#: scfuncs.src
+msgctxt "SC_OPCODE_STYLE"
+msgid "Time"
+msgstr "Zeit"
+
+#. ckZAj
+#: scfuncs.src
+msgctxt "SC_OPCODE_STYLE"
+msgid "The time (in seconds) that the Style is to remain valid."
+msgstr "Die Zeit (in Sekunden), welche die Vorlage gültig bleibt."
+
+#. 6F8ZF
+#: scfuncs.src
+msgctxt "SC_OPCODE_STYLE"
+msgid "Style2"
+msgstr "Vorlage2"
+
+#. uCEbd
+#: scfuncs.src
+msgctxt "SC_OPCODE_STYLE"
+msgid "The Style to be applied after time expires."
+msgstr "Die Vorlage, die nach Ablauf der Zeit zugewiesen wird."
+
+#. Ri4A7
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDE"
+msgid "Result of a DDE link."
+msgstr "Ergebnis einer DDE-Verknüpfung."
+
+#. QdBGw
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDE"
+msgid "server"
+msgstr "Server"
+
+#. 2UcAR
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDE"
+msgid "The name of the server application."
+msgstr "Der Name der Serveranwendung."
+
+#. S3GNt
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDE"
+msgid "File"
+msgstr "Datei"
+
+#. orG9L
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDE"
+msgid "The name of the file."
+msgstr "Der Name der Datei."
+
+#. 8nFGG
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDE"
+msgid "range"
+msgstr "Bereich"
+
+#. WcnBK
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDE"
+msgid "The range from which data is to be taken."
+msgstr "Der Bereich, aus dem Daten gelesen werden sollen."
+
+#. XJCXT
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDE"
+msgid "mode"
+msgstr "Modus"
+
+#. BimmW
+#: scfuncs.src
+msgctxt "SC_OPCODE_DDE"
+msgid "Defines how data is to be converted to numbers."
+msgstr "Definiert, wie die Daten in Zahlen umgewandelt werden."
+
+#. gosEJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYPERLINK"
+msgid "Hyperlink."
+msgstr "Hyperlink."
+
+#. DdBwv
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYPERLINK"
+msgid "URL "
+msgstr "URL "
+
+#. UAXBE
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYPERLINK"
+msgid "URL"
+msgstr "URL"
+
+#. Qd5xc
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYPERLINK"
+msgid "CellText "
+msgstr "Zelltext "
+
+#. HZ8NL
+#: scfuncs.src
+msgctxt "SC_OPCODE_HYPERLINK"
+msgid "Cell Text"
+msgstr "Zelltext"
+
+#. Cw6S6
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_PIVOT_DATA"
+msgid "Extracts value(s) from a pivot table."
+msgstr "Liefert Wert(e) aus einer Pivot-Tabelle."
+
+#. m59hi
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_PIVOT_DATA"
+msgid "Data Field"
+msgstr "Datenfeld"
+
+#. 3E4Np
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_PIVOT_DATA"
+msgid "The name of the pivot table field to extract."
+msgstr "Der Name des Feldes der Pivot-Tabelle."
+
+#. wSwQp
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_PIVOT_DATA"
+msgid "Pivot Table"
+msgstr "Pivot-Tabelle"
+
+#. KfcMr
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_PIVOT_DATA"
+msgid "A reference to a cell or range in the pivot table."
+msgstr "Bezug zu einer Zelle oder einem Zellbereich der Pivot-Tabelle."
+
+#. 8b5qC
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_PIVOT_DATA"
+msgid "Field Name / Item"
+msgstr "Feldname / Element"
+
+#. qABDN
+#: scfuncs.src
+msgctxt "SC_OPCODE_GET_PIVOT_DATA"
+msgid "Field name/value pair to filter the target data."
+msgstr "Feldname/Wertepaar, um Zieldaten zu filtern."
+
+#. zeAFh
+#: scfuncs.src
+msgctxt "SC_OPCODE_BAHTTEXT"
+msgid "Converts a number to text (Baht)."
+msgstr "Wandelt eine Zahl in Text um (Baht)."
+
+#. UQFFX
+#: scfuncs.src
+msgctxt "SC_OPCODE_BAHTTEXT"
+msgid "Number"
+msgstr "Zahl"
+
+#. vD2j6
+#: scfuncs.src
+msgctxt "SC_OPCODE_BAHTTEXT"
+msgid "The number to convert."
+msgstr "Die umzuwandelnde Zahl."
+
+#. s6pLd
+#: scfuncs.src
+msgctxt "SC_OPCODE_JIS"
+msgid "Converts half-width ASCII and katakana characters to full-width."
+msgstr ""
+"Wandelt ASCII- und Katakana-Zeichen halber Breite in Zeichen normaler Breite"
+" um."
+
+#. PAN2e
+#: scfuncs.src
+msgctxt "SC_OPCODE_JIS"
+msgid "text"
+msgstr "Text"
+
+#. EUW4G
+#: scfuncs.src
+msgctxt "SC_OPCODE_JIS"
+msgid "The text to convert."
+msgstr "Zu konvertierender Text."
+
+#. naFaB
+#: scfuncs.src
+msgctxt "SC_OPCODE_ASC"
+msgid "Converts full-width ASCII and katakana characters to half-width."
+msgstr ""
+"Wandelt ASCII- und Katakana-Zeichen normaler Breite in Zeichen halber Breite"
+" um."
+
+#. A6j6B
+#: scfuncs.src
+msgctxt "SC_OPCODE_ASC"
+msgid "text"
+msgstr "Text"
+
+#. s8JfK
+#: scfuncs.src
+msgctxt "SC_OPCODE_ASC"
+msgid "The text to convert."
+msgstr "Zu konvertierender Text."
+
+#. 7pcC8
+#: scfuncs.src
+msgctxt "SC_OPCODE_CODE"
+msgid "Returns a numeric code for the first character in a text string."
+msgstr "Liefert den Code des ersten Zeichens eines Textes."
+
+#. 95cYz
+#: scfuncs.src
+msgctxt "SC_OPCODE_CODE"
+msgid "text"
+msgstr "Text"
+
+#. S4kqK
+#: scfuncs.src
+msgctxt "SC_OPCODE_CODE"
+msgid ""
+"This is the text for which the code of the first character is to be found."
+msgstr ""
+"Ist der Text, für den der Code des ersten Zeichens ermittelt werden soll."
+
+#. gFQXL
+#: scfuncs.src
+msgctxt "SC_OPCODE_CURRENCY"
+msgid "Converts a number to text in currency format."
+msgstr "Wandelt einen Zahlenwert in einen Text im Währungsformat um."
+
+#. ihGyA
+#: scfuncs.src
+msgctxt "SC_OPCODE_CURRENCY"
+msgid "value"
+msgstr "Wert"
+
+#. 5JqhV
+#: scfuncs.src
+msgctxt "SC_OPCODE_CURRENCY"
+msgid ""
+"Value is a number, a reference to a cell containing a number or a formula "
+"that results in a number."
+msgstr ""
+"Wert ist eine Zahl, ein Bezug auf eine Zelle, die eine Zahl enthält, oder "
+"eine Formel, die eine Zahl ergibt."
+
+#. 43oxv
+#: scfuncs.src
+msgctxt "SC_OPCODE_CURRENCY"
+msgid "decimals"
+msgstr "Dezimalstellen"
+
+#. h5DFB
+#: scfuncs.src
+msgctxt "SC_OPCODE_CURRENCY"
+msgid ""
+"Decimal places. Denotes the number of digits to the right of the decimal "
+"point."
+msgstr "Dezimalstellen. Ist die Anzahl der Ziffern rechts vom Dezimalkomma."
+
+#. f5PPE
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHAR"
+msgid "Converts a code number into a character or letter."
+msgstr "Wandelt eine Codezahl in ein Zeichen oder Buchstaben um."
+
+#. xdCXC
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHAR"
+msgid "number"
+msgstr "Zahl"
+
+#. 4Gwiw
+#: scfuncs.src
+msgctxt "SC_OPCODE_CHAR"
+msgid "The code value for the character."
+msgstr "Der Codewert für das Zeichen."
+
+#. 3fTcT
+#: scfuncs.src
+msgctxt "SC_OPCODE_CLEAN"
+msgid "Removes all nonprintable characters from text."
+msgstr "Löscht nicht druckbare Zeichen aus dem Text."
+
+#. jFAZF
+#: scfuncs.src
+msgctxt "SC_OPCODE_CLEAN"
+msgid "text"
+msgstr "Text"
+
+#. EArbN
+#: scfuncs.src
+msgctxt "SC_OPCODE_CLEAN"
+msgid "The text from which nonprintable characters are to be removed."
+msgstr "Der Text, aus dem die nicht druckbaren Zeichen entfernt werden."
+
+#. fFLsv
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONCAT"
+msgid "Combines several text items into one."
+msgstr "Verbindet Texte zu einem einzigen."
+
+#. kbJPs
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONCAT"
+msgid "text"
+msgstr "Text"
+
+#. ESNqo
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONCAT"
+msgid "Text for the concatenation."
+msgstr "Text für die Verkettung."
+
+#. TPahA
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONCAT_MS"
+msgid ""
+"Combines several text items into one, accepts cell ranges as arguments."
+msgstr ""
+"Verkettet mehrere Textelemente zu einem, akzeptiert Zellbereiche als "
+"Argumente."
+
+#. bYJVu
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONCAT_MS"
+msgid "text"
+msgstr "Text"
+
+#. 3E2rY
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONCAT_MS"
+msgid "Text and/or cell ranges for the concatenation."
+msgstr "Text und/oder Zellbereiche für die Verknüpfung."
+
+#. oQaCv
+#: scfuncs.src
+msgctxt "SC_OPCODE_TEXTJOIN_MS"
+msgid ""
+"Combines several text items into one, accepts cell ranges as arguments. Uses"
+" delimiter between items."
+msgstr ""
+"Verkettet mehrere Textelemente zu einem, akzeptiert Zellbereiche als "
+"Argumente. Verwendet Trennzeichen zwischen den Elementen."
+
+#. F9PQX
+#: scfuncs.src
+msgctxt "SC_OPCODE_TEXTJOIN_MS"
+msgid "delimiter"
+msgstr "Trennzeichen"
+
+#. HYbBc
+#: scfuncs.src
+msgctxt "SC_OPCODE_TEXTJOIN_MS"
+msgid "Text string to be used as delimiter."
+msgstr "Zeichenkette, die als Trennzeichen verwendendet werden soll."
+
+#. LbhtF
+#: scfuncs.src
+msgctxt "SC_OPCODE_TEXTJOIN_MS"
+msgid "skip empty cells"
+msgstr "Leere Zellen überspringen"
+
+#. 2aqLM
+#: scfuncs.src
+msgctxt "SC_OPCODE_TEXTJOIN_MS"
+msgid "If TRUE, empty cells will be ignored."
+msgstr "Falls WAHR, werden leere Zellen ignoriert."
+
+#. 2M4g2
+#: scfuncs.src
+msgctxt "SC_OPCODE_TEXTJOIN_MS"
+msgid "text"
+msgstr "Text"
+
+#. 6g4cg
+#: scfuncs.src
+msgctxt "SC_OPCODE_TEXTJOIN_MS"
+msgid "Text and/or cell ranges for the concatenation."
+msgstr "Text und/oder Zellbereiche für die Verknüpfung."
+
+#. WEmdC
+#: scfuncs.src
+msgctxt "SC_OPCODE_IFS_MS"
+msgid ""
+"Checks 1 or more conditions and returns a value corresponding to the first "
+"true condition."
+msgstr ""
+"Prüft eine oder mehr Bedingungen und gibt einen Wert zurück, welcher der "
+"ersten wahren Bedingung entspricht."
+
+#. sfRT9
+#: scfuncs.src
+msgctxt "SC_OPCODE_IFS_MS"
+msgid "test"
+msgstr "Test"
+
+#. z6EqU
+#: scfuncs.src
+msgctxt "SC_OPCODE_IFS_MS"
+msgid "Any value or expression which can be either TRUE or FALSE."
+msgstr "Ein beliebiger Wert oder Ausdruck, der WAHR oder FALSCH sein kann."
+
+#. QXAjh
+#: scfuncs.src
+msgctxt "SC_OPCODE_IFS_MS"
+msgid "result"
+msgstr "Ergebnis"
+
+#. xSQQd
+#: scfuncs.src
+msgctxt "SC_OPCODE_IFS_MS"
+msgid "The result of the function if test is TRUE."
+msgstr "Das Ergebnis der Funktion, wenn der Test WAHR ist."
+
+#. gjTk9
+#: scfuncs.src
+msgctxt "SC_OPCODE_SWITCH_MS"
+msgid ""
+"Checks 1 or more values and returns a result corresponding to the first "
+"value equal to the given expression."
+msgstr ""
+"Prüft 1 oder mehrere Werte und ergibt den ersten Wert, der gleich dem "
+"gegebenen Ausdruck ist."
+
+#. fuNd9
+#: scfuncs.src
+msgctxt "SC_OPCODE_SWITCH_MS"
+msgid "expression"
+msgstr "Ausdruck"
+
+#. Nky5S
+#: scfuncs.src
+msgctxt "SC_OPCODE_SWITCH_MS"
+msgid "Value that will be compared against value1-valueN."
+msgstr "Wert, der mit Wert 1-Wert N verglichen wird."
+
+#. YM9Rz
+#: scfuncs.src
+msgctxt "SC_OPCODE_SWITCH_MS"
+msgid "value "
+msgstr "Wert "
+
+#. vKnbo
+#: scfuncs.src
+msgctxt "SC_OPCODE_SWITCH_MS"
+msgid "Value that will be compared against expression."
+msgstr "Wert, der mit dem Ausdruck verglichen wird."
+
+#. wEAnu
+#: scfuncs.src
+msgctxt "SC_OPCODE_SWITCH_MS"
+msgid "result"
+msgstr "Ergebnis"
+
+#. pG9tD
+#: scfuncs.src
+msgctxt "SC_OPCODE_SWITCH_MS"
+msgid "Value to return when corresponding value argument matches expression."
+msgstr ""
+"Wert, der zurückgegeben wird, wenn das entsprechende Wertargument mit dem "
+"Ausdruck übereinstimmt."
+
+#. m2wBA
+#: scfuncs.src
+msgctxt "SC_OPCODE_MINIFS_MS"
+msgid ""
+"Returns the minimum value in a range that meet multiple criteria in multiple"
+" ranges."
+msgstr ""
+"Gibt den kleinsten Wert in einem Bereich zurück, der mehrere Bedingungen in "
+"mehreren Bereichen umfasst."
+
+#. rfKUE
+#: scfuncs.src
+msgctxt "SC_OPCODE_MINIFS_MS"
+msgid "min_range"
+msgstr "Min Bereich"
+
+#. keXHq
+#: scfuncs.src
+msgctxt "SC_OPCODE_MINIFS_MS"
+msgid "The range from which the minimum will be determined."
+msgstr "Der Bereich, aus dem das Minimum bestimmt wird."
+
+#. AVXbu
+#: scfuncs.src
+msgctxt "SC_OPCODE_MINIFS_MS"
+msgid "range"
+msgstr "Bereich"
+
+#. Aw78A
+#: scfuncs.src
+msgctxt "SC_OPCODE_MINIFS_MS"
+msgid ""
+"Range 1, range 2,... are the ranges to be evaluated by the criteria given."
+msgstr ""
+"Bereich 1, Bereich 2,... sind die Bereiche, die mittels der vorgegebenen "
+"Bedingungen beurteilt werden."
+
+#. vZBhJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_MINIFS_MS"
+msgid "criteria"
+msgstr "Bedingung"
+
+#. QzXV7
+#: scfuncs.src
+msgctxt "SC_OPCODE_MINIFS_MS"
+msgid ""
+"Criteria 1, criteria 2,... are the criteria to be applied to the ranges "
+"given."
+msgstr ""
+"Bedingung 1, Bedingung 2,... sind die Bedingungen, welche auf den "
+"angegebenen Bereich angewendet werden."
+
+#. YRBAn
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAXIFS_MS"
+msgid ""
+"Returns the maximum value in a range that meet multiple criteria in multiple"
+" ranges."
+msgstr ""
+"Gibt den größten Wert in einem Bereich zurück, der mehrere Bedingungen in "
+"mehreren Bereichen umfasst."
+
+#. SXBo5
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAXIFS_MS"
+msgid "max_range"
+msgstr "Max Bereich"
+
+#. 7qcLT
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAXIFS_MS"
+msgid "The range from which the maximum will be determined."
+msgstr "Der Bereich, aus dem das Maximum bestimmt wird."
+
+#. 2Rm8N
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAXIFS_MS"
+msgid "range"
+msgstr "Bereich"
+
+#. 76BDz
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAXIFS_MS"
+msgid ""
+"Range 1, range 2,... are the ranges to be evaluated by the criteria given."
+msgstr ""
+"Bereich 1, Bereich 2,... sind die Bereiche, die mittels der vorgegebenen "
+"Bedingungen beurteilt werden."
+
+#. J5i7d
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAXIFS_MS"
+msgid "criteria"
+msgstr "Bedingung"
+
+#. CAisw
+#: scfuncs.src
+msgctxt "SC_OPCODE_MAXIFS_MS"
+msgid ""
+"Criteria 1, criteria 2,... are the criteria to be applied to the ranges "
+"given."
+msgstr ""
+"Bedingung 1, Bedingung 2,... sind die Bedingungen, welche auf den "
+"angegebenen Bereich angewendet werden."
+
+#. e5Dg2
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXACT"
+msgid "Specifies whether two texts are identical."
+msgstr "Gibt an, ob zwei Texte gleich sind."
+
+#. EySvf
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXACT"
+msgid "text_1"
+msgstr "Text_1"
+
+#. d9DGd
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXACT"
+msgid "The first text to be used for comparing texts."
+msgstr "Der erste Text für den Textvergleich."
+
+#. FsFxE
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXACT"
+msgid "text_2"
+msgstr "Text_2"
+
+#. yVwcJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_EXACT"
+msgid "The second text for comparing texts."
+msgstr "Der zweite Text für den Textvergleich."
+
+#. 8sCqL
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIND"
+msgid "Looks for a string of text within another (case sensitive)"
+msgstr ""
+"Sucht ein Teilwort in einem Text unter Berücksichtigung von Groß- und "
+"Kleinschreibung."
+
+#. NwwEb
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIND"
+msgid "find_text"
+msgstr "Suchtext"
+
+#. CCsnG
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIND"
+msgid "The text to be found."
+msgstr "Der Text, der gesucht wird."
+
+#. d5YmV
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIND"
+msgid "text"
+msgstr "Text"
+
+#. 9qGoG
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIND"
+msgid "The text in which a search is to be made."
+msgstr "Der Text, in dem gesucht wird."
+
+#. g5Zz9
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIND"
+msgid "position"
+msgstr "Position"
+
+#. 3MHVV
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIND"
+msgid "The position in the text from which the search starts."
+msgstr "Die Position im Text, ab der gesucht wird."
+
+#. XLB5s
+#: scfuncs.src
+msgctxt "SC_OPCODE_SEARCH"
+msgid "Looks for one text value within another (not case-sensitive)."
+msgstr ""
+"Sucht ein Teilwort in einem Text (ohne Berücksichtigung von Groß- und "
+"Kleinschreibung)."
+
+#. cx9CF
+#: scfuncs.src
+msgctxt "SC_OPCODE_SEARCH"
+msgid "find_text"
+msgstr "Suchtext"
+
+#. wdv9o
+#: scfuncs.src
+msgctxt "SC_OPCODE_SEARCH"
+msgid "The text to be found."
+msgstr "Der Text, der gesucht wird."
+
+#. PGGze
+#: scfuncs.src
+msgctxt "SC_OPCODE_SEARCH"
+msgid "text"
+msgstr "Text"
+
+#. wKr3q
+#: scfuncs.src
+msgctxt "SC_OPCODE_SEARCH"
+msgid "The text in which a search is to be made."
+msgstr "Der Text, in dem gesucht wird."
+
+#. RoNDP
+#: scfuncs.src
+msgctxt "SC_OPCODE_SEARCH"
+msgid "position"
+msgstr "Position"
+
+#. kK7Aw
+#: scfuncs.src
+msgctxt "SC_OPCODE_SEARCH"
+msgid "The position in the text where the search is started."
+msgstr "Die Position im Text, ab der gesucht wird."
+
+#. EszaV
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRIM"
+msgid "Removes extra spaces from text."
+msgstr "Löscht überflüssige Leerzeichen zwischen Worten."
+
+#. ZZnzU
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRIM"
+msgid "text"
+msgstr "Text"
+
+#. nPCDu
+#: scfuncs.src
+msgctxt "SC_OPCODE_TRIM"
+msgid "The text in which extra spaces between words are to be deleted."
+msgstr ""
+"Der Text, in dem überflüssige Leerzeichen zwischen Worten gelöscht werden."
+
+#. NBR7q
+#: scfuncs.src
+msgctxt "SC_OPCODE_PROPER"
+msgid "Capitalizes the first letter in all words."
+msgstr "Wandelt alle Wortanfänge in Großbuchstaben um."
+
+#. 6weLM
+#: scfuncs.src
+msgctxt "SC_OPCODE_PROPER"
+msgid "text"
+msgstr "Text"
+
+#. tyvcU
+#: scfuncs.src
+msgctxt "SC_OPCODE_PROPER"
+msgid ""
+"The text in which the beginning of words are to be replaced by capital "
+"letters."
+msgstr "Der Text, in dem Wortanfänge durch Großbuchstaben ersetzt werden."
+
+#. qhYws
+#: scfuncs.src
+msgctxt "SC_OPCODE_UPPER"
+msgid "Converts text to uppercase."
+msgstr "Wandelt alle Buchstaben eines Textes in Großbuchstaben um."
+
+#. ZiKGT
+#: scfuncs.src
+msgctxt "SC_OPCODE_UPPER"
+msgid "text"
+msgstr "Text"
+
+#. PFrYF
+#: scfuncs.src
+msgctxt "SC_OPCODE_UPPER"
+msgid "The text in which lower case letters are to be converted to capitals."
+msgstr "Der Text, in dem Kleinbuchstaben durch Großbuchstaben ersetzt werden."
+
+#. CqaAp
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOWER"
+msgid "Converts text to lowercase."
+msgstr "Wandelt alle Buchstaben eines Textes in Kleinbuchstaben um."
+
+#. NcCH4
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOWER"
+msgid "text"
+msgstr "Text"
+
+#. BQTkH
+#: scfuncs.src
+msgctxt "SC_OPCODE_LOWER"
+msgid "The text in which capitals are converted to lower case letters."
+msgstr "Der Text, in dem Großbuchstaben durch Kleinbuchstaben ersetzt werden."
+
+#. tCABh
+#: scfuncs.src
+msgctxt "SC_OPCODE_VALUE"
+msgid "Converts text to a number."
+msgstr "Wandelt einen Text in eine Zahl um."
+
+#. yFhmV
+#: scfuncs.src
+msgctxt "SC_OPCODE_VALUE"
+msgid "text"
+msgstr "Text"
+
+#. AND3E
+#: scfuncs.src
+msgctxt "SC_OPCODE_VALUE"
+msgid "The text to be converted to a number."
+msgstr "Der Text, der in eine Zahl gewandelt wird."
+
+#. P9VnF
+#: scfuncs.src
+msgctxt "SC_OPCODE_TEXT"
+msgid "Converts a number to text according to a given format."
+msgstr "Wandelt eine Zahl gemäß einer Formatangabe in einen Text um."
+
+#. CG9cR
+#: scfuncs.src
+msgctxt "SC_OPCODE_TEXT"
+msgid "number"
+msgstr "Zahl"
+
+#. XxmBF
+#: scfuncs.src
+msgctxt "SC_OPCODE_TEXT"
+msgid "The numeric value to be converted."
+msgstr "Der Zahlenwert, der umgewandelt wird."
+
+#. GngCA
+#: scfuncs.src
+msgctxt "SC_OPCODE_TEXT"
+msgid "Format"
+msgstr "Format"
+
+#. iuGqF
+#: scfuncs.src
+msgctxt "SC_OPCODE_TEXT"
+msgid "The text that describes the format."
+msgstr "Der Text, der das Format beschreibt."
+
+#. cHLs3
+#: scfuncs.src
+msgctxt "SC_OPCODE_T"
+msgid "Returns a value if it is text, otherwise an empty string."
+msgstr ""
+"Liefert einen Wert, falls es Text ist, anderenfalls eine leere Zeichenkette."
+
+#. HCpWx
+#: scfuncs.src
+msgctxt "SC_OPCODE_T"
+msgid "value"
+msgstr "Wert"
+
+#. DFJqa
+#: scfuncs.src
+msgctxt "SC_OPCODE_T"
+msgid "The value to be checked and returned if it is text."
+msgstr ""
+"Der Wert, der geprüft und zurückgegeben werden soll, falls es Text ist."
+
+#. Rsf53
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPLACE"
+msgid "Replaces characters within a text string with a different text string."
+msgstr "Ersetzt einen Teil eines Textes durch einen anderen Text."
+
+#. JdCW5
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPLACE"
+msgid "Text"
+msgstr "Text"
+
+#. mhLYu
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPLACE"
+msgid "The text in which some characters are to be replaced."
+msgstr "Der Text, in dem ein Teil ersetzt wird."
+
+#. EFDA9
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPLACE"
+msgid "position"
+msgstr "Position"
+
+#. MJQDD
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPLACE"
+msgid "The character position from which text is to be replaced."
+msgstr "Die Zeichenposition, ab der ersetzt wird."
+
+#. jjYFu
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPLACE"
+msgid "length"
+msgstr "Länge"
+
+#. vNtRY
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPLACE"
+msgid "The number of characters to be replaced."
+msgstr "Die Anzahl der Zeichen, die ersetzt werden."
+
+#. 6E5ML
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPLACE"
+msgid "new text"
+msgstr "Textersatz"
+
+#. AzPGB
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPLACE"
+msgid "The text to be inserted."
+msgstr "Der Text, der eingesetzt wird."
+
+#. KRme8
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIXED"
+msgid ""
+"Formats a number with a fixed number of places after the decimal point and "
+"thousands separator."
+msgstr ""
+"Formatiert eine Zahl mit einer festen Anzahl von Nachkommastellen und "
+"Tausenderpunkt."
+
+#. GDCDp
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIXED"
+msgid "number"
+msgstr "Zahl"
+
+#. grjKy
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIXED"
+msgid "The number to be formatted."
+msgstr "Die Zahl, die formatiert wird."
+
+#. ysgvz
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIXED"
+msgid "Decimals"
+msgstr "Dezimalstellen"
+
+#. ACFqC
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIXED"
+msgid ""
+"Decimal places. The number of fixed decimal places that are to be displayed."
+msgstr ""
+"Dezimalstellen. Anzahl des festen Dezimalstellen, die dargestellt werden."
+
+#. fdn6N
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIXED"
+msgid "No thousands separators"
+msgstr "Keine Tausenderseparatoren"
+
+#. ShGvi
+#: scfuncs.src
+msgctxt "SC_OPCODE_FIXED"
+msgid ""
+"Thousands separator. If 0 or omitted the locale group separator is used else"
+" the separator is suppressed."
+msgstr ""
+"Tausendertrenner. Falls 0 oder weggelassen, wird der lokale Gruppenseparator"
+" benutzt, ansonsten wird der Trenner unterdrückt."
+
+#. nxnkq
+#: scfuncs.src
+msgctxt "SC_OPCODE_LEN"
+msgid "Calculates length of a text string."
+msgstr "Berechnet die Länge eines Textes."
+
+#. CLCSk
+#: scfuncs.src
+msgctxt "SC_OPCODE_LEN"
+msgid "text"
+msgstr "Text"
+
+#. BYoYq
+#: scfuncs.src
+msgctxt "SC_OPCODE_LEN"
+msgid "The text in which the length is to be determined."
+msgstr "Der Text, dessen Länge bestimmt wird."
+
+#. Ec5G6
+#: scfuncs.src
+msgctxt "SC_OPCODE_LEFT"
+msgid "Returns the first character or characters of a text."
+msgstr "Bestimmt das Anfangsteilwort eines Textes."
+
+#. 79dPj
+#: scfuncs.src
+msgctxt "SC_OPCODE_LEFT"
+msgid "text"
+msgstr "Text"
+
+#. yDAgS
+#: scfuncs.src
+msgctxt "SC_OPCODE_LEFT"
+msgid "The text where the initial partial words are to be determined."
+msgstr "Der Text, dessen Anfangsteilwort bestimmt wird."
+
+#. Y8DZG
+#: scfuncs.src
+msgctxt "SC_OPCODE_LEFT"
+msgid "number"
+msgstr "Zahl"
+
+#. NK7tc
+#: scfuncs.src
+msgctxt "SC_OPCODE_LEFT"
+msgid "The number of characters for the start text."
+msgstr "Die Anzahl der Zeichen für das Anfangsteilwort."
+
+#. FkF2R
+#: scfuncs.src
+msgctxt "SC_OPCODE_RIGHT"
+msgid "Returns the last character or characters of a text."
+msgstr "Bestimmt das Endteilwort eines Textes."
+
+#. u7DX3
+#: scfuncs.src
+msgctxt "SC_OPCODE_RIGHT"
+msgid "text"
+msgstr "Text"
+
+#. Q5J4W
+#: scfuncs.src
+msgctxt "SC_OPCODE_RIGHT"
+msgid "The text in which the end partial words are to be determined."
+msgstr "Der Text, dessen Endteilwort bestimmt wird."
+
+#. osGy3
+#: scfuncs.src
+msgctxt "SC_OPCODE_RIGHT"
+msgid "number"
+msgstr "Zahl"
+
+#. RCSNC
+#: scfuncs.src
+msgctxt "SC_OPCODE_RIGHT"
+msgid "The number of characters for the end text."
+msgstr "Die Anzahl der Zeichen für das Endteilwort."
+
+#. eDWjF
+#: scfuncs.src
+msgctxt "SC_OPCODE_MID"
+msgid "Returns a partial text string of a text."
+msgstr "Bestimmt ein Teilwort eines Textes."
+
+#. 8vy5J
+#: scfuncs.src
+msgctxt "SC_OPCODE_MID"
+msgid "text"
+msgstr "Text"
+
+#. YHAni
+#: scfuncs.src
+msgctxt "SC_OPCODE_MID"
+msgid "The text in which partial words are to be determined."
+msgstr "Der Text, dessen Teilwort bestimmt wird."
+
+#. RCGPk
+#: scfuncs.src
+msgctxt "SC_OPCODE_MID"
+msgid "start"
+msgstr "Anfang"
+
+#. EfK2h
+#: scfuncs.src
+msgctxt "SC_OPCODE_MID"
+msgid "The position from which the part word is to be determined."
+msgstr "Die Position, ab der das Teilwort bestimmt wird."
+
+#. yBTDi
+#: scfuncs.src
+msgctxt "SC_OPCODE_MID"
+msgid "number"
+msgstr "Zahl"
+
+#. A6Bii
+#: scfuncs.src
+msgctxt "SC_OPCODE_MID"
+msgid "The number of characters for the text."
+msgstr "Die Anzahl der Zeichen für das Teilwort."
+
+#. vAoTX
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPT"
+msgid "Repeats text a given number of times."
+msgstr "Wiederholt einen Text so oft wie angegeben."
+
+#. j9aQB
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPT"
+msgid "text"
+msgstr "Text"
+
+#. b4GkF
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPT"
+msgid "The text to be repeated."
+msgstr "Der Text, der wiederholt wird."
+
+#. iqxBe
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPT"
+msgid "number"
+msgstr "Zahl"
+
+#. GTWVn
+#: scfuncs.src
+msgctxt "SC_OPCODE_REPT"
+msgid "The number of times the text is to be repeated."
+msgstr "Die Anzahl, wie oft der Text wiederholt wird."
+
+#. 5ehoB
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUBSTITUTE"
+msgid "Substitutes new text for old text in a string."
+msgstr "Ersetzt mehrfach Teilworte in einem Text."
+
+#. hrcJN
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUBSTITUTE"
+msgid "text"
+msgstr "Text"
+
+#. ZxnGj
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUBSTITUTE"
+msgid "The text in which partial words are to be replaced."
+msgstr "Der Text, in dem Teilworte ausgetauscht werden."
+
+#. CXWBo
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUBSTITUTE"
+msgid "search_text"
+msgstr "Suchtext"
+
+#. cARfL
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUBSTITUTE"
+msgid "The partial string to be (repeatedly) replaced."
+msgstr "Das Teilwort, das (mehrfach) ersetzt werden soll."
+
+#. EZXCr
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUBSTITUTE"
+msgid "new text"
+msgstr "Textersatz"
+
+#. x5fUC
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUBSTITUTE"
+msgid "The text which is to replace the text string."
+msgstr "Der Text, der das Teilwort ersetzen soll."
+
+#. 5eWZt
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUBSTITUTE"
+msgid "occurrence"
+msgstr "Auftreten"
+
+#. aPaJf
+#: scfuncs.src
+msgctxt "SC_OPCODE_SUBSTITUTE"
+msgid "Which occurrence of the old text is to be replaced."
+msgstr "Das wievielte Auftreten des Teilwortes ersetzt werden soll."
+
+#. Gp7Ph
+#: scfuncs.src
+msgctxt "SC_OPCODE_BASE"
+msgid ""
+"Converts a positive integer to text from a number system to the base "
+"defined."
+msgstr ""
+"Wandelt eine positive Ganzzahl in einen Text aus einem Zahlensystem zur "
+"angegebenen Basis."
+
+#. jA9j3
+#: scfuncs.src
+msgctxt "SC_OPCODE_BASE"
+msgid "number"
+msgstr "Zahl"
+
+#. YYaET
+#: scfuncs.src
+msgctxt "SC_OPCODE_BASE"
+msgid "The number to be converted."
+msgstr "Die umzuwandelnde Zahl."
+
+#. Tykrh
+#: scfuncs.src
+msgctxt "SC_OPCODE_BASE"
+msgid "radix"
+msgstr "Radix"
+
+#. 8SADQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_BASE"
+msgid "The base number for conversion must be in the range 2 - 36."
+msgstr ""
+"Die Zahlenbasis, in die konvertiert wird, muss im Bereich 2 - 36 liegen."
+
+#. CoREj
+#: scfuncs.src
+msgctxt "SC_OPCODE_BASE"
+msgid "Minimum length"
+msgstr "Mindestlänge"
+
+#. yHJT7
+#: scfuncs.src
+msgctxt "SC_OPCODE_BASE"
+msgid ""
+"If the text is shorter than the specified length, zeros are added to the "
+"left of the string."
+msgstr "Wenn der Text kürzer ist, wird er links mit Nullen aufgefüllt."
+
+#. xDzRi
+#: scfuncs.src
+msgctxt "SC_OPCODE_DECIMAL"
+msgid ""
+"Converts a text of a specified number system to a positive integer in the "
+"base given."
+msgstr ""
+"Wandelt einen Text aus einem Zahlensystem zur angegebenen Basis in eine "
+"positive Ganzzahl."
+
+#. iyZfY
+#: scfuncs.src
+msgctxt "SC_OPCODE_DECIMAL"
+msgid "text"
+msgstr "Text"
+
+#. wiCrE
+#: scfuncs.src
+msgctxt "SC_OPCODE_DECIMAL"
+msgid "The text to be converted."
+msgstr "Der umzuwandelnde Text."
+
+#. GXweG
+#: scfuncs.src
+msgctxt "SC_OPCODE_DECIMAL"
+msgid "radix"
+msgstr "Radix"
+
+#. hmGja
+#: scfuncs.src
+msgctxt "SC_OPCODE_DECIMAL"
+msgid "The base number for conversion must be in the range 2 - 36."
+msgstr ""
+"Die Zahlenbasis, in die konvertiert wird, muss im Bereich 2 - 36 liegen."
+
+#. 75E55
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONVERT_OOO"
+msgid ""
+"Converts a value according to a conversion table in the configuration "
+"(main.xcd)."
+msgstr ""
+"Konvertiert einen Wert nach einer Umrechnungstabelle in der Konfiguration "
+"(main.xcd)."
+
+#. AUzWA
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONVERT_OOO"
+msgid "value"
+msgstr "Wert"
+
+#. XdUKB
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONVERT_OOO"
+msgid "The value to be converted."
+msgstr "Der umzurechnende Wert."
+
+#. rQFtU
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONVERT_OOO"
+msgid "text"
+msgstr "Text"
+
+#. EnmzM
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONVERT_OOO"
+msgid "Unit from which something is converted, case-sensitive."
+msgstr ""
+"Einheit, aus der unter Berücksichtigung der Groß- und Kleinschreibung "
+"umgerechnet wird."
+
+#. FhCnE
+#: scfuncs.src
+msgctxt "SC_OPCODE_CONVERT_OOO"
+msgid "Unit into which something is converted, case-sensitive."
+msgstr ""
+"Einheit, in die unter Berücksichtigung der Groß- und Kleinschreibung "
+"umgerechnet wird."
+
+#. G7AAp
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROMAN"
+msgid "Converts a number to a Roman numeral."
+msgstr "Wandelt eine Zahl in eine römische Zahl um."
+
+#. jADZM
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROMAN"
+msgid "Number"
+msgstr "Zahl"
+
+#. SL9qD
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROMAN"
+msgid ""
+"The number to be converted to a Roman numeral must be in the 0 - 3999 range."
+msgstr ""
+"Die Zahl, die in eine römische Zahl umgewandelt werden soll, muss im Bereich"
+" 0 - 3999 liegen."
+
+#. XQ9Lu
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROMAN"
+msgid "Mode"
+msgstr "Modus"
+
+#. cAnMH
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROMAN"
+msgid ""
+"The more this value increases, the more the Roman numeral is simplified. The"
+" value must be in the 0 - 4 range."
+msgstr ""
+"Je höher dieser Wert ist, desto mehr wird die römische Zahl vereinfacht. Der"
+" Wert muss im Bereich 0 - 4 liegen."
+
+#. R6BAC
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARABIC"
+msgid "Calculates the value of a Roman numeral."
+msgstr "Berechnet den Wert einer römischen Zahl."
+
+#. QqUFE
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARABIC"
+msgid "Text"
+msgstr "Text"
+
+#. SY8fF
+#: scfuncs.src
+msgctxt "SC_OPCODE_ARABIC"
+msgid "The text that represents a Roman numeral."
+msgstr "Der Text, der eine römische Zahl darstellt."
+
+#. QJEo4
+#: scfuncs.src
+msgctxt "SC_OPCODE_INFO"
+msgid "Returns information about the environment."
+msgstr "Liefert Informationen über die Arbeitsumgebung."
+
+#. KsCBG
+#: scfuncs.src
+msgctxt "SC_OPCODE_INFO"
+msgid "Text"
+msgstr "Text"
+
+#. X9hTy
+#: scfuncs.src
+msgctxt "SC_OPCODE_INFO"
+msgid "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\"."
+msgstr "Einer der Werte \"osversion\", \"system\", \"release\", \"numfile\" und \"recalc\"."
+
+#. JqVEK
+#: scfuncs.src
+msgctxt "SC_OPCODE_UNICODE"
+msgid ""
+"Returns the numeric code for the first Unicode character in a text string."
+msgstr ""
+"Liefert den numerischen Code des ersten Unicode-Zeichens eines Textes."
+
+#. 3A4EZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_UNICODE"
+msgid "text"
+msgstr "Text"
+
+#. cyj3B
+#: scfuncs.src
+msgctxt "SC_OPCODE_UNICODE"
+msgid ""
+"This is the text for which the code of the first character is to be found."
+msgstr ""
+"Ist der Text, für den der Code des ersten Zeichens ermittelt werden soll."
+
+#. FAACL
+#: scfuncs.src
+msgctxt "SC_OPCODE_UNICHAR"
+msgid "Converts a code number into a Unicode character or letter."
+msgstr "Wandelt eine Codezahl in ein Unicode-Zeichen oder Buchstaben um."
+
+#. 2SQ2a
+#: scfuncs.src
+msgctxt "SC_OPCODE_UNICHAR"
+msgid "number"
+msgstr "Zahl"
+
+#. oCEUs
+#: scfuncs.src
+msgctxt "SC_OPCODE_UNICHAR"
+msgid "The code value for the character."
+msgstr "Der Codewert für das Zeichen."
+
+#. wEFTA
+#: scfuncs.src
+msgctxt "SC_OPCODE_EUROCONVERT"
+msgid "Converts a value from one to another Euro currency."
+msgstr "Rechnet einen Betrag aus einer EURO-Währung in eine andere um."
+
+#. gC36s
+#: scfuncs.src
+msgctxt "SC_OPCODE_EUROCONVERT"
+msgid "value"
+msgstr "Wert"
+
+#. K7fzs
+#: scfuncs.src
+msgctxt "SC_OPCODE_EUROCONVERT"
+msgid "The value to be converted."
+msgstr "Der umzurechnende Wert."
+
+#. FJiDG
+#: scfuncs.src
+msgctxt "SC_OPCODE_EUROCONVERT"
+msgid "from_currency"
+msgstr "Ausgangswährung"
+
+#. tXCkF
+#: scfuncs.src
+msgctxt "SC_OPCODE_EUROCONVERT"
+msgid "ISO 4217 code of the currency from which is converted, case-sensitive."
+msgstr ""
+"ISO 4217 Code der Währung, aus der unter Berücksichtigung der Groß- und "
+"Kleinschreibung umgerechnet wird."
+
+#. gwEJC
+#: scfuncs.src
+msgctxt "SC_OPCODE_EUROCONVERT"
+msgid "to_currency"
+msgstr "Zielwährung"
+
+#. bbLXi
+#: scfuncs.src
+msgctxt "SC_OPCODE_EUROCONVERT"
+msgid "ISO 4217 code of the currency into which is converted, case-sensitive."
+msgstr ""
+"ISO 4217 Code der Währung, in die unter Berücksichtigung der Groß- und "
+"Kleinschreibung umgerechnet wird."
+
+#. pUAeA
+#: scfuncs.src
+msgctxt "SC_OPCODE_EUROCONVERT"
+msgid "full_precision"
+msgstr "Volle_Genauigkeit"
+
+#. njCZA
+#: scfuncs.src
+msgctxt "SC_OPCODE_EUROCONVERT"
+msgid ""
+"If omitted or 0 or FALSE, the result is rounded to the decimals of "
+"to_currency. Else the result is not rounded."
+msgstr ""
+"Falls nicht angegeben oder 0 oder FALSCH, wird das Ergebnis auf die Anzahl "
+"Dezimalstellen der Zielwährung gerundet. Anderenfalls erfolgt keine Rundung."
+
+#. V3zMB
+#: scfuncs.src
+msgctxt "SC_OPCODE_EUROCONVERT"
+msgid "triangulation_precision"
+msgstr "Zwischenergebnis-Genauigkeit"
+
+#. FgSJd
+#: scfuncs.src
+msgctxt "SC_OPCODE_EUROCONVERT"
+msgid ""
+"If given and >=3, the intermediate result of a triangular conversion is "
+"rounded to that precision. If omitted, the result is not rounded."
+msgstr ""
+"Wenn angegeben und >=3, werden die Zwischenergebnisse auf diese Genauigkeit "
+"gerundet. Anderenfalls erfolgt keine Rundung."
+
+#. upY2X
+#: scfuncs.src
+msgctxt "SC_OPCODE_NUMBERVALUE"
+msgid "Converts text to a number, in a locale-independent way."
+msgstr "Wandelt Text in eine Zahl um, unabhängig vom Gebietsschema."
+
+#. nViHD
+#: scfuncs.src
+msgctxt "SC_OPCODE_NUMBERVALUE"
+msgid "text"
+msgstr "Text"
+
+#. CLoEY
+#: scfuncs.src
+msgctxt "SC_OPCODE_NUMBERVALUE"
+msgid "The text to be converted to a number."
+msgstr "Der Text, der in eine Zahl gewandelt wird."
+
+#. 9uToR
+#: scfuncs.src
+msgctxt "SC_OPCODE_NUMBERVALUE"
+msgid "decimal_separator"
+msgstr "_Dezimaltrennzeichen"
+
+#. rd4GM
+#: scfuncs.src
+msgctxt "SC_OPCODE_NUMBERVALUE"
+msgid "Defines the character used as the decimal separator."
+msgstr "Legt das Zeichen fest, welches als Dezimaltrenner verwendet wird."
+
+#. hMEuV
+#: scfuncs.src
+msgctxt "SC_OPCODE_NUMBERVALUE"
+msgid "group_separator"
+msgstr "_Tausendertrennzeichen"
+
+#. 7x9UQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_NUMBERVALUE"
+msgid "Defines the character(s) used as the group separator."
+msgstr ""
+"Legt das/die Zeichen fest, welche(s) als Gruppentrenner verwendet wird."
+
+#. 8TCwg
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITAND"
+msgid "Bitwise \"AND\" of two integers."
+msgstr "Bitweises \"UND\" zweier ganzer Zahlen."
+
+#. 62Ya7
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITAND"
+msgid "Number1"
+msgstr "Zahl1"
+
+#. bhj6F
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITAND"
+msgid "Positive integer less than 2^48."
+msgstr "Positive ganze Zahl kleiner als 2^48."
+
+#. R8Dcy
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITAND"
+msgid "Number2"
+msgstr "Zahl2"
+
+#. 8thnw
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITOR"
+msgid "Bitwise \"OR\" of two integers."
+msgstr "Bitweises \"ODER\" zweier ganzer Zahlen."
+
+#. ousqm
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITOR"
+msgid "Number1"
+msgstr "Zahl1"
+
+#. QxFXD
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITOR"
+msgid "Positive integer less than 2^48."
+msgstr "Positive ganze Zahl kleiner als 2^48."
+
+#. hwDoB
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITOR"
+msgid "Number2"
+msgstr "Zahl2"
+
+#. vH6JS
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITXOR"
+msgid "Bitwise \"exclusive OR\" of two integers."
+msgstr "Bitweises \"exklusives ODER\" zweier ganzer Zahlen."
+
+#. FdvzV
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITXOR"
+msgid "Number1"
+msgstr "Zahl1"
+
+#. jmyaz
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITXOR"
+msgid "Positive integer less than 2^48."
+msgstr "Positive ganze Zahl kleiner als 2^48."
+
+#. EfA3L
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITXOR"
+msgid "Number2"
+msgstr "Zahl2"
+
+#. MAnys
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITRSHIFT"
+msgid "Bitwise right shift of an integer value."
+msgstr "Bitweise Verschiebung um eine ganze Zahl nach rechts."
+
+#. WTgDZ
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITRSHIFT"
+msgid "Number"
+msgstr "Zahl"
+
+#. Q5EAQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITRSHIFT"
+msgid "The value to be shifted. Positive integer less than 2^48."
+msgstr ""
+"Wert, um den verschoben werden soll. Positive ganze Zahl kleiner als 2^48."
+
+#. xyokD
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITRSHIFT"
+msgid "Shift"
+msgstr "Verschiebung"
+
+#. 3THcX
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITRSHIFT"
+msgid "The integer number of bits the value is to be shifted."
+msgstr "Die Anzahl der Bits, um die der Wert verschoben werden soll."
+
+#. YTSPV
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITLSHIFT"
+msgid "Bitwise left shift of an integer value."
+msgstr "Bitweise Verschiebung um eine ganze Zahl nach links."
+
+#. F9ECb
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITLSHIFT"
+msgid "Number"
+msgstr "Zahl"
+
+#. BHCyp
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITLSHIFT"
+msgid "The value to be shifted. Positive integer less than 2^48."
+msgstr ""
+"Wert, um den verschoben werden soll. Positive ganze Zahl kleiner als 2^48."
+
+#. NW7rb
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITLSHIFT"
+msgid "Shift"
+msgstr "Verschiebung"
+
+#. GNqMu
+#: scfuncs.src
+msgctxt "SC_OPCODE_BITLSHIFT"
+msgid "The integer number of bits the value is to be shifted."
+msgstr "Die Anzahl der Bits, um die der Wert verschoben werden soll."
+
+#. NAqhC
+#: scfuncs.src
+msgctxt "SC_OPCODE_LENB"
+msgid "Calculates length of a text string, with DBCS"
+msgstr "Berechnet die Länge eines Textes mit DBCS"
+
+#. ZHTXH
+#: scfuncs.src
+msgctxt "SC_OPCODE_LENB"
+msgid "text"
+msgstr "Text"
+
+#. jDBmj
+#: scfuncs.src
+msgctxt "SC_OPCODE_LENB"
+msgid "The text in which the length is to be determined."
+msgstr "Der Text, dessen Länge bestimmt wird."
+
+#. KQzBT
+#: scfuncs.src
+msgctxt "SC_OPCODE_RIGHTB"
+msgid "Returns the last character or characters of a text,with DBCS"
+msgstr "Bestimmt das Endteilwort eines Textes mit DBCS"
+
+#. NZjDc
+#: scfuncs.src
+msgctxt "SC_OPCODE_RIGHTB"
+msgid "text"
+msgstr "Text"
+
+#. PXhin
+#: scfuncs.src
+msgctxt "SC_OPCODE_RIGHTB"
+msgid "The text in which the end partial words are to be determined."
+msgstr "Der Text, dessen Endteilwort bestimmt wird."
+
+#. GXCCS
+#: scfuncs.src
+msgctxt "SC_OPCODE_RIGHTB"
+msgid "number"
+msgstr "Zahl"
+
+#. sWFUo
+#: scfuncs.src
+msgctxt "SC_OPCODE_RIGHTB"
+msgid "The number of characters for the end text."
+msgstr "Die Anzahl der Zeichen für das Endteilwort."
+
+#. smAs2
+#: scfuncs.src
+msgctxt "SC_OPCODE_LEFTB"
+msgid "Returns the first character or characters of a text,with DBCS"
+msgstr "Bestimmt das Anfangsteilwort eines Textes mit DBCS"
+
+#. GjAZW
+#: scfuncs.src
+msgctxt "SC_OPCODE_LEFTB"
+msgid "text"
+msgstr "Text"
+
+#. gWnk6
+#: scfuncs.src
+msgctxt "SC_OPCODE_LEFTB"
+msgid "The text where the initial partial words are to be determined."
+msgstr "Der Text, dessen Anfangsteilwort bestimmt wird."
+
+#. 8UudC
+#: scfuncs.src
+msgctxt "SC_OPCODE_LEFTB"
+msgid "number"
+msgstr "Zahl"
+
+#. DMhmF
+#: scfuncs.src
+msgctxt "SC_OPCODE_LEFTB"
+msgid "The number of characters for the start text."
+msgstr "Die Anzahl der Zeichen für das Anfangsteilwort."
+
+#. KUfM8
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIDB"
+msgid "Returns a partial text string of a text, with DBCS"
+msgstr "Bestimmt ein Teilwort eines Textes mit DBCS"
+
+#. XFWDm
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIDB"
+msgid "text"
+msgstr "Text"
+
+#. obJfT
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIDB"
+msgid "The text in which partial words are to be determined."
+msgstr "Der Text, dessen Teilwort bestimmt wird."
+
+#. GFBTc
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIDB"
+msgid "start"
+msgstr "Anfang"
+
+#. NV2pS
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIDB"
+msgid "The position from which the part word is to be determined."
+msgstr "Die Position, ab der das Teilwort bestimmt wird."
+
+#. 3LB4z
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIDB"
+msgid "number"
+msgstr "Zahl"
+
+#. QR8KJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_MIDB"
+msgid "The number of characters for the text."
+msgstr "Die Anzahl der Zeichen für das Teilwort."
+
+#. j9GPX
+#: scfuncs.src
+msgctxt "SC_OPCODE_FILTERXML"
+msgid "Apply an XPath expression to an XML document"
+msgstr "Wendet einen XPath-Ausdruck auf ein XML-Dokument an"
+
+#. fAgAE
+#: scfuncs.src
+msgctxt "SC_OPCODE_FILTERXML"
+msgid "XML Document"
+msgstr "XML-Dokument"
+
+#. 8we7P
+#: scfuncs.src
+msgctxt "SC_OPCODE_FILTERXML"
+msgid "String containing a valid XML stream"
+msgstr "Zeichenkette, die einen gültigen XML-Strom enthält"
+
+#. cdrrb
+#: scfuncs.src
+msgctxt "SC_OPCODE_FILTERXML"
+msgid "XPath expression"
+msgstr "XPath-Ausdruck"
+
+#. cDPzP
+#: scfuncs.src
+msgctxt "SC_OPCODE_FILTERXML"
+msgid "String containing a valid XPath expression"
+msgstr "Zeichenkette, die einen gültigen XPath-Ausdruck enthält"
+
+#. ifSEQ
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLOR"
+msgid "Returns an implementation defined value representing a RGBA color"
+msgstr ""
+"Gibt eine Implementation definierter Werte zurück, die eine RGBA-Farbe "
+"repräsentieren"
+
+#. gdGoc
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLOR"
+msgid "Red"
+msgstr "Rot"
+
+#. QFxEU
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLOR"
+msgid "Value of red"
+msgstr "Wert für rot"
+
+#. QpRNe
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLOR"
+msgid "Green"
+msgstr "Grün"
+
+#. YCyrx
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLOR"
+msgid "Value of green"
+msgstr "Wert für grün"
+
+#. G6oQC
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLOR"
+msgid "Blue"
+msgstr "Blau"
+
+#. vvWR3
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLOR"
+msgid "Value of blue"
+msgstr "Wert für blau"
+
+#. FCkUe
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLOR"
+msgid "Alpha"
+msgstr "Alpha"
+
+#. fpC7x
+#: scfuncs.src
+msgctxt "SC_OPCODE_COLOR"
+msgid "Value of alpha"
+msgstr "Wert für Alpha"
+
+#. r9pqf
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEBSERVICE"
+msgid "Get some webcontent from an URI."
+msgstr "Inhalt teilweise von einer URI aus dem Internet beziehen."
+
+#. isBQw
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEBSERVICE"
+msgid "URI"
+msgstr "URI"
+
+#. 4eGFE
+#: scfuncs.src
+msgctxt "SC_OPCODE_WEBSERVICE"
+msgid "URI of the webservice"
+msgstr "URI des Webdienstes"
+
+#. gnEH3
+#: scfuncs.src
+msgctxt "SC_OPCODE_ENCODEURL"
+msgid "Return a URL-encoded string."
+msgstr "Gibt eine URL-codierte Zeichenkette zurück."
+
+#. tbG7X
+#: scfuncs.src
+msgctxt "SC_OPCODE_ENCODEURL"
+msgid "Text"
+msgstr "Text"
+
+#. yihFU
+#: scfuncs.src
+msgctxt "SC_OPCODE_ENCODEURL"
+msgid "A string to be URL-encoded"
+msgstr "Eine Zeichenkette, die URL-codiert ist"
+
+#. gWVmB
+#: scfuncs.src
+msgctxt "SC_OPCODE_ERF_MS"
+msgid "Returns the error function."
+msgstr "Gibt die Fehlerfunktion zurück."
+
+#. B6xA7
+#: scfuncs.src
+msgctxt "SC_OPCODE_ERF_MS"
+msgid "Lower Limit"
+msgstr "Untergrenze"
+
+#. 3NeRG
+#: scfuncs.src
+msgctxt "SC_OPCODE_ERF_MS"
+msgid "The lower limit for integration"
+msgstr "Die Untergrenze für die Integration"
+
+#. RdZKS
+#: scfuncs.src
+msgctxt "SC_OPCODE_ERFC_MS"
+msgid "Returns the complementary error function."
+msgstr "Gibt die komplementäre Fehlerfunktion zurück."
+
+#. zGZRx
+#: scfuncs.src
+msgctxt "SC_OPCODE_ERFC_MS"
+msgid "Lower Limit"
+msgstr "Untergrenze"
+
+#. sDHJj
+#: scfuncs.src
+msgctxt "SC_OPCODE_ERFC_MS"
+msgid "The lower limit for integration"
+msgstr "Die Untergrenze für die Integration"
+
+#. wWF3g
+#: scfuncs.src
+msgctxt "SC_OPCODE_RAWSUBTRACT"
+msgid ""
+"Returns the subtraction of numbers. Like a-b-c but without eliminating small"
+" roundoff errors."
+msgstr ""
+"Gibt die Differenz von Zahlen zurück. Beispielsweise a-b-c, aber ohne "
+"Rundungsfehler zu beseitigen."
+
+#. TY33B
+#: scfuncs.src
+msgctxt "SC_OPCODE_RAWSUBTRACT"
+msgid "minuend"
+msgstr "Minuend"
+
+#. oUk9p
+#: scfuncs.src
+msgctxt "SC_OPCODE_RAWSUBTRACT"
+msgid "Number from which following arguments are subtracted."
+msgstr "Zahl, von der die folgenden Argumente subtrahiert werden sollen."
+
+#. nWgJE
+#: scfuncs.src
+msgctxt "SC_OPCODE_RAWSUBTRACT"
+msgid "subtrahend "
+msgstr "Subtrahend "
+
+#. qTgL8
+#: scfuncs.src
+msgctxt "SC_OPCODE_RAWSUBTRACT"
+msgid ""
+"Subtrahend 1, subtrahend 2, ... are numerical arguments subtracted from the "
+"minuend."
+msgstr ""
+"Subtrahend 1, Subtrahend 2, ... sind numerische Argumente, die vom Minuend "
+"subtrahiert werden sollen."
+
+#. BW9By
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUNDSIG"
+msgid "Rounds a number to predefined significant digits."
+msgstr "Rundet eine Zahl auf eine vorgegebene Anzahl an Stellen."
+
+#. GDhS2
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUNDSIG"
+msgid "value"
+msgstr "Zahl"
+
+#. xHybD
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUNDSIG"
+msgid "The number to be rounded."
+msgstr "Die Zahl, die gerundet werden soll."
+
+#. tDyNG
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUNDSIG"
+msgid "digits"
+msgstr "Stellen"
+
+#. A5WFJ
+#: scfuncs.src
+msgctxt "SC_OPCODE_ROUNDSIG"
+msgid "The number of significant digits to which value is to be rounded."
+msgstr ""
+"Die Anzahl an signifikanten Stellen, auf die die Zahl gerundet werden soll."
+
+#. cZ6cB
+#: scstring.src
+msgctxt "SCSTR_LONG_SCDOC_NAME"
+msgid "%PRODUCTNAME %PRODUCTVERSION Spreadsheet"
+msgstr "%PRODUCTNAME %PRODUCTVERSION Tabellendokument"
+
+#. bZZip
+#: scstring.src
+msgctxt "SCSTR_SHORT_SCDOC_NAME"
+msgid "Spreadsheet"
+msgstr "Tabellendokument"
+
+#. QDNgJ
+#: scstring.src
+msgctxt "SCSTR_UNDEFINED"
+msgid "- undefined -"
+msgstr "- undefiniert -"
+
+#. ZaHNM
+#: scstring.src
+msgctxt "SCSTR_NONE"
+msgid "- none -"
+msgstr "- keiner -"
+
+#. A6eTv
+#: scstring.src
+msgctxt "SCSTR_ALL"
+msgid "- all -"
+msgstr "- alle -"
+
+#. QxhRo
+#: scstring.src
+msgctxt "SCSTR_MULTIPLE"
+msgid "- multiple -"
+msgstr "- mehrfach -"
+
+#. BfWxR
+#: scstring.src
+msgctxt "SCSTR_STDFILTER"
+msgid "Standard Filter..."
+msgstr "Standardfilter..."
+
+#. 7QCjE
+#: scstring.src
+msgctxt "SCSTR_TOP10FILTER"
+msgid "Top 10"
+msgstr "Top 10"
+
+#. FNDLK
+#: scstring.src
+msgctxt "SCSTR_FILTER_EMPTY"
+msgid "Empty"
+msgstr "Leer"
+
+#. EsQtb
+#: scstring.src
+msgctxt "SCSTR_FILTER_NOTEMPTY"
+msgid "Not Empty"
+msgstr "Nicht leer"
+
+#. Wgy7r
+#: scstring.src
+msgctxt "SCSTR_NONAME"
+msgid "unnamed"
+msgstr "unbenannt"
+
+#. cZNeR
+#: scstring.src
+msgctxt "SCSTR_COLUMN"
+msgid "Column %1"
+msgstr "Spalte %1"
+
+#. NXxyc
+#: scstring.src
+msgctxt "SCSTR_ROW"
+msgid "Row %1"
+msgstr "Zeile %1"
+
+#. 7p8BN
+#: scstring.src
+msgctxt "SCSTR_TABLE"
+msgid "Sheet"
+msgstr "Tabelle"
+
+#. ArnTD
+#: scstring.src
+msgctxt "SCSTR_NAME"
+msgid "Name"
+msgstr "Name"
+
+#. BxrBH
+#: scstring.src
+msgctxt "SCSTR_APDTABLE"
+msgid "Append Sheet"
+msgstr "Tabelle anhängen"
+
+#. sba4F
+#: scstring.src
+msgctxt "SCSTR_RENAMETAB"
+msgid "Rename Sheet"
+msgstr "Tabelle umbenennen"
+
+#. EEcgV
+#: scstring.src
+msgctxt "SCSTR_SET_TAB_BG_COLOR"
+msgid "Tab Color"
+msgstr "Registerfarbe"
+
+#. sTank
+#: scstring.src
+msgctxt "SCSTR_NO_TAB_BG_COLOR"
+msgid "Default"
+msgstr "Standard"
+
+#. yEEuF
+#: scstring.src
+msgctxt "SCSTR_RENAMEOBJECT"
+msgid "Name Object"
+msgstr "Objekt benennen"
+
+#. 3FHKw
+#: scstring.src
+msgctxt "STR_INSERTGRAPHIC"
+msgid "Insert Image"
+msgstr "Bild einfügen"
+
+#. qDtDM
+#: scstring.src
+msgctxt "SCSTR_PROTECTDOC"
+msgid "Protect Document"
+msgstr "Dokument schützen"
+
+#. C8zva
+#: scstring.src
+msgctxt "SCSTR_UNPROTECTDOC"
+msgid "Unprotect document"
+msgstr "Dokumentschutz aufheben"
+
+#. vDBCH
+#: scstring.src
+msgctxt "SCSTR_UNPROTECTTAB"
+msgid "Unprotect sheet"
+msgstr "Tabellenschutz aufheben"
+
+#. K7w3B
+#: scstring.src
+msgctxt "SCSTR_CHG_PROTECT"
+msgid "Protect Records"
+msgstr "Aufzeichnung schützen"
+
+#. DLDBg
+#: scstring.src
+msgctxt "SCSTR_CHG_UNPROTECT"
+msgid "Unprotect Records"
+msgstr "Aufzeichnungsschutz aufheben"
+
+#. rFdAS
+#: scstring.src
+msgctxt "SCSTR_PASSWORD"
+msgid "Password:"
+msgstr "Kennwort:"
+
+#. dd2wC
+#: scstring.src
+msgctxt "SCSTR_PASSWORDOPT"
+msgid "Password (optional):"
+msgstr "Kennwort (optional):"
+
+#. dTBug
+#: scstring.src
+msgctxt "SCSTR_WRONGPASSWORD"
+msgid "Incorrect Password"
+msgstr "Falsches Kennwort"
+
+#. bkGuJ
+#: scstring.src
+msgctxt "SCSTR_END"
+msgid "~End"
+msgstr "~Ende"
+
+#. XNnTf
+#: scstring.src
+msgctxt "SCSTR_UNKNOWN"
+msgid "Unknown"
+msgstr "Unbekannt"
+
+#. NoEfk
+#: scstring.src
+msgctxt "SCSTR_VALID_MINIMUM"
+msgid "~Minimum"
+msgstr "~Minimum"
+
+#. gKahz
+#: scstring.src
+msgctxt "SCSTR_VALID_MAXIMUM"
+msgid "~Maximum"
+msgstr "~Maximum"
+
+#. nmeHF
+#: scstring.src
+msgctxt "SCSTR_VALID_VALUE"
+msgid "~Value"
+msgstr "~Wert"
+
+#. 6YEEk
+#: scstring.src
+msgctxt "SCSTR_VALID_RANGE"
+msgid "~Source"
+msgstr "~Quelle"
+
+#. FA84s
+#: scstring.src
+msgctxt "SCSTR_VALID_LIST"
+msgid "~Entries"
+msgstr "~Einträge"
+
+#. vhcaA
+#: scstring.src
+msgctxt "SCSTR_CHARSET_USER"
+msgid "System"
+msgstr "System"
+
+#. 2tobg
+#: scstring.src
+msgctxt "SCSTR_COLUMN_USER"
+msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
+msgstr ""
+"Standard;Text;Datum (TMJ);Datum (MTJ);Datum (JMT);US-Englisch;ausblenden"
+
+#. px75F
+#: scstring.src
+msgctxt "SCSTR_FIELDSEP_TAB"
+msgid "Tab"
+msgstr "Tabulator"
+
+#. ZGpGp
+#: scstring.src
+msgctxt "SCSTR_FIELDSEP_SPACE"
+msgid "space"
+msgstr "Leerzeichen"
+
+#. xiSEb
+#: scstring.src
+msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
+msgid ""
+"%PRODUCTNAME Calc found an error in the formula entered.\n"
+"Do you want to accept the correction proposed below?\n"
+"\n"
+msgstr ""
+"%PRODUCTNAME Calc hat einen Fehler in der eingegebenen Formel gefunden.\n"
+"Möchten Sie die unten vorgeschlagene Korrektur akzeptieren?\n"
+"\n"
+
+#. C8dAj
+#: scstring.src
+msgctxt "SCSTR_UNDO_GRAFFILTER"
+msgid "Image Filter"
+msgstr "Grafikfilter"
+
+#. CfBRk
+#: scstring.src
+msgctxt "STR_CAPTION_DEFAULT_TEXT"
+msgid "Text"
+msgstr "Text"
+
+#. X6bVC
+#: scstring.src
+msgctxt "STR_DLG_SELECTTABLES_TITLE"
+msgid "Select Sheets"
+msgstr "Tabellen auswählen"
+
+#. SEDS2
+#: scstring.src
+msgctxt "STR_DLG_SELECTTABLES_LBNAME"
+msgid "~Selected sheets"
+msgstr "~Ausgewählte Tabellen"
+
+#. ZKmzb
+#: scstring.src
+msgctxt "STR_REPLCELLSWARN"
+msgid ""
+"You are pasting data into cells that already contain data.\n"
+"Do you really want to overwrite the existing data?"
+msgstr ""
+"Die Zellen, in die Sie Daten einfügen möchten, enthalten bereits Daten.\n"
+"Möchten Sie die vorhandenen Daten wirklich überschreiben?"
+
+#. SfEhE
+#: scstring.src
+msgctxt "STR_ACC_CSVRULER_NAME"
+msgid "Ruler"
+msgstr "Lineal"
+
+#. 3VwsT
+#: scstring.src
+msgctxt "STR_ACC_CSVRULER_DESCR"
+msgid "This ruler manages objects at fixed positions."
+msgstr "Dieses Lineal verwaltet Objekte an festen Positionen."
+
+#. 7Ream
+#: scstring.src
+msgctxt "STR_ACC_CSVGRID_NAME"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. uSKyF
+#: scstring.src
+msgctxt "STR_ACC_CSVGRID_DESCR"
+msgid "This sheet shows how the data will be arranged in the document."
+msgstr ""
+"Diese Tabelle zeigt die Anordnung der Daten, wie sie im Dokument erscheinen."
+
+#. MwTAm
+#: scstring.src
+msgctxt "STR_ACC_DOC_NAME"
+msgid "Document view"
+msgstr "Dokumentenansicht"
+
+#. NFaas
+#: scstring.src
+msgctxt "STR_ACC_TABLE_NAME"
+msgid "Sheet %1"
+msgstr "Tabelle %1"
+
+#. 2qRJG
+#: scstring.src
+msgctxt "STR_ACC_CELL_NAME"
+msgid "Cell %1"
+msgstr "Zelle %1"
+
+#. KD4PA
+#: scstring.src
+msgctxt "STR_ACC_LEFTAREA_NAME"
+msgid "Left area"
+msgstr "Linker Bereich"
+
+#. 56AkM
+#: scstring.src
+msgctxt "STR_ACC_PREVIEWDOC_NAME"
+msgid "Page preview"
+msgstr "Druckvorschau"
+
+#. RA4AS
+#: scstring.src
+msgctxt "STR_ACC_CENTERAREA_NAME"
+msgid "Center area"
+msgstr "Mittlerer Bereich"
+
+#. 2hpwq
+#: scstring.src
+msgctxt "STR_ACC_RIGHTAREA_NAME"
+msgid "Right area"
+msgstr "Rechter Bereich"
+
+#. FrXgq
+#: scstring.src
+msgctxt "STR_ACC_HEADER_NAME"
+msgid "Header of page %1"
+msgstr "Kopfzeile Seite %1"
+
+#. BwF8D
+#: scstring.src
+msgctxt "STR_ACC_FOOTER_NAME"
+msgid "Footer of page %1"
+msgstr "Fußzeile Seite %1"
+
+#. 9T4c8
+#: scstring.src
+msgctxt "STR_ACC_EDITLINE_NAME"
+msgid "Input line"
+msgstr "Eingabezeile"
+
+#. ejFak
+#: scstring.src
+msgctxt "STR_ACC_EDITLINE_DESCR"
+msgid "This is where you enter or edit text, numbers and formulas."
+msgstr "Hier können Sie Text, Zahlen und Formeln eingeben und bearbeiten."
+
+#. XX585
+#: scstring.src
+msgctxt "SCSTR_MEDIASHELL"
+msgid "Media Playback"
+msgstr "Medienwiedergabe"
+
+#. SuAaA
+#: scstring.src
+msgctxt "RID_SCSTR_ONCLICK"
+msgid "Mouse button pressed"
+msgstr "Maustaste gedrückt"
+
+#. 4prfv
+#: scstring.src
+msgctxt "STR_ACC_TOOLBAR_FORMULA"
+msgid "Formula Tool Bar"
+msgstr "Rechenleiste"
+
+#. nAcNZ
+#: scstring.src
+msgctxt "STR_ACC_DOC_SPREADSHEET"
+msgid "%PRODUCTNAME Spreadsheets"
+msgstr "%PRODUCTNAME Tabellendokument"
+
+#. 8UMap
+#: scstring.src
+msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
+msgid "(read-only)"
+msgstr "(schreibgeschützt)"
+
+#. fDxgL
+#: scstring.src
+msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
+msgid "(Preview mode)"
+msgstr "(Vorschaumodus)"
+
+#. MBZsg
+#: scstring.src
+msgctxt "SCSTR_PRINTOPT_PAGES"
+msgid "Pages"
+msgstr "Seiten"
+
+#. FYjDY
+#: scstring.src
+msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
+msgid "~Suppress output of empty pages"
+msgstr "Ausgabe ~leerer Seiten unterdrücken"
+
+#. LLh6D
+#: scstring.src
+msgctxt "SCSTR_PRINTOPT_PRNTCONTENT"
+msgid "Print content"
+msgstr "Druckinhalt"
+
+#. gbCMn
+#: scstring.src
+msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
+msgid "~All sheets"
+msgstr "~Alle Tabellen"
+
+#. 4mkRt
+#: scstring.src
+msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
+msgid "~Selected sheets"
+msgstr "~Ausgewählte Tabellen"
+
+#. niG4c
+#: scstring.src
+msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
+msgid "Selected cells"
+msgstr "Ausgewählte Zellen"
+
+#. QfDNW
+#: scstring.src
+msgctxt "SCSTR_PRINTOPT_FROMWHICH"
+msgid "From which print"
+msgstr "​​Druckbereich"
+
+#. PkJCM
+#: scstring.src
+msgctxt "SCSTR_PRINTOPT_ALLPAGES"
+msgid "All ~pages"
+msgstr "Alle ~Seiten"
+
+#. Misaz
+#: scstring.src
+msgctxt "SCSTR_PRINTOPT_PAGES_"
+msgid "Pa~ges"
+msgstr "S~eiten"
+
+#. Pw9Pu
+#: scstring.src
+msgctxt "SCSTR_PRINTOPT_PRODNAME"
+msgid "%PRODUCTNAME %s"
+msgstr "%PRODUCTNAME %s"
+
+#. 9DfxQ
+#: scstring.src
+msgctxt "SCSTR_WARN_ME_IN_FUTURE_CHECK"
+msgid "Warn me about this in the future."
+msgstr "Diese Warnung auch in Zukunft anzeigen."
+
+#. 4BEKq
+#: scstring.src
+msgctxt "SCSTR_DDEDOC_NOT_LOADED"
+msgid ""
+"The following DDE source could not be updated possibly because the source "
+"document was not open. Please launch the source document and try again."
+msgstr ""
+"Die folgende DDE-Quelle konnte nicht aktualisiert werden, da wahrscheinlich "
+"das Quelldokument nicht geöffnet wurde. Bitte starten Sie das Quelldokument "
+"und versuchen Sie es erneut."
+
+#. kGmko
+#: scstring.src
+msgctxt "SCSTR_EXTDOC_NOT_LOADED"
+msgid ""
+"The following external file could not be loaded. Data linked from this file "
+"did not get updated."
+msgstr ""
+"Die folgende externe Datei konnte nicht geladen werden. Die verknüpften "
+"Daten aus dieser Datei wurden nicht aktualisiert."
+
+#. BvtFc
+#: scstring.src
+msgctxt "SCSTR_UPDATE_EXTDOCS"
+msgid "Updating external links."
+msgstr "Aktualisiert externe Verknüpfungen."
+
+#. MACSv
+#: scstring.src
+msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
+msgid "Calc A1"
+msgstr "Calc A1"
+
+#. xEQCB
+#: scstring.src
+msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
+msgid "Excel A1"
+msgstr "Excel A1"
+
+#. KLkBH
+#: scstring.src
+msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
+msgid "Excel R1C1"
+msgstr "Excel R1C1"
+
+#. pr4wW
+#: scstring.src
+msgctxt "SCSTR_COL_LABEL"
+msgid "Range contains column la~bels"
+msgstr "Bereich ~enthält Spaltenbeschriftungen"
+
+#. mJyFP
+#: scstring.src
+msgctxt "SCSTR_ROW_LABEL"
+msgid "Range contains ~row labels"
+msgstr "Bereich ~enthält Zeilenbeschriftungen"
+
+#. uNEJE
+#: scstring.src
+msgctxt "SCSTR_UNIT"
+msgid "Millimeter"
+msgstr "Millimeter"
+
+#. aXv3t
+#: scstring.src
+msgctxt "SCSTR_UNIT"
+msgid "Centimeter"
+msgstr "Zentimeter"
+
+#. jDQ63
+#: scstring.src
+msgctxt "SCSTR_UNIT"
+msgid "Meter"
+msgstr "Meter"
+
+#. eGGuc
+#: scstring.src
+msgctxt "SCSTR_UNIT"
+msgid "Kilometer"
+msgstr "Kilometer"
+
+#. cF6mB
+#: scstring.src
+msgctxt "SCSTR_UNIT"
+msgid "Inch"
+msgstr "Zoll"
+
+#. 9cmpi
+#: scstring.src
+msgctxt "SCSTR_UNIT"
+msgid "Foot"
+msgstr "Fuß"
+
+#. H5KNf
+#: scstring.src
+msgctxt "SCSTR_UNIT"
+msgid "Miles"
+msgstr "Meilen"
+
+#. xpgDS
+#: scstring.src
+msgctxt "SCSTR_UNIT"
+msgid "Pica"
+msgstr "Pica"
+
+#. uEBed
+#: scstring.src
+msgctxt "SCSTR_UNIT"
+msgid "Point"
+msgstr "Point"
+
+#. ujjcx
+#: scstring.src
+msgctxt "SCSTR_VALERR"
+msgid "Invalid value"
+msgstr "Ungültiger Wert"
+
+#. SoLXN
+#: scstring.src
+msgctxt "STR_NOFORMULASPECIFIED"
+msgid "No formula specified."
+msgstr "Keine Formel angegeben."
+
+#. YFnCS
+#: scstring.src
+msgctxt "STR_NOCOLROW"
+msgid "Neither row or column specified."
+msgstr "Weder Zeile noch Spalte angegeben."
+
+#. 6YQh2
+#: scstring.src
+msgctxt "STR_WRONGFORMULA"
+msgid "Undefined name or range."
+msgstr "Undefinierter Name oder Bereich."
+
+#. 4aHCG
+#: scstring.src
+msgctxt "STR_WRONGROWCOL"
+msgid "Undefined name or wrong cell reference."
+msgstr "Nicht festgelegter Name oder falscher Zellbezug."
+
+#. G8KPr
+#: scstring.src
+msgctxt "STR_NOCOLFORMULA"
+msgid "Formulas don't form a column."
+msgstr "Formeln bilden keine Spalte."
+
+#. uSxCb
+#: scstring.src
+msgctxt "STR_NOROWFORMULA"
+msgid "Formulas don't form a row."
+msgstr "Formeln bilden keine Zeile."
+
+#. PknB5
+#: scstring.src
+msgctxt "STR_ADD_AUTOFORMAT_TITLE"
+msgid "Add AutoFormat"
+msgstr "AutoFormat hinzufügen"
+
+#. 7KuSQ
+#: scstring.src
+msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
+msgid "Rename AutoFormat"
+msgstr "AutoFormat umbenennen"
+
+#. hqtgD
+#: scstring.src
+msgctxt "STR_ADD_AUTOFORMAT_LABEL"
+msgid "Name"
+msgstr "Name"
+
+#. L9jQU
+#: scstring.src
+msgctxt "STR_DEL_AUTOFORMAT_TITLE"
+msgid "Delete AutoFormat"
+msgstr "AutoFormat löschen"
+
+#. KCDoJ
+#: scstring.src
+msgctxt "STR_DEL_AUTOFORMAT_MSG"
+msgid "Do you really want to delete the # AutoFormat?"
+msgstr "Möchten Sie das AutoFormat # wirklich löschen?"
+
+#. GDdL3
+#: scstring.src
+msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
+msgid "~Close"
+msgstr "Schlie~ßen"
+
+#. DAuNm
+#: scstring.src
+msgctxt "STR_JAN"
+msgid "Jan"
+msgstr "Jan."
+
+#. WWzNg
+#: scstring.src
+msgctxt "STR_FEB"
+msgid "Feb"
+msgstr "Feb."
+
+#. CCC3U
+#: scstring.src
+msgctxt "STR_MAR"
+msgid "Mar"
+msgstr "Mär."
+
+#. cr7Jq
+#: scstring.src
+msgctxt "STR_NORTH"
+msgid "North"
+msgstr "Nord"
+
+#. wHYPw
+#: scstring.src
+msgctxt "STR_MID"
+msgid "Mid"
+msgstr "Mitte"
+
+#. sxDHC
+#: scstring.src
+msgctxt "STR_SOUTH"
+msgid "South"
+msgstr "Süden"
+
+#. CWcdp
+#: scstring.src
+msgctxt "STR_SUM"
+msgid "Total"
+msgstr "Gesamt"
+
+#. 9EdTm
+#: scstring.src
+msgctxt "STR_SHEET"
+msgid "Sheet"
+msgstr "Tabelle"
+
+#. 2nBBq
+#: scstring.src
+msgctxt "STR_CELL"
+msgid "Cell"
+msgstr "Zelle"
+
+#. 2BvmM
+#: scstring.src
+msgctxt "STR_CONTENT"
+msgid "Content"
+msgstr "Inhalt"
+
+#. MMCxb
+#: scstring.src
+msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
+msgid "Page Anchor"
+msgstr "Seitenanker"
+
+#. fFFQ8
+#: scstring.src
+msgctxt "SCSTR_UNDO_CELL_ANCHOR"
+msgid "Cell Anchor"
+msgstr "Zellanker"
+
+#. rTGKc
+#: scstring.src
+msgctxt "SCSTR_CONDITION"
+msgid "Condition "
+msgstr "Bedingung "
+
+#. bpBbA
+#: toolbox.src
+msgctxt "SCSTR_QHELP_POSWND"
+msgid "Name Box"
+msgstr "Namenfeld"
+
+#. GeNTF
+#: toolbox.src
+msgctxt "SCSTR_QHELP_INPUTWND"
+msgid "Input line"
+msgstr "Eingabezeile"
+
+#. E6mnF
+#: toolbox.src
+msgctxt "SCSTR_QHELP_BTNCALC"
+msgid "Function Wizard"
+msgstr "Funktions-Assistent"
+
+#. rU6xA
+#: toolbox.src
+msgctxt "SCSTR_QHELP_BTNOK"
+msgid "Accept"
+msgstr "Übernehmen"
+
+#. NC6DB
+#: toolbox.src
+msgctxt "SCSTR_QHELP_BTNCANCEL"
+msgid "Cancel"
+msgstr "Verwerfen"
+
+#. 33ZR3
+#: toolbox.src
+msgctxt "SCSTR_QHELP_BTNSUM"
+msgid "Sum"
+msgstr "Summe"
+
+#. rTWqr
+#: toolbox.src
+msgctxt "SCSTR_QHELP_BTNEQUAL"
+msgid "Function"
+msgstr "Funktion"
+
+#. dPqKq
+#: toolbox.src
+msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
+msgid "Expand Formula Bar"
+msgstr "Eingabezeile ausklappen"
+
+#. ENx2Q
+#: toolbox.src
+msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
+msgid "Collapse Formula Bar"
+msgstr "Eingabezeile einklappen"
+
+#. pDDme
+#: scstyles.src
+msgctxt "RID_CELLSTYLEFAMILY"
+msgid "All Styles"
+msgstr "Alle Vorlagen"
+
+#. fRpve
+#: scstyles.src
+msgctxt "RID_CELLSTYLEFAMILY"
+msgid "Hidden Styles"
+msgstr "Verborgene Vorlagen"
+
+#. PgB96
+#: scstyles.src
+msgctxt "RID_CELLSTYLEFAMILY"
+msgid "Applied Styles"
+msgstr "Verwendete Vorlagen"
+
+#. gHBtK
+#: scstyles.src
+msgctxt "RID_CELLSTYLEFAMILY"
+msgid "Custom Styles"
+msgstr "Benutzervorlagen"
+
+#. ADhCx
+#: scstyles.src
+msgctxt "RID_PAGESTYLEFAMILY"
+msgid "All Styles"
+msgstr "Alle Vorlagen"
+
+#. kGzjB
+#: scstyles.src
+msgctxt "RID_PAGESTYLEFAMILY"
+msgid "Hidden Styles"
+msgstr "Verborgene Vorlagen"
+
+#. jQvqy
+#: scstyles.src
+msgctxt "RID_PAGESTYLEFAMILY"
+msgid "Custom Styles"
+msgstr "Benutzervorlagen"
+
+#. tNLKD
+#: checklistmenu.src
+msgctxt "STR_MENU_SORT_ASC"
+msgid "Sort Ascending"
+msgstr "Aufsteigend sortieren"
+
+#. S6kbN
+#: checklistmenu.src
+msgctxt "STR_MENU_SORT_DESC"
+msgid "Sort Descending"
+msgstr "Absteigend sortieren"
+
+#. BDYHo
+#: checklistmenu.src
+msgctxt "STR_MENU_SORT_CUSTOM"
+msgid "Custom Sort"
+msgstr "Benutzerdefiniert sortieren"
+
+#. YeT6Y
+#: checklistmenu.src
+msgctxt "STR_BTN_TOGGLE_ALL"
+msgid "All"
+msgstr "Alle"
+
+#. RqBMw
+#: checklistmenu.src
+msgctxt "STR_BTN_SELECT_CURRENT"
+msgid "Show only the current item."
+msgstr "Nur das aktuelle Element anzeigen."
+
+#. VnRK2
+#: checklistmenu.src
+msgctxt "STR_BTN_UNSELECT_CURRENT"
+msgid "Hide only the current item."
+msgstr "Nur das aktuelle Element ausblenden."
+
+#. eWCA7
+#: checklistmenu.src
+msgctxt "STR_EDIT_SEARCH_ITEMS"
+msgid "Search items..."
+msgstr "Elemente suchen..."
+
+#. dB8cp
+#: pvfundlg.src
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Sum"
+msgstr "Summe"
+
+#. LCLEs
+#: pvfundlg.src
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Count"
+msgstr "Anzahl"
+
+#. T46iU
+#: pvfundlg.src
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Average"
+msgstr "Mittelwert"
+
+#. 7VaLh
+#: pvfundlg.src
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Median"
+msgstr "Median"
+
+#. h7Nr4
+#: pvfundlg.src
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Max"
+msgstr "Max"
+
+#. GMhuR
+#: pvfundlg.src
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Min"
+msgstr "Min"
+
+#. Feqkk
+#: pvfundlg.src
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Product"
+msgstr "Produkt"
+
+#. D7AtV
+#: pvfundlg.src
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Count (Numbers only)"
+msgstr "Anzahl (nur Zahlen)"
+
+#. q5wsn
+#: pvfundlg.src
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "StDev (Sample)"
+msgstr "StAbw (Stichprobe)"
+
+#. Jj49u
+#: pvfundlg.src
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "StDevP (Population)"
+msgstr "StAbwN (Grundgesamtheit)"
+
+#. QdEEX
+#: pvfundlg.src
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "Var (Sample)"
+msgstr "Varianz (Stichprobe)"
+
+#. yazAP
+#: pvfundlg.src
+msgctxt "SCSTR_DPFUNCLISTBOX"
+msgid "VarP (Population)"
+msgstr "Varianzen (Grundgesamtheit)"
+
+#. bFjd9
+#: StatisticsDialogs.src
+msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
+msgid "Moving Average"
+msgstr "Gleitender Mittelwert"
+
+#. ZUkPQ
+#: StatisticsDialogs.src
+msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
+msgid "Exponential Smoothing"
+msgstr "Exponentielle Glättung"
+
+#. LAfqT
+#: StatisticsDialogs.src
+msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
+msgid "Analysis of Variance"
+msgstr "Varianzanalyse (ANOVA)"
+
+#. NY8WD
+#: StatisticsDialogs.src
+msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
+msgid "ANOVA - Single Factor"
+msgstr "Varianzanalyse (ANOVA) - einfaktoriell"
+
+#. AFnEZ
+#: StatisticsDialogs.src
+msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
+msgid "ANOVA - Two Factor"
+msgstr "Varianzanalyse (ANOVA) - zweifaktoriell"
+
+#. hBPGD
+#: StatisticsDialogs.src
+msgctxt "STR_ANOVA_LABEL_GROUPS"
+msgid "Groups"
+msgstr "Gruppen"
+
+#. DiUWy
+#: StatisticsDialogs.src
+msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
+msgid "Between Groups"
+msgstr "Zwischen den Gruppen"
+
+#. fBh3S
+#: StatisticsDialogs.src
+msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
+msgid "Within Groups"
+msgstr "Innerhalb der Gruppen"
+
+#. DFcw4
+#: StatisticsDialogs.src
+msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
+msgid "Source of Variation"
+msgstr "Varianzquelle"
+
+#. KYbb8
+#: StatisticsDialogs.src
+msgctxt "STR_ANOVA_LABEL_SS"
+msgid "SS"
+msgstr "BB"
+
+#. j7j6E
+#: StatisticsDialogs.src
+msgctxt "STR_ANOVA_LABEL_DF"
+msgid "df"
+msgstr "fg"
+
+#. 6QJED
+#: StatisticsDialogs.src
+msgctxt "STR_ANOVA_LABEL_MS"
+msgid "MS"
+msgstr "MS"
+
+#. JcWo9
+#: StatisticsDialogs.src
+msgctxt "STR_ANOVA_LABEL_F"
+msgid "F"
+msgstr "F"
+
+#. MMmsS
+#: StatisticsDialogs.src
+msgctxt "STR_ANOVA_LABEL_P_VALUE"
+msgid "P-value"
+msgstr "P-Wert"
+
+#. UoaCS
+#: StatisticsDialogs.src
+msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
+msgid "F critical"
+msgstr "F-kritisch"
+
+#. oJD9H
+#: StatisticsDialogs.src
+msgctxt "STR_ANOVA_LABEL_TOTAL"
+msgid "Total"
+msgstr "Insgesamt"
+
+#. kvSFC
+#: StatisticsDialogs.src
+msgctxt "STR_CORRELATION_UNDO_NAME"
+msgid "Correlation"
+msgstr "Korrelation"
+
+#. WC4SJ
+#: StatisticsDialogs.src
+msgctxt "STR_CORRELATION_LABEL"
+msgid "Correlations"
+msgstr "Korrelationen"
+
+#. AAb7T
+#: StatisticsDialogs.src
+msgctxt "STR_COVARIANCE_UNDO_NAME"
+msgid "Covariance"
+msgstr "Kovarianz"
+
+#. VyxUL
+#: StatisticsDialogs.src
+msgctxt "STR_COVARIANCE_LABEL"
+msgid "Covariances"
+msgstr "Kovarianzen"
+
+#. 8gmqu
+#: StatisticsDialogs.src
+msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
+msgid "Descriptive Statistics"
+msgstr "Beschreibende Statistik"
+
+#. FGXC5
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_MEAN"
+msgid "Mean"
+msgstr "Mittelwert"
+
+#. 2sHVR
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_STD_ERROR"
+msgid "Standard Error"
+msgstr "Standardfehler"
+
+#. KrDBB
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_MODE"
+msgid "Mode"
+msgstr "Modus"
+
+#. AAbEo
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_MEDIAN"
+msgid "Median"
+msgstr "Median"
+
+#. h2HaP
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_VARIANCE"
+msgid "Variance"
+msgstr "Varianz"
+
+#. 3uYMC
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_STD_DEVIATION"
+msgid "Standard Deviation"
+msgstr "Standardabweichung"
+
+#. JTx7f
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_KURTOSIS"
+msgid "Kurtosis"
+msgstr "Kurtosis"
+
+#. EXJJt
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_SKEWNESS"
+msgid "Skewness"
+msgstr "Schräge"
+
+#. HkRYo
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_RANGE"
+msgid "Range"
+msgstr "Bereich"
+
+#. LHk8p
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_MIN"
+msgid "Minimum"
+msgstr "Minimum"
+
+#. LtMJs
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_MAX"
+msgid "Maximum"
+msgstr "Maximum"
+
+#. Q5r5c
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_SUM"
+msgid "Sum"
+msgstr "Summe"
+
+#. s8K23
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_COUNT"
+msgid "Count"
+msgstr "Anzahl"
+
+#. vMGqY
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_FIRST_QUARTILE"
+msgid "First Quartile "
+msgstr "Erstes Quartil"
+
+#. PGXzY
+#: StatisticsDialogs.src
+msgctxt "STRID_CALC_THIRD_QUARTILE"
+msgid "Third Quartile"
+msgstr "Drittes Quartil"
+
+#. gABRP
+#: StatisticsDialogs.src
+msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
+msgid "Random ($(DISTRIBUTION))"
+msgstr "Zufällig ($(DISTRIBUTION))"
+
+#. A8Rc9
+#: StatisticsDialogs.src
+msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
+msgid "Uniform"
+msgstr "Gleichverteilt"
+
+#. 9ke8L
+#: StatisticsDialogs.src
+msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
+msgid "Uniform Integer"
+msgstr "Gleichverteilte ganze Zahlen"
+
+#. GC2LH
+#: StatisticsDialogs.src
+msgctxt "STR_DISTRIBUTION_NORMAL"
+msgid "Normal"
+msgstr "Normal"
+
+#. XjQ2x
+#: StatisticsDialogs.src
+msgctxt "STR_DISTRIBUTION_CAUCHY"
+msgid "Cauchy"
+msgstr "Cauchy"
+
+#. G5CqB
+#: StatisticsDialogs.src
+msgctxt "STR_DISTRIBUTION_BERNOULLI"
+msgid "Bernoulli"
+msgstr "Bernoulli"
+
+#. GpJUB
+#: StatisticsDialogs.src
+msgctxt "STR_DISTRIBUTION_BINOMIAL"
+msgid "Binomial"
+msgstr "Binomialverteilt"
+
+#. 6yJKm
+#: StatisticsDialogs.src
+msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
+msgid "Negative Binomial"
+msgstr "Negativ binomialverteilt"
+
+#. zzpmN
+#: StatisticsDialogs.src
+msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
+msgid "Chi Squared"
+msgstr "Chi-Quadrat"
+
+#. NGBzX
+#: StatisticsDialogs.src
+msgctxt "STR_DISTRIBUTION_GEOMETRIC"
+msgid "Geometric"
+msgstr "Geometrisch-verteilt"
+
+#. BNZPE
+#: StatisticsDialogs.src
+msgctxt "STR_RNG_PARAMETER_MINIMUM"
+msgid "Minimum"
+msgstr "Minimum"
+
+#. EThhi
+#: StatisticsDialogs.src
+msgctxt "STR_RNG_PARAMETER_MAXIMUM"
+msgid "Maximum"
+msgstr "Maximum"
+
+#. RPYEG
+#: StatisticsDialogs.src
+msgctxt "STR_RNG_PARAMETER_MEAN"
+msgid "Mean"
+msgstr "Mittelwert"
+
+#. VeqrX
+#: StatisticsDialogs.src
+msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
+msgid "Standard Deviation"
+msgstr "Standardabweichung"
+
+#. ChwWE
+#: StatisticsDialogs.src
+msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
+msgid "Median"
+msgstr "Median"
+
+#. SzgEb
+#: StatisticsDialogs.src
+msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
+msgid "Sigma"
+msgstr "Sigma"
+
+#. 94TBK
+#: StatisticsDialogs.src
+msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
+msgid "p Value"
+msgstr "p-Wert"
+
+#. AfUsB
+#: StatisticsDialogs.src
+msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
+msgid "Number of Trials"
+msgstr "Anzahl der Versuche"
+
+#. DdfR6
+#: StatisticsDialogs.src
+msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
+msgid "nu Value"
+msgstr "n-Wert"
+
+#. gygpC
+#: StatisticsDialogs.src
+msgctxt "STR_SAMPLING_UNDO_NAME"
+msgid "Sampling"
+msgstr "Stichproben"
+
+#. zLuBp
+#: StatisticsDialogs.src
+msgctxt "STR_FTEST"
+msgid "F-test"
+msgstr "F-Test"
+
+#. bQEfv
+#: StatisticsDialogs.src
+msgctxt "STR_FTEST_UNDO_NAME"
+msgid "F-test"
+msgstr "F-Test"
+
+#. 6f7gR
+#: StatisticsDialogs.src
+msgctxt "STR_TTEST"
+msgid "t-test"
+msgstr "t-Test"
+
+#. FdYak
+#: StatisticsDialogs.src
+msgctxt "STR_TTEST_UNDO_NAME"
+msgid "t-test"
+msgstr "t-Test"
+
+#. dWPSe
+#: StatisticsDialogs.src
+msgctxt "STR_ZTEST"
+msgid "z-test"
+msgstr "Gauß-Test"
+
+#. QvZ7V
+#: StatisticsDialogs.src
+msgctxt "STR_ZTEST_UNDO_NAME"
+msgid "z-test"
+msgstr "Gauß-Test"
+
+#. D6AqL
+#: StatisticsDialogs.src
+msgctxt "STR_CHI_SQUARE_TEST"
+msgid "Test of Independence (Chi-Square)"
+msgstr "Unabhängigkeitstest (Chi-Quadrat)"
+
+#. PvFSb
+#: StatisticsDialogs.src
+msgctxt "STR_REGRESSION_UNDO_NAME"
+msgid "Regression"
+msgstr "Regression"
+
+#. NXrYh
+#: StatisticsDialogs.src
+msgctxt "STR_REGRESSION"
+msgid "Regression"
+msgstr "Regression"
+
+#. KNJ5s
+#: StatisticsDialogs.src
+msgctxt "STR_COLUMN_LABEL_TEMPLATE"
+msgid "Column %NUMBER%"
+msgstr "Spalte %NUMBER%"
+
+#. aTAGd
+#: StatisticsDialogs.src
+msgctxt "STR_ROW_LABEL_TEMPLATE"
+msgid "Row %NUMBER%"
+msgstr "Zeile %NUMBER%"
+
+#. nAbaC
+#: StatisticsDialogs.src
+msgctxt "STR_LABEL_ALPHA"
+msgid "Alpha"
+msgstr "Alpha"
+
+#. FZZCu
+#: StatisticsDialogs.src
+msgctxt "STR_VARIABLE_1_LABEL"
+msgid "Variable 1"
+msgstr "Variable 1"
+
+#. pnyaa
+#: StatisticsDialogs.src
+msgctxt "STR_VARIABLE_2_LABEL"
+msgid "Variable 2"
+msgstr "Variable 2"
+
+#. LU4CC
+#: StatisticsDialogs.src
+msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
+msgid "Hypothesized Mean Difference"
+msgstr "Hypothetische Mittelwertdifferenz"
+
+#. sCNt9
+#: StatisticsDialogs.src
+msgctxt "STR_OBSERVATIONS_LABEL"
+msgid "Observations"
+msgstr "Beobachtungen"
+
+#. arX5v
+#: StatisticsDialogs.src
+msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
+msgid "Observed Mean Difference"
+msgstr "Beobachtete Mittelwertdifferenz"
+
+#. kEPsb
+#: StatisticsDialogs.src
+msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
+msgid "df"
+msgstr "fg"
+
+#. FYUYT
+#: StatisticsDialogs.src
+msgctxt "STR_P_VALUE_LABEL"
+msgid "P-value"
+msgstr "P-Wert"
+
+#. S3BHc
+#: StatisticsDialogs.src
+msgctxt "STR_CRITICAL_VALUE_LABEL"
+msgid "Critical Value"
+msgstr "Kritischer Wert"
+
+#. wgpT3
+#: StatisticsDialogs.src
+msgctxt "STR_TEST_STATISTIC_LABEL"
+msgid "Test Statistic"
+msgstr "Statistik testen"
+
+#. rtSox
+#: StatisticsDialogs.src
+msgctxt "STR_LABEL_LINEAR"
+msgid "Linear"
+msgstr "Linear"
+
+#. kVG6g
+#: StatisticsDialogs.src
+msgctxt "STR_LABEL_LOGARITHMIC"
+msgid "Logarithmic"
+msgstr "Logarithmisch"
+
+#. wmyFW
+#: StatisticsDialogs.src
+msgctxt "STR_LABEL_POWER"
+msgid "Power"
+msgstr "Potenz"
+
+#. 6Cghz
+#: StatisticsDialogs.src
+msgctxt "STR_LABEL_REGRESSION_MODEL"
+msgid "Regression Model"
+msgstr "Regressionsmodell"
+
+#. dr3Gt
+#: StatisticsDialogs.src
+msgctxt "STR_LABEL_RSQUARED"
+msgid "R^2"
+msgstr "R^2"
+
+#. v32yW
+#: StatisticsDialogs.src
+msgctxt "STR_LABEL_SLOPE"
+msgid "Slope"
+msgstr "Steigung"
+
+#. PGno2
+#: StatisticsDialogs.src
+msgctxt "STR_LABEL_INTERCEPT"
+msgid "Intercept"
+msgstr "Achsenabschnitt"
+
+#. bk7FH
+#: StatisticsDialogs.src
+msgctxt "STR_FTEST_P_RIGHT_TAIL"
+msgid "P (F<=f) right-tail"
+msgstr "P (F<=f) rechtsseitig"
+
+#. CkHJw
+#: StatisticsDialogs.src
+msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
+msgid "F Critical right-tail"
+msgstr "F kritisch, rechtsseitig"
+
+#. J7yMZ
+#: StatisticsDialogs.src
+msgctxt "STR_FTEST_P_LEFT_TAIL"
+msgid "P (F<=f) left-tail"
+msgstr "P (F<=f) linksseitig"
+
+#. R3BNC
+#: StatisticsDialogs.src
+msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
+msgid "F Critical left-tail"
+msgstr "F-kritisch, linksseitig"
+
+#. Bve5D
+#: StatisticsDialogs.src
+msgctxt "STR_FTEST_P_TWO_TAIL"
+msgid "P two-tail"
+msgstr "P beidseitig"
+
+#. 4YZrT
+#: StatisticsDialogs.src
+msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
+msgid "F Critical two-tail"
+msgstr "F kritisch, beidseitig"
+
+#. qaf4N
+#: StatisticsDialogs.src
+msgctxt "STR_TTEST_PEARSON_CORRELATION"
+msgid "Pearson Correlation"
+msgstr "Pearson-Korrelation"
+
+#. C6BU8
+#: StatisticsDialogs.src
+msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
+msgid "Variance of the Differences"
+msgstr "Varianz der Differenzen"
+
+#. j8NuP
+#: StatisticsDialogs.src
+msgctxt "STR_TTEST_T_STAT"
+msgid "t Stat"
+msgstr "t-Statistik"
+
+#. bKoeX
+#: StatisticsDialogs.src
+msgctxt "STR_TTEST_P_ONE_TAIL"
+msgid "P (T<=t) one-tail"
+msgstr "P (T<=t) einseitig"
+
+#. dub8R
+#: StatisticsDialogs.src
+msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
+msgid "t Critical one-tail"
+msgstr "t-kritisch, einseitig"
+
+#. FrDDz
+#: StatisticsDialogs.src
+msgctxt "STR_TTEST_P_TWO_TAIL"
+msgid "P (T<=t) two-tail"
+msgstr "P (T<=t) beidseitig"
+
+#. RQqAd
+#: StatisticsDialogs.src
+msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
+msgid "t Critical two-tail"
+msgstr "t-kritisch, beidseitig"
+
+#. kDCsZ
+#: StatisticsDialogs.src
+msgctxt "STR_ZTEST_Z_VALUE"
+msgid "z"
+msgstr "Z"
+
+#. CF8D5
+#: StatisticsDialogs.src
+msgctxt "STR_ZTEST_KNOWN_VARIANCE"
+msgid "Known Variance"
+msgstr "Bekannte Varianz"
+
+#. cYWDr
+#: StatisticsDialogs.src
+msgctxt "STR_ZTEST_P_ONE_TAIL"
+msgid "P (Z<=z) one-tail"
+msgstr "P (G<=g) einseitig"
+
+#. DmEVf
+#: StatisticsDialogs.src
+msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
+msgid "z Critical one-tail"
+msgstr "g-kritisch, einseitig"
+
+#. G8PeP
+#: StatisticsDialogs.src
+msgctxt "STR_ZTEST_P_TWO_TAIL"
+msgid "P (Z<=z) two-tail"
+msgstr "P (G<=g) beidseitig"
+
+#. rGBfK
+#: StatisticsDialogs.src
+msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
+msgid "z Critical two-tail"
+msgstr "g-kritisch, beidseitig"
+
+#. 56Wmj
+#: navipi.src
+msgctxt "SCSTR_CONTENT_ROOT"
+msgid "Contents"
+msgstr "Inhalte"
+
+#. wLN3J
+#: navipi.src
+msgctxt "SCSTR_CONTENT_TABLE"
+msgid "Sheets"
+msgstr "Tabellen"
+
+#. 3ZhJn
+#: navipi.src
+msgctxt "SCSTR_CONTENT_RANGENAME"
+msgid "Range names"
+msgstr "Bereichsnamen"
+
+#. jjQeD
+#: navipi.src
+msgctxt "SCSTR_CONTENT_DBAREA"
+msgid "Database ranges"
+msgstr "Datenbankbereiche"
+
+#. kbHfD
+#: navipi.src
+msgctxt "SCSTR_CONTENT_GRAPHIC"
+msgid "Images"
+msgstr "Bilder"
+
+#. 3imVs
+#: navipi.src
+msgctxt "SCSTR_CONTENT_OLEOBJECT"
+msgid "OLE objects"
+msgstr "OLE-Objekte"
+
+#. T28Cj
+#: navipi.src
+msgctxt "SCSTR_CONTENT_NOTE"
+msgid "Comments"
+msgstr "Kommentare"
+
+#. 5UcFo
+#: navipi.src
+msgctxt "SCSTR_CONTENT_AREALINK"
+msgid "Linked areas"
+msgstr "Verknüpfte Bereiche"
+
+#. HzVgF
+#: navipi.src
+msgctxt "SCSTR_CONTENT_DRAWING"
+msgid "Drawing objects"
+msgstr "Zeichnungsobjekte"
+
+#. CbrUN
+#: navipi.src
+msgctxt "SCSTR_DRAGMODE"
+msgid "Drag Mode"
+msgstr "Ziehmodus"
+
+#. Xw9QW
+#: navipi.src
+msgctxt "SCSTR_DISPLAY"
+msgid "Display"
+msgstr "Anzeige"
+
+#. sCafb
+#: navipi.src
+msgctxt "SCSTR_ACTIVE"
+msgid "active"
+msgstr "Aktiv"
+
+#. q6EmB
+#: navipi.src
+msgctxt "SCSTR_NOTACTIVE"
+msgid "inactive"
+msgstr "Inaktiv"
+
+#. Gr6xn
+#: navipi.src
+msgctxt "SCSTR_HIDDEN"
+msgid "hidden"
+msgstr "verborgen"
+
+#. vnwQr
+#: navipi.src
+msgctxt "SCSTR_ACTIVEWIN"
+msgid "Active Window"
+msgstr "Aktives Fenster"
+
+#. yo3cD
+#: navipi.src
+msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
+msgid "Scenario Name"
+msgstr "Name des Szenarios"
+
+#. oWz3B
+#: navipi.src
+msgctxt "SCSTR_QHLP_SCEN_COMMENT"
+msgid "Comment"
+msgstr "Kommentar"
+
+#. HDiei
+#: acredlin.src
+msgctxt "STR_CHG_INSERT_COLS"
+msgid "Column inserted"
+msgstr "Spalte eingefügt"
+
+#. brecA
+#: acredlin.src
+msgctxt "STR_CHG_INSERT_ROWS"
+msgid "Row inserted "
+msgstr "Zeile eingefügt"
+
+#. nBf8B
+#: acredlin.src
+msgctxt "STR_CHG_INSERT_TABS"
+msgid "Sheet inserted "
+msgstr "Tabelle eingefügt"
+
+#. Td8iF
+#: acredlin.src
+msgctxt "STR_CHG_DELETE_COLS"
+msgid "Column deleted"
+msgstr "Spalte gelöscht"
+
+#. 8Kopo
+#: acredlin.src
+msgctxt "STR_CHG_DELETE_ROWS"
+msgid "Row deleted"
+msgstr "Zeile gelöscht"
+
+#. DynWz
+#: acredlin.src
+msgctxt "STR_CHG_DELETE_TABS"
+msgid "Sheet deleted"
+msgstr "Tabelle gelöscht"
+
+#. 6f9S9
+#: acredlin.src
+msgctxt "STR_CHG_MOVE"
+msgid "Range moved"
+msgstr "Bereich verschoben"
+
+#. UpHkf
+#: acredlin.src
+msgctxt "STR_CHG_CONTENT"
+msgid "Changed contents"
+msgstr "Inhaltsänderung"
+
+#. cefNw
+#: acredlin.src
+msgctxt "STR_CHG_CONTENT_WITH_CHILD"
+msgid "Changed contents"
+msgstr "Inhaltsänderung"
+
+#. DcsSq
+#: acredlin.src
+msgctxt "STR_CHG_CHILD_CONTENT"
+msgid "Changed to "
+msgstr "Änderung zu "
+
+#. naPuN
+#: acredlin.src
+msgctxt "STR_CHG_CHILD_ORGCONTENT"
+msgid "Original"
+msgstr "Original"
+
+#. cbtSw
+#: acredlin.src
+msgctxt "STR_CHG_REJECT"
+msgid "Changes rejected"
+msgstr "Änderung verworfen"
+
+#. rGkvk
+#: acredlin.src
+msgctxt "STR_CHG_ACCEPTED"
+msgid "Accepted"
+msgstr "Akzeptierte"
+
+#. FRREF
+#: acredlin.src
+msgctxt "STR_CHG_REJECTED"
+msgid "Rejected"
+msgstr "Verworfen"
+
+#. bG7Pb
+#: acredlin.src
+msgctxt "STR_CHG_NO_ENTRY"
+msgid "No Entry"
+msgstr "Kein Eintrag"
+
+#. i2doZ
+#: acredlin.src
+msgctxt "STR_CHG_EMPTY"
+msgid "<empty>"
+msgstr "<leer>"
+
+#. N6UWi
+#: conflictsdlg.src
+msgctxt "STR_TITLE_CONFLICT"
+msgid "Conflict"
+msgstr "Konflikt"
+
+#. Bqfa8
+#: conflictsdlg.src
+msgctxt "STR_TITLE_AUTHOR"
+msgid "Author"
+msgstr "Autor"
+
+#. Brp6j
+#: conflictsdlg.src
+msgctxt "STR_TITLE_DATE"
+msgid "Date"
+msgstr "Datum"
+
+#. nSD8r
+#: conflictsdlg.src
+msgctxt "STR_UNKNOWN_USER_CONFLICT"
+msgid "Unknown User"
+msgstr "Unbekannter Benutzer"
+
+#. dAt5Q
+#: retypepassdlg.src
+msgctxt "STR_NOT_PROTECTED"
+msgid "Not protected"
+msgstr "Nicht geschützt"
+
+#. 3TDDs
+#: retypepassdlg.src
+msgctxt "STR_NOT_PASS_PROTECTED"
+msgid "Not password-protected"
+msgstr "Nicht kennwortgeschützt"
+
+#. qBe6G
+#: retypepassdlg.src
+msgctxt "STR_HASH_BAD"
+msgid "Hash incompatible"
+msgstr "Hash inkompatibel"
+
+#. XoAEE
+#: retypepassdlg.src
+msgctxt "STR_HASH_GOOD"
+msgid "Hash compatible"
+msgstr "Hash kompatibel"
+
+#. MHDYB
+#: retypepassdlg.src
+msgctxt "STR_RETYPE"
+msgid "Re-type"
+msgstr "Wiederholen"
+
+#. TurFD
+#: advancedfilterdialog.ui
+msgctxt "advancedfilterdialog|AdvancedFilterDialog"
+msgid "Advanced Filter"
+msgstr "Erweiterter Filter"
+
+#. yALPD
+#: advancedfilterdialog.ui
+msgctxt "advancedfilterdialog|label1"
+msgid "Read _Filter Criteria From"
+msgstr "_Filterkriterien befinden sich in"
+
+#. HBUJA
+#: advancedfilterdialog.ui
+msgctxt "advancedfilterdialog|case"
+msgid "_Case sensitive"
+msgstr "_Groß- und Kleinschreibung"
+
+#. FHGUG
+#: advancedfilterdialog.ui
+msgctxt "advancedfilterdialog|header"
+msgid "Range c_ontains column labels"
+msgstr "Bereich enthält _Spaltenbeschriftungen"
+
+#. WfvCG
+#: advancedfilterdialog.ui
+msgctxt "advancedfilterdialog|regexp"
+msgid "Regular _expressions"
+msgstr "_Reguläre Ausdrücke"
+
+#. tDDfr
+#: advancedfilterdialog.ui
+msgctxt "advancedfilterdialog|unique"
+msgid "_No duplications"
+msgstr "Keine _Duplikate"
+
+#. DbA9A
+#: advancedfilterdialog.ui
+msgctxt "advancedfilterdialog|copyresult"
+msgid "Co_py results to:"
+msgstr "Ko_piere Ergebnisse nach:"
+
+#. 2c6r8
+#: advancedfilterdialog.ui
+msgctxt "advancedfilterdialog|destpers"
+msgid "_Keep filter criteria"
+msgstr "Filterkriterien _beibehalten"
+
+#. NLz5G
+#: advancedfilterdialog.ui
+msgctxt "advancedfilterdialog|lbcopyarea-atkobject"
+msgid "Copy results to:"
+msgstr "Ergebnisse kopieren nach:"
+
+#. TDWTt
+#: advancedfilterdialog.ui
+msgctxt "advancedfilterdialog|edcopyarea-atkobject"
+msgid "Copy results to:"
+msgstr "Ergebnisse kopieren nach:"
+
+#. RGXM4
+#: advancedfilterdialog.ui
+msgctxt "advancedfilterdialog|dbarealabel"
+msgid "Data range:"
+msgstr "Datenbereich:"
+
+#. 44y9m
+#: advancedfilterdialog.ui
+msgctxt "advancedfilterdialog|dbarea"
+msgid "dummy"
+msgstr "Platzhalter"
+
+#. wVAjU
+#: advancedfilterdialog.ui
+msgctxt "advancedfilterdialog|label2"
+msgid "Op_tions"
+msgstr "O_ptionen"
+
+#. NCX7N
+#: allheaderfooterdialog.ui
+msgctxt "allheaderfooterdialog|AllHeaderFooterDialog"
+msgid "Headers/Footers"
+msgstr "Kopf-/Fußzeilen"
+
+#. 5TTBG
+#: allheaderfooterdialog.ui
+msgctxt "allheaderfooterdialog|headerright"
+msgid "Header (right)"
+msgstr "Kopfzeile (rechts)"
+
+#. wriG5
+#: allheaderfooterdialog.ui
+msgctxt "allheaderfooterdialog|headerleft"
+msgid "Header (left)"
+msgstr "Kopfzeile (links)"
+
+#. C6sND
+#: allheaderfooterdialog.ui
+msgctxt "allheaderfooterdialog|footerright"
+msgid "Footer (right)"
+msgstr "Fußzeile (rechts)"
+
+#. hTwyg
+#: allheaderfooterdialog.ui
+msgctxt "allheaderfooterdialog|footerleft"
+msgid "Footer (left)"
+msgstr "Fußzeile (links)"
+
+#. deJo9
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|AnalysisOfVarianceDialog"
+msgid "Analysis of Variance (ANOVA)"
+msgstr "Varianzanalyse (ANOVA)"
+
+#. fzdU2
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|input-range-label"
+msgid "Input range:"
+msgstr "Eingabebereich:"
+
+#. hKLBC
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|output-range-label"
+msgid "Results to:"
+msgstr "Ergebnisse nach:"
+
+#. APZAw
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|label4"
+msgid "Data"
+msgstr "Daten"
+
+#. xA3Mm
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|radio-single-factor"
+msgid "Single factor"
+msgstr "Einfaktoriell"
+
+#. JMMJa
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|radio-two-factor"
+msgid "Two factor"
+msgstr "Zweifaktoriell"
+
+#. MggLT
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|label3"
+msgid "Type"
+msgstr "Typ"
+
+#. J6Gea
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr "Spalten"
+
+#. riGGW
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr "Zeilen"
+
+#. jBuzS
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|label2"
+msgid "Grouped by"
+msgstr "Gruppiert nach"
+
+#. o4Aw2
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|alpha-label"
+msgid "Alpha:"
+msgstr "Alpha:"
+
+#. ickoF
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|alpha-spin"
+msgid "0,05"
+msgstr "0,05"
+
+#. UQDCP
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|rows-per-sample-label"
+msgid "Rows per sample:"
+msgstr "Zeilen pro Beispiel:"
+
+#. wdFYz
+#: analysisofvariancedialog.ui
+msgctxt "analysisofvariancedialog|label1"
+msgid "Parameters"
+msgstr "Parameter"
+
+#. ETqet
+#: autoformattable.ui
+msgctxt "autoformattable|AutoFormatTableDialog"
+msgid "AutoFormat"
+msgstr "AutoFormat"
+
+#. YNp3m
+#: autoformattable.ui
+msgctxt "autoformattable|rename"
+msgid "Rename"
+msgstr "Umbenennen"
+
+#. SEACv
+#: autoformattable.ui
+msgctxt "autoformattable|label1"
+msgid "Format"
+msgstr "Format"
+
+#. 3cEaN
+#: autoformattable.ui
+msgctxt "autoformattable|numformatcb"
+msgid "_Number format"
+msgstr "_Zahlen"
+
+#. S9egc
+#: autoformattable.ui
+msgctxt "autoformattable|bordercb"
+msgid "_Borders"
+msgstr "_Umrandung"
+
+#. Qxray
+#: autoformattable.ui
+msgctxt "autoformattable|fontcb"
+msgid "F_ont"
+msgstr "_Schrift"
+
+#. 6B9Z2
+#: autoformattable.ui
+msgctxt "autoformattable|patterncb"
+msgid "_Pattern"
+msgstr "_Muster"
+
+#. EGRzJ
+#: autoformattable.ui
+msgctxt "autoformattable|alignmentcb"
+msgid "Alignmen_t"
+msgstr "_Ausrichtung"
+
+#. oSEWM
+#: autoformattable.ui
+msgctxt "autoformattable|autofitcb"
+msgid "A_utoFit width and height"
+msgstr "_Breite/Höhe automatisch anpassen"
+
+#. pR75z
+#: autoformattable.ui
+msgctxt "autoformattable|label2"
+msgid "Formatting"
+msgstr "Formatierung"
+
+#. j9TVx
+#: cellprotectionpage.ui
+msgctxt "cellprotectionpage|checkProtected"
+msgid "_Protected"
+msgstr "_Gesperrt"
+
+#. 7WF2B
+#: cellprotectionpage.ui
+msgctxt "cellprotectionpage|checkHideFormula"
+msgid "Hide _formula"
+msgstr "_Formel ausblenden"
+
+#. arvbZ
+#: cellprotectionpage.ui
+msgctxt "cellprotectionpage|checkHideAll"
+msgid "Hide _all"
+msgstr "_Alles ausblenden"
+
+#. fBWyS
+#: cellprotectionpage.ui
+msgctxt "cellprotectionpage|label1"
+msgid ""
+"Cell protection is only effective after the current sheet has been protected.\n"
+"\n"
+"Select 'Protect Sheet' from the 'Tools' menu."
+msgstr ""
+"Der Zellschutz wird nur dann wirksam, wenn die aktuelle Tabelle geschützt ist.\n"
+"\n"
+"Wählen Sie im Menü 'Extras' - 'Tabelle schützen...'."
+
+#. bVREg
+#: cellprotectionpage.ui
+msgctxt "cellprotectionpage|LabelProtection"
+msgid "Protection"
+msgstr "Schutz"
+
+#. A5DFp
+#: cellprotectionpage.ui
+msgctxt "cellprotectionpage|checkHidePrinting"
+msgid "Hide _when printing"
+msgstr "Für Aus_druck ausblenden"
+
+#. QqUqE
+#: cellprotectionpage.ui
+msgctxt "cellprotectionpage|label4"
+msgid "The cells selected will be omitted when printing."
+msgstr ""
+"Die Zellen der aktuellen Auswahl werden beim Ausdruck nicht ausgegeben."
+
+#. 8RuyP
+#: cellprotectionpage.ui
+msgctxt "cellprotectionpage|label3"
+msgid "Print"
+msgstr "Drucken"
+
+#. 5rcxe
+#: changesourcedialog.ui
+msgctxt "changesourcedialog|ChangeSourceDialog"
+msgid "Change Source Data Range"
+msgstr "Quelldatenbereich ändern"
+
+#. CyQnq
+#: changesourcedialog.ui
+msgctxt "changesourcedialog|col"
+msgid "First _column as label"
+msgstr "Erste _Spalte als Beschriftung"
+
+#. hP7cu
+#: changesourcedialog.ui
+msgctxt "changesourcedialog|row"
+msgid "First _row as label"
+msgstr "Erste _Zeile als Beschriftung"
+
+#. kCVCr
+#: changesourcedialog.ui
+msgctxt "changesourcedialog|label1"
+msgid "Labels"
+msgstr "Beschriftung"
+
+#. 3aACC
+#: chardialog.ui
+msgctxt "chardialog|CharDialog"
+msgid "Character"
+msgstr "Zeichen"
+
+#. v55EG
+#: chardialog.ui
+msgctxt "chardialog|font"
+msgid "Font"
+msgstr "Schrift"
+
+#. TnnrC
+#: chardialog.ui
+msgctxt "chardialog|fonteffects"
+msgid "Font Effects"
+msgstr "Schrifteffekt"
+
+#. nvprJ
+#: chardialog.ui
+msgctxt "chardialog|position"
+msgid "Position"
+msgstr "Position"
+
+#. SE9uJ
+#: chisquaretestdialog.ui
+msgctxt "chisquaretestdialog|ChiSquareTestDialog"
+msgid "Chi Square Test"
+msgstr "Chi-Quadrat-Test"
+
+#. VHxUD
+#: chisquaretestdialog.ui
+msgctxt "chisquaretestdialog|input-range-label"
+msgid "Input range:"
+msgstr "Eingabebereich:"
+
+#. TFGB7
+#: chisquaretestdialog.ui
+msgctxt "chisquaretestdialog|output-range-label"
+msgid "Results to:"
+msgstr "Ergebnisse nach:"
+
+#. frEZB
+#: chisquaretestdialog.ui
+msgctxt "chisquaretestdialog|label1"
+msgid "Data"
+msgstr "Daten"
+
+#. BJDYD
+#: chisquaretestdialog.ui
+msgctxt "chisquaretestdialog|groupedby-columns-radio"
+msgid "_Columns"
+msgstr "S_palten"
+
+#. y75Gj
+#: chisquaretestdialog.ui
+msgctxt "chisquaretestdialog|groupedby-rows-radio"
+msgid "_Rows"
+msgstr "Z_eilen"
+
+#. 2Cttx
+#: chisquaretestdialog.ui
+msgctxt "chisquaretestdialog|label2"
+msgid "Grouped by"
+msgstr "Gruppiert nach"
+
+#. L8JmP
+#: colorrowdialog.ui
+msgctxt "colorrowdialog|ColOrRowDialog"
+msgid "Copy List"
+msgstr "Liste kopieren"
+
+#. P7PZo
+#: colorrowdialog.ui
+msgctxt "colorrowdialog|columns"
+msgid "_Columns"
+msgstr "S_palten"
+
+#. 8qbkD
+#: colorrowdialog.ui
+msgctxt "colorrowdialog|rows"
+msgid "_Rows"
+msgstr "Z_eilen"
+
+#. UiR8k
+#: colorrowdialog.ui
+msgctxt "colorrowdialog|label"
+msgid "List From"
+msgstr "Liste aus"
+
+#. ZnGGB
+#: colwidthdialog.ui
+msgctxt "colwidthdialog|ColWidthDialog"
+msgid "Column Width"
+msgstr "Spaltenbreite"
+
+#. nXoxa
+#: colwidthdialog.ui
+msgctxt "colwidthdialog|label1"
+msgid "Width"
+msgstr "Breite"
+
+#. qUvgX
+#: colwidthdialog.ui
+msgctxt "colwidthdialog|default"
+msgid "_Default value"
+msgstr "_Standardwert"
+
+#. 7RyUq
+#: condformatmanager.ui
+msgctxt "condformatmanager|CondFormatManager"
+msgid "Manage Conditional Formatting"
+msgstr "Bedingte Formatierung verwalten"
+
+#. rCgD4
+#: condformatmanager.ui
+msgctxt "condformatmanager|add"
+msgid "Add"
+msgstr "Hinzufügen..."
+
+#. 8XXd8
+#: condformatmanager.ui
+msgctxt "condformatmanager|edit"
+msgid "Edit..."
+msgstr "Bearbeiten..."
+
+#. oLc2f
+#: condformatmanager.ui
+msgctxt "condformatmanager|remove"
+msgid "Remove"
+msgstr "Entfernen"
+
+#. dV9US
+#: condformatmanager.ui
+msgctxt "condformatmanager|label1"
+msgid "Conditional Formats"
+msgstr "Bedingte Formatierung"
+
+#. JGdRZ
+#: conditionalentry.ui
+msgctxt "conditionalentry|type"
+msgid "All Cells"
+msgstr "Alle Zellen"
+
+#. CFscd
+#: conditionalentry.ui
+msgctxt "conditionalentry|type"
+msgid "Cell value is"
+msgstr "Zellwert ist"
+
+#. ZqmeM
+#: conditionalentry.ui
+msgctxt "conditionalentry|type"
+msgid "Formula is"
+msgstr "Formel ist"
+
+#. BWDxf
+#: conditionalentry.ui
+msgctxt "conditionalentry|type"
+msgid "Date is"
+msgstr "Datum ist"
+
+#. E8ANs
+#: conditionalentry.ui
+msgctxt "conditionalentry|styleft"
+msgid "Apply Style:"
+msgstr "Vorlage anwenden:"
+
+#. gDaYD
+#: conditionalentry.ui
+msgctxt "conditionalentry|style"
+msgid "New Style..."
+msgstr "Neue Vorlage..."
+
+#. H66AP
+#: conditionalentry.ui
+msgctxt "conditionalentry|valueft"
+msgid "Enter a value:"
+msgstr "Geben Sie einen Wert ein:"
+
+#. TMvBu
+#: conditionalentry.ui
+msgctxt "conditionalentry|options"
+msgid "More Options..."
+msgstr "Weitere Optionen..."
+
+#. JWFYN
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemin"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. gE9LZ
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemin"
+msgid "Min"
+msgstr "Min"
+
+#. HAuKu
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemin"
+msgid "Max"
+msgstr "Max"
+
+#. ciYfw
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemin"
+msgid "Percentile"
+msgstr "Prozentual"
+
+#. Kqxfp
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemin"
+msgid "Value"
+msgstr "Wert"
+
+#. UhkzD
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemin"
+msgid "Percent"
+msgstr "Prozent"
+
+#. tEhTB
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemin"
+msgid "Formula"
+msgstr "Formel"
+
+#. jYZ4B
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. FGnWb
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Min"
+msgstr "Min"
+
+#. qC8Zo
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Max"
+msgstr "Max"
+
+#. 7bxeC
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Percentile"
+msgstr "Prozentual"
+
+#. sqTFV
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Value"
+msgstr "Wert"
+
+#. RSDFW
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Percent"
+msgstr "Prozent"
+
+#. 83BhU
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemiddle"
+msgid "Formula"
+msgstr "Formel"
+
+#. F63FN
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemax"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. TDG7W
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemax"
+msgid "Min"
+msgstr "Min"
+
+#. JBX6r
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemax"
+msgid "Max"
+msgstr "Max"
+
+#. uPGWW
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemax"
+msgid "Percentile"
+msgstr "Prozentual"
+
+#. JxXq2
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemax"
+msgid "Value"
+msgstr "Wert"
+
+#. f464z
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemax"
+msgid "Percent"
+msgstr "Prozent"
+
+#. oTJU7
+#: conditionalentry.ui
+msgctxt "conditionalentry|colscalemax"
+msgid "Formula"
+msgstr "Formel"
+
+#. JcTKF
+#: conditionalentry.ui
+msgctxt "conditionalentry|preview|tooltip_text"
+msgid "Example"
+msgstr "Beispiel"
+
+#. jS959
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "equal to"
+msgstr "gleich"
+
+#. RWkXh
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "less than"
+msgstr "kleiner als"
+
+#. SYFt9
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "greater than"
+msgstr "größer als"
+
+#. Mc29i
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "less than or equal to"
+msgstr "kleiner oder gleich"
+
+#. cri3Q
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "greater than or equal to"
+msgstr "größer oder gleich"
+
+#. Ddtb2
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "not equal to"
+msgstr "ungleich"
+
+#. EXPc2
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "between"
+msgstr "zwischen"
+
+#. 89rcJ
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "not between"
+msgstr "nicht zwischen"
+
+#. k8n2v
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "duplicate"
+msgstr "mehrmals vorhanden"
+
+#. scXdW
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "not duplicate"
+msgstr "nicht mehrmals vorhanden"
+
+#. 8iVpn
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "top 10 elements"
+msgstr "unter den größten 10 Elementen"
+
+#. CAReb
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "bottom 10 elements"
+msgstr "unter den kleinsten 10 Elementen"
+
+#. NoFDf
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "top 10 percent"
+msgstr "unter den oberen 10 Prozent"
+
+#. D8KX4
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "bottom 10 percent"
+msgstr "unter den unteren 10 Prozent"
+
+#. EVRm2
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "above average"
+msgstr "überdurchschnittlich"
+
+#. rffv9
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "below average"
+msgstr "unterdurchschnittlich"
+
+#. LBiuf
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "above or equal average"
+msgstr "überdurchschnittlich oder gleich"
+
+#. WnyCE
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "below or equal average"
+msgstr "unterdurchschnittlich oder gleich"
+
+#. KNTjn
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "Error"
+msgstr "ein Fehler"
+
+#. DAq9Y
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "No Error"
+msgstr "kein Fehler"
+
+#. nnVVe
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "Begins with"
+msgstr "beginnt mit"
+
+#. bnkwD
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "Ends with"
+msgstr "endet mit"
+
+#. Ru3Pa
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "Contains"
+msgstr "enthält"
+
+#. tREvK
+#: conditionalentry.ui
+msgctxt "conditionalentry|typeis"
+msgid "Not Contains"
+msgstr "enthält nicht"
+
+#. 5WkbA
+#: conditionalentry.ui
+msgctxt "conditionalentry|datetype"
+msgid "Today"
+msgstr "heute"
+
+#. Ap28X
+#: conditionalentry.ui
+msgctxt "conditionalentry|datetype"
+msgid "Yesterday"
+msgstr "gestern"
+
+#. NhvVn
+#: conditionalentry.ui
+msgctxt "conditionalentry|datetype"
+msgid "Tomorrow"
+msgstr "morgen"
+
+#. s7CNz
+#: conditionalentry.ui
+msgctxt "conditionalentry|datetype"
+msgid "Last 7 days"
+msgstr "letzte 7 Tage"
+
+#. 8FQAS
+#: conditionalentry.ui
+msgctxt "conditionalentry|datetype"
+msgid "This week"
+msgstr "diese Woche"
+
+#. PnQGG
+#: conditionalentry.ui
+msgctxt "conditionalentry|datetype"
+msgid "Last week"
+msgstr "letzte Woche"
+
+#. MxArx
+#: conditionalentry.ui
+msgctxt "conditionalentry|datetype"
+msgid "Next week"
+msgstr "nächste Woche"
+
+#. jkJFd
+#: conditionalentry.ui
+msgctxt "conditionalentry|datetype"
+msgid "This month"
+msgstr "diesen Monat"
+
+#. M3xGu
+#: conditionalentry.ui
+msgctxt "conditionalentry|datetype"
+msgid "Last month"
+msgstr "letzten Monat"
+
+#. vHZmy
+#: conditionalentry.ui
+msgctxt "conditionalentry|datetype"
+msgid "Next month"
+msgstr "nächsten Monat"
+
+#. AxRRz
+#: conditionalentry.ui
+msgctxt "conditionalentry|datetype"
+msgid "This year"
+msgstr "dieses Jahr"
+
+#. BRRzp
+#: conditionalentry.ui
+msgctxt "conditionalentry|datetype"
+msgid "Last year"
+msgstr "letztes Jahr"
+
+#. DF9gQ
+#: conditionalentry.ui
+msgctxt "conditionalentry|datetype"
+msgid "Next year"
+msgstr "nächstes Jahr"
+
+#. vgneU
+#: conditionalentry.ui
+msgctxt "conditionalentry|colorformat"
+msgid "Color Scale (2 Entries)"
+msgstr "Farbskala (2 Einträge)"
+
+#. U3CvE
+#: conditionalentry.ui
+msgctxt "conditionalentry|colorformat"
+msgid "Color Scale (3 Entries)"
+msgstr "Farbskala (3 Einträge)"
+
+#. pByFi
+#: conditionalentry.ui
+msgctxt "conditionalentry|colorformat"
+msgid "Data Bar"
+msgstr "Datenbalken"
+
+#. jjm3Z
+#: conditionalentry.ui
+msgctxt "conditionalentry|colorformat"
+msgid "Icon Set"
+msgstr "Symbolsatz"
+
+#. qiobs
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Arrows"
+msgstr "3 Pfeile"
+
+#. uC7X4
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Gray Arrows"
+msgstr "3 graue Pfeile"
+
+#. rCY3m
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Flags"
+msgstr "3 Markierungen"
+
+#. ABtzD
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Traffic Lights 1"
+msgstr "3 Ampeln 1"
+
+#. DDG3c
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Traffic Lights 2"
+msgstr "3 Ampeln 2"
+
+#. VFEYs
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Signs"
+msgstr "3 Zeichen"
+
+#. vr8rv
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Symbols 1"
+msgstr "3 Symbole 1"
+
+#. Yxkt6
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Symbols 2"
+msgstr "3 Symbole 2"
+
+#. 9fMKe
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Smileys"
+msgstr "3 Smileys"
+
+#. FEg5s
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Stars"
+msgstr "3 Sterne"
+
+#. QzJwR
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Triangles"
+msgstr "3 Dreiecke"
+
+#. UFw2i
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "3 Colored Smileys"
+msgstr "3 farbige Smileys"
+
+#. FE6rm
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "4 Arrows"
+msgstr "4 Pfeile"
+
+#. 4kGKQ
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "4 Gray Arrows"
+msgstr "4 graue Pfeile"
+
+#. Yi3pd
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "4 Circles Red to Black"
+msgstr "4 Kreise rot nach schwarz"
+
+#. BKpUg
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "4 Ratings"
+msgstr "4 Bewertungen"
+
+#. AQdho
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "4 Traffic Lights"
+msgstr "4 Ampeln"
+
+#. iGXCy
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "5 Arrows"
+msgstr "5 Pfeile"
+
+#. 7EuvV
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "5 Gray Arrows"
+msgstr "5 graue Pfeile"
+
+#. CaZNK
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "5 Ratings"
+msgstr "5 Bewertungen"
+
+#. Ae5jK
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "5 Quarters"
+msgstr "5 Viertel"
+
+#. BdcCG
+#: conditionalentry.ui
+msgctxt "conditionalentry|iconsettype"
+msgid "5 Boxes"
+msgstr "5 Quadrate"
+
+#. DEVHA
+#: conditionalformatdialog.ui
+msgctxt "conditionalformatdialog|ConditionalFormatDialog"
+msgid "Conditional Formatting for"
+msgstr "Bedingte Formatierung für"
+
+#. Q6Ag7
+#: conditionalformatdialog.ui
+msgctxt "conditionalformatdialog|label1"
+msgid "Conditions"
+msgstr "Bedingungen"
+
+#. rgGuH
+#: conditionalformatdialog.ui
+msgctxt "conditionalformatdialog|ftassign"
+msgid "Range:"
+msgstr "Bereich:"
+
+#. BH5wk
+#: conditionalformatdialog.ui
+msgctxt "conditionalformatdialog|label2"
+msgid "Cell Range"
+msgstr "Zellbereich"
+
+#. XFw3E
+#: conditionaliconset.ui
+msgctxt "conditionaliconset|label"
+msgid " >= "
+msgstr " >= "
+
+#. ZDEEe
+#: conditionaliconset.ui
+msgctxt "conditionaliconset|listbox"
+msgid "Value"
+msgstr "Wert"
+
+#. dBBzv
+#: conditionaliconset.ui
+msgctxt "conditionaliconset|listbox"
+msgid "Percent"
+msgstr "Prozent"
+
+#. hdHXA
+#: conditionaliconset.ui
+msgctxt "conditionaliconset|listbox"
+msgid "Percentile"
+msgstr "Prozentual"
+
+#. mmHTt
+#: conditionaliconset.ui
+msgctxt "conditionaliconset|listbox"
+msgid "Formula"
+msgstr "Formel"
+
+#. B6zph
+#: conflictsdialog.ui
+msgctxt "conflictsdialog|ConflictsDialog"
+msgid "Resolve Conflicts"
+msgstr "Konflikte auflösen"
+
+#. oCjL7
+#: conflictsdialog.ui
+msgctxt "conflictsdialog|keepallmine"
+msgid "_Keep All Mine"
+msgstr "_Alle eigenen übernehmen"
+
+#. czHPv
+#: conflictsdialog.ui
+msgctxt "conflictsdialog|keepallothers"
+msgid "Keep _All Others"
+msgstr "A_lle anderen übernehmen"
+
+#. VvYCZ
+#: conflictsdialog.ui
+msgctxt "conflictsdialog|label1"
+msgid ""
+"There are conflicting changes in this shared spreadsheet. Conflicts must be "
+"resolved before saving the spreadsheet. Keep either own or other changes."
+msgstr ""
+"Im freigegebenen Tabellendokument wurden Konflikte festgestellt. Diese "
+"müssen vor dem Speichern des Tabellendokuments aufgelöst werden. Übernehmen "
+"Sie entweder Ihre eigenen oder die Änderungen anderer Benutzer."
+
+#. joDoc
+#: conflictsdialog.ui
+msgctxt "conflictsdialog|keepmine"
+msgid "Keep _Mine"
+msgstr "_Eigene übernehmen"
+
+#. KRAHP
+#: conflictsdialog.ui
+msgctxt "conflictsdialog|keepother"
+msgid "Keep _Other"
+msgstr "A_ndere übernehmen"
+
+#. 3AtCK
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|ConsolidateDialog"
+msgid "Consolidate"
+msgstr "Konsolidieren"
+
+#. kkPF3
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|label1"
+msgid "_Function:"
+msgstr "_Funktion:"
+
+#. SVBz4
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|label2"
+msgid "_Consolidation ranges:"
+msgstr "_Konsolidierungsbereiche:"
+
+#. AtpDx
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|func"
+msgid "Sum"
+msgstr "Summe"
+
+#. E7nY7
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|func"
+msgid "Count"
+msgstr "Anzahl"
+
+#. Q7GRe
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|func"
+msgid "Average"
+msgstr "Bereich"
+
+#. EffQC
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|func"
+msgid "Max"
+msgstr "Max"
+
+#. fiQPH
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|func"
+msgid "Min"
+msgstr "Min"
+
+#. cbwPv
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|func"
+msgid "Product"
+msgstr "Produkt"
+
+#. weaq9
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|func"
+msgid "Count (numbers only)"
+msgstr "Anzahl (nur Zahlen)"
+
+#. 6YqQC
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|func"
+msgid "StDev (sample)"
+msgstr "StAbw (Probe)"
+
+#. JTcFT
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|func"
+msgid "StDevP (population)"
+msgstr "StAbwN (Grundgesamtheit)"
+
+#. Z44a8
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|func"
+msgid "Var (sample)"
+msgstr "Varianz (Stichprobe)"
+
+#. gEiNo
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|func"
+msgid "VarP (population)"
+msgstr "Varianzen (Grundgesamtheit)"
+
+#. DLuPQ
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|ftdataarea"
+msgid "_Source data ranges:"
+msgstr "Quelldaten_bereich:"
+
+#. VZzRg
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|ftdestarea"
+msgid "Copy results _to:"
+msgstr "_Ergebnisse ausgeben nach:"
+
+#. Zhibj
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|byrow"
+msgid "_Row labels"
+msgstr "Ze_ilenbeschriftungen"
+
+#. SCoPe
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|bycol"
+msgid "C_olumn labels"
+msgstr "_Spaltenbeschriftungen"
+
+#. 3dLXN
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|label3"
+msgid "Consolidate by"
+msgstr "Konsolidieren nach"
+
+#. VKSm9
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|refs"
+msgid "_Link to source data"
+msgstr "Mit Quelldaten _verbinden"
+
+#. tTmj2
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|label4"
+msgid "Options"
+msgstr "Optionen"
+
+#. QBCQr
+#: consolidatedialog.ui
+msgctxt "consolidatedialog|more_label"
+msgid "Options"
+msgstr "Optionen"
+
+#. cRP7Z
+#: correlationdialog.ui
+msgctxt "correlationdialog|CorrelationDialog"
+msgid "Correlation"
+msgstr "Korrelation"
+
+#. XwREB
+#: correlationdialog.ui
+msgctxt "correlationdialog|input-range-label"
+msgid "Input range:"
+msgstr "Eingabebereich:"
+
+#. ZWgXM
+#: correlationdialog.ui
+msgctxt "correlationdialog|output-range-label"
+msgid "Results to:"
+msgstr "Ergebnisse nach:"
+
+#. jJst7
+#: correlationdialog.ui
+msgctxt "correlationdialog|label4"
+msgid "Data"
+msgstr "Daten"
+
+#. wpJTi
+#: correlationdialog.ui
+msgctxt "correlationdialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr "Spalten"
+
+#. K6GDA
+#: correlationdialog.ui
+msgctxt "correlationdialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr "Zeilen"
+
+#. BP2jQ
+#: correlationdialog.ui
+msgctxt "correlationdialog|label2"
+msgid "Grouped by"
+msgstr "Gruppiert nach"
+
+#. XYtja
+#: covariancedialog.ui
+msgctxt "covariancedialog|CovarianceDialog"
+msgid "Covariance"
+msgstr "Kovarianz"
+
+#. gEuSQ
+#: covariancedialog.ui
+msgctxt "covariancedialog|input-range-label"
+msgid "Input range:"
+msgstr "Eingabebereich:"
+
+#. eEB9E
+#: covariancedialog.ui
+msgctxt "covariancedialog|output-range-label"
+msgid "Results to:"
+msgstr "Ergebnisse nach:"
+
+#. nry3Q
+#: covariancedialog.ui
+msgctxt "covariancedialog|label1"
+msgid "Data"
+msgstr "Daten"
+
+#. GhcBB
+#: covariancedialog.ui
+msgctxt "covariancedialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr "Spalten"
+
+#. 7YbpZ
+#: covariancedialog.ui
+msgctxt "covariancedialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr "Zeilen"
+
+#. FgzdQ
+#: covariancedialog.ui
+msgctxt "covariancedialog|label2"
+msgid "Grouped by"
+msgstr "Gruppiert nach"
+
+#. F22h3
+#: createnamesdialog.ui
+msgctxt "createnamesdialog|CreateNamesDialog"
+msgid "Create Names"
+msgstr "Namen erzeugen"
+
+#. bWFYd
+#: createnamesdialog.ui
+msgctxt "createnamesdialog|top"
+msgid "_Top row"
+msgstr "_Oberer Zeile"
+
+#. hJ9LB
+#: createnamesdialog.ui
+msgctxt "createnamesdialog|left"
+msgid "_Left column"
+msgstr "_Linker Spalte"
+
+#. T2unv
+#: createnamesdialog.ui
+msgctxt "createnamesdialog|bottom"
+msgid "_Bottom row"
+msgstr "_Unterer Zeile"
+
+#. AVsK3
+#: createnamesdialog.ui
+msgctxt "createnamesdialog|right"
+msgid "_Right column"
+msgstr "_Rechter Spalte"
+
+#. EDUAr
+#: createnamesdialog.ui
+msgctxt "createnamesdialog|label1"
+msgid "Create Names From"
+msgstr "Namen erzeugen aus"
+
+#. 4mKKA
+#: dapiservicedialog.ui
+msgctxt "dapiservicedialog|DapiserviceDialog"
+msgid "External Source"
+msgstr "Externe Datenquelle"
+
+#. DYFEW
+#: dapiservicedialog.ui
+msgctxt "dapiservicedialog|label2"
+msgid "_Service"
+msgstr "_Dienst"
+
+#. sBB3n
+#: dapiservicedialog.ui
+msgctxt "dapiservicedialog|label3"
+msgid "So_urce"
+msgstr "_Quelle"
+
+#. phRhR
+#: dapiservicedialog.ui
+msgctxt "dapiservicedialog|label4"
+msgid "_Name"
+msgstr "_Name"
+
+#. cRSBE
+#: dapiservicedialog.ui
+msgctxt "dapiservicedialog|label5"
+msgid "Us_er"
+msgstr "_Benutzer"
+
+#. B8mzb
+#: dapiservicedialog.ui
+msgctxt "dapiservicedialog|label6"
+msgid "_Password"
+msgstr "_Kennwort"
+
+#. xhe7G
+#: dapiservicedialog.ui
+msgctxt "dapiservicedialog|label1"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. m78LR
+#: databaroptions.ui
+msgctxt "databaroptions|DataBarOptions"
+msgid "Data Bar"
+msgstr "Datenbalken"
+
+#. GeymG
+#: databaroptions.ui
+msgctxt "databaroptions|label4"
+msgid "Minimum:"
+msgstr "Minimum:"
+
+#. bRDM7
+#: databaroptions.ui
+msgctxt "databaroptions|label5"
+msgid "Maximum:"
+msgstr "Maximum:"
+
+#. 6B7HL
+#: databaroptions.ui
+msgctxt "databaroptions|min"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. 4XucS
+#: databaroptions.ui
+msgctxt "databaroptions|min"
+msgid "Minimum"
+msgstr "Minimum"
+
+#. DWXpV
+#: databaroptions.ui
+msgctxt "databaroptions|min"
+msgid "Maximum"
+msgstr "Maximum"
+
+#. xL32D
+#: databaroptions.ui
+msgctxt "databaroptions|min"
+msgid "Percentile"
+msgstr "Prozentual"
+
+#. 2G2fr
+#: databaroptions.ui
+msgctxt "databaroptions|min"
+msgid "Value"
+msgstr "Wert"
+
+#. DAkSr
+#: databaroptions.ui
+msgctxt "databaroptions|min"
+msgid "Percent"
+msgstr "Prozent"
+
+#. Ckh2x
+#: databaroptions.ui
+msgctxt "databaroptions|min"
+msgid "Formula"
+msgstr "Formel"
+
+#. DiBWL
+#: databaroptions.ui
+msgctxt "databaroptions|max"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. DADbe
+#: databaroptions.ui
+msgctxt "databaroptions|max"
+msgid "Minimum"
+msgstr "Minimum"
+
+#. 49Coh
+#: databaroptions.ui
+msgctxt "databaroptions|max"
+msgid "Maximum"
+msgstr "Maximum"
+
+#. hqd9B
+#: databaroptions.ui
+msgctxt "databaroptions|max"
+msgid "Percentile"
+msgstr "Prozentual"
+
+#. zRLqG
+#: databaroptions.ui
+msgctxt "databaroptions|max"
+msgid "Value"
+msgstr "Wert"
+
+#. Nv6Vn
+#: databaroptions.ui
+msgctxt "databaroptions|max"
+msgid "Percent"
+msgstr "Prozent"
+
+#. 5QJ3k
+#: databaroptions.ui
+msgctxt "databaroptions|max"
+msgid "Formula"
+msgstr "Formel"
+
+#. TKfBV
+#: databaroptions.ui
+msgctxt "databaroptions|label1"
+msgid "Entry Values"
+msgstr "Eingabewerte"
+
+#. PXQgk
+#: databaroptions.ui
+msgctxt "databaroptions|label6"
+msgid "Positive:"
+msgstr "Positiv:"
+
+#. YWrEs
+#: databaroptions.ui
+msgctxt "databaroptions|label7"
+msgid "Negative:"
+msgstr "Negativ:"
+
+#. zbBGo
+#: databaroptions.ui
+msgctxt "databaroptions|label10"
+msgid "Fill:"
+msgstr "Füllung:"
+
+#. NArFG
+#: databaroptions.ui
+msgctxt "databaroptions|fill_type"
+msgid "Color"
+msgstr "Farbe"
+
+#. XjywU
+#: databaroptions.ui
+msgctxt "databaroptions|fill_type"
+msgid "Gradient"
+msgstr "Verlauf"
+
+#. cA4CB
+#: databaroptions.ui
+msgctxt "databaroptions|label2"
+msgid "Bar Colors"
+msgstr "Balkenfarben"
+
+#. iABiC
+#: databaroptions.ui
+msgctxt "databaroptions|label8"
+msgid "Position of vertical axis:"
+msgstr "Position der Achse:"
+
+#. 4oGae
+#: databaroptions.ui
+msgctxt "databaroptions|label9"
+msgid "Color of vertical axis:"
+msgstr "Farbe der Achse:"
+
+#. 5j8jz
+#: databaroptions.ui
+msgctxt "databaroptions|axis_pos"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. Exmsc
+#: databaroptions.ui
+msgctxt "databaroptions|axis_pos"
+msgid "Middle"
+msgstr "Mittelwert"
+
+#. AXEj2
+#: databaroptions.ui
+msgctxt "databaroptions|axis_pos"
+msgid "None"
+msgstr "Kein"
+
+#. DjBHB
+#: databaroptions.ui
+msgctxt "databaroptions|label3"
+msgid "Axis"
+msgstr "Achse"
+
+#. cNRuJ
+#: databaroptions.ui
+msgctxt "databaroptions|label12"
+msgid "Minimum bar length (%):"
+msgstr "Minimale Balkenlänge (%):"
+
+#. FJXys
+#: databaroptions.ui
+msgctxt "databaroptions|label13"
+msgid "Maximum bar length (%):"
+msgstr "Maximale Balkenlänge (%):"
+
+#. 9fekJ
+#: databaroptions.ui
+msgctxt "databaroptions|label11"
+msgid "Bar Lengths"
+msgstr "Balkenlängen"
+
+#. PySqs
+#: databaroptions.ui
+msgctxt "databaroptions|only_bar"
+msgid "Display bar only"
+msgstr "Nur Balken anzeigen"
+
+#. 2VgJW
+#: databaroptions.ui
+msgctxt "databaroptions|str_same_value"
+msgid "The minimum value must be less than the maximum value."
+msgstr "Der Wert für Minimum muss kleiner als der Wert für Maximum sein."
+
+#. QD3CA
+#: datafielddialog.ui
+msgctxt "datafielddialog|DataFieldDialog"
+msgid "Data Field"
+msgstr "Datenfeld"
+
+#. oY6n8
+#: datafielddialog.ui
+msgctxt "datafielddialog|label1"
+msgid "Function"
+msgstr "Funktion"
+
+#. kcFDu
+#: datafielddialog.ui
+msgctxt "datafielddialog|checkbutton1"
+msgid "Show it_ems without data"
+msgstr "_Elemente ohne Daten anzeigen"
+
+#. CNVLs
+#: datafielddialog.ui
+msgctxt "datafielddialog|label2"
+msgid "Name:"
+msgstr "Name:"
+
+#. yphGB
+#: datafielddialog.ui
+msgctxt "datafielddialog|label4"
+msgid "_Type:"
+msgstr "_Typ:"
+
+#. h82Rf
+#: datafielddialog.ui
+msgctxt "datafielddialog|basefieldft"
+msgid "_Base field:"
+msgstr "_Basisfeld:"
+
+#. bJVVt
+#: datafielddialog.ui
+msgctxt "datafielddialog|baseitemft"
+msgid "Ba_se item:"
+msgstr "Ba_siselement:"
+
+#. b9eEa
+#: datafielddialog.ui
+msgctxt "datafielddialog|type"
+msgid "Normal"
+msgstr "Normal"
+
+#. bDNvP
+#: datafielddialog.ui
+msgctxt "datafielddialog|type"
+msgid "Difference from"
+msgstr "Differenz von"
+
+#. 5vvHV
+#: datafielddialog.ui
+msgctxt "datafielddialog|type"
+msgid "% of"
+msgstr "% von"
+
+#. naD5D
+#: datafielddialog.ui
+msgctxt "datafielddialog|type"
+msgid "% difference from"
+msgstr "% Differenz von"
+
+#. ttE3t
+#: datafielddialog.ui
+msgctxt "datafielddialog|type"
+msgid "Running total in"
+msgstr "Kumuliert über"
+
+#. Eg4UJ
+#: datafielddialog.ui
+msgctxt "datafielddialog|type"
+msgid "% of row"
+msgstr "% der Zeile"
+
+#. dB8Rn
+#: datafielddialog.ui
+msgctxt "datafielddialog|type"
+msgid "% of column"
+msgstr "% der Spalte"
+
+#. kN2Bf
+#: datafielddialog.ui
+msgctxt "datafielddialog|type"
+msgid "% of total"
+msgstr "% des Ergebnisses"
+
+#. fYyCw
+#: datafielddialog.ui
+msgctxt "datafielddialog|type"
+msgid "Index"
+msgstr "Index"
+
+#. u5kvr
+#: datafielddialog.ui
+msgctxt "datafielddialog|baseitem"
+msgid "- previous item -"
+msgstr "- vorhergehendes Element -"
+
+#. qKCQG
+#: datafielddialog.ui
+msgctxt "datafielddialog|baseitem"
+msgid "- next item -"
+msgstr "- nächstes Element -"
+
+#. TUYye
+#: datafielddialog.ui
+msgctxt "datafielddialog|label3"
+msgid "Displayed value"
+msgstr "Angezeigter Wert"
+
+#. X9gD5
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|DataFieldOptionsDialog"
+msgid "Data Field Options"
+msgstr "Datenfeld-Optionen"
+
+#. GWcDR
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|ascending"
+msgid "_Ascending"
+msgstr "_Aufsteigend"
+
+#. yk5PT
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|descending"
+msgid "_Descending"
+msgstr "_Absteigend"
+
+#. WoRxx
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|manual"
+msgid "_Manual"
+msgstr "_Manuell"
+
+#. tP8DZ
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|label1"
+msgid "Sort by"
+msgstr "Sortieren nach"
+
+#. qQHXp
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|repeatitemlabels"
+msgid "_Repeat item labels"
+msgstr "Beschriftung _wiederholen"
+
+#. VmmHC
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|emptyline"
+msgid "_Empty line after each item"
+msgstr "L_eerzeile nach jedem Element"
+
+#. xA7WG
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|label3"
+msgid "_Layout:"
+msgstr "_Layout:"
+
+#. ACFGW
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|layout"
+msgid "Tabular layout"
+msgstr "Tabellarisches Layout"
+
+#. H4v3c
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|layout"
+msgid "Outline layout with subtotals at the top"
+msgstr "Gliederungsansicht mit Teilergebnissen oben"
+
+#. 2aDMy
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|layout"
+msgid "Outline layout with subtotals at the bottom"
+msgstr "Gliederungsansicht mit Teilergebnissen unten"
+
+#. qSCvn
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|label2"
+msgid "Display Options"
+msgstr "Anzeigeoptionen"
+
+#. Q34EM
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|show"
+msgid "_Show:"
+msgstr "An_zeigen:"
+
+#. n8bpz
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|showfromft"
+msgid "_From:"
+msgstr "_Von:"
+
+#. C9kFV
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|usingft"
+msgid "_Using field:"
+msgstr "_Feld verwenden:"
+
+#. XVkqZ
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|showft"
+msgid "items"
+msgstr "Elemente"
+
+#. 6WBE7
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|from"
+msgid "Top"
+msgstr "Oben"
+
+#. GUPny
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|from"
+msgid "Bottom"
+msgstr "Unten"
+
+#. sVRqx
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|label4"
+msgid "Show Automatically"
+msgstr "Automatisch anzeigen"
+
+#. FDavv
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|label9"
+msgid "Hide Items"
+msgstr "Elemente ausblenden"
+
+#. qTAzs
+#: datafieldoptionsdialog.ui
+msgctxt "datafieldoptionsdialog|hierarchyft"
+msgid "Hierarch_y:"
+msgstr "H_ierarchie:"
+
+#. MmXfs
+#: dataform.ui
+msgctxt "dataform|DataFormDialog"
+msgid "Data Form"
+msgstr "Datenformular"
+
+#. gbAzv
+#: dataform.ui
+msgctxt "dataform|label"
+msgid "New Record"
+msgstr "Neuer Datensatz"
+
+#. Nvvrt
+#: dataform.ui
+msgctxt "dataform|new"
+msgid "_New"
+msgstr "_Neu"
+
+#. Epdm6
+#: dataform.ui
+msgctxt "dataform|delete"
+msgid "_Delete"
+msgstr "_Löschen"
+
+#. SCweE
+#: dataform.ui
+msgctxt "dataform|restore"
+msgid "_Restore"
+msgstr "_Wiederherstellen"
+
+#. GAxdr
+#: dataform.ui
+msgctxt "dataform|prev"
+msgid "_Previous Record"
+msgstr "_Vorheriger Datensatz"
+
+#. hpzLC
+#: dataform.ui
+msgctxt "dataform|next"
+msgid "Ne_xt Record"
+msgstr "Nächster _Datensatz"
+
+#. AaAgD
+#: dataform.ui
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Schließen"
+
+#. 4jLF7
+#: datastreams.ui
+msgctxt "datastreams|DataStreamDialog"
+msgid "Live Data Streams"
+msgstr "Live-Datenströme"
+
+#. BjFaA
+#: datastreams.ui
+msgctxt "datastreams|label6"
+msgid "URL:"
+msgstr "URL:"
+
+#. GUSse
+#: datastreams.ui
+msgctxt "datastreams|url|tooltip_text"
+msgid ""
+"Enter the URL of the source document in the local file system or Internet "
+"here."
+msgstr ""
+"Geben Sie die URL des Quelldokuments im lokalen Dateisystem oder im Internet"
+" hier ein."
+
+#. RbmeF
+#: datastreams.ui
+msgctxt "datastreams|browse"
+msgid "_Browse..."
+msgstr "Durch_suchen..."
+
+#. FvkXU
+#: datastreams.ui
+msgctxt "datastreams|directdata"
+msgid "Direct data feed"
+msgstr "Direkte Datenzuführung"
+
+#. FVqDx
+#: datastreams.ui
+msgctxt "datastreams|scriptdata"
+msgid "Script to execute to obtain the data"
+msgstr "Auszuführendes Skript, um die Daten zu erhalten"
+
+#. Kyv5C
+#: datastreams.ui
+msgctxt "datastreams|valuesinline"
+msgid "value1,value2,...,valueN, and fill into range:"
+msgstr "Wert_1, Wert_2, ..., Wert_N und füllen in die Bereiche:"
+
+#. FbeJ5
+#: datastreams.ui
+msgctxt "datastreams|addressvalue"
+msgid "address,value"
+msgstr "Adresse,Wert"
+
+#. vHGFG
+#: datastreams.ui
+msgctxt "datastreams|label4"
+msgid "Interpret stream data as"
+msgstr "Interpretiere Stromdaten als"
+
+#. vcDx2
+#: datastreams.ui
+msgctxt "datastreams|refresh_ui"
+msgid "Empty lines trigger UI refresh"
+msgstr "Leere Zeilen lösen ein Auffrischen der Benutzeroberfläche aus"
+
+#. 3hWhd
+#: datastreams.ui
+msgctxt "datastreams|label"
+msgid "Source Stream"
+msgstr "Quelldatenstrom"
+
+#. kkNat
+#: datastreams.ui
+msgctxt "datastreams|datadown"
+msgid "Move existing data down"
+msgstr "Bestehende Daten nach unten verschieben"
+
+#. oK7F4
+#: datastreams.ui
+msgctxt "datastreams|rangedown"
+msgid "Move the range down"
+msgstr "Diesen Bereich nach unten verschieben"
+
+#. 2uAZA
+#: datastreams.ui
+msgctxt "datastreams|nomove"
+msgid "Overwrite existing data"
+msgstr "Bestehende Daten überschreiben"
+
+#. mvcXx
+#: datastreams.ui
+msgctxt "datastreams|label2"
+msgid "When New Data Arrives"
+msgstr "Wenn neue Daten eintreffen"
+
+#. 5i8Be
+#: datastreams.ui
+msgctxt "datastreams|maxlimit"
+msgid "Limit to:"
+msgstr "Begrenzen auf:"
+
+#. GLYms
+#: datastreams.ui
+msgctxt "datastreams|unlimited"
+msgid "_Unlimited"
+msgstr "_Unbegrenzt"
+
+#. DvF6M
+#: datastreams.ui
+msgctxt "datastreams|label3"
+msgid "Maximal Amount of Rows"
+msgstr "Maximale Anzahl an Zeilen"
+
+#. nHoB2
+#: definedatabaserangedialog.ui
+msgctxt "definedatabaserangedialog|DefineDatabaseRangeDialog"
+msgid "Define Database Range"
+msgstr "Datenbankbereich festlegen"
+
+#. 4FqWF
+#: definedatabaserangedialog.ui
+msgctxt "definedatabaserangedialog|Name"
+msgid "Name"
+msgstr "Name"
+
+#. FUAH2
+#: definedatabaserangedialog.ui
+msgctxt "definedatabaserangedialog|Range"
+msgid "Range"
+msgstr "Umfang"
+
+#. N8Lui
+#: definedatabaserangedialog.ui
+msgctxt "definedatabaserangedialog|modify"
+msgid "M_odify"
+msgstr "Ä_ndern"
+
+#. TniCB
+#: definedatabaserangedialog.ui
+msgctxt "definedatabaserangedialog|ContainsColumnLabels"
+msgid "Co_ntains column labels"
+msgstr "Enthält _Spaltenbeschriftungen"
+
+#. QBs5X
+#: definedatabaserangedialog.ui
+msgctxt "definedatabaserangedialog|ContainsTotalsRow"
+msgid "Contains _totals row"
+msgstr "Enthält _Ergebniszeile"
+
+#. AeZB2
+#: definedatabaserangedialog.ui
+msgctxt "definedatabaserangedialog|InsertOrDeleteCells"
+msgid "Insert or delete _cells"
+msgstr "Zellen _einfügen/löschen"
+
+#. EveBu
+#: definedatabaserangedialog.ui
+msgctxt "definedatabaserangedialog|KeepFormatting"
+msgid "Keep _formatting"
+msgstr "_Formatierung beibehalten"
+
+#. rSf5f
+#: definedatabaserangedialog.ui
+msgctxt "definedatabaserangedialog|DontSaveImportedData"
+msgid "Don't save _imported data"
+msgstr "_Importierte Daten nicht speichern"
+
+#. nYJiV
+#: definedatabaserangedialog.ui
+msgctxt "definedatabaserangedialog|Source"
+msgid "Source:"
+msgstr "Quelle:"
+
+#. q2F5V
+#: definedatabaserangedialog.ui
+msgctxt "definedatabaserangedialog|Operations"
+msgid "Operations:"
+msgstr "Operationen:"
+
+#. XXY4E
+#: definedatabaserangedialog.ui
+msgctxt "definedatabaserangedialog|invalid"
+msgid "Invalid range"
+msgstr "Ungültiger Bereich"
+
+#. dHJw9
+#: definedatabaserangedialog.ui
+msgctxt "definedatabaserangedialog|label1"
+msgid "Options"
+msgstr "Optionen"
+
+#. 659Fh
+#: definename.ui
+msgctxt "definename|DefineNameDialog"
+msgid "Define Name"
+msgstr "Namen festlegen"
+
+#. 6EGaz
+#: definename.ui
+msgctxt "definename|label2"
+msgid "Name:"
+msgstr "Name:"
+
+#. EPtbZ
+#: definename.ui
+msgctxt "definename|label3"
+msgid "Range or formula expression:"
+msgstr "Bereich oder Formelausdruck:"
+
+#. cPZDB
+#: definename.ui
+msgctxt "definename|label4"
+msgid "Scope:"
+msgstr "Geltungsbereich:"
+
+#. KZfrH
+#: definename.ui
+msgctxt "definename|label"
+msgid "Define the name and range or formula expression."
+msgstr "Legen Sie den Namen und den Bereich oder Formelausdruck fest."
+
+#. gZZ6g
+#: definename.ui
+msgctxt "definename|printarea"
+msgid "_Print range"
+msgstr "Druc_kbereich"
+
+#. L5Ebf
+#: definename.ui
+msgctxt "definename|filter"
+msgid "_Filter"
+msgstr "_Filter"
+
+#. 6W3iB
+#: definename.ui
+msgctxt "definename|colheader"
+msgid "Repeat _column"
+msgstr "_Wiederholungsspalte"
+
+#. jfJFq
+#: definename.ui
+msgctxt "definename|rowheader"
+msgid "Repeat _row"
+msgstr "W_iederholungszeile"
+
+#. 47nrA
+#: definename.ui
+msgctxt "definename|label5"
+msgid "Range _Options"
+msgstr "Bereichs_optionen"
+
+#. uA5Nz
+#: deletecells.ui
+msgctxt "deletecells|DeleteCellsDialog"
+msgid "Delete Cells"
+msgstr "Zellen löschen"
+
+#. UXfkG
+#: deletecells.ui
+msgctxt "deletecells|up"
+msgid "Shift cells _up"
+msgstr "Zellen nach _oben verschieben"
+
+#. 4ChEi
+#: deletecells.ui
+msgctxt "deletecells|left"
+msgid "Shift cells _left"
+msgstr "Zellen nach _links verschieben"
+
+#. xhSFC
+#: deletecells.ui
+msgctxt "deletecells|rows"
+msgid "Delete entire _row(s)"
+msgstr "Ganze _Zeile(n) löschen"
+
+#. ky4n4
+#: deletecells.ui
+msgctxt "deletecells|cols"
+msgid "Delete entire _column(s)"
+msgstr "Ganze _Spalte(n) löschen"
+
+#. fFD3Q
+#: deletecells.ui
+msgctxt "deletecells|label1"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. VWjSF
+#: deletecontents.ui
+msgctxt "deletecontents|DeleteContentsDialog"
+msgid "Delete Contents"
+msgstr "Inhalte löschen"
+
+#. hFamV
+#: deletecontents.ui
+msgctxt "deletecontents|deleteall"
+msgid "Delete _all"
+msgstr "_Alles löschen"
+
+#. cjPVi
+#: deletecontents.ui
+msgctxt "deletecontents|text"
+msgid "_Text"
+msgstr "Initialen_text"
+
+#. pNGEC
+#: deletecontents.ui
+msgctxt "deletecontents|numbers"
+msgid "_Numbers"
+msgstr "_Zahlen"
+
+#. iNGBK
+#: deletecontents.ui
+msgctxt "deletecontents|datetime"
+msgid "_Date & time"
+msgstr "_Datum & Zeit"
+
+#. igEyD
+#: deletecontents.ui
+msgctxt "deletecontents|formulas"
+msgid "_Formulas"
+msgstr "_Formeln"
+
+#. qhUoD
+#: deletecontents.ui
+msgctxt "deletecontents|comments"
+msgid "_Comments"
+msgstr "_Kommentare"
+
+#. bCyju
+#: deletecontents.ui
+msgctxt "deletecontents|formats"
+msgid "For_mats"
+msgstr "Formatieru_ngen"
+
+#. VhmVs
+#: deletecontents.ui
+msgctxt "deletecontents|objects"
+msgid "_Objects"
+msgstr "_Objekte"
+
+#. gF92Z
+#: deletecontents.ui
+msgctxt "deletecontents|label2"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. gB36A
+#: descriptivestatisticsdialog.ui
+msgctxt "descriptivestatisticsdialog|DescriptiveStatisticsDialog"
+msgid "Descriptive Statistics"
+msgstr "Beschreibende Statistik"
+
+#. bFQ3F
+#: descriptivestatisticsdialog.ui
+msgctxt "descriptivestatisticsdialog|input-range-label"
+msgid "Input range:"
+msgstr "Eingabebereich:"
+
+#. dDhc5
+#: descriptivestatisticsdialog.ui
+msgctxt "descriptivestatisticsdialog|output-range-label"
+msgid "Results to:"
+msgstr "Ergebnisse nach:"
+
+#. Z83k7
+#: descriptivestatisticsdialog.ui
+msgctxt "descriptivestatisticsdialog|label1"
+msgid "Data"
+msgstr "Daten"
+
+#. ABEPC
+#: descriptivestatisticsdialog.ui
+msgctxt "descriptivestatisticsdialog|groupedby-columns-radio"
+msgid "_Columns"
+msgstr "S_palten"
+
+#. 45rGR
+#: descriptivestatisticsdialog.ui
+msgctxt "descriptivestatisticsdialog|groupedby-rows-radio"
+msgid "_Rows"
+msgstr "Z_eilen"
+
+#. MKEzF
+#: descriptivestatisticsdialog.ui
+msgctxt "descriptivestatisticsdialog|label2"
+msgid "Grouped by"
+msgstr "Gruppiert nach"
+
+#. f98e2
+#: doubledialog.ui
+msgctxt "doubledialog|DoubleDialog"
+msgid "Edit Setting"
+msgstr "Einstellung bearbeiten"
+
+#. MyYms
+#: dropmenu.ui
+msgctxt "dropmenu|hyperlink"
+msgid "Insert as Hyperlink"
+msgstr "Als Hyperlink einfügen"
+
+#. sRq6E
+#: dropmenu.ui
+msgctxt "dropmenu|link"
+msgid "Insert as Link"
+msgstr "Als Verknüpfung einfügen"
+
+#. HHS5F
+#: dropmenu.ui
+msgctxt "dropmenu|copy"
+msgid "Insert as Copy"
+msgstr "Als Kopie einfügen"
+
+#. PL8Bz
+#: erroralerttabpage.ui
+msgctxt "erroralerttabpage|tsbshow"
+msgid "Show error _message when invalid values are entered"
+msgstr "Bei Eingabe ungültiger Werte Fehler_meldung anzeigen"
+
+#. pFAUd
+#: erroralerttabpage.ui
+msgctxt "erroralerttabpage|action_label"
+msgid "_Action:"
+msgstr "_Aktion:"
+
+#. 6uRXn
+#: erroralerttabpage.ui
+msgctxt "erroralerttabpage|title_label"
+msgid "_Title:"
+msgstr "_Titel:"
+
+#. HS6Tu
+#: erroralerttabpage.ui
+msgctxt "erroralerttabpage|errormsg_label"
+msgid "_Error message:"
+msgstr "_Fehlermeldung:"
+
+#. gFYoH
+#: erroralerttabpage.ui
+msgctxt "erroralerttabpage|browseBtn"
+msgid "_Browse..."
+msgstr "Durch_suchen..."
+
+#. BKReu
+#: erroralerttabpage.ui
+msgctxt "erroralerttabpage|actionCB"
+msgid "Stop"
+msgstr "Anhalten"
+
+#. oBEAz
+#: erroralerttabpage.ui
+msgctxt "erroralerttabpage|actionCB"
+msgid "Warning"
+msgstr "Warnung"
+
+#. mfW77
+#: erroralerttabpage.ui
+msgctxt "erroralerttabpage|actionCB"
+msgid "Information"
+msgstr "Information"
+
+#. D974D
+#: erroralerttabpage.ui
+msgctxt "erroralerttabpage|actionCB"
+msgid "Macro"
+msgstr "Makro"
+
+#. 88Yb3
+#: erroralerttabpage.ui
+msgctxt "erroralerttabpage|label1"
+msgid "Contents"
+msgstr "Inhalte"
+
+#. nWmSN
+#: exponentialsmoothingdialog.ui
+msgctxt "exponentialsmoothingdialog|ExponentialSmoothingDialog"
+msgid "Exponential Smoothing"
+msgstr "Exponentielle Glättung"
+
+#. ZCUFP
+#: exponentialsmoothingdialog.ui
+msgctxt "exponentialsmoothingdialog|input-range-label"
+msgid "Input range:"
+msgstr "Eingabebereich:"
+
+#. XCDYH
+#: exponentialsmoothingdialog.ui
+msgctxt "exponentialsmoothingdialog|output-range-label"
+msgid "Results to:"
+msgstr "Ergebnisse nach:"
+
+#. nq9yR
+#: exponentialsmoothingdialog.ui
+msgctxt "exponentialsmoothingdialog|label5"
+msgid "Data"
+msgstr "Daten"
+
+#. 5bpGm
+#: exponentialsmoothingdialog.ui
+msgctxt "exponentialsmoothingdialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr "Spalten"
+
+#. kRqVA
+#: exponentialsmoothingdialog.ui
+msgctxt "exponentialsmoothingdialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr "Zeilen"
+
+#. JU2hx
+#: exponentialsmoothingdialog.ui
+msgctxt "exponentialsmoothingdialog|label2"
+msgid "Grouped by"
+msgstr "Gruppiert nach"
+
+#. w4UYJ
+#: exponentialsmoothingdialog.ui
+msgctxt "exponentialsmoothingdialog|smoothing-factor-label"
+msgid "Smoothing factor:"
+msgstr "Glättungsfaktor:"
+
+#. E4nAQ
+#: exponentialsmoothingdialog.ui
+msgctxt "exponentialsmoothingdialog|label1"
+msgid "Parameters"
+msgstr "Parameter"
+
+#. DbhH8
+#: externaldata.ui
+msgctxt "externaldata|ExternalDataDialog"
+msgid "External Data"
+msgstr "Externe Daten"
+
+#. APBGW
+#: externaldata.ui
+msgctxt "externaldata|url|tooltip_text"
+msgid ""
+"Enter the URL of the source document in the local file system or Internet "
+"here."
+msgstr ""
+"Geben Sie die URL des Quelldokuments im lokalen Dateisystem oder Im Internet"
+" hier ein."
+
+#. 2sbsJ
+#: externaldata.ui
+msgctxt "externaldata|browse"
+msgid "_Browse..."
+msgstr "Durch_suchen..."
+
+#. FpyfT
+#: externaldata.ui
+msgctxt "externaldata|label1"
+msgid "URL of _External Data Source"
+msgstr "_URL der externen Datenquelle"
+
+#. EhEDC
+#: externaldata.ui
+msgctxt "externaldata|reload"
+msgid "_Update every:"
+msgstr "_Aktualisierung alle:"
+
+#. eSJFW
+#: externaldata.ui
+msgctxt "externaldata|secondsft"
+msgid "_seconds"
+msgstr "_Sekunden"
+
+#. iBSZx
+#: externaldata.ui
+msgctxt "externaldata|label2"
+msgid "_Available Tables/Ranges"
+msgstr "_Verfügbare Tabellen/Bereiche"
+
+#. tKoGc
+#: filldlg.ui
+msgctxt "filldlg|FillSeriesDialog"
+msgid "Fill Series"
+msgstr "Reihen füllen"
+
+#. S4ehT
+#: filldlg.ui
+msgctxt "filldlg|down"
+msgid "_Down"
+msgstr "_Unten"
+
+#. KwAZX
+#: filldlg.ui
+msgctxt "filldlg|right"
+msgid "_Right"
+msgstr "_Rechts"
+
+#. pGFFC
+#: filldlg.ui
+msgctxt "filldlg|up"
+msgid "_Up"
+msgstr "_Oben"
+
+#. eR9rC
+#: filldlg.ui
+msgctxt "filldlg|left"
+msgid "_Left"
+msgstr "_Links"
+
+#. DFeXS
+#: filldlg.ui
+msgctxt "filldlg|label1"
+msgid "Direction"
+msgstr "Richtung"
+
+#. yin3x
+#: filldlg.ui
+msgctxt "filldlg|linear"
+msgid "Li_near"
+msgstr "Li_near"
+
+#. rDwaa
+#: filldlg.ui
+msgctxt "filldlg|growth"
+msgid "_Growth"
+msgstr "_Wachstum"
+
+#. hJEhP
+#: filldlg.ui
+msgctxt "filldlg|date"
+msgid "Da_te"
+msgstr "_Datum"
+
+#. mDADM
+#: filldlg.ui
+msgctxt "filldlg|autofill"
+msgid "_AutoFill"
+msgstr "Automatisch _füllen"
+
+#. GhoPg
+#: filldlg.ui
+msgctxt "filldlg|label2"
+msgid "Series Type"
+msgstr "Reihentyp"
+
+#. 3Mtj5
+#: filldlg.ui
+msgctxt "filldlg|day"
+msgid "Da_y"
+msgstr "_Tag"
+
+#. v2J3J
+#: filldlg.ui
+msgctxt "filldlg|week"
+msgid "_Weekday"
+msgstr "_Wochentag"
+
+#. gjGCn
+#: filldlg.ui
+msgctxt "filldlg|month"
+msgid "_Month"
+msgstr "_Monat"
+
+#. zwDGB
+#: filldlg.ui
+msgctxt "filldlg|year"
+msgid "Y_ear"
+msgstr "_Jahr"
+
+#. J5aQN
+#: filldlg.ui
+msgctxt "filldlg|tuL"
+msgid "Time Unit"
+msgstr "Zeiteinheit"
+
+#. 5BuDy
+#: filldlg.ui
+msgctxt "filldlg|startL"
+msgid "_Start value:"
+msgstr "Anfangs_wert:"
+
+#. mQQjH
+#: filldlg.ui
+msgctxt "filldlg|endL"
+msgid "End _value:"
+msgstr "_Endwert:"
+
+#. UUkTb
+#: filldlg.ui
+msgctxt "filldlg|incrementL"
+msgid "In_crement:"
+msgstr "Z_unahme:"
+
+#. AfnFz
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|none|tooltip_text"
+msgid "No Border"
+msgstr "Keine Umrandung"
+
+#. J9YqG
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|all|tooltip_text"
+msgid "All Borders"
+msgstr "Alle Umrandungen"
+
+#. 3dsGE
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|outside|tooltip_text"
+msgid "Outside Borders"
+msgstr "Äußere Umrandungen"
+
+#. BQ8N3
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|thickbox|tooltip_text"
+msgid "Thick Box Border"
+msgstr "Dicke äußere Umrandung"
+
+#. RSWP6
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|thickbottom|tooltip_text"
+msgid "Thick Bottom Border"
+msgstr "Dicke untere Umrandung"
+
+#. d9rkv
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|doublebottom|tooltip_text"
+msgid "Double Bottom Border"
+msgstr "Doppelte untere Umrandung"
+
+#. A6jir
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
+msgid "Top and Thick Bottom Borders"
+msgstr "Obere und doppelte untere Umrandung"
+
+#. 5QWSV
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
+msgid "Top and Double Bottom Borders"
+msgstr "Obere und doppelte untere Umrandung"
+
+#. of4fP
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|left|tooltip_text"
+msgid "Left Border"
+msgstr "Linke Umrandung"
+
+#. FWwqR
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|right|tooltip_text"
+msgid "Right Border"
+msgstr "Rechte Umrandung"
+
+#. sDFmj
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|top|tooltip_text"
+msgid "Top Border"
+msgstr "Obere Umrandung"
+
+#. nhY8S
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|bottom|tooltip_text"
+msgid "Bottom Border"
+msgstr "Untere Umrandung"
+
+#. BF7XZ
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|diagup|tooltip_text"
+msgid "Diagonal Up Border"
+msgstr "Diagonal nach oben laufende Umrandung"
+
+#. 8FWZ3
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|diagdown|tooltip_text"
+msgid "Diagonal Down Border"
+msgstr "Diagonal nach unten laufende Umrandung"
+
+#. CQeWw
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|topbottom|tooltip_text"
+msgid "Top and Bottom Borders"
+msgstr "Obere und untere Umrandung"
+
+#. ZAJ9s
+#: floatingborderstyle.ui
+msgctxt "floatingborderstyle|leftright|tooltip_text"
+msgid "Left and Right Borders"
+msgstr "Linke und rechte Umrandung"
+
+#. 5pFcG
+#: floatinglinestyle.ui
+msgctxt "floatinglinestyle|more"
+msgid "_More Options..."
+msgstr "_Weitere Optionen..."
+
+#. 6jM6K
+#: footerdialog.ui
+msgctxt "footerdialog|FooterDialog"
+msgid "Footers"
+msgstr "Fußzeilen"
+
+#. 9nDTt
+#: footerdialog.ui
+msgctxt "footerdialog|footerright"
+msgid "Footer (right)"
+msgstr "Fußzeile (rechts)"
+
+#. TpUsF
+#: footerdialog.ui
+msgctxt "footerdialog|footerleft"
+msgid "Footer (left)"
+msgstr "Fußzeile (links)"
+
+#. xoTzd
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|FormatCellsDialog"
+msgid "Format Cells"
+msgstr "Zellen formatieren"
+
+#. ngekD
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|numbers"
+msgid "Numbers"
+msgstr "Zahlen"
+
+#. TvoWD
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|font"
+msgid "Font"
+msgstr "Schrift"
+
+#. 3oXRX
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|fonteffects"
+msgid "Font Effects"
+msgstr "Schrifteffekt"
+
+#. iuvXW
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|alignment"
+msgid "Alignment"
+msgstr "Ausrichtung"
+
+#. MfFdu
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|asiantypography"
+msgid "Asian Typography"
+msgstr "Asiatische Typografie"
+
+#. FtWjv
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|borders"
+msgid "Borders"
+msgstr "Umrandung"
+
+#. 9S8Sy
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|background"
+msgid "Background"
+msgstr "Hintergrund"
+
+#. hbPUf
+#: formatcellsdialog.ui
+msgctxt "formatcellsdialog|cellprotection"
+msgid "Cell Protection"
+msgstr "Zellschutz"
+
+#. ymJhE
+#: formulacalculationoptions.ui
+msgctxt "formulacalculationoptions|FormulaCalculationOptions"
+msgid "Detailed Calculation Settings"
+msgstr "Detaillierte Einstellungen für Berechnungen"
+
+#. LH7AT
+#: formulacalculationoptions.ui
+msgctxt "formulacalculationoptions|labelConvT2N"
+msgid "Conversion from text to number:"
+msgstr "Konvertiertierung von Text in eine Zahl:"
+
+#. LRBFh
+#: formulacalculationoptions.ui
+msgctxt "formulacalculationoptions|checkEmptyAsZero"
+msgid "Treat _empty string as zero"
+msgstr "_Leere Zeichenketten als Null behandeln"
+
+#. VDwUW
+#: formulacalculationoptions.ui
+msgctxt "formulacalculationoptions|labelSyntaxRef"
+msgid "Reference syntax for string reference:"
+msgstr "Bezügesyntax für Zeichenkettenbezug:"
+
+#. MskRi
+#: formulacalculationoptions.ui
+msgctxt "formulacalculationoptions|comboSyntaxRef"
+msgid "Use formula syntax"
+msgstr "Formel-Syntax benutzen"
+
+#. Gd4ne
+#: formulacalculationoptions.ui
+msgctxt "formulacalculationoptions|comboConversion"
+msgid "Generate #VALUE! error"
+msgstr "Fehler #WERT! generieren"
+
+#. evLpG
+#: formulacalculationoptions.ui
+msgctxt "formulacalculationoptions|comboConversion"
+msgid "Treat as zero"
+msgstr "Als Null behandeln"
+
+#. 83cwa
+#: formulacalculationoptions.ui
+msgctxt "formulacalculationoptions|comboConversion"
+msgid "Convert only if unambiguous"
+msgstr "Nur Eindeutige umwandeln"
+
+#. da7wL
+#: formulacalculationoptions.ui
+msgctxt "formulacalculationoptions|comboConversion"
+msgid "Convert also locale dependent"
+msgstr "Auch Sprachabhängige umwandeln"
+
+#. F7tji
+#: formulacalculationoptions.ui
+msgctxt "formulacalculationoptions|current_doc"
+msgid "Apply those settings to current document only"
+msgstr "Einstellungen nur auf das aktuelle Dokument anwenden"
+
+#. QyUVP
+#: formulacalculationoptions.ui
+msgctxt "formulacalculationoptions|label3"
+msgid "Contents to Numbers"
+msgstr "Inhalt in Zahlen"
+
+#. FEwZR
+#: functionpanel.ui
+msgctxt "functionpanel|insert|tooltip_text"
+msgid "Insert Function into calculation sheet"
+msgstr "Funktion in Tabelle einfügen"
+
+#. L79E6
+#: functionpanel.ui
+msgctxt "functionpanel|category"
+msgid "Last Used"
+msgstr "Zuletzt verwendet"
+
+#. uRXDm
+#: functionpanel.ui
+msgctxt "functionpanel|category"
+msgid "All"
+msgstr "Alle"
+
+#. Fk97C
+#: functionpanel.ui
+msgctxt "functionpanel|category"
+msgid "Database"
+msgstr "Datenbank"
+
+#. hCefc
+#: functionpanel.ui
+msgctxt "functionpanel|category"
+msgid "Date&Time"
+msgstr "Datum&Zeit"
+
+#. Cj6Vy
+#: functionpanel.ui
+msgctxt "functionpanel|category"
+msgid "Financial"
+msgstr "Finanzen"
+
+#. gS2PB
+#: functionpanel.ui
+msgctxt "functionpanel|category"
+msgid "Information"
+msgstr "Information"
+
+#. rMqtg
+#: functionpanel.ui
+msgctxt "functionpanel|category"
+msgid "Logical"
+msgstr "Logisch"
+
+#. 6cFkD
+#: functionpanel.ui
+msgctxt "functionpanel|category"
+msgid "Mathematical"
+msgstr "Mathematik"
+
+#. RdQeE
+#: functionpanel.ui
+msgctxt "functionpanel|category"
+msgid "Array"
+msgstr "Matrix"
+
+#. h4kRr
+#: functionpanel.ui
+msgctxt "functionpanel|category"
+msgid "Statistical"
+msgstr "Statistik"
+
+#. 6XCsS
+#: functionpanel.ui
+msgctxt "functionpanel|category"
+msgid "Spreadsheet"
+msgstr "Tabelle"
+
+#. DwfB5
+#: functionpanel.ui
+msgctxt "functionpanel|category"
+msgid "Text"
+msgstr "Text"
+
+#. BCiyc
+#: functionpanel.ui
+msgctxt "functionpanel|category"
+msgid "Add-in"
+msgstr "Add-in"
+
+#. rmQie
+#: functionpanel.ui
+msgctxt "functionpanel|funcdesc"
+msgid "label"
+msgstr "Bezeichnung"
+
+#. dmA3u
+#: goalseekdlg.ui
+msgctxt "goalseekdlg|GoalSeekDialog"
+msgid "Goal Seek"
+msgstr "Zielwertsuche"
+
+#. qJ3YX
+#: goalseekdlg.ui
+msgctxt "goalseekdlg|formulatext"
+msgid "_Formula cell:"
+msgstr "_Formelzelle:"
+
+#. t8oEF
+#: goalseekdlg.ui
+msgctxt "goalseekdlg|label3"
+msgid "Target _value:"
+msgstr "_Zielwert:"
+
+#. ffY7i
+#: goalseekdlg.ui
+msgctxt "goalseekdlg|vartext"
+msgid "Variable _cell:"
+msgstr "_Variable Zelle:"
+
+#. mHUzW
+#: goalseekdlg.ui
+msgctxt "goalseekdlg|label1"
+msgid "Default Settings"
+msgstr "Vorgaben"
+
+#. XMHEU
+#: groupbydate.ui
+msgctxt "groupbydate|PivotTableGroupByDate"
+msgid "Grouping"
+msgstr "Gruppierung"
+
+#. 64CQA
+#: groupbydate.ui
+msgctxt "groupbydate|auto_start"
+msgid "_Automatically"
+msgstr "_Automatisch"
+
+#. u9esd
+#: groupbydate.ui
+msgctxt "groupbydate|manual_start"
+msgid "_Manually at:"
+msgstr "_Manuell bei:"
+
+#. uLqPc
+#: groupbydate.ui
+msgctxt "groupbydate|label1"
+msgid "Start"
+msgstr "Anfang"
+
+#. F9Q6s
+#: groupbydate.ui
+msgctxt "groupbydate|auto_end"
+msgid "A_utomatically"
+msgstr "_Automatisch"
+
+#. c77d8
+#: groupbydate.ui
+msgctxt "groupbydate|manual_end"
+msgid "Ma_nually at:"
+msgstr "_Manuell bei:"
+
+#. 7atAW
+#: groupbydate.ui
+msgctxt "groupbydate|label2"
+msgid "End"
+msgstr "Ende"
+
+#. PbDbU
+#: groupbydate.ui
+msgctxt "groupbydate|days"
+msgid "Number of _days:"
+msgstr "Anzahl von _Tagen:"
+
+#. GGREf
+#: groupbydate.ui
+msgctxt "groupbydate|intervals"
+msgid "_Intervals:"
+msgstr "_Intervallen:"
+
+#. aQKHp
+#: groupbydate.ui
+msgctxt "groupbydate|label3"
+msgid "Group by"
+msgstr "Gruppieren nach"
+
+#. FJRdk
+#: groupbynumber.ui
+msgctxt "groupbynumber|PivotTableGroupByNumber"
+msgid "Grouping"
+msgstr "Gruppierung"
+
+#. G8xYZ
+#: groupbynumber.ui
+msgctxt "groupbynumber|auto_start"
+msgid "_Automatically"
+msgstr "_Automatisch"
+
+#. nbnZC
+#: groupbynumber.ui
+msgctxt "groupbynumber|manual_start"
+msgid "_Manually at:"
+msgstr "_Manuell bei:"
+
+#. Dr8cH
+#: groupbynumber.ui
+msgctxt "groupbynumber|label1"
+msgid "Start"
+msgstr "Anfang"
+
+#. qeqHX
+#: groupbynumber.ui
+msgctxt "groupbynumber|auto_end"
+msgid "A_utomatically"
+msgstr "A_utomatisch"
+
+#. qdFNk
+#: groupbynumber.ui
+msgctxt "groupbynumber|manual_end"
+msgid "Ma_nually at:"
+msgstr "Ma_nuell bei:"
+
+#. 3Fakb
+#: groupbynumber.ui
+msgctxt "groupbynumber|label2"
+msgid "End"
+msgstr "Ende"
+
+#. eiDfv
+#: groupbynumber.ui
+msgctxt "groupbynumber|label3"
+msgid "Group by"
+msgstr "Gruppieren nach"
+
+#. 5jF3L
+#: groupdialog.ui
+msgctxt "groupdialog|GroupDialog"
+msgid "Group"
+msgstr "Gruppe"
+
+#. q2TFi
+#: groupdialog.ui
+msgctxt "groupdialog|rows"
+msgid "_Rows"
+msgstr "Z_eilen"
+
+#. MFqB6
+#: groupdialog.ui
+msgctxt "groupdialog|cols"
+msgid "_Columns"
+msgstr "S_palten"
+
+#. EAEmh
+#: groupdialog.ui
+msgctxt "groupdialog|includeLabel"
+msgid "Include"
+msgstr "Einschließen"
+
+#. KCAWf
+#: headerdialog.ui
+msgctxt "headerdialog|HeaderDialog"
+msgid "Headers"
+msgstr "Kopfzeilen"
+
+#. DCKK3
+#: headerdialog.ui
+msgctxt "headerdialog|headerright"
+msgid "Header (right)"
+msgstr "Kopfzeile (rechts)"
+
+#. Pmhog
+#: headerdialog.ui
+msgctxt "headerdialog|headerleft"
+msgid "Header (left)"
+msgstr "Kopfzeile (links)"
+
+#. 9gV8N
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelFT_LEFT"
+msgid "_Left area"
+msgstr "_Linker Bereich"
+
+#. wFDyu
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelFT_CENTER"
+msgid "_Center area"
+msgstr "_Mittlerer Bereich"
+
+#. wADmv
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelFT_RIGHT"
+msgid "R_ight area"
+msgstr "_Rechter Bereich"
+
+#. h5HbY
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelFT_H_DEFINED"
+msgid "_Header"
+msgstr "_Kopfzeile"
+
+#. di3Ad
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelFT_F_DEFINED"
+msgid "_Footer"
+msgstr "F_ußzeile"
+
+#. z9EEa
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelFT_H_CUSTOM"
+msgid "Custom header"
+msgstr "Benutzerdefiniert"
+
+#. kDb9h
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelFT_F_CUSTOM"
+msgid "Custom footer"
+msgstr "Benutzerdefiniert"
+
+#. DqPqG
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|buttonBTN_TEXT|tooltip_text"
+msgid "Text Attributes"
+msgstr "Textattribute..."
+
+#. 9XxsD
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|buttonBTN_FILE|tooltip_text"
+msgid "Title"
+msgstr "Titel"
+
+#. 9qxRg
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|buttonBTN_TABLE|tooltip_text"
+msgid "Sheet Name"
+msgstr "Tabellenname"
+
+#. QnDzF
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|buttonBTN_PAGE|tooltip_text"
+msgid "Page"
+msgstr "Seite"
+
+#. y5CWn
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|buttonBTN_PAGES|tooltip_text"
+msgid "Pages"
+msgstr "Seiten"
+
+#. BhqdB
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|buttonBTN_DATE|tooltip_text"
+msgid "Date"
+msgstr "Datum"
+
+#. m5EGS
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|buttonBTN_TIME|tooltip_text"
+msgid "Time"
+msgstr "Uhrzeit"
+
+#. 2TJzJ
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|label2"
+msgid ""
+"Use the buttons to change the font or insert field commands such as date, "
+"time, etc."
+msgstr ""
+"Benutzen Sie die Schaltflächen, um die Schriftart zu verändern oder "
+"Feldbefehle wie Datum, Uhrzeit usw. einzufügen."
+
+#. WBsTf
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|label1"
+msgid "Note"
+msgstr "Notiz"
+
+#. X2HEK
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelSTR_HF_NONE_IN_BRACKETS"
+msgid "(none)"
+msgstr "(keins)"
+
+#. RSazM
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelSTR_PAGE"
+msgid "Page"
+msgstr "Seite"
+
+#. CMDYZ
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelSTR_HF_OF_QUESTION"
+msgid "of ?"
+msgstr "von ?"
+
+#. jQyGW
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelSTR_HF_CONFIDENTIAL"
+msgid "Confidential"
+msgstr "Vertraulich"
+
+#. EeAAh
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelSTR_HF_CREATED_BY"
+msgid "Created by"
+msgstr "Angelegt von"
+
+#. CASF2
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelSTR_HF_CUSTOMIZED"
+msgid "Customized"
+msgstr "Benutzerdefiniert"
+
+#. wZN6q
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|labelSTR_HF_OF"
+msgid "of"
+msgstr "von"
+
+#. XDBWk
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|title"
+msgid "Title"
+msgstr "Titel"
+
+#. B95vE
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|filename"
+msgid "File Name"
+msgstr "Dateiname"
+
+#. V299E
+#: headerfootercontent.ui
+msgctxt "headerfootercontent|pathname"
+msgid "Path/File Name"
+msgstr "Pfad/Dateiname"
+
+#. CAMCt
+#: headerfooterdialog.ui
+msgctxt "headerfooterdialog|HeaderFooterDialog"
+msgid "Headers/Footers"
+msgstr "Kopf-/Fußzeilen"
+
+#. 84Cdv
+#: headerfooterdialog.ui
+msgctxt "headerfooterdialog|header"
+msgid "Header"
+msgstr "Kopfzeile"
+
+#. cEXKF
+#: headerfooterdialog.ui
+msgctxt "headerfooterdialog|footer"
+msgid "Footer"
+msgstr "Fußzeile"
+
+#. KNBTA
+#: imoptdialog.ui
+msgctxt "imoptdialog|ImOptDialog"
+msgid "Import File"
+msgstr "Datei Importieren"
+
+#. VWcgp
+#: imoptdialog.ui
+msgctxt "imoptdialog|charsetft"
+msgid "_Character set:"
+msgstr "_Zeichensatz:"
+
+#. YzedG
+#: imoptdialog.ui
+msgctxt "imoptdialog|fieldft"
+msgid "_Field delimiter:"
+msgstr "_Feldtrenner:"
+
+#. FiYMy
+#: imoptdialog.ui
+msgctxt "imoptdialog|textft"
+msgid "_Text delimiter:"
+msgstr "_Texttrenner:"
+
+#. Ed9o4
+#: imoptdialog.ui
+msgctxt "imoptdialog|asshown"
+msgid "Save cell content as _shown"
+msgstr "Zellinhalt _wie angezeigt speichern"
+
+#. Fn8ts
+#: imoptdialog.ui
+msgctxt "imoptdialog|formulas"
+msgid "Save cell fo_rmulas instead of calculated values"
+msgstr "Fo_rmeln anstatt berechneter Werten speichern"
+
+#. DAEFJ
+#: imoptdialog.ui
+msgctxt "imoptdialog|quoteall"
+msgid "_Quote all text cells"
+msgstr "Text zwischen Hoch_kommas ausgeben"
+
+#. KGh9G
+#: imoptdialog.ui
+msgctxt "imoptdialog|fixedwidth"
+msgid "Fixed column _width"
+msgstr "Feste Spalten_breite"
+
+#. euP6n
+#: imoptdialog.ui
+msgctxt "imoptdialog|label"
+msgid "Field Options"
+msgstr "Feldoptionen"
+
+#. 3x5fz
+#: insertcells.ui
+msgctxt "insertcells|InsertCellsDialog"
+msgid "Insert Cells"
+msgstr "Zellen einfügen"
+
+#. ewgTB
+#: insertcells.ui
+msgctxt "insertcells|down"
+msgid "Shift cells _down"
+msgstr "Zellen nach _unten verschieben"
+
+#. FnbEo
+#: insertcells.ui
+msgctxt "insertcells|right"
+msgid "Shift cells _right"
+msgstr "Zellen nach _rechts verschieben"
+
+#. V4zVH
+#: insertcells.ui
+msgctxt "insertcells|rows"
+msgid "Entire ro_w"
+msgstr "_Ganze Zeile einfügen"
+
+#. 6UZ5M
+#: insertcells.ui
+msgctxt "insertcells|cols"
+msgid "Entire _column"
+msgstr "Ganze _Spalte einfügen"
+
+#. GkQo9
+#: insertcells.ui
+msgctxt "insertcells|label1"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. Ex63x
+#: insertname.ui
+msgctxt "insertname|InsertNameDialog"
+msgid "Paste Names"
+msgstr "Namen einfügen"
+
+#. VU7xQ
+#: insertname.ui
+msgctxt "insertname|pasteall"
+msgid "_Paste All"
+msgstr "_Alles einfügen"
+
+#. nJ6Ep
+#: insertsheet.ui
+msgctxt "insertsheet|InsertSheetDialog"
+msgid "Insert Sheet"
+msgstr "Tabelle einfügen"
+
+#. kE6pE
+#: insertsheet.ui
+msgctxt "insertsheet|before"
+msgid "B_efore current sheet"
+msgstr "_Vor aktueller Tabelle"
+
+#. Y56sT
+#: insertsheet.ui
+msgctxt "insertsheet|after"
+msgid "_After current sheet"
+msgstr "_Nach aktueller Tabelle"
+
+#. P8n4C
+#: insertsheet.ui
+msgctxt "insertsheet|label1"
+msgid "Position"
+msgstr "Position"
+
+#. TumvT
+#: insertsheet.ui
+msgctxt "insertsheet|new"
+msgid "_New sheet"
+msgstr "Neue _Tabelle"
+
+#. whnDy
+#: insertsheet.ui
+msgctxt "insertsheet|countft"
+msgid "N_o. of sheets:"
+msgstr "Tabellen_anzahl:"
+
+#. xnBgf
+#: insertsheet.ui
+msgctxt "insertsheet|nameft"
+msgid "Na_me:"
+msgstr "_Name:"
+
+#. dxNfa
+#: insertsheet.ui
+msgctxt "insertsheet|nameed"
+msgid "Sheet..."
+msgstr "Tabelle..."
+
+#. NmbDF
+#: insertsheet.ui
+msgctxt "insertsheet|fromfile"
+msgid "_From file"
+msgstr "_Aus Datei erstellen"
+
+#. 8jfXK
+#: insertsheet.ui
+msgctxt "insertsheet|tables"
+msgid "Tables in file"
+msgstr "Tabellen in Datei"
+
+#. mGqDq
+#: insertsheet.ui
+msgctxt "insertsheet|browse"
+msgid "_Browse..."
+msgstr "Durch_suchen..."
+
+#. LvF7e
+#: insertsheet.ui
+msgctxt "insertsheet|link"
+msgid "Lin_k"
+msgstr "Ver_knüpfen"
+
+#. SYZFG
+#: insertsheet.ui
+msgctxt "insertsheet|label2"
+msgid "Sheet"
+msgstr "Tabelle"
+
+#. Gd9zh
+#: integerdialog.ui
+msgctxt "integerdialog|IntegerDialog"
+msgid "Edit Setting"
+msgstr "Einstellung bearbeiten"
+
+#. ihAsa
+#: leftfooterdialog.ui
+msgctxt "leftfooterdialog|LeftFooterDialog"
+msgid "Footer (left)"
+msgstr "Fußzeile (links)"
+
+#. UWM5U
+#: leftfooterdialog.ui
+msgctxt "leftfooterdialog|footerleft"
+msgid "Footer (left)"
+msgstr "Fußzeile (links)"
+
+#. bqJEK
+#: leftheaderdialog.ui
+msgctxt "leftheaderdialog|Left Header"
+msgid "Header (left)"
+msgstr "Kopfzeile (links)"
+
+#. QTG93
+#: leftheaderdialog.ui
+msgctxt "leftheaderdialog|headerleft"
+msgid "Header (left)"
+msgstr "Kopfzeile (links)"
+
+#. C7nbC
+#: managenamesdialog.ui
+msgctxt "managenamesdialog|ManageNamesDialog"
+msgid "Manage Names"
+msgstr "Namen verwalten"
+
+#. enGg7
+#: managenamesdialog.ui
+msgctxt "managenamesdialog|info"
+msgid "Select cells in the document to update the range."
+msgstr "Wählen Sie Zellen im Dokument aus, um den Bereich zu aktualisieren."
+
+#. WCnsd
+#: managenamesdialog.ui
+msgctxt "managenamesdialog|label2"
+msgid "Name:"
+msgstr "Name:"
+
+#. XY33d
+#: managenamesdialog.ui
+msgctxt "managenamesdialog|label4"
+msgid "Scope:"
+msgstr "Geltungsbereich:"
+
+#. ddGRB
+#: managenamesdialog.ui
+msgctxt "managenamesdialog|label3"
+msgid "Range or formula expression:"
+msgstr "Bereich oder Formelausdruck:"
+
+#. dGcEm
+#: managenamesdialog.ui
+msgctxt "managenamesdialog|printrange"
+msgid "_Print range"
+msgstr "Druc_kbereich"
+
+#. EjtHY
+#: managenamesdialog.ui
+msgctxt "managenamesdialog|filter"
+msgid "_Filter"
+msgstr "_Filter"
+
+#. UdLJc
+#: managenamesdialog.ui
+msgctxt "managenamesdialog|colheader"
+msgid "Repeat _column"
+msgstr "_Wiederholungsspalte"
+
+#. c3b8v
+#: managenamesdialog.ui
+msgctxt "managenamesdialog|rowheader"
+msgid "Repeat _row"
+msgstr "W_iederholungszeile"
+
+#. Rujwh
+#: managenamesdialog.ui
+msgctxt "managenamesdialog|label1"
+msgid "Range _Options"
+msgstr "Bereichs_optionen"
+
+#. 96fTt
+#: managenamesdialog.ui
+msgctxt "managenamesdialog|treeviewcolumn1"
+msgid "column"
+msgstr "Spalte"
+
+#. n8hxG
+#: mergecellsdialog.ui
+msgctxt "mergecellsdialog|MergeCellsDialog"
+msgid "Merge Cells"
+msgstr "Zellen verbinden"
+
+#. MfjB6
+#: mergecellsdialog.ui
+msgctxt "mergecellsdialog|label"
+msgid "Some cells are not empty."
+msgstr "Einige Zellen sind nicht leer."
+
+#. BWFBt
+#: mergecellsdialog.ui
+msgctxt "mergecellsdialog|move-cells-radio"
+msgid "Move the contents of the hidden cells into the first cell"
+msgstr "Inhalte der versteckten Zellen in die erste Zelle verschieben"
+
+#. uD6JB
+#: mergecellsdialog.ui
+msgctxt "mergecellsdialog|keep-content-radio"
+msgid "Keep the contents of the hidden cells"
+msgstr "Inhalte der versteckten Zellen erhalten"
+
+#. wzTMG
+#: mergecellsdialog.ui
+msgctxt "mergecellsdialog|empty-cells-radio"
+msgid "Empty the contents of the hidden cells"
+msgstr "Inhalte der versteckten Zellen löschen"
+
+#. 4kTrD
+#: movecopysheet.ui
+msgctxt "movecopysheet|MoveCopySheetDialog"
+msgid "Move/Copy Sheet"
+msgstr "Tabelle verschieben/kopieren"
+
+#. iJZov
+#: movecopysheet.ui
+msgctxt "movecopysheet|move"
+msgid "_Move"
+msgstr "_Verschieben"
+
+#. zRtFK
+#: movecopysheet.ui
+msgctxt "movecopysheet|copy"
+msgid "C_opy"
+msgstr "_Kopieren"
+
+#. Cf9Po
+#: movecopysheet.ui
+msgctxt "movecopysheet|label1"
+msgid "Action"
+msgstr "Aktion"
+
+#. ENjjq
+#: movecopysheet.ui
+msgctxt "movecopysheet|toDocumentLabel"
+msgid "To _document"
+msgstr "_Ins Dokument"
+
+#. jfC53
+#: movecopysheet.ui
+msgctxt "movecopysheet|toDocument"
+msgid "(current document)"
+msgstr "(aktuelles Dokument)"
+
+#. Kd5nz
+#: movecopysheet.ui
+msgctxt "movecopysheet|toDocument"
+msgid "- new document -"
+msgstr "- neues Dokument -"
+
+#. DGcVf
+#: movecopysheet.ui
+msgctxt "movecopysheet|insertBeforeLabel"
+msgid "_Insert before"
+msgstr "Ei_nfügen vor"
+
+#. gE92w
+#: movecopysheet.ui
+msgctxt "movecopysheet|label2"
+msgid "Location"
+msgstr "Ort"
+
+#. wcXYj
+#: movecopysheet.ui
+msgctxt "movecopysheet|warnunused"
+msgid "This name is already used."
+msgstr "Dieser Name wird bereits verwendet."
+
+#. L7CQf
+#: movecopysheet.ui
+msgctxt "movecopysheet|warnempty"
+msgid "Name is empty."
+msgstr "Der Name ist leer."
+
+#. xoYVT
+#: movecopysheet.ui
+msgctxt "movecopysheet|warninvalid"
+msgid "Name contains one or more invalid characters."
+msgstr "Der Name enthält unzulässige Zeichen."
+
+#. zE3yH
+#: movecopysheet.ui
+msgctxt "movecopysheet|newNameLabel"
+msgid "New _name"
+msgstr "Neuer _Name"
+
+#. vSLnP
+#: movingaveragedialog.ui
+msgctxt "movingaveragedialog|MovingAverageDialog"
+msgid "Moving Average"
+msgstr "Gleitender Mittelwert"
+
+#. LJ63y
+#: movingaveragedialog.ui
+msgctxt "movingaveragedialog|input-range-label"
+msgid "Input range:"
+msgstr "Eingabebereich:"
+
+#. J2nco
+#: movingaveragedialog.ui
+msgctxt "movingaveragedialog|output-range-label"
+msgid "Results to:"
+msgstr "Ergebnisse nach:"
+
+#. eTxm6
+#: movingaveragedialog.ui
+msgctxt "movingaveragedialog|label3"
+msgid "Data"
+msgstr "Daten"
+
+#. jsyGd
+#: movingaveragedialog.ui
+msgctxt "movingaveragedialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr "Spalten"
+
+#. Ek9BV
+#: movingaveragedialog.ui
+msgctxt "movingaveragedialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr "Zeilen"
+
+#. QzpE8
+#: movingaveragedialog.ui
+msgctxt "movingaveragedialog|label2"
+msgid "Grouped by"
+msgstr "Gruppiert nach"
+
+#. ZFgCx
+#: movingaveragedialog.ui
+msgctxt "movingaveragedialog|interval-label"
+msgid "Interval:"
+msgstr "Intervall:"
+
+#. CT4kZ
+#: movingaveragedialog.ui
+msgctxt "movingaveragedialog|label1"
+msgid "Parameters"
+msgstr "Parameter"
+
+#. EME6W
+#: multipleoperationsdialog.ui
+msgctxt "multipleoperationsdialog|MultipleOperationsDialog"
+msgid "Multiple operations"
+msgstr "Mehrfachoperationen"
+
+#. aQNVa
+#: multipleoperationsdialog.ui
+msgctxt "multipleoperationsdialog|formulasft"
+msgid "_Formulas:"
+msgstr "_Formeln:"
+
+#. ddjsT
+#: multipleoperationsdialog.ui
+msgctxt "multipleoperationsdialog|rowft"
+msgid "_Row input cell:"
+msgstr "_Zeile:"
+
+#. AELsJ
+#: multipleoperationsdialog.ui
+msgctxt "multipleoperationsdialog|colft"
+msgid "_Column input cell:"
+msgstr "_Spalte:"
+
+#. LqDCg
+#: multipleoperationsdialog.ui
+msgctxt "multipleoperationsdialog|label1"
+msgid "Default Settings"
+msgstr "Vorgaben"
+
+#. jbFci
+#: namerangesdialog.ui
+msgctxt "namerangesdialog|NameRangesDialog"
+msgid "Define Label Range"
+msgstr "Beschriftungsbereich festlegen"
+
+#. RHkHY
+#: namerangesdialog.ui
+msgctxt "namerangesdialog|colhead"
+msgid "Contains _column labels"
+msgstr "Enthält _Spaltenbeschriftungen"
+
+#. WDLCJ
+#: namerangesdialog.ui
+msgctxt "namerangesdialog|rowhead"
+msgid "Contains _row labels"
+msgstr "enthält _Zeilenbeschriftungen"
+
+#. CaLyt
+#: namerangesdialog.ui
+msgctxt "namerangesdialog|datarange"
+msgid "For _data range"
+msgstr "für _Datenbereich"
+
+#. AFqD5
+#: namerangesdialog.ui
+msgctxt "namerangesdialog|label1"
+msgid "Range"
+msgstr "Umfang"
+
+#. ohBvD
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|label1"
+msgid "Column:"
+msgstr "Spalte:"
+
+#. zQ4EH
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|label2"
+msgid "Row:"
+msgstr "Zeile:"
+
+#. kGECG
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|column|tooltip_text"
+msgid "Column"
+msgstr "Spalte"
+
+#. PGnEE
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|row|tooltip_text"
+msgid "Row"
+msgstr "Zeile"
+
+#. DK6AJ
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|datarange|tooltip_text"
+msgid "Data Range"
+msgstr "Datenbereich"
+
+#. cCsBJ
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|start|tooltip_text"
+msgid "Start"
+msgstr "Anfang"
+
+#. 4a9pU
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|end|tooltip_text"
+msgid "End"
+msgstr "Ende"
+
+#. dCSrW
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|contents|tooltip_text"
+msgid "Contents"
+msgstr "Inhalt"
+
+#. yrRED
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|toggle|tooltip_text"
+msgid "Toggle"
+msgstr "Umschalten"
+
+#. nqKrT
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|scenarios|tooltip_text"
+msgid "Scenarios"
+msgstr "Szenarien"
+
+#. mHVom
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|dragmode|tooltip_text"
+msgid "Drag Mode"
+msgstr "Ziehmodus"
+
+#. 3rY8r
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|documents|tooltip_text"
+msgid "Document"
+msgstr "Dokument"
+
+#. wavgT
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|documents-atkobject"
+msgid "Active Window"
+msgstr "Aktuelles Fenster"
+
+#. 5ZzMk
+#: nosolutiondialog.ui
+msgctxt "nosolutiondialog|NoSolutionDialog"
+msgid "No Solution"
+msgstr "Keine Lösung"
+
+#. 3mwC4
+#: nosolutiondialog.ui
+msgctxt "nosolutiondialog|label1"
+msgid "No solution was found."
+msgstr "Es wurde keine Lösung gefunden."
+
+#. EoBrh
+#: notebookbar.ui
+msgctxt "notebookbar|FileLabel"
+msgid "File"
+msgstr "Datei"
+
+#. XpFCo
+#: notebookbar.ui
+msgctxt "notebookbar|FormatPaintbrush"
+msgid "Clone"
+msgstr "Übertragen"
+
+#. RoreP
+#: notebookbar.ui
+msgctxt "notebookbar|bordertype|tooltip_text"
+msgid "Specify the borders of the selected cells."
+msgstr "Hiermit legen Sie die Umrandung der ausgewählten Zellen fest."
+
+#. YCzjw
+#: notebookbar.ui
+msgctxt "notebookbar|verticalalignment|tooltip_text"
+msgid "Vertical Alignment"
+msgstr "Vertikale Ausrichtung"
+
+#. pQhrE
+#: notebookbar.ui
+msgctxt "notebookbar|horizontalalignment|tooltip_text"
+msgid "Horizontal Alignment"
+msgstr "Horizontale Ausrichtung"
+
+#. QxLnC
+#: notebookbar.ui
+msgctxt "notebookbar|indent|tooltip_text"
+msgid "Indent"
+msgstr "Einzug"
+
+#. FYjCk
+#: notebookbar.ui
+msgctxt "notebookbar|increaseindent1|tooltip_text"
+msgid "Increase Indent"
+msgstr "Einzug vergrößern"
+
+#. KdQYF
+#: notebookbar.ui
+msgctxt "notebookbar|decreaseindent1|tooltip_text"
+msgid "Decrease Indent"
+msgstr "Einzug verkleinern"
+
+#. HVFGW
+#: notebookbar.ui
+msgctxt "notebookbar|CalcLabel"
+msgid "Home"
+msgstr "Start"
+
+#. 5Ew33
+#: notebookbar.ui
+msgctxt "notebookbar|InsertAVMedia|tooltip_text"
+msgid "Insert Audio or Video"
+msgstr "Audio/Video einfügen"
+
+#. DEvJL
+#: notebookbar.ui
+msgctxt "notebookbar|InsertSymbol"
+msgid "Symbol"
+msgstr "Symbol"
+
+#. bQvBw
+#: notebookbar.ui
+msgctxt "notebookbar|InsertLabel"
+msgid "Insert"
+msgstr "Einfügen"
+
+#. QU5An
+#: notebookbar.ui
+msgctxt "notebookbar|ToggleSheetGrid"
+msgid "Toggle Grid Lines"
+msgstr "Gitterlinien umschalten"
+
+#. sSDxQ
+#: notebookbar.ui
+msgctxt "notebookbar|PageLayoutLabel"
+msgid "Page Layout"
+msgstr "Seitenlayout"
+
+#. 8PCdG
+#: notebookbar.ui
+msgctxt "notebookbar|DataLabel"
+msgid "Data"
+msgstr "Daten"
+
+#. XFsDt
+#: notebookbar.ui
+msgctxt "notebookbar|SpellOnline"
+msgid "Auto Spellcheck"
+msgstr "Automatische Rechtschreibprüfung"
+
+#. Yopi7
+#: notebookbar.ui
+msgctxt "notebookbar|ReviewLabel"
+msgid "Review"
+msgstr "Überprüfen"
+
+#. ZDirW
+#: notebookbar.ui
+msgctxt "notebookbar|ToggleSheetGrid2"
+msgid "Toggle Grid Lines"
+msgstr "Gitterlinien umschalten"
+
+#. wDGSi
+#: notebookbar.ui
+msgctxt "notebookbar|ViewLabel"
+msgid "View"
+msgstr "Ansicht"
+
+#. AcVNT
+#: notebookbar.ui
+msgctxt "notebookbar|ImageLabel"
+msgid "Image"
+msgstr "Bild"
+
+#. mimQW
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|hyperlink"
+msgid "Hyperlink"
+msgstr "Hyperlink"
+
+#. LbUtj
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|footnote"
+msgid "Footnote"
+msgstr "Fußnote"
+
+#. BkhhA
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|endnote"
+msgid "Endnote"
+msgstr "Endnote"
+
+#. 4uDNR
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|bookmark"
+msgid "Bookmark"
+msgstr "Lesezeichen"
+
+#. JE3bf
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|crossreference"
+msgid "Cross-Reference"
+msgstr "Querverweis"
+
+#. GEsRE
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|stylemenudefault"
+msgid "Default"
+msgstr "Standard"
+
+#. bPNCf
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|stylemenuacc1"
+msgid "Accent 1"
+msgstr "Betont 1"
+
+#. iqk5y
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|stylemenuacc2"
+msgid "Accent 2"
+msgstr "Betont 2"
+
+#. JK8F8
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|stylemenuacc3"
+msgid "Accent 3"
+msgstr "Betont 3"
+
+#. a8rG7
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|stylemenuhed1"
+msgid "Heading 1"
+msgstr "Überschrift 1"
+
+#. msdD7
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|stylemenuhed2"
+msgid "Heading 2"
+msgstr "Überschrift 2"
+
+#. KvySv
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|stylemenustatg"
+msgid "Good"
+msgstr "Gut"
+
+#. CoDfU
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|stylemenustatn"
+msgid "Neutral"
+msgstr "Neutral"
+
+#. gagGs
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|stylemenustatb"
+msgid "Bad"
+msgstr "Schlecht"
+
+#. gTdh7
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|stylemenustatw"
+msgid "Warning"
+msgstr "Warnung"
+
+#. jE3Hw
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|stylemenustate"
+msgid "Error"
+msgstr "Fehler"
+
+#. 5dTt9
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|stylemenutxtn"
+msgid "Note"
+msgstr "Anmerkung"
+
+#. VDr4S
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|stylemenutxtf"
+msgid "Footnote"
+msgstr "Fußnote"
+
+#. zG37D
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|tablestylenone"
+msgid "None"
+msgstr "Keine"
+
+#. 2EFPh
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|tablestyledefault"
+msgid "Default"
+msgstr "Standard"
+
+#. Gjjky
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|tablestyle1"
+msgid "Style 1"
+msgstr "Vorlage 1"
+
+#. AWqDR
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|tablestyle2"
+msgid "Style 2"
+msgstr "Vorlage 2"
+
+#. vHoey
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|tablestyle3"
+msgid "Style 3"
+msgstr "Vorlage 3"
+
+#. GpBfX
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|tablestyle4"
+msgid "Style 4"
+msgstr "Vorlage 4"
+
+#. CsPMA
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|filegrouplabel"
+msgid "File"
+msgstr "Datei"
+
+#. FHC5q
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|clipboardgrouplabel"
+msgid "Clipboard"
+msgstr "Zwischenablage"
+
+#. FLyUA
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|paragraphstyleb"
+msgid "Style"
+msgstr "Vorlage"
+
+#. vmMtE
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|growb"
+msgid " "
+msgstr " "
+
+#. K4uCY
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|shrinkb"
+msgid " "
+msgstr " "
+
+#. 6KTdx
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|leftb"
+msgid "Left"
+msgstr "Links"
+
+#. c27x6
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|centerb"
+msgid "Center"
+msgstr "Zentriert"
+
+#. pRKMN
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|rightb"
+msgid "Right"
+msgstr "Rechts"
+
+#. nyg3m
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|formatgrouplabel"
+msgid "Text"
+msgstr "Text"
+
+#. sWkPK
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|mergeb"
+msgid "Merge"
+msgstr "Verbinden"
+
+#. 7Xkor
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|splitb"
+msgid "Split"
+msgstr "Teilen"
+
+#. eDrco
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|conditionalb"
+msgid "Conditional"
+msgstr "Bedingt"
+
+#. gDAQ5
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|topb"
+msgid "Top"
+msgstr "Oben"
+
+#. QSVEb
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|vcenterb"
+msgid "Center"
+msgstr "Mitte"
+
+#. FsGNb
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|bottomb"
+msgid "Bottom"
+msgstr "Unten"
+
+#. xBzGY
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|tablegrouplabel"
+msgid "Spreadsheet"
+msgstr "Tabellendokument"
+
+#. QdJQU
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|shapesb"
+msgid "Shapes"
+msgstr "Formen"
+
+#. geGED
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|linksb"
+msgid "Links"
+msgstr "Verknüpfungen"
+
+#. txpNZ
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|insertgrouplabel"
+msgid "Insert"
+msgstr "Einfügen"
+
+#. Du8Qw
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|imagestyleb"
+msgid "Style"
+msgstr "Vorlage"
+
+#. E7zcE
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|resetb"
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#. w6XXT
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapb"
+msgid "Wrap"
+msgstr "Umlauf"
+
+#. QdS8h
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|lockb"
+msgid "Lock"
+msgstr "Sperre"
+
+#. VUCKC
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|imagegrouplabel"
+msgid "Image"
+msgstr "Bild"
+
+#. tGNaF
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapoff"
+msgid "None"
+msgstr "Kein"
+
+#. MCMXX
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapideal"
+msgid "Optimal"
+msgstr "Optimal"
+
+#. EpwrB
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapon"
+msgid "Parallel"
+msgstr "Parallel"
+
+#. fAfKA
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapleft"
+msgid "Before"
+msgstr "Vor"
+
+#. H7zCN
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapright"
+msgid "After"
+msgstr "Nach"
+
+#. PGXfq
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapthrough"
+msgid "Through"
+msgstr "Durchlauf"
+
+#. WEBWT
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapcontour"
+msgid "Contour"
+msgstr "Kontur"
+
+#. d7AtT
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|contourdialog"
+msgid "Edit Contour"
+msgstr "Kontur bearbeiten"
+
+#. XyA9j
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|case"
+msgid "Case se_nsitive"
+msgstr "_Groß- und Kleinschreibung"
+
+#. FF8Nh
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|case|tooltip_text"
+msgid "Disable case sensitivity for interoperability with Microsoft Excel"
+msgstr ""
+"Groß- und Kleinschreibung für die Kompatibilität mit Microsoft Excel "
+"deaktivieren"
+
+#. 9W56L
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|calc"
+msgid "_Precision as shown"
+msgstr "Gena_uigkeit wie angezeigt"
+
+#. BiDg6
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|match"
+msgid "Search criteria = and <> must apply to _whole cells"
+msgstr "Suchkri_terien = und <> müssen auf ganze Zellen zutreffen"
+
+#. d3ZgB
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|match|tooltip_text"
+msgid "Enable this for interoperability with Microsoft Excel"
+msgstr ""
+"Aktivieren Sie diese Option für die Kompatibilität mit Microsoft Excel"
+
+#. Hd6CV
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|formulawildcards"
+msgid "Enable w_ildcards in formulas"
+msgstr "_Platzhalter in Formeln ermöglichen"
+
+#. BKAzW
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|formulawildcards|tooltip_text"
+msgid "Enable wildcards for interoperability with Microsoft Excel"
+msgstr "Platzhalter für die Kompatibilität mit Microsoft Excel aktivieren"
+
+#. Gghyb
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|formularegex"
+msgid "Enable r_egular expressions in formulas"
+msgstr "Reguläre Ausdrücke in _Formeln ermöglichen"
+
+#. gg3Am
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|formulaliteral"
+msgid "No wildcards or regular expressions in formulas"
+msgstr "Keine Platzhalter oder regulären Ausdrücke in Formeln"
+
+#. 5Wn8V
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|lookup"
+msgid "_Automatically find column and row labels"
+msgstr "Spalten-/_Zeilenbeschriftungen automatisch erkennen"
+
+#. DwExc
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|generalprec"
+msgid "_Limit decimals for general number format"
+msgstr "_Stellen für Standardformat begrenzen"
+
+#. buc6F
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|precft"
+msgid "_Decimal places:"
+msgstr "N_achkommastellen:"
+
+#. tnj5y
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|label1"
+msgid "General Calculations"
+msgstr "Allgemeine Berechnungen"
+
+#. p2vT9
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|iterate"
+msgid "_Iterations"
+msgstr "_Iterationen"
+
+#. S6iwg
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|stepsft"
+msgid "_Steps:"
+msgstr "Sch_ritte:"
+
+#. aJT9u
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|minchangeft"
+msgid "_Minimum change:"
+msgstr "Minimaler Änderungs_wert:"
+
+#. UoUqA
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|label2"
+msgid "Iterative References"
+msgstr "Zirkuläre Bezüge"
+
+#. BA74j
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|datestd"
+msgid "12/30/1899 (defa_ult)"
+msgstr "30.12.1899 (_Standard)"
+
+#. ApqYV
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|datestd|tooltip_text"
+msgid "Value 0 corresponds to 12/30/1899"
+msgstr "Wert 0 entspricht dem 30.12.1899"
+
+#. mznb9
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|datesc10"
+msgid "01/01/1900 (Star_Calc 1.0)"
+msgstr "01.01.1900 (Star_Calc 1.0)"
+
+#. etLCb
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|datesc10|tooltip_text"
+msgid "Value 0 corresponds to 01/01/1900"
+msgstr "Wert 0 entspricht dem 01.01.1900"
+
+#. J9ECM
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|date1904"
+msgid "_01/01/1904"
+msgstr "_01.01.1904"
+
+#. aBzk5
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|date1904|tooltip_text"
+msgid "0 corresponds to 01/01/1904"
+msgstr "Wert 0 entspricht dem 01.01.1904"
+
+#. ggkEL
+#: optcalculatepage.ui
+msgctxt "optcalculatepage|label3"
+msgid "Date"
+msgstr "Datum"
+
+#. Umdv5
+#: optchangespage.ui
+msgctxt "optchangespage|label2"
+msgid "Chan_ges:"
+msgstr "Ä_nderungen:"
+
+#. yrmgC
+#: optchangespage.ui
+msgctxt "optchangespage|label3"
+msgid "_Deletions:"
+msgstr "_Löschungen:"
+
+#. bJb2E
+#: optchangespage.ui
+msgctxt "optchangespage|label4"
+msgid "_Insertions:"
+msgstr "_Einfügungen:"
+
+#. ikfvj
+#: optchangespage.ui
+msgctxt "optchangespage|label5"
+msgid "_Moved entries:"
+msgstr "_Verschiebungen:"
+
+#. AYxhD
+#: optchangespage.ui
+msgctxt "optchangespage|label1"
+msgid "Colors for Changes"
+msgstr "Farben für Änderungen"
+
+#. CrAWh
+#: optcompatibilitypage.ui
+msgctxt "optcompatibilitypage|label2"
+msgid ""
+"Select desired _key binding type. Changing the key binding type may "
+"overwrite some of the existing key bindings."
+msgstr ""
+"Wählen Sie die gewünschten _Tastenkombinationen aus. Durch das Ändern der "
+"Tastenkombinationen können einige vorhandene Tastenzuordnungen gelöscht "
+"werden."
+
+#. CER9u
+#: optcompatibilitypage.ui
+msgctxt "optcompatibilitypage|keybindings"
+msgid "Default"
+msgstr "Standard"
+
+#. 3mLBb
+#: optcompatibilitypage.ui
+msgctxt "optcompatibilitypage|keybindings"
+msgid "OpenOffice.org legacy"
+msgstr "OpenOffice.org-Vorgabe"
+
+#. g9ysB
+#: optcompatibilitypage.ui
+msgctxt "optcompatibilitypage|label1"
+msgid "Key Bindings"
+msgstr "Tastenkombinationen"
+
+#. Jcvih
+#: optdefaultpage.ui
+msgctxt "optdefaultpage|textsheetsnumber"
+msgid "_Number of worksheets in new document:"
+msgstr "Anzahl an _Tabellen in einem neuem Dokument:"
+
+#. RpAUD
+#: optdefaultpage.ui
+msgctxt "optdefaultpage|textsheetprefix"
+msgid "_Prefix name for new worksheet:"
+msgstr "_Name neuer Tabellen:"
+
+#. xW5dC
+#: optdefaultpage.ui
+msgctxt "optdefaultpage|label1"
+msgid "New Spreadsheet"
+msgstr "Neues Tabellendokument"
+
+#. gbrKD
+#: optdlg.ui
+msgctxt "optdlg|suppressCB"
+msgid "_Suppress output of empty pages"
+msgstr "Ausgabe _leerer Seiten unterdrücken"
+
+#. TueVT
+#: optdlg.ui
+msgctxt "optdlg|forceBreaksCB"
+msgid "_Always apply manual breaks"
+msgstr "_Immer manuelle Umbrüche anwenden"
+
+#. udgBk
+#: optdlg.ui
+msgctxt "optdlg|label1"
+msgid "Pages"
+msgstr "Seiten"
+
+#. nfmkw
+#: optdlg.ui
+msgctxt "optdlg|printCB"
+msgid "_Print only selected sheets"
+msgstr "_Nur ausgewählte Tabellen drucken"
+
+#. wT6PN
+#: optdlg.ui
+msgctxt "optdlg|label2"
+msgid "Sheets"
+msgstr "Tabellen"
+
+#. nQBpo
+#: optformula.ui
+msgctxt "optformula|englishfuncname"
+msgid "Use English function names"
+msgstr "Englische Funktionsnamen verwenden"
+
+#. EH5Je
+#: optformula.ui
+msgctxt "optformula|formulasyntaxlabel"
+msgid "Formula _syntax:"
+msgstr "Formel-_Syntax:"
+
+#. 6ioPy
+#: optformula.ui
+msgctxt "optformula|label1"
+msgid "Formula Options"
+msgstr "Formel-Optionen"
+
+#. PhhTm
+#: optformula.ui
+msgctxt "optformula|label9"
+msgid "Excel 2007 and newer:"
+msgstr "Excel 2007 und neuer:"
+
+#. y4nbF
+#: optformula.ui
+msgctxt "optformula|label10"
+msgid "ODF spreadsheet (not saved by %PRODUCTNAME):"
+msgstr "ODF Tabellendokumente (nicht mit %PRODUCTNAME gespeichert):"
+
+#. 5AAhB
+#: optformula.ui
+msgctxt "optformula|ooxmlrecalc"
+msgid "Always recalculate"
+msgstr "Immer neuberechnen"
+
+#. Q8aGX
+#: optformula.ui
+msgctxt "optformula|ooxmlrecalc"
+msgid "Never recalculate"
+msgstr "Nie neuberechnen"
+
+#. FgKKL
+#: optformula.ui
+msgctxt "optformula|ooxmlrecalc"
+msgid "Prompt user"
+msgstr "Benutzer fragen"
+
+#. mfD5X
+#: optformula.ui
+msgctxt "optformula|odfrecalc"
+msgid "Always recalculate"
+msgstr "Immer neuberechnen"
+
+#. UZPCC
+#: optformula.ui
+msgctxt "optformula|odfrecalc"
+msgid "Never recalculate"
+msgstr "Nie neuberechnen"
+
+#. 8tDNE
+#: optformula.ui
+msgctxt "optformula|odfrecalc"
+msgid "Prompt user"
+msgstr "Benutzer fragen"
+
+#. xoCdo
+#: optformula.ui
+msgctxt "optformula|label4"
+msgid "Recalculation on File Load"
+msgstr "Neuberechnung beim Laden der Datei"
+
+#. rDiac
+#: optformula.ui
+msgctxt "optformula|calcdefault"
+msgid "Default settings"
+msgstr "Vorgaben"
+
+#. RwEz8
+#: optformula.ui
+msgctxt "optformula|calccustom"
+msgid "Custom (conversion of text to numbers and more):"
+msgstr "Angepasst (Text in Zahlen umwandeln und mehr):"
+
+#. GWa6o
+#: optformula.ui
+msgctxt "optformula|details"
+msgid "Details…"
+msgstr "Details..."
+
+#. bNtqA
+#: optformula.ui
+msgctxt "optformula|label2"
+msgid "Detailed Calculation Settings"
+msgstr "Detaillierte Einstellungen für Berechnungen"
+
+#. t4SBB
+#: optformula.ui
+msgctxt "optformula|label6"
+msgid "_Function:"
+msgstr "_Funktion:"
+
+#. vnh8f
+#: optformula.ui
+msgctxt "optformula|label7"
+msgid "Array co_lumn:"
+msgstr "_Matrix Spalte:"
+
+#. 6sZYU
+#: optformula.ui
+msgctxt "optformula|label8"
+msgid "Array _row:"
+msgstr "Matrix _Zeile:"
+
+#. GQdGa
+#: optformula.ui
+msgctxt "optformula|reset"
+msgid "Rese_t Separators Settings"
+msgstr "_Trennzeichen-Einstellungen zurücksetzen"
+
+#. 9oMMw
+#: optformula.ui
+msgctxt "optformula|label3"
+msgid "Separators"
+msgstr "Trennzeichen"
+
+#. cCfAk
+#: optimalcolwidthdialog.ui
+msgctxt "optimalcolwidthdialog|OptimalColWidthDialog"
+msgid "Optimal Column Width"
+msgstr "Optimale Spaltenbreite"
+
+#. nU27B
+#: optimalcolwidthdialog.ui
+msgctxt "optimalcolwidthdialog|label1"
+msgid "Add:"
+msgstr "Extra:"
+
+#. r7hJD
+#: optimalcolwidthdialog.ui
+msgctxt "optimalcolwidthdialog|default"
+msgid "_Default value"
+msgstr "_Standardwert"
+
+#. QxNwS
+#: optimalrowheightdialog.ui
+msgctxt "optimalrowheightdialog|OptimalRowHeightDialog"
+msgid "Optimal Row Height"
+msgstr "Optimale Zeilenhöhe"
+
+#. nVExa
+#: optimalrowheightdialog.ui
+msgctxt "optimalrowheightdialog|label1"
+msgid "Add:"
+msgstr "Extra:"
+
+#. CFWSU
+#: optimalrowheightdialog.ui
+msgctxt "optimalrowheightdialog|default"
+msgid "_Default value"
+msgstr "_Standardwert"
+
+#. AePrG
+#: optsortlists.ui
+msgctxt "optsortlists|copy"
+msgid "_Copy"
+msgstr "_Kopieren"
+
+#. jG3HS
+#: optsortlists.ui
+msgctxt "optsortlists|copyfromlabel"
+msgid "Copy list _from:"
+msgstr "Liste ko_pieren aus:"
+
+#. iCaLd
+#: optsortlists.ui
+msgctxt "optsortlists|listslabel"
+msgid "_Lists"
+msgstr "_Listen"
+
+#. EBMmZ
+#: optsortlists.ui
+msgctxt "optsortlists|entrieslabel"
+msgid "_Entries"
+msgstr "_Einträge"
+
+#. GcE5C
+#: optsortlists.ui
+msgctxt "optsortlists|new"
+msgid "_New"
+msgstr "_Neu"
+
+#. wETY5
+#: optsortlists.ui
+msgctxt "optsortlists|discard"
+msgid "_Discard"
+msgstr "_Verwerfen"
+
+#. KiBRx
+#: optsortlists.ui
+msgctxt "optsortlists|add"
+msgid "_Add"
+msgstr "_Hinzufügen"
+
+#. yADBm
+#: optsortlists.ui
+msgctxt "optsortlists|modify"
+msgid "Modif_y"
+msgstr "Ä_ndern"
+
+#. yN2Fo
+#: optsortlists.ui
+msgctxt "optsortlists|delete"
+msgid "_Delete"
+msgstr "_Löschen"
+
+#. U2gkF
+#: pagetemplatedialog.ui
+msgctxt "pagetemplatedialog|PageTemplateDialog"
+msgid "Page Style"
+msgstr "Seitenvorlage"
+
+#. D22J5
+#: pagetemplatedialog.ui
+msgctxt "pagetemplatedialog|organizer"
+msgid "Organizer"
+msgstr "Verwalten"
+
+#. CbW7A
+#: pagetemplatedialog.ui
+msgctxt "pagetemplatedialog|page"
+msgid "Page"
+msgstr "Seite"
+
+#. yXBdU
+#: pagetemplatedialog.ui
+msgctxt "pagetemplatedialog|borders"
+msgid "Borders"
+msgstr "Umrandung"
+
+#. AYC9K
+#: pagetemplatedialog.ui
+msgctxt "pagetemplatedialog|background"
+msgid "Background"
+msgstr "Hintergrund"
+
+#. qEnHY
+#: pagetemplatedialog.ui
+msgctxt "pagetemplatedialog|header"
+msgid "Header"
+msgstr "Kopfzeile"
+
+#. LLLXG
+#: pagetemplatedialog.ui
+msgctxt "pagetemplatedialog|footer"
+msgid "Footer"
+msgstr "Fußzeile"
+
+#. W5b3a
+#: pagetemplatedialog.ui
+msgctxt "pagetemplatedialog|sheet"
+msgid "Sheet"
+msgstr "Tabelle"
+
+#. 23FsQ
+#: paradialog.ui
+msgctxt "paradialog|ParagraphDialog"
+msgid "Paragraph"
+msgstr "Absatz"
+
+#. 6xRiy
+#: paradialog.ui
+msgctxt "paradialog|labelTP_PARA_STD"
+msgid "Indents & Spacing"
+msgstr "Einzüge & Abstände"
+
+#. PRo68
+#: paradialog.ui
+msgctxt "paradialog|labelTP_PARA_ALIGN"
+msgid "Alignment"
+msgstr "Ausrichtung"
+
+#. EB5A9
+#: paradialog.ui
+msgctxt "paradialog|labelTP_PARA_ASIAN"
+msgid "Asian Typography"
+msgstr "Asiatische Typografie"
+
+#. BzbWJ
+#: paradialog.ui
+msgctxt "paradialog|labelTP_TABULATOR"
+msgid "Tabs"
+msgstr "Tabulatoren"
+
+#. py7L6
+#: paratemplatedialog.ui
+msgctxt "paratemplatedialog|ParaTemplateDialog"
+msgid "Cell Style"
+msgstr "Zellenvorlage"
+
+#. t2enk
+#: paratemplatedialog.ui
+msgctxt "paratemplatedialog|standard"
+msgid "_Standard"
+msgstr "_Standard"
+
+#. AGL7z
+#: paratemplatedialog.ui
+msgctxt "paratemplatedialog|organizer"
+msgid "Organizer"
+msgstr "Verwalten"
+
+#. asnEd
+#: paratemplatedialog.ui
+msgctxt "paratemplatedialog|numbers"
+msgid "Numbers"
+msgstr "Zahlen"
+
+#. gT7a7
+#: paratemplatedialog.ui
+msgctxt "paratemplatedialog|font"
+msgid "Font"
+msgstr "Schrift"
+
+#. d5N6G
+#: paratemplatedialog.ui
+msgctxt "paratemplatedialog|fonteffects"
+msgid "Font Effects"
+msgstr "Schrifteffekt"
+
+#. mXKgq
+#: paratemplatedialog.ui
+msgctxt "paratemplatedialog|alignment"
+msgid "Alignment"
+msgstr "Ausrichtung"
+
+#. 2YK98
+#: paratemplatedialog.ui
+msgctxt "paratemplatedialog|asiantypo"
+msgid "Asian Typography"
+msgstr "Asiatische Typografie"
+
+#. CfvF5
+#: paratemplatedialog.ui
+msgctxt "paratemplatedialog|borders"
+msgid "Borders"
+msgstr "Umrandung"
+
+#. CDaQE
+#: paratemplatedialog.ui
+msgctxt "paratemplatedialog|background"
+msgid "Background"
+msgstr "Hintergrund"
+
+#. qCRSA
+#: paratemplatedialog.ui
+msgctxt "paratemplatedialog|protection"
+msgid "Cell Protection"
+msgstr "Zellschutz"
+
+#. biiBk
+#: pastespecial.ui
+msgctxt "pastespecial|PasteSpecial"
+msgid "Paste Special"
+msgstr "Inhalte einfügen"
+
+#. XyU8o
+#: pastespecial.ui
+msgctxt "pastespecial|paste_values_only|tooltip_text"
+msgid "Values Only"
+msgstr "Nur Werte"
+
+#. 7GuDi
+#: pastespecial.ui
+msgctxt "pastespecial|paste_values_formats|tooltip_text"
+msgid "Values & Formats"
+msgstr "Werte & Formatierungen"
+
+#. NJh3h
+#: pastespecial.ui
+msgctxt "pastespecial|paste_transpose|tooltip_text"
+msgid "Transpose"
+msgstr "Transponieren"
+
+#. 5QYC5
+#: pastespecial.ui
+msgctxt "pastespecial|paste_all"
+msgid "_Paste all"
+msgstr "Alles einfü_gen"
+
+#. BSEWE
+#: pastespecial.ui
+msgctxt "pastespecial|text"
+msgid "Te_xt"
+msgstr "Te_xt"
+
+#. qzFbg
+#: pastespecial.ui
+msgctxt "pastespecial|numbers"
+msgid "_Numbers"
+msgstr "_Zahlen"
+
+#. DBaJD
+#: pastespecial.ui
+msgctxt "pastespecial|datetime"
+msgid "_Date & time"
+msgstr "_Datum & Zeit"
+
+#. MSe4m
+#: pastespecial.ui
+msgctxt "pastespecial|formulas"
+msgid "_Formulas"
+msgstr "_Formeln"
+
+#. NT4Am
+#: pastespecial.ui
+msgctxt "pastespecial|comments"
+msgid "_Comments"
+msgstr "_Kommentare"
+
+#. aHXF8
+#: pastespecial.ui
+msgctxt "pastespecial|formats"
+msgid "For_mats"
+msgstr "Formatieru_ngen"
+
+#. Umb86
+#: pastespecial.ui
+msgctxt "pastespecial|objects"
+msgid "_Objects"
+msgstr "Ob_jekte"
+
+#. gjnwU
+#: pastespecial.ui
+msgctxt "pastespecial|label1"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. nJiy4
+#: pastespecial.ui
+msgctxt "pastespecial|none"
+msgid "Non_e"
+msgstr "K_eine"
+
+#. CEsbt
+#: pastespecial.ui
+msgctxt "pastespecial|add"
+msgid "_Add"
+msgstr "Addie_ren"
+
+#. iFTvh
+#: pastespecial.ui
+msgctxt "pastespecial|subtract"
+msgid "_Subtract"
+msgstr "_Subtrahieren"
+
+#. pn4re
+#: pastespecial.ui
+msgctxt "pastespecial|multiply"
+msgid "Multipl_y"
+msgstr "_Multiplizieren"
+
+#. ND3Xd
+#: pastespecial.ui
+msgctxt "pastespecial|divide"
+msgid "Di_vide"
+msgstr "D_ividieren"
+
+#. 9otLM
+#: pastespecial.ui
+msgctxt "pastespecial|label2"
+msgid "Operations"
+msgstr "Rechenoperationen"
+
+#. FrhGC
+#: pastespecial.ui
+msgctxt "pastespecial|skip_empty"
+msgid "S_kip empty cells"
+msgstr "_Leerzellen überspringen"
+
+#. aDeKR
+#: pastespecial.ui
+msgctxt "pastespecial|transpose"
+msgid "_Transpose"
+msgstr "_Transponieren"
+
+#. eJ6zh
+#: pastespecial.ui
+msgctxt "pastespecial|link"
+msgid "_Link"
+msgstr "Verknü_pfen"
+
+#. HCco8
+#: pastespecial.ui
+msgctxt "pastespecial|label3"
+msgid "Options"
+msgstr "Optionen"
+
+#. fonBJ
+#: pastespecial.ui
+msgctxt "pastespecial|no_shift"
+msgid "Don't sh_ift"
+msgstr "Nicht _verschieben"
+
+#. 4HpJ2
+#: pastespecial.ui
+msgctxt "pastespecial|move_down"
+msgid "Do_wn"
+msgstr "Nach _unten"
+
+#. obSAt
+#: pastespecial.ui
+msgctxt "pastespecial|move_right"
+msgid "_Right"
+msgstr "Re_chts"
+
+#. fzYTm
+#: pastespecial.ui
+msgctxt "pastespecial|label4"
+msgid "Shift Cells"
+msgstr "Zellen verschieben"
+
+#. AqzPf
+#: pivotfielddialog.ui
+msgctxt "pivotfielddialog|PivotFieldDialog"
+msgid "Data Field"
+msgstr "Datenfeld"
+
+#. 8Lex4
+#: pivotfielddialog.ui
+msgctxt "pivotfielddialog|options"
+msgid "_Options..."
+msgstr "_Optionen..."
+
+#. KBmND
+#: pivotfielddialog.ui
+msgctxt "pivotfielddialog|none"
+msgid "_None"
+msgstr "_Keine"
+
+#. ABmZC
+#: pivotfielddialog.ui
+msgctxt "pivotfielddialog|auto"
+msgid "_Automatic"
+msgstr "_Automatisch"
+
+#. mHvW7
+#: pivotfielddialog.ui
+msgctxt "pivotfielddialog|user"
+msgid "_User-defined"
+msgstr "_Benutzerdefiniert"
+
+#. vDXUZ
+#: pivotfielddialog.ui
+msgctxt "pivotfielddialog|label1"
+msgid "Subtotals"
+msgstr "Teilergebnisse"
+
+#. cFxft
+#: pivotfielddialog.ui
+msgctxt "pivotfielddialog|showall"
+msgid "Show it_ems without data"
+msgstr "_Elemente ohne Daten anzeigen"
+
+#. aUWEK
+#: pivotfielddialog.ui
+msgctxt "pivotfielddialog|label2"
+msgid "Name:"
+msgstr "Name:"
+
+#. 5tnrL
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|PivotFilterDialog"
+msgid "Filter"
+msgstr "Filter"
+
+#. BG3Bc
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|connect1"
+msgid "AND"
+msgstr "UND"
+
+#. fwPGu
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|connect1"
+msgid "OR"
+msgstr "ODER"
+
+#. TW6Uf
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|connect2"
+msgid "AND"
+msgstr "UND"
+
+#. 4UZuA
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|connect2"
+msgid "OR"
+msgstr "ODER"
+
+#. rDPh7
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|label2"
+msgid "Operator"
+msgstr "Operator"
+
+#. AQC5N
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|label3"
+msgid "Field name"
+msgstr "Feldname"
+
+#. 5NJCB
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|label4"
+msgid "Condition"
+msgstr "Bedingung"
+
+#. nCtXa
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|label5"
+msgid "Value"
+msgstr "Wert"
+
+#. 9X5GC
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|label1"
+msgid "Filter Criteria"
+msgstr "Filterkriterien"
+
+#. ckB2T
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|case"
+msgid "_Case sensitive"
+msgstr "_Groß- und Kleinschreibung"
+
+#. ECBBQ
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|regexp"
+msgid "Regular _expressions"
+msgstr "_Reguläre Ausdrücke"
+
+#. cirEo
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|unique"
+msgid "_No duplications"
+msgstr "Keine _Duplikate"
+
+#. GcFuF
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|dbarealabel"
+msgid "Data range:"
+msgstr "Datenbereich:"
+
+#. inZxG
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|dbarea"
+msgid "dummy"
+msgstr "Platzhalter"
+
+#. SxeCx
+#: pivotfilterdialog.ui
+msgctxt "pivotfilterdialog|label6"
+msgid "Op_tions"
+msgstr "E_instellungen"
+
+#. ztfNB
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|PivotTableLayout"
+msgid "Pivot Table Layout"
+msgstr "Pivot-Tabellen Layout"
+
+#. dhgK2
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|label3"
+msgid "Column Fields:"
+msgstr "Spaltenfelder:"
+
+#. WWrpy
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|label5"
+msgid "Data Fields:"
+msgstr "Datenfelder:"
+
+#. BhTuC
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|label4"
+msgid "Row Fields:"
+msgstr "Zeilenfelder:"
+
+#. zLKRW
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|label2"
+msgid "Page Fields:"
+msgstr "Seitenfelder:"
+
+#. Scoht
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|label1"
+msgid "Available Fields:"
+msgstr "Verfügbare Felder:"
+
+#. BL7Ff
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|label6"
+msgid "Drag the Items into the Desired Position"
+msgstr "Ziehen Sie die Elemente in die gewünschte Position"
+
+#. 9EpNA
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|check-ignore-empty-rows"
+msgid "Ignore empty rows"
+msgstr "Leerzeilen ignorieren"
+
+#. jgyea
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|check-identify-categories"
+msgid "Identify categories"
+msgstr "Kategorien erkennen"
+
+#. U6pzh
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|check-total-rows"
+msgid "Total rows"
+msgstr "Gesamtergebnis-Zeilen"
+
+#. Br8BE
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|check-total-columns"
+msgid "Total columns"
+msgstr "Gesamtergebnis-Spalten"
+
+#. VXEdh
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|check-add-filter"
+msgid "Add filter"
+msgstr "Filter hinzufügen"
+
+#. ud4H8
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|check-drill-to-details"
+msgid "Enable drill to details"
+msgstr "Drilldown zu Details zulassen"
+
+#. iFA3A
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|label11"
+msgid "Options"
+msgstr "Optionen"
+
+#. LevDB
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|destination-radio-new-sheet"
+msgid "New sheet"
+msgstr "Neue Tabelle"
+
+#. Ld2sG
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|destination-radio-selection"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. UjyGK
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|destination-radio-named-range"
+msgid "Named range"
+msgstr "Benannter Bereich"
+
+#. xhpiB
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|label8"
+msgid "Destination"
+msgstr "Zielbereich"
+
+#. yDG3C
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|source-radio-selection"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. 6s5By
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|source-radio-named-range"
+msgid "Named range"
+msgstr "Benannter Bereich"
+
+#. QTYpg
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|label9"
+msgid "Source"
+msgstr "Quelle"
+
+#. daE6g
+#: pivottablelayoutdialog.ui
+msgctxt "pivottablelayoutdialog|label7"
+msgid "Source and Destination"
+msgstr "Quelle und Zielbereich"
+
+#. bzj3c
+#: printareasdialog.ui
+msgctxt "printareasdialog|PrintAreasDialog"
+msgid "Edit Print Ranges"
+msgstr "Druckbereiche bearbeiten"
+
+#. ED3qW
+#: printareasdialog.ui
+msgctxt "printareasdialog|lbprintarea"
+msgid "- none -"
+msgstr "- keine -"
+
+#. q6nvt
+#: printareasdialog.ui
+msgctxt "printareasdialog|lbprintarea"
+msgid "- entire sheet -"
+msgstr "- ganze Tabelle -"
+
+#. jpkBC
+#: printareasdialog.ui
+msgctxt "printareasdialog|lbprintarea"
+msgid "- user defined -"
+msgstr "- benutzerdefiniert -"
+
+#. aBLgV
+#: printareasdialog.ui
+msgctxt "printareasdialog|lbprintarea"
+msgid "- selection -"
+msgstr "- Auswahl -"
+
+#. frRTf
+#: printareasdialog.ui
+msgctxt "printareasdialog|label1"
+msgid "Print Range"
+msgstr "Druckbereich"
+
+#. XqwBA
+#: printareasdialog.ui
+msgctxt "printareasdialog|lbrepeatrow"
+msgid "- none -"
+msgstr "- keiner -"
+
+#. Ya4kd
+#: printareasdialog.ui
+msgctxt "printareasdialog|lbrepeatrow"
+msgid "- user defined -"
+msgstr "- benutzerdefiniert -"
+
+#. EFCSq
+#: printareasdialog.ui
+msgctxt "printareasdialog|label2"
+msgid "Rows to Repeat"
+msgstr "Wiederholungszeilen"
+
+#. bKSEJ
+#: printareasdialog.ui
+msgctxt "printareasdialog|lbrepeatcol"
+msgid "- none -"
+msgstr "- keine -"
+
+#. DnrZP
+#: printareasdialog.ui
+msgctxt "printareasdialog|lbrepeatcol"
+msgid "- user defined -"
+msgstr "- benutzerdefiniert -"
+
+#. Ushqp
+#: printareasdialog.ui
+msgctxt "printareasdialog|label3"
+msgid "Columns to Repeat"
+msgstr "Wiederholungsspalten"
+
+#. 4tC5Y
+#: printeroptions.ui
+msgctxt "printeroptions|suppressemptypages"
+msgid "Suppress output of empty pages"
+msgstr "Ausgabe leerer Seiten unterdrücken"
+
+#. tkryr
+#: printeroptions.ui
+msgctxt "printeroptions|label6"
+msgid "Pages"
+msgstr "Seiten"
+
+#. fzcXE
+#: protectsheetdlg.ui
+msgctxt "protectsheetdlg|ProtectSheetDialog"
+msgid "Protect Sheet"
+msgstr "Tabelle schützen"
+
+#. y8tgW
+#: protectsheetdlg.ui
+msgctxt "protectsheetdlg|protect"
+msgid "P_rotect this sheet and the contents of protected cells"
+msgstr "Diese Tabelle und die Inhalte gesperrter Zellen _schützen"
+
+#. MvZAZ
+#: protectsheetdlg.ui
+msgctxt "protectsheetdlg|label1"
+msgid "_Password:"
+msgstr "_Kennwort:"
+
+#. sBBwy
+#: protectsheetdlg.ui
+msgctxt "protectsheetdlg|label2"
+msgid "_Confirm:"
+msgstr "_Bestätigen:"
+
+#. 7ccwU
+#: protectsheetdlg.ui
+msgctxt "protectsheetdlg|label4"
+msgid "Allow all users of this sheet to:"
+msgstr "Alle Nutzer dieser Tabelle dürfen:"
+
+#. 64Z7f
+#: protectsheetdlg.ui
+msgctxt "protectsheetdlg|protected"
+msgid "Select protected cells"
+msgstr "Gesperrte Zellen auswählen"
+
+#. y93cJ
+#: protectsheetdlg.ui
+msgctxt "protectsheetdlg|unprotected"
+msgid "Select unprotected cells"
+msgstr "Nicht gesperrte Zellen auswählen"
+
+#. cVdms
+#: protectsheetdlg.ui
+msgctxt "protectsheetdlg|insert-columns"
+msgid "Insert columns"
+msgstr "Spalten einfügen"
+
+#. Arv5t
+#: protectsheetdlg.ui
+msgctxt "protectsheetdlg|insert-rows"
+msgid "Insert rows"
+msgstr "Zeilen einfügen"
+
+#. qQhAG
+#: protectsheetdlg.ui
+msgctxt "protectsheetdlg|delete-columns"
+msgid "Delete columns"
+msgstr "Spalten löschen"
+
+#. fsQEB
+#: protectsheetdlg.ui
+msgctxt "protectsheetdlg|delete-rows"
+msgid "Delete rows"
+msgstr "Zeilen löschen"
+
+#. 3n2mh
+#: queryrunstreamscriptdialog.ui
+msgctxt "queryrunstreamscriptdialog|QueryRunStreamScriptDialog"
+msgid ""
+"This data stream is generated by a script. Do you want to execute %URL?"
+msgstr ""
+"Dieser Datenstrom wurde von einem Skript erzeugt. Möchten Sie %URL "
+"ausführen?"
+
+#. ea2Cm
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|RandomNumberGeneratorDialog"
+msgid "Random Number Generator"
+msgstr "Zufallszahlengenerator"
+
+#. EG6VJ
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|cell-range-label"
+msgid "Cell range:"
+msgstr "Zellbereich:"
+
+#. Jy5mE
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|label1"
+msgid "Data"
+msgstr "Daten"
+
+#. fHkms
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|distribution-label"
+msgid "Distribution:"
+msgstr "Verteilung:"
+
+#. vMADv
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|parameter1-label"
+msgid "..."
+msgstr "..."
+
+#. wVpC6
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|parameter2-label"
+msgid "..."
+msgstr "..."
+
+#. mgEe5
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|label2"
+msgid "Random Number Generator"
+msgstr "Zufallszahlengenerator"
+
+#. DAFgG
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|enable-seed-check"
+msgid "Enable custom seed"
+msgstr "Eigenen Anfangswert verwenden"
+
+#. Tx5oq
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|seed-label"
+msgid "Seed:"
+msgstr "Anfangswert:"
+
+#. sEjpT
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|enable-rounding-check"
+msgid "Enable rounding"
+msgstr "Rundung aktivieren"
+
+#. nRvWV
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|decimal-places-label"
+msgid "Decimal places:"
+msgstr "Nachkommastellen:"
+
+#. FTBJB
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|label4"
+msgid "Options"
+msgstr "Optionen"
+
+#. A75xG
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Uniform"
+msgstr "Gleichverteilt"
+
+#. 6GmrH
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Uniform Integer"
+msgstr "Gleichverteilte ganze Zahl"
+
+#. 5KkJA
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Normal"
+msgstr "Normalverteilt"
+
+#. cZv7T
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Cauchy"
+msgstr "Cauchy-verteilt"
+
+#. 7ugzB
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Bernoulli"
+msgstr "Bernoulli-verteilt"
+
+#. 98xyT
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Binomial"
+msgstr "Binomialverteilt"
+
+#. NBPGN
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Chi Squared"
+msgstr "Chi-Quadrat-verteilt"
+
+#. D4e83
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Geometric"
+msgstr "Geometrisch-verteilt"
+
+#. YNHUc
+#: randomnumbergenerator.ui
+msgctxt "randomnumbergenerator|distribution-liststore"
+msgid "Negative Binomial"
+msgstr "Negativ binomialverteilt"
+
+#. YJJFq
+#: regressiondialog.ui
+msgctxt "regressiondialog|RegressionDialog"
+msgid "Regression"
+msgstr "Regression"
+
+#. K68fU
+#: regressiondialog.ui
+msgctxt "regressiondialog|variable1-range-label"
+msgid "Variable 1 range:"
+msgstr "Bereich der Variablen 1:"
+
+#. bRE5R
+#: regressiondialog.ui
+msgctxt "regressiondialog|variable2-range-label"
+msgid "Variable 2 range:"
+msgstr "Bereich der Variablen 2:"
+
+#. YKUpg
+#: regressiondialog.ui
+msgctxt "regressiondialog|output-range-label"
+msgid "Results to:"
+msgstr "Ergebnisse nach:"
+
+#. ngLrg
+#: regressiondialog.ui
+msgctxt "regressiondialog|label1"
+msgid "Data"
+msgstr "Daten"
+
+#. vTmkj
+#: regressiondialog.ui
+msgctxt "regressiondialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr "Spalten"
+
+#. A8787
+#: regressiondialog.ui
+msgctxt "regressiondialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr "Zeilen"
+
+#. zzc9a
+#: regressiondialog.ui
+msgctxt "regressiondialog|label2"
+msgid "Grouped by"
+msgstr "Gruppiert nach"
+
+#. z5cSn
+#: regressiondialog.ui
+msgctxt "regressiondialog|linear-check"
+msgid "Linear Regression"
+msgstr "Lineare Regression"
+
+#. E3VGD
+#: regressiondialog.ui
+msgctxt "regressiondialog|logarithmic-check"
+msgid "Logarithmic Regression"
+msgstr "Logarithmische Regression"
+
+#. AfrDU
+#: regressiondialog.ui
+msgctxt "regressiondialog|power-check"
+msgid "Power Regression"
+msgstr "Potenzielle Regression"
+
+#. nhcJV
+#: regressiondialog.ui
+msgctxt "regressiondialog|label3"
+msgid "Output Regression Types"
+msgstr "Regressionstypen festlegen"
+
+#. vAFwf
+#: retypepassdialog.ui
+msgctxt "retypepassdialog|RetypePass"
+msgid "Re-type Password"
+msgstr "Kennwort wiederholen"
+
+#. ik7CK
+#: retypepassdialog.ui
+msgctxt "retypepassdialog|descLabel"
+msgid ""
+"The document you are about to export has one or more protected items with "
+"password that cannot be exported. Please re-type your password to be able to"
+" export your document."
+msgstr ""
+"Das Dokument, das Sie exportieren möchten, hat ein oder mehrere mit Kennwort"
+" geschützte Objekte, die nicht exportiert werden können. Bitte geben Sie Ihr"
+" Kennwort erneut ein, um Ihr Dokument exportieren zu können."
+
+#. DGfRA
+#: retypepassdialog.ui
+msgctxt "retypepassdialog|docStatusLabel"
+msgid "Status unknown"
+msgstr "Status unbekannt"
+
+#. FvCNA
+#: retypepassdialog.ui
+msgctxt "retypepassdialog|retypeDocButton"
+msgid "_Re-type"
+msgstr "_Wiederholen"
+
+#. QWtCp
+#: retypepassdialog.ui
+msgctxt "retypepassdialog|label2"
+msgid "Document protection"
+msgstr "Dokumentschutz"
+
+#. Bqz9G
+#: retypepassdialog.ui
+msgctxt "retypepassdialog|label3"
+msgid "Sheet protection"
+msgstr "Tabellenschutz"
+
+#. eGMrC
+#: retypepassworddialog.ui
+msgctxt "retypepassworddialog|RetypePasswordDialog"
+msgid "Re-type Password"
+msgstr "Kennwort wiederholen"
+
+#. ZvhnQ
+#: retypepassworddialog.ui
+msgctxt "retypepassworddialog|retypepassword"
+msgid "Re-type password"
+msgstr "Kennwort wiederholen"
+
+#. ZPR7e
+#: retypepassworddialog.ui
+msgctxt "retypepassworddialog|label4"
+msgid "Pa_ssword:"
+msgstr "_Kennwort:"
+
+#. VgQFk
+#: retypepassworddialog.ui
+msgctxt "retypepassworddialog|label5"
+msgid "Confi_rm:"
+msgstr "_Bestätigen:"
+
+#. DrKUe
+#: retypepassworddialog.ui
+msgctxt "retypepassworddialog|mustmatch"
+msgid "New password must match the original password"
+msgstr "Neues Kennwort muss dem Originalkennwort entsprechen"
+
+#. dQLVG
+#: retypepassworddialog.ui
+msgctxt "retypepassworddialog|removepassword"
+msgid "Remove password from this protected item"
+msgstr "Kennwort von geschütztem Element entfernen"
+
+#. bFRyx
+#: rightfooterdialog.ui
+msgctxt "rightfooterdialog|RightFooterDialog"
+msgid "Footer (right)"
+msgstr "Fußzeile (rechts)"
+
+#. uHHFF
+#: rightfooterdialog.ui
+msgctxt "rightfooterdialog|footerright"
+msgid "Footer (right)"
+msgstr "Fußzeile (rechts)"
+
+#. xY5mv
+#: rightheaderdialog.ui
+msgctxt "rightheaderdialog|RightHeaderDialog"
+msgid "Header (right)"
+msgstr "Kopfzeile (rechts)"
+
+#. Sa3pf
+#: rightheaderdialog.ui
+msgctxt "rightheaderdialog|headerright"
+msgid "Header (right)"
+msgstr "Kopfzeile (rechts)"
+
+#. ATWGG
+#: rowheightdialog.ui
+msgctxt "rowheightdialog|RowHeightDialog"
+msgid "Row Height"
+msgstr "Zeilenhöhe"
+
+#. EzUqW
+#: rowheightdialog.ui
+msgctxt "rowheightdialog|label1"
+msgid "Height:"
+msgstr "Höhe:"
+
+#. thALC
+#: rowheightdialog.ui
+msgctxt "rowheightdialog|default"
+msgid "_Default value"
+msgstr "_Standardwert"
+
+#. z864t
+#: samplingdialog.ui
+msgctxt "samplingdialog|SamplingDialog"
+msgid "Sampling"
+msgstr "Stichproben"
+
+#. E5wq9
+#: samplingdialog.ui
+msgctxt "samplingdialog|input-range-label"
+msgid "Input range:"
+msgstr "Eingabebereich:"
+
+#. GPDR3
+#: samplingdialog.ui
+msgctxt "samplingdialog|output-range-label"
+msgid "Results to:"
+msgstr "Ergebnisse nach:"
+
+#. GD2H5
+#: samplingdialog.ui
+msgctxt "samplingdialog|label4"
+msgid "Data"
+msgstr "Daten"
+
+#. Hg3d9
+#: samplingdialog.ui
+msgctxt "samplingdialog|label1"
+msgid "Sample size:"
+msgstr "Messwertgröße:"
+
+#. wF3ky
+#: samplingdialog.ui
+msgctxt "samplingdialog|random-method-radio"
+msgid "Random"
+msgstr "Zufällig"
+
+#. ug6Sn
+#: samplingdialog.ui
+msgctxt "samplingdialog|periodic-method-radio"
+msgid "Periodic"
+msgstr "Periodisch"
+
+#. xNEnn
+#: samplingdialog.ui
+msgctxt "samplingdialog|label3"
+msgid "Period:"
+msgstr "Periode:"
+
+#. PdUup
+#: samplingdialog.ui
+msgctxt "samplingdialog|label2"
+msgid "Sampling Method"
+msgstr "Stichprobenmethode"
+
+#. WMPmE
+#: scenariodialog.ui
+msgctxt "scenariodialog|ScenarioDialog"
+msgid "Create Scenario"
+msgstr "Szenario anlegen"
+
+#. xwJe3
+#: scenariodialog.ui
+msgctxt "scenariodialog|label1"
+msgid "Name of Scenario"
+msgstr "Name des Szenarios"
+
+#. X9GgG
+#: scenariodialog.ui
+msgctxt "scenariodialog|label2"
+msgid "Comment"
+msgstr "Kommentar"
+
+#. GcXCj
+#: scenariodialog.ui
+msgctxt "scenariodialog|copyback"
+msgid "Copy _back"
+msgstr "_Zurückkopieren"
+
+#. RZHB9
+#: scenariodialog.ui
+msgctxt "scenariodialog|copysheet"
+msgid "Copy _entire sheet"
+msgstr "Ganze _Tabelle kopieren"
+
+#. DxHKD
+#: scenariodialog.ui
+msgctxt "scenariodialog|preventchanges"
+msgid "_Prevent changes"
+msgstr "Änderungen _verhindern"
+
+#. 6xvMR
+#: scenariodialog.ui
+msgctxt "scenariodialog|showframe"
+msgid "_Display border"
+msgstr "_Rahmen anzeigen"
+
+#. FCYVa
+#: scenariodialog.ui
+msgctxt "scenariodialog|bordercolor-atkobject"
+msgid "Display border in"
+msgstr "Rahmen anzeigen in"
+
+#. R8AVm
+#: scenariodialog.ui
+msgctxt "scenariodialog|label3"
+msgid "Settings"
+msgstr "Einstellungen"
+
+#. RGGkM
+#: scenariodialog.ui
+msgctxt "scenariodialog|alttitle"
+msgid "Edit Scenario"
+msgstr "Szenario bearbeiten"
+
+#. L3X5A
+#: scenariodialog.ui
+msgctxt "scenariodialog|createdft"
+msgid "Created by"
+msgstr "Angelegt von"
+
+#. 6uiPw
+#: scenariodialog.ui
+msgctxt "scenariodialog|onft"
+msgid "on"
+msgstr "am"
+
+#. 9fG2A
+#: scenariomenu.ui
+msgctxt "scenariomenu|delete"
+msgid "Delete"
+msgstr "Löschen"
+
+#. ZnKYh
+#: scenariomenu.ui
+msgctxt "scenariomenu|edit"
+msgid "Properties..."
+msgstr "Eigenschaften..."
+
+#. Hi3gG
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|label4"
+msgid "Measurement _unit:"
+msgstr "_Maßeinheit:"
+
+#. qfwjd
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|label5"
+msgid "_Tab stops:"
+msgstr "_Tabulatoren:"
+
+#. zzQpA
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|label1"
+msgid "Metrics"
+msgstr "Metrisch"
+
+#. GDxLR
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|label6"
+msgid "Update links when opening"
+msgstr "Verknüpfungen beim Laden aktualisieren"
+
+#. D8cxt
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|alwaysrb"
+msgid "_Always"
+msgstr "_Immer"
+
+#. 3baZU
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|requestrb"
+msgid "_On request"
+msgstr "Auf Nach_frage"
+
+#. AESok
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|neverrb"
+msgid "_Never"
+msgstr "_Nie"
+
+#. DkBHk
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|label2"
+msgid "Updating"
+msgstr "Aktualisieren"
+
+#. GGhDQ
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|editmodecb"
+msgid "Press Enter to switch to _edit mode"
+msgstr "Eingabetaste schaltet in den _Bearbeitungsmodus"
+
+#. zzFGH
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|formatcb"
+msgid "Expand _formatting"
+msgstr "Formatier_ung ausdehnen"
+
+#. AzkVC
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|exprefcb"
+msgid "Expand _references when new columns/rows are inserted"
+msgstr "_Bezüge beim Einfügen von Spalten/Zeilen an deren Rändern ausdehnen"
+
+#. 6oRpB
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|alignlb"
+msgid "Down"
+msgstr "unten"
+
+#. tC8Do
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|alignlb"
+msgid "Right"
+msgstr "rechts"
+
+#. AAUJ2
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|alignlb"
+msgid "Up"
+msgstr "oben"
+
+#. p9JAq
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|alignlb"
+msgid "Left"
+msgstr "links"
+
+#. dnDdz
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|aligncb"
+msgid "Press Enter to _move selection"
+msgstr "Die Eingabetaste bewegt die _Auswahl nach"
+
+#. teGMP
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|legacy_cell_selection_cb"
+msgid "Use legacy cursor movement behavior when selecting"
+msgstr "Bisheriges Verhalten der Cursor-Bewegung beim Auswählen benutzen"
+
+#. S2fGF
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|replwarncb"
+msgid "Show overwrite _warning when pasting data"
+msgstr "Ü_berschreibwarnung beim Einfügen von Daten anzeigen"
+
+#. LFenu
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|textfmtcb"
+msgid "Use printer metrics for text formatting"
+msgstr "Druckermaße für Textformatierung verwenden"
+
+#. zW9SZ
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|markhdrcb"
+msgid "Highlight sele_ction in column/row headers"
+msgstr "Auswah_l in Spalten-/Zeilenköpfen hervorheben"
+
+#. KGWyE
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|sortrefupdatecb"
+msgid "Update references when sorting range of cells"
+msgstr "Bezüge aktualisieren, wenn Zellbereiche sortiert werden"
+
+#. M9G8o
+#: scgeneralpage.ui
+msgctxt "scgeneralpage|label3"
+msgid "Input Settings"
+msgstr "Eingabeeinstellungen"
+
+#. CbggP
+#: searchresults.ui
+msgctxt "searchresults|SearchResultsDialog"
+msgid "Search Results"
+msgstr "Suchergebnisse"
+
+#. xQDVV
+#: searchresults.ui
+msgctxt "searchresults|skipped"
+msgid "skipped $1 ..."
+msgstr "$1 übersprungen..."
+
+#. GtwuD
+#: selectdatasource.ui
+msgctxt "selectdatasource|SelectDataSourceDialog"
+msgid "Select Data Source"
+msgstr "Datenquelle auswählen"
+
+#. Apf6s
+#: selectdatasource.ui
+msgctxt "selectdatasource|label2"
+msgid "_Database:"
+msgstr "_Datenbank:"
+
+#. FUXnG
+#: selectdatasource.ui
+msgctxt "selectdatasource|label4"
+msgid "_Type:"
+msgstr "_Typ:"
+
+#. BYmD6
+#: selectdatasource.ui
+msgctxt "selectdatasource|type"
+msgid "Table"
+msgstr "Tabelle"
+
+#. vDibq
+#: selectdatasource.ui
+msgctxt "selectdatasource|type"
+msgid "Query"
+msgstr "Abfrage"
+
+#. LRSFg
+#: selectdatasource.ui
+msgctxt "selectdatasource|type"
+msgid "Sql"
+msgstr "SQL"
+
+#. 2vGhJ
+#: selectdatasource.ui
+msgctxt "selectdatasource|type"
+msgid "Sql [Native]"
+msgstr "SQL [Native]"
+
+#. 3tKUG
+#: selectdatasource.ui
+msgctxt "selectdatasource|label3"
+msgid "Data so_urce:"
+msgstr "Daten_quelle:"
+
+#. 82STt
+#: selectdatasource.ui
+msgctxt "selectdatasource|label1"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. HtGHG
+#: selectrange.ui
+msgctxt "selectrange|SelectRangeDialog"
+msgid "Select Database Range"
+msgstr "Datenbankbereich auswählen"
+
+#. EpBCK
+#: selectrange.ui
+msgctxt "selectrange|label1"
+msgid "Ranges"
+msgstr "Bereiche"
+
+#. EzRBz
+#: selectsource.ui
+msgctxt "selectsource|SelectSourceDialog"
+msgid "Select Source"
+msgstr "Quelle auswählen"
+
+#. ECBru
+#: selectsource.ui
+msgctxt "selectsource|selection"
+msgid "_Current selection"
+msgstr "_Aktuelle Auswahl"
+
+#. jiPGh
+#: selectsource.ui
+msgctxt "selectsource|namedrange"
+msgid "_Named range:"
+msgstr "_Benannter Bereich:"
+
+#. gsMej
+#: selectsource.ui
+msgctxt "selectsource|database"
+msgid "_Data source registered in %PRODUCTNAME"
+msgstr "_In %PRODUCTNAME angemeldete Datenquelle"
+
+#. ZDghg
+#: selectsource.ui
+msgctxt "selectsource|external"
+msgid "_External source/interface"
+msgstr "_Externe Quelle/Schnittstelle"
+
+#. 8ZtBt
+#: selectsource.ui
+msgctxt "selectsource|label1"
+msgid "Selection"
+msgstr "Auswahl"
+
+#. DEDQP
+#: sharedfooterdialog.ui
+msgctxt "sharedfooterdialog|SharedFooterDialog"
+msgid "Headers/Footers"
+msgstr "Kopf-/Fußzeilen"
+
+#. bCUGs
+#: sharedfooterdialog.ui
+msgctxt "sharedfooterdialog|headerright"
+msgid "Header (right)"
+msgstr "Kopfzeile (rechts)"
+
+#. 2FkAh
+#: sharedfooterdialog.ui
+msgctxt "sharedfooterdialog|headerleft"
+msgid "Header (left)"
+msgstr "Kopfzeile (links)"
+
+#. MwLwF
+#: sharedfooterdialog.ui
+msgctxt "sharedfooterdialog|footer"
+msgid "Footer"
+msgstr "Fußzeile"
+
+#. s5uSk
+#: sharedheaderdialog.ui
+msgctxt "sharedheaderdialog|SharedHeaderDialog"
+msgid "Headers/Footers"
+msgstr "Kopf-/Fußzeilen"
+
+#. mYxKb
+#: sharedheaderdialog.ui
+msgctxt "sharedheaderdialog|header"
+msgid "Header"
+msgstr "Kopfzeile"
+
+#. knqg2
+#: sharedheaderdialog.ui
+msgctxt "sharedheaderdialog|footerright"
+msgid "Footer (right)"
+msgstr "Fußzeile (rechts)"
+
+#. wCyNG
+#: sharedheaderdialog.ui
+msgctxt "sharedheaderdialog|footerleft"
+msgid "Footer (left)"
+msgstr "Fußzeile (links)"
+
+#. D5VTo
+#: sharedocumentdlg.ui
+msgctxt "sharedocumentdlg|ShareDocumentDialog"
+msgid "Share Document"
+msgstr "Dokument freigeben"
+
+#. MW6An
+#: sharedocumentdlg.ui
+msgctxt "sharedocumentdlg|share"
+msgid "_Share this spreadsheet with other users"
+msgstr "_Dieses Tabellendokument für andere Benutzer freigeben"
+
+#. xpXCL
+#: sharedocumentdlg.ui
+msgctxt "sharedocumentdlg|warning"
+msgid ""
+"Note: Changes to formatting attributes like fonts, colors, and number "
+"formats will not be saved and some functionalities like editing charts and "
+"drawing objects are not available in shared mode. Turn off shared mode to "
+"get exclusive access needed for those changes and functionalities."
+msgstr ""
+"Hinweis: Änderungen von Formatierungen, wie Schriftart, Farbe, Zahlenformat "
+"werden im freigegebenen Modus nicht gespeichert und einige Funktionen, wie "
+"das Bearbeiten von Diagrammen und Zeichnungsobjekten, stehen nicht zur "
+"Verfügung. Heben Sie die Freigabe auf, um Exklusivzugriff zu erhalten, wenn "
+"Sie entsprechende Änderungen vornehmen möchten."
+
+#. dQz77
+#: sharedocumentdlg.ui
+msgctxt "sharedocumentdlg|name"
+msgid "Name"
+msgstr "Name"
+
+#. EC8AA
+#: sharedocumentdlg.ui
+msgctxt "sharedocumentdlg|accessed"
+msgid "Accessed"
+msgstr "Zugegriffen"
+
+#. SSc6B
+#: sharedocumentdlg.ui
+msgctxt "sharedocumentdlg|nouserdata"
+msgid "No user data available."
+msgstr "Keine Benutzerdaten verfügbar."
+
+#. qXgdw
+#: sharedocumentdlg.ui
+msgctxt "sharedocumentdlg|unknownuser"
+msgid "Unknown User"
+msgstr "Unbekannter Anwender"
+
+#. FFnfu
+#: sharedocumentdlg.ui
+msgctxt "sharedocumentdlg|exclusive"
+msgid "(exclusive access)"
+msgstr "(Exklusivzugriff)"
+
+#. hHHJG
+#: sharedocumentdlg.ui
+msgctxt "sharedocumentdlg|label1"
+msgid "Users Currently Accessing This Spreadsheet"
+msgstr "Benutzer, die zur Zeit auf dieses Tabellendokument zugreifen"
+
+#. cPFdV
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|radioBTN_TOPDOWN"
+msgid "_Top to bottom, then right"
+msgstr "Von o_ben nach unten, dann nach rechts"
+
+#. a2f9m
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|radioBTN_LEFTRIGHT"
+msgid "_Left to right, then down"
+msgstr "Von _links nach rechts, dann nach unten"
+
+#. Zmz6D
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|checkBTN_PAGENO"
+msgid "First _page number:"
+msgstr "Erste _Seitennummer:"
+
+#. ejXus
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|labelPageOrder"
+msgid "Page Order"
+msgstr "Seitenreihenfolge"
+
+#. 6acF6
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|checkBTN_HEADER"
+msgid "_Column and row headers"
+msgstr "Zeilen- & Spalten_köpfe"
+
+#. A6vme
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|checkBTN_GRID"
+msgid "_Grid"
+msgstr "_Gitter"
+
+#. gwu4K
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|checkBTN_NOTES"
+msgid "_Comments"
+msgstr "_Kommentare"
+
+#. JDNDB
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|checkBTN_OBJECTS"
+msgid "_Objects/Images"
+msgstr "_Objekte/Bilder"
+
+#. JvBi3
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|checkBTN_CHARTS"
+msgid "Charts"
+msgstr "Diagramme"
+
+#. zUYVr
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|checkBTN_DRAWINGS"
+msgid "_Drawing objects"
+msgstr "Zei_chnungsobjekte"
+
+#. ideQb
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|checkBTN_FORMULAS"
+msgid "_Formulas"
+msgstr "_Formeln"
+
+#. seZGj
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|checkBTN_NULLVALS"
+msgid "_Zero values"
+msgstr "Null_werte"
+
+#. cAo6Q
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|labelPrint"
+msgid "Print"
+msgstr "Drucken"
+
+#. 5KGnx
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|labelScalingMode"
+msgid "Scaling _mode:"
+msgstr "Skalierungs_modus:"
+
+#. 4B48Q
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|labelSF"
+msgid "_Scaling factor:"
+msgstr "_Skalierungsfaktor:"
+
+#. AgUiF
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|labelWP"
+msgid "_Width in pages:"
+msgstr "Br_eite in Seiten:"
+
+#. FVuA4
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|labelHP"
+msgid "_Height in pages:"
+msgstr "Höh_e in Seiten:"
+
+#. SeMBt
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|labelNP"
+msgid "N_umber of pages:"
+msgstr "Seiten_anzahl:"
+
+#. CvyP8
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|comboLB_SCALEMODE"
+msgid "Reduce/enlarge printout"
+msgstr "Ausdruck verkleinern/vergrößern"
+
+#. GxZyi
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|comboLB_SCALEMODE"
+msgid "Fit print range(s) to width/height"
+msgstr "Druckbereich(e) auf Breite/Höhe anpassen"
+
+#. Y2GhT
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|comboLB_SCALEMODE"
+msgid "Fit print range(s) on number of pages"
+msgstr "Druckbereich(e) auf Seitenanzahl anpassen"
+
+#. zeMqg
+#: sheetprintpage.ui
+msgctxt "sheetprintpage|labelScale"
+msgid "Scale"
+msgstr "Maßstab"
+
+#. CwxSU
+#: showchangesdialog.ui
+msgctxt "showchangesdialog|ShowChangesDialog"
+msgid "Show Changes"
+msgstr "Änderungen anzeigen"
+
+#. gsAFi
+#: showchangesdialog.ui
+msgctxt "showchangesdialog|showchanges"
+msgid "_Show changes in spreadsheet"
+msgstr "Änderungen im Tabellendokument an_zeigen"
+
+#. au2jE
+#: showchangesdialog.ui
+msgctxt "showchangesdialog|showaccepted"
+msgid "Show _accepted changes"
+msgstr "A_kzeptierte Änderungen anzeigen"
+
+#. KBgdT
+#: showchangesdialog.ui
+msgctxt "showchangesdialog|showrejected"
+msgid "Show _rejected changes"
+msgstr "Ver_worfene Änderungen anzeigen"
+
+#. PHqfD
+#: showchangesdialog.ui
+msgctxt "showchangesdialog|label1"
+msgid "Filter Settings"
+msgstr "Filtereinstellungen"
+
+#. qmxGg
+#: showdetaildialog.ui
+msgctxt "showdetaildialog|ShowDetail"
+msgid "Show Detail"
+msgstr "Detail anzeigen"
+
+#. SHLnt
+#: showdetaildialog.ui
+msgctxt "showdetaildialog|label1"
+msgid "_Choose the field containing the detail you want to show"
+msgstr "_Wählen Sie das Feld, dessen Detail Sie hinzufügen möchten"
+
+#. BDJbs
+#: showsheetdialog.ui
+msgctxt "showsheetdialog|ShowSheetDialog"
+msgid "Show Sheet"
+msgstr "Tabelle einblenden"
+
+#. BC9wU
+#: showsheetdialog.ui
+msgctxt "showsheetdialog|label1"
+msgid "Hidden Sheets"
+msgstr "Ausgeblendete Tabellen"
+
+#. ktHTz
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|horizontalalignment|tooltip_text"
+msgid "Horizontal Alignment"
+msgstr "Horizontale Ausrichtung"
+
+#. U8BWH
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|verticalalignment|tooltip_text"
+msgid "Vertical Alignment"
+msgstr "Vertikale Ausrichtung"
+
+#. FdKBk
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|leftindentlabel"
+msgid "_Indent:"
+msgstr "_Einzug:"
+
+#. etrVi
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|leftindent|tooltip_text"
+msgid "Indents from the left edge."
+msgstr "Einzug vom linken Rand."
+
+#. RFefG
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|leftindent"
+msgid "Left Indent"
+msgstr "Linker Einzug"
+
+#. Ae65n
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|mergecells"
+msgid "Merge cells"
+msgstr "Zellen verbinden"
+
+#. NK2BS
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|mergecells|tooltip_text"
+msgid "Joins the selected cells into one."
+msgstr "Verbindet die ausgewählten Zellen zu einer Zelle."
+
+#. xruhe
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|wraptext"
+msgid "Wrap text"
+msgstr "Zeilenumbruch"
+
+#. uTKvq
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|wraptext|tooltip_text"
+msgid "Wrap texts automatically."
+msgstr "Automatischer Zeilenumbruch."
+
+#. qtoY5
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|orientationlabel"
+msgid "Text _orientation:"
+msgstr "_Textausrichtung:"
+
+#. Ume2A
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|orientationdegrees|tooltip_text"
+msgid "Select the angle for rotation."
+msgstr "Wählen Sie den Drehwinkel."
+
+#. HnUqV
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|orientationdegrees"
+msgid "Text Orientation"
+msgstr "Textausrichtung"
+
+#. ZE4wU
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|bottom|tooltip_text"
+msgid "Text Extension From Lower Cell Border"
+msgstr "Textausdehnung von unterer Zellkante aus"
+
+#. CgVBh
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|top|tooltip_text"
+msgid "Text Extension From Upper Cell Border"
+msgstr "Textausdehnung von oberer Zellkante aus"
+
+#. TSALx
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|standard|tooltip_text"
+msgid "Text Extension Inside Cell"
+msgstr "Textausdehnung nur innerhalb der Zelle"
+
+#. KEG9k
+#: sidebaralignment.ui
+msgctxt "sidebaralignment|stacked"
+msgid "Vertically stacked"
+msgstr "Senkrecht gestapelt"
+
+#. BBGFK
+#: sidebarcellappearance.ui
+msgctxt "sidebarcellappearance|cellbackgroundlabel"
+msgid "_Background:"
+msgstr "_Hintergrund:"
+
+#. bjHWc
+#: sidebarcellappearance.ui
+msgctxt "sidebarcellappearance|cellbackgroundcolor|tooltip_text"
+msgid "Select the background color of the selected cells."
+msgstr "Hiermit legen Sie die Hintergrundfarbe der ausgewählten Zellen fest."
+
+#. wCWut
+#: sidebarcellappearance.ui
+msgctxt "sidebarcellappearance|cellbackground|tooltip_text"
+msgid "Select the background color of the selected cells."
+msgstr "Hiermit legen Sie die Hintergrundfarbe der ausgewählten Zellen fest."
+
+#. DKEkN
+#: sidebarcellappearance.ui
+msgctxt "sidebarcellappearance|bordertype|tooltip_text"
+msgid "Specify the borders of the selected cells."
+msgstr "Hiermit legen Sie die Umrandung der ausgewählten Zellen fest."
+
+#. VgXDF
+#: sidebarcellappearance.ui
+msgctxt "sidebarcellappearance|linestyle|tooltip_text"
+msgid "Select the line style of the borders."
+msgstr "Wählen Sie den Linienstil der Umrandungen aus."
+
+#. jaxhA
+#: sidebarcellappearance.ui
+msgctxt "sidebarcellappearance|borderlinestyle-atkobject"
+msgid "Border Line Style"
+msgstr "Linienstil der Umrandung"
+
+#. D2TVi
+#: sidebarcellappearance.ui
+msgctxt "sidebarcellappearance|borderlinecolor|tooltip_text"
+msgid "Select the line color of the borders."
+msgstr "Wählen Sie die Linienfarbe der Umrandungen aus."
+
+#. GqfZD
+#: sidebarcellappearance.ui
+msgctxt "sidebarcellappearance|linecolor|tooltip_text"
+msgid "Select the line color of the borders."
+msgstr "Wählen Sie die Linienfarbe der Umrandungen aus."
+
+#. 8AUBs
+#: sidebarcellappearance.ui
+msgctxt "sidebarcellappearance|borderlinecolor-atkobject"
+msgid "Border Line Color"
+msgstr "Linienfarbe der Umrandung"
+
+#. 39G7R
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|category|tooltip_text"
+msgid "Select a category of contents."
+msgstr "Wählten Sie eine Inhaltskategorie aus."
+
+#. HBZmw
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|category"
+msgid "General"
+msgstr "Standard"
+
+#. KwAw5
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|category"
+msgid "Number"
+msgstr "Dezimalzahl"
+
+#. 5mvEC
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|category"
+msgid "Percent"
+msgstr "Prozent"
+
+#. BKK9N
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|category"
+msgid "Currency"
+msgstr "Währung"
+
+#. 4bBec
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|category"
+msgid "Date "
+msgstr "Datum"
+
+#. wEwEm
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|category"
+msgid "Time"
+msgstr "Uhrzeit"
+
+#. iRFAs
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|category"
+msgid "Scientific"
+msgstr "Wissenschaftlich"
+
+#. mAaBd
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|category"
+msgid "Fraction"
+msgstr "Bruch"
+
+#. LE7i3
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|category"
+msgid "Boolean Value"
+msgstr "Wahrheitswert"
+
+#. yBgD8
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|category"
+msgid "Text"
+msgstr "Text"
+
+#. XmYfL
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|category-atkobject"
+msgid "Category"
+msgstr "Kategorie"
+
+#. FqFzG
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|decimalplaceslabel"
+msgid "_Decimal places:"
+msgstr "N_achkommastellen:"
+
+#. EaLbU
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|decimalplaces|tooltip_text"
+msgid "Enter the number of decimal places that you want to display."
+msgstr ""
+"Geben Sie die Nachkommastellen ein, die Sie angezeigt bekommen möchten."
+
+#. 5tvJA
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|decimalplaces-atkobject"
+msgid "Decimal Places"
+msgstr "Nachkommastellen"
+
+#. xen2B
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|denominatorplaceslabel"
+msgid "Den_ominator places:"
+msgstr "Stellen für Nen_ner:"
+
+#. cdFDC
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|denominatorplaces|tooltip_text"
+msgid ""
+"Enter the number of places for the denominator that you want to display."
+msgstr ""
+"Geben Sie die Anzahl der Stellen für den Nenner ein, die angezeigt werden "
+"sollen."
+
+#. ySDGH
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|denominatorplaces-atkobject"
+msgid "Denominator Places"
+msgstr "Stellen für Nenner"
+
+#. 4h3mG
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|leadingzeroeslabel"
+msgid "Leading _zeroes:"
+msgstr "Führende _Nullen:"
+
+#. 35pSE
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|leadingzeroes|tooltip_text"
+msgid ""
+"Enter the maximum number of zeroes to display before the decimal point."
+msgstr ""
+"Geben Sie die maximale Anzahl von Nullen ein, die Sie vor dem "
+"Dezimaltrennzeichen angezeigt bekommen möchten."
+
+#. UFTBa
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|leadingzeroes-atkobject"
+msgid "Leading Zeroes"
+msgstr "Führende Nullen"
+
+#. jkDKD
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|negativenumbersred"
+msgid "_Negative numbers in red"
+msgstr "_Negative Zahlen in rot"
+
+#. apRL8
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|negativenumbersred|tooltip_text"
+msgid "Changes the font color of negative numbers to red."
+msgstr "Stellt negative Zahlen rot dar."
+
+#. BJ9Gy
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|thousandseparator"
+msgid "_Thousands separator"
+msgstr "_Tausendertrennzeichen"
+
+#. ykEWn
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|thousandseparator|tooltip_text"
+msgid "Inserts a separator between thousands."
+msgstr "Fügt einen Trenner zwischen Tausend ein."
+
+#. pGpRu
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|engineeringnotation"
+msgid "_Engineering notation"
+msgstr "T_echnische Schreibweise"
+
+#. 9CEjC
+#: sidebarnumberformat.ui
+msgctxt "sidebarnumberformat|engineeringnotation|tooltip_text"
+msgid "Ensures that exponent is a multiple of 3."
+msgstr "Stellt sicher, dass der Exponent ein Vielfaches von 3 ist."
+
+#. gubfQ
+#: simplerefdialog.ui
+msgctxt "simplerefdialog|SimpleRefDialog"
+msgid "Set range"
+msgstr "Bereich festlegen"
+
+#. scy7u
+#: simplerefdialog.ui
+msgctxt "simplerefdialog|area"
+msgid "Area:"
+msgstr "Bereich:"
+
+#. GGUrx
+#: solverdlg.ui
+msgctxt "solverdlg|SolverDialog"
+msgid "Solver"
+msgstr "Solver"
+
+#. bz78K
+#: solverdlg.ui
+msgctxt "solverdlg|options"
+msgid "O_ptions..."
+msgstr "O_ptionen..."
+
+#. 8hMNV
+#: solverdlg.ui
+msgctxt "solverdlg|solve"
+msgid "_Solve"
+msgstr "Lö_sen"
+
+#. Spxjy
+#: solverdlg.ui
+msgctxt "solverdlg|targetlabel"
+msgid "_Target cell"
+msgstr "_Zielzelle"
+
+#. CgmTB
+#: solverdlg.ui
+msgctxt "solverdlg|result"
+msgid "Optimize result to"
+msgstr "Zielwert"
+
+#. GCmET
+#: solverdlg.ui
+msgctxt "solverdlg|changelabel"
+msgid "_By changing cells"
+msgstr "Veränder_bare Zellen"
+
+#. mGFbf
+#: solverdlg.ui
+msgctxt "solverdlg|min"
+msgid "Minim_um"
+msgstr "Minim_um"
+
+#. gB8JN
+#: solverdlg.ui
+msgctxt "solverdlg|max"
+msgid "_Maximum"
+msgstr "_Maximum"
+
+#. ze8nv
+#: solverdlg.ui
+msgctxt "solverdlg|value"
+msgid "_Value of"
+msgstr "_Wert von"
+
+#. UWsBu
+#: solverdlg.ui
+msgctxt "solverdlg|cellreflabel"
+msgid "_Cell reference"
+msgstr "Zellbezu_g"
+
+#. Fj7m7
+#: solverdlg.ui
+msgctxt "solverdlg|oplabel"
+msgid "_Operator"
+msgstr "_Operator"
+
+#. qsDhL
+#: solverdlg.ui
+msgctxt "solverdlg|constraintlabel"
+msgid "V_alue"
+msgstr "_Wert"
+
+#. ergok
+#: solverdlg.ui
+msgctxt "solverdlg|ref1edit-atkobject"
+msgid "Cell reference"
+msgstr "Zellbezug"
+
+#. EDNPp
+#: solverdlg.ui
+msgctxt "solverdlg|ref2edit-atkobject"
+msgid "Cell reference"
+msgstr "Zellbezug"
+
+#. NzCXc
+#: solverdlg.ui
+msgctxt "solverdlg|ref3edit-atkobject"
+msgid "Cell reference"
+msgstr "Zellbezug"
+
+#. 5Wrfy
+#: solverdlg.ui
+msgctxt "solverdlg|ref4edit-atkobject"
+msgid "Cell reference"
+msgstr "Zellbezug"
+
+#. kugmw
+#: solverdlg.ui
+msgctxt "solverdlg|op1list"
+msgid "<="
+msgstr "<="
+
+#. PJJBP
+#: solverdlg.ui
+msgctxt "solverdlg|op1list"
+msgid "="
+msgstr "="
+
+#. br9qw
+#: solverdlg.ui
+msgctxt "solverdlg|op1list"
+msgid "=>"
+msgstr "=>"
+
+#. zEFNz
+#: solverdlg.ui
+msgctxt "solverdlg|op1list"
+msgid "Integer"
+msgstr "Ganzzahl"
+
+#. u6rX4
+#: solverdlg.ui
+msgctxt "solverdlg|op1list"
+msgid "Binary"
+msgstr "Binär"
+
+#. BBBzf
+#: solverdlg.ui
+msgctxt "solverdlg|op1list-atkobject"
+msgid "Operator"
+msgstr "Operator"
+
+#. B5xAm
+#: solverdlg.ui
+msgctxt "solverdlg|op2list"
+msgid "<="
+msgstr "<="
+
+#. SkKCD
+#: solverdlg.ui
+msgctxt "solverdlg|op2list"
+msgid "="
+msgstr "="
+
+#. B8JEm
+#: solverdlg.ui
+msgctxt "solverdlg|op2list"
+msgid "=>"
+msgstr "=>"
+
+#. F8mFP
+#: solverdlg.ui
+msgctxt "solverdlg|op2list"
+msgid "Integer"
+msgstr "Ganzzahl"
+
+#. dFF3E
+#: solverdlg.ui
+msgctxt "solverdlg|op2list"
+msgid "Binary"
+msgstr "Binär"
+
+#. soS8F
+#: solverdlg.ui
+msgctxt "solverdlg|op2list-atkobject"
+msgid "Operator"
+msgstr "Operator"
+
+#. h7Qty
+#: solverdlg.ui
+msgctxt "solverdlg|op3list"
+msgid "<="
+msgstr "<="
+
+#. nNApc
+#: solverdlg.ui
+msgctxt "solverdlg|op3list"
+msgid "="
+msgstr "="
+
+#. n6rxy
+#: solverdlg.ui
+msgctxt "solverdlg|op3list"
+msgid "=>"
+msgstr "=>"
+
+#. CTQdS
+#: solverdlg.ui
+msgctxt "solverdlg|op3list"
+msgid "Integer"
+msgstr "Ganzzahl"
+
+#. 5RTdh
+#: solverdlg.ui
+msgctxt "solverdlg|op3list"
+msgid "Binary"
+msgstr "Binär"
+
+#. Q2GFE
+#: solverdlg.ui
+msgctxt "solverdlg|op3list-atkobject"
+msgid "Operator"
+msgstr "Operator"
+
+#. GUgdo
+#: solverdlg.ui
+msgctxt "solverdlg|op4list"
+msgid "<="
+msgstr "<="
+
+#. t7LRh
+#: solverdlg.ui
+msgctxt "solverdlg|op4list"
+msgid "="
+msgstr "="
+
+#. ET9ho
+#: solverdlg.ui
+msgctxt "solverdlg|op4list"
+msgid "=>"
+msgstr "=>"
+
+#. mJFHw
+#: solverdlg.ui
+msgctxt "solverdlg|op4list"
+msgid "Integer"
+msgstr "Ganzzahl"
+
+#. CshEu
+#: solverdlg.ui
+msgctxt "solverdlg|op4list"
+msgid "Binary"
+msgstr "Binär"
+
+#. AvF96
+#: solverdlg.ui
+msgctxt "solverdlg|op4list-atkobject"
+msgid "Operator"
+msgstr "Operator"
+
+#. NGbaD
+#: solverdlg.ui
+msgctxt "solverdlg|val1edit-atkobject"
+msgid "Value"
+msgstr "Wert"
+
+#. y52h9
+#: solverdlg.ui
+msgctxt "solverdlg|val2edit-atkobject"
+msgid "Value"
+msgstr "Wert"
+
+#. 2Bbsq
+#: solverdlg.ui
+msgctxt "solverdlg|val3edit-atkobject"
+msgid "Value"
+msgstr "Wert"
+
+#. smjSQ
+#: solverdlg.ui
+msgctxt "solverdlg|val4edit-atkobject"
+msgid "Value"
+msgstr "Wert"
+
+#. YSBhR
+#: solverdlg.ui
+msgctxt "solverdlg|del2|tooltip_text"
+msgid "Remove"
+msgstr "Entfernen"
+
+#. 6dsa5
+#: solverdlg.ui
+msgctxt "solverdlg|del1|tooltip_text"
+msgid "Remove"
+msgstr "Entfernen"
+
+#. JgssS
+#: solverdlg.ui
+msgctxt "solverdlg|del3|tooltip_text"
+msgid "Remove"
+msgstr "Entfernen"
+
+#. SHTSA
+#: solverdlg.ui
+msgctxt "solverdlg|del4|tooltip_text"
+msgid "Remove"
+msgstr "Entfernen"
+
+#. 8uHoa
+#: solverdlg.ui
+msgctxt "solverdlg|label1"
+msgid "Limiting Conditions"
+msgstr "Nebenbedingungen"
+
+#. DFfjo
+#: solveroptionsdialog.ui
+msgctxt "solveroptionsdialog|SolverOptionsDialog"
+msgid "Options"
+msgstr "Optionen"
+
+#. z5vzM
+#: solveroptionsdialog.ui
+msgctxt "solveroptionsdialog|label2"
+msgid "Solver engine:"
+msgstr "Solver-Maschine:"
+
+#. JVMDt
+#: solveroptionsdialog.ui
+msgctxt "solveroptionsdialog|label1"
+msgid "Settings:"
+msgstr "Einstellungen:"
+
+#. D2D5K
+#: solveroptionsdialog.ui
+msgctxt "solveroptionsdialog|edit"
+msgid "Edit..."
+msgstr "Bearbeiten..."
+
+#. GHJGp
+#: solverprogressdialog.ui
+msgctxt "solverprogressdialog|SolverProgressDialog"
+msgid "Solving..."
+msgstr "Löse..."
+
+#. QEGW8
+#: solverprogressdialog.ui
+msgctxt "solverprogressdialog|label2"
+msgid "Solving in progress..."
+msgstr "Optimierung läuft..."
+
+#. hhMCb
+#: solverprogressdialog.ui
+msgctxt "solverprogressdialog|progress"
+msgid "(time limit # seconds)"
+msgstr "(Zeitlimit # Sekunden)"
+
+#. 2VXD6
+#: solversuccessdialog.ui
+msgctxt "solversuccessdialog|SolverSuccessDialog"
+msgid "Solving Result"
+msgstr "Ergebnis der Optimierung"
+
+#. mUYPN
+#: solversuccessdialog.ui
+msgctxt "solversuccessdialog|label1"
+msgid ""
+"Do you want to keep the result or do you want to restore previous values?"
+msgstr ""
+"Möchten Sie das Ergebnis übernehmen oder die Ausgangswerte wiederherstellen?"
+
+#. Qhqg7
+#: solversuccessdialog.ui
+msgctxt "solversuccessdialog|label2"
+msgid "Solving successfully finished."
+msgstr "Optimierung erfolgreich abgeschlossen."
+
+#. hA9oa
+#: solversuccessdialog.ui
+msgctxt "solversuccessdialog|result"
+msgid "Result:"
+msgstr "Ergebnis:"
+
+#. eCGgD
+#: solversuccessdialog.ui
+msgctxt "solversuccessdialog|ok"
+msgid "Keep Result"
+msgstr "Übernehmen"
+
+#. EAFt4
+#: solversuccessdialog.ui
+msgctxt "solversuccessdialog|cancel"
+msgid "Restore Previous"
+msgstr "Wiederherstellen"
+
+#. PqGRt
+#: sortdialog.ui
+msgctxt "sortdialog|SortDialog"
+msgid "Sort"
+msgstr "Sortierung"
+
+#. BMbZ7
+#: sortdialog.ui
+msgctxt "sortdialog|criteria"
+msgid "Sort Criteria"
+msgstr "Sortierkriterien"
+
+#. gMSdg
+#: sortdialog.ui
+msgctxt "sortdialog|options"
+msgid "Options"
+msgstr "Optionen"
+
+#. HSoQ2
+#: sortkey.ui
+msgctxt "sortkey|up"
+msgid "_Ascending"
+msgstr "_Aufsteigend"
+
+#. TfqAv
+#: sortkey.ui
+msgctxt "sortkey|down"
+msgid "_Descending"
+msgstr "_Absteigend"
+
+#. Svy7B
+#: sortkey.ui
+msgctxt "sortkey|sortft"
+msgid "Sort Key "
+msgstr "Sortierschlüssel "
+
+#. 9FBK2
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|case"
+msgid "Case _sensitive"
+msgstr "Groß- und Kleinschrei_bung"
+
+#. fTCGJ
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|header"
+msgid "Range contains..."
+msgstr "Bereich enthält..."
+
+#. RM629
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|formats"
+msgid "Include formats"
+msgstr "Formate einschließen"
+
+#. Gtck5
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|naturalsort"
+msgid "Enable natural sort"
+msgstr "Natürliche Sortierung aktivieren"
+
+#. GtAvM
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|includenotes"
+msgid "Include comments-only boundary column(s)"
+msgstr "Kommentare einschließen - nur benachbarte Spalte(n)"
+
+#. eZ8XM
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|copyresult"
+msgid "Copy sort results to:"
+msgstr "Sortierergebnis ausgeben nach:"
+
+#. WKWmE
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|outarealb-atkobject"
+msgid "Copy sort results to:"
+msgstr "Sortierergebnis ausgeben nach:"
+
+#. ABGSS
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|outareaed-atkobject"
+msgid "Copy sort results to:"
+msgstr "Sortierergebnis ausgeben nach:"
+
+#. GwzEB
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|sortuser"
+msgid "Custom sort order"
+msgstr "Benutzerdefinierte Sortierreihenfolge"
+
+#. iWcGs
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|sortuserlb-atkobject"
+msgid "Custom sort order"
+msgstr "Benutzerdefinierte Sortierreihenfolge"
+
+#. KJrPL
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|label6"
+msgid "Language"
+msgstr "Sprache"
+
+#. dBv73
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|algorithmft"
+msgid "Options"
+msgstr "Optionen"
+
+#. aDahD
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|label2"
+msgid "Sort Options"
+msgstr "Sortieroptionen"
+
+#. TkBw5
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|topdown"
+msgid "_Top to bottom (sort rows)"
+msgstr "Von oben nach _unten (Zeilen sortieren)"
+
+#. aU8Mg
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|leftright"
+msgid "L_eft to right (sort columns)"
+msgstr "Von _links nach rechts (Spalten sortieren)"
+
+#. nbPgX
+#: sortoptionspage.ui
+msgctxt "sortoptionspage|label1"
+msgid "Direction"
+msgstr "Richtung"
+
+#. EhGCw
+#: sortwarning.ui
+msgctxt "sortwarning|SortWarning"
+msgid "Sort Range"
+msgstr "Sortierbereich"
+
+#. 3FDa4
+#: sortwarning.ui
+msgctxt "sortwarning|sorttext"
+msgid ""
+"The cells next to the current selection also contain data. Do you want to "
+"extend the sort range to %1, or sort the currently selected range, %2?"
+msgstr ""
+"Die benachbarten Zellen der Auswahl enthalten ebenfalls Daten. Möchten Sie "
+"den Sortierbereich auf %1 erweitern oder nur den aktuell ausgewählten "
+"Bereich %2 sortieren?"
+
+#. xkiEF
+#: sortwarning.ui
+msgctxt "sortwarning|extend"
+msgid "_Extend selection"
+msgstr "_Erweiterte Auswahl"
+
+#. RoX99
+#: sortwarning.ui
+msgctxt "sortwarning|current"
+msgid "Current selection"
+msgstr "Aktuelle Auswahl"
+
+#. Ny8FF
+#: sortwarning.ui
+msgctxt "sortwarning|sorttip"
+msgid ""
+"Tip: The sort range can be detected automatically. Place the cell cursor "
+"inside a list and execute sort. The whole range of neighboring non-empty "
+"cells will then be sorted."
+msgstr ""
+"Tipp: Der Sortierbereich kann automatisch erkannt werden. Platzieren Sie den"
+" Cursor innerhalb einer Liste und führen Sie eine Sortierung durch. Der "
+"gesamte Bereich benachbarter nicht-leerer Zellen wird sortiert."
+
+#. GJ7zg
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|StandardFilterDialog"
+msgid "Standard Filter"
+msgstr "Standardfilter"
+
+#. 3c3SD
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|connect1"
+msgid "AND"
+msgstr "UND"
+
+#. MqEKy
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|connect1"
+msgid "OR"
+msgstr "ODER"
+
+#. htwdi
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|connect1-atkobject"
+msgid "Operator 1"
+msgstr "Operator 1"
+
+#. k269E
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|connect2"
+msgid "AND"
+msgstr "UND"
+
+#. oaqnE
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|connect2"
+msgid "OR"
+msgstr "ODER"
+
+#. ob3HA
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|connect2-atkobject"
+msgid "Operator 2"
+msgstr "Operator 2"
+
+#. UZ8iA
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|connect3"
+msgid "AND"
+msgstr "UND"
+
+#. AFjMF
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|connect3"
+msgid "OR"
+msgstr "ODER"
+
+#. 4JHNi
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|connect3-atkobject"
+msgid "Operator 3"
+msgstr "Operator 3"
+
+#. CqBrM
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|connect4"
+msgid "AND"
+msgstr "UND"
+
+#. AqUFa
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|connect4"
+msgid "OR"
+msgstr "ODER"
+
+#. Sqfmd
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|connect4-atkobject"
+msgid "Operator 4"
+msgstr "Operator 4"
+
+#. upKBs
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|label2"
+msgid "Operator"
+msgstr "Operator"
+
+#. vRvzD
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|label3"
+msgid "Field name"
+msgstr "Feldname"
+
+#. rqkAQ
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|label4"
+msgid "Condition"
+msgstr "Bedingung"
+
+#. ZgtGB
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|label5"
+msgid "Value"
+msgstr "Wert"
+
+#. jHRCJ
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|field1-atkobject"
+msgid "Field Name 1"
+msgstr "Feldname 1"
+
+#. 4ozHK
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|field2-atkobject"
+msgid "Field Name 2"
+msgstr "Feldname 2"
+
+#. C4XRG
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|field3-atkobject"
+msgid "Field Name 3"
+msgstr "Feldname 3"
+
+#. Y9hSS
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|field4-atkobject"
+msgid "Field Name 4"
+msgstr "Feldname 4"
+
+#. x2eP5
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond1"
+msgid "Largest"
+msgstr "Größte"
+
+#. m63HX
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond1"
+msgid "Smallest"
+msgstr "Kleinste"
+
+#. fBTE7
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond1"
+msgid "Largest %"
+msgstr "Größte %"
+
+#. WNjXW
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond1"
+msgid "Smallest %"
+msgstr "Kleinste %"
+
+#. 2ydjF
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond1"
+msgid "Contains"
+msgstr "Enthält"
+
+#. FXxAD
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond1"
+msgid "Does not contain"
+msgstr "Enthält nicht"
+
+#. akbmG
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond1"
+msgid "Begins with"
+msgstr "Beginnt mit"
+
+#. oBQhx
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond1"
+msgid "Does not begin with"
+msgstr "Beginnt nicht mit"
+
+#. marCC
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond1"
+msgid "Ends with"
+msgstr "Endet mit"
+
+#. Gdi7y
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond1"
+msgid "Does not end with"
+msgstr "Endet nicht mit"
+
+#. rmPTC
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond1-atkobject"
+msgid "Condition 1"
+msgstr "Bedingung 1"
+
+#. uCRxP
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond2"
+msgid "Largest"
+msgstr "Größte"
+
+#. ibKLF
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond2"
+msgid "Smallest"
+msgstr "Kleinste"
+
+#. ek8Fy
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond2"
+msgid "Largest %"
+msgstr "Größte %"
+
+#. nHN3m
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond2"
+msgid "Smallest %"
+msgstr "Kleinste %"
+
+#. 3Divx
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond2"
+msgid "Contains"
+msgstr "Enthält"
+
+#. eiDas
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond2"
+msgid "Does not contain"
+msgstr "Enthält nicht"
+
+#. YTGTC
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond2"
+msgid "Begins with"
+msgstr "Beginnt mit"
+
+#. G2paX
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond2"
+msgid "Does not begin with"
+msgstr "Beginnt nicht mit"
+
+#. kAQBd
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond2"
+msgid "Ends with"
+msgstr "Endet mit"
+
+#. YBJmN
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond2"
+msgid "Does not end with"
+msgstr "Endet nicht mit"
+
+#. yBMtw
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond2-atkobject"
+msgid "Condition 2"
+msgstr "Bedingung 2"
+
+#. rVFzc
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond3"
+msgid "Largest"
+msgstr "Größte"
+
+#. g6yBT
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond3"
+msgid "Smallest"
+msgstr "Kleinste"
+
+#. efcpx
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond3"
+msgid "Largest %"
+msgstr "Größte %"
+
+#. M7ad9
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond3"
+msgid "Smallest %"
+msgstr "Kleinste %"
+
+#. NyGeB
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond3"
+msgid "Contains"
+msgstr "Enthält"
+
+#. ECrNG
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond3"
+msgid "Does not contain"
+msgstr "Enthält nicht"
+
+#. V8U5h
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond3"
+msgid "Begins with"
+msgstr "Beginnt mit"
+
+#. aGQxL
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond3"
+msgid "Does not begin with"
+msgstr "Beginnt nicht mit"
+
+#. kGmbc
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond3"
+msgid "Ends with"
+msgstr "Endet mit"
+
+#. QAidd
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond3"
+msgid "Does not end with"
+msgstr "Endet nicht mit"
+
+#. wrG8B
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond3-atkobject"
+msgid "Condition 3"
+msgstr "Bedingung 3"
+
+#. jnrrF
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond4"
+msgid "Largest"
+msgstr "Größte"
+
+#. qaxP4
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond4"
+msgid "Smallest"
+msgstr "Kleinste"
+
+#. hMurH
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond4"
+msgid "Largest %"
+msgstr "Größte %"
+
+#. ESYEN
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond4"
+msgid "Smallest %"
+msgstr "Kleinste %"
+
+#. 6CHum
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond4"
+msgid "Contains"
+msgstr "Enthält"
+
+#. bUJHq
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond4"
+msgid "Does not contain"
+msgstr "Enthält nicht"
+
+#. Mxkrk
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond4"
+msgid "Begins with"
+msgstr "Beginnt mit"
+
+#. Ap7Zm
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond4"
+msgid "Does not begin with"
+msgstr "Beginnt nicht mit"
+
+#. jsUZ4
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond4"
+msgid "Ends with"
+msgstr "Endet mit"
+
+#. FwJWT
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond4"
+msgid "Does not end with"
+msgstr "Endet nicht mit"
+
+#. ieYAs
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|cond4-atkobject"
+msgid "Condition 4"
+msgstr "Bedingung 4"
+
+#. FRhsT
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|val1-atkobject"
+msgid "Value 1"
+msgstr "Wert 1"
+
+#. YVkFu
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|val2-atkobject"
+msgid "Value 2"
+msgstr "Wert 2"
+
+#. aSAHM
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|val3-atkobject"
+msgid "Value 3"
+msgstr "Wert 3"
+
+#. zuaTh
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|val4-atkobject"
+msgid "Value 4"
+msgstr "Wert 4"
+
+#. ekQLB
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|label1"
+msgid "Filter Criteria"
+msgstr "Filterkriterien"
+
+#. L6LRF
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|case"
+msgid "_Case sensitive"
+msgstr "_Groß- und Kleinschreibung"
+
+#. yud2Z
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|header"
+msgid "Range c_ontains column labels"
+msgstr "Bereich enthält _Spaltenbeschriftungen"
+
+#. 4ZVQy
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|regexp"
+msgid "Regular _expressions"
+msgstr "_Reguläre Ausdrücke"
+
+#. Y8AtC
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|unique"
+msgid "_No duplications"
+msgstr "Keine _Duplikate"
+
+#. BRiA2
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|copyresult"
+msgid "Co_py results to:"
+msgstr "_Kopiere Ergebnisse nach:"
+
+#. wDy43
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|destpers"
+msgid "_Keep filter criteria"
+msgstr "Filter_kriterien beibehalten"
+
+#. StG9B
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|lbcopyarea-atkobject"
+msgid "Copy results to"
+msgstr "Ergebnisse ausgeben nach"
+
+#. aX8Ar
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|edcopyarea-atkobject"
+msgid "Copy results to"
+msgstr "Ergebnisse ausgeben nach"
+
+#. 4PyDb
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|dbarealabel"
+msgid "Data range:"
+msgstr "Datenbereich:"
+
+#. VBZEp
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|dbarea"
+msgid "dummy"
+msgstr "Platzhalter"
+
+#. V5ao2
+#: standardfilterdialog.ui
+msgctxt "standardfilterdialog|label6"
+msgid "Op_tions"
+msgstr "_Optionen"
+
+#. uBMEs
+#: statisticsinfopage.ui
+msgctxt "statisticsinfopage|label6"
+msgid "Pages:"
+msgstr "Seiten:"
+
+#. 4NfcR
+#: statisticsinfopage.ui
+msgctxt "statisticsinfopage|label5"
+msgid "Cells:"
+msgstr "Zellen:"
+
+#. TNBHA
+#: statisticsinfopage.ui
+msgctxt "statisticsinfopage|label2"
+msgid "Sheets:"
+msgstr "Tabellen:"
+
+#. BnU73
+#: statisticsinfopage.ui
+msgctxt "statisticsinfopage|label3"
+msgid "Formula groups:"
+msgstr "Formelgruppen:"
+
+#. StkZk
+#: statisticsinfopage.ui
+msgctxt "statisticsinfopage|label1"
+msgid "Document: "
+msgstr "Dokument: "
+
+#. yzuA2
+#: subtotaldialog.ui
+msgctxt "subtotaldialog|SubTotalDialog"
+msgid "Subtotals"
+msgstr "Teilergebnisse"
+
+#. FDU6k
+#: subtotaldialog.ui
+msgctxt "subtotaldialog|1stgroup"
+msgid "1st Group"
+msgstr "1. Gruppe"
+
+#. eKqfU
+#: subtotaldialog.ui
+msgctxt "subtotaldialog|2ndgroup"
+msgid "2nd Group"
+msgstr "2. Gruppe"
+
+#. 7YiAD
+#: subtotaldialog.ui
+msgctxt "subtotaldialog|3rdgroup"
+msgid "3rd Group"
+msgstr "3. Gruppe"
+
+#. 9RfXo
+#: subtotaldialog.ui
+msgctxt "subtotaldialog|options"
+msgid "Options"
+msgstr "Optionen"
+
+#. Mx9NT
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|label1"
+msgid "Group by:"
+msgstr "Gruppieren nach:"
+
+#. 42zT3
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|label2"
+msgid "Calculate subtotals for:"
+msgstr "Teilergebnisse berechnen für:"
+
+#. 6gQEq
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|label3"
+msgid "Use function:"
+msgstr "Berechnungsvorschrift:"
+
+#. Et4zM
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|liststore1"
+msgid "Sum"
+msgstr "Summe"
+
+#. GHd78
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|liststore1"
+msgid "Count"
+msgstr "Anzahl"
+
+#. HJFGn
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|liststore1"
+msgid "Average"
+msgstr "Bereich"
+
+#. AfJCg
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|liststore1"
+msgid "Max"
+msgstr "Max"
+
+#. iidBk
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|liststore1"
+msgid "Min"
+msgstr "Min"
+
+#. VqvEW
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|liststore1"
+msgid "Product"
+msgstr "Produkt"
+
+#. DPV7o
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|liststore1"
+msgid "Count (numbers only)"
+msgstr "Anzahl (nur Zahlen)"
+
+#. xR4Fo
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|liststore1"
+msgid "StDev (Sample)"
+msgstr "StAbw (Stichprobe)"
+
+#. RGUzn
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|liststore1"
+msgid "StDevP (Population)"
+msgstr "StAbwN (Grundgesamtheit)"
+
+#. hZGGB
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|liststore1"
+msgid "Var (Sample)"
+msgstr "Varianz (Stichprobe)"
+
+#. bcyAy
+#: subtotalgrppage.ui
+msgctxt "subtotalgrppage|liststore1"
+msgid "VarP (Population)"
+msgstr "Varianzen (Grundgesamtheit)"
+
+#. xPviB
+#: subtotaloptionspage.ui
+msgctxt "subtotaloptionspage|pagebreak"
+msgid "_Page break between groups"
+msgstr "Neue Seite bei Gru_ppenwechsel"
+
+#. vAGGF
+#: subtotaloptionspage.ui
+msgctxt "subtotaloptionspage|case"
+msgid "_Case sensitive"
+msgstr "_Groß- und Kleinschreibung"
+
+#. srkjs
+#: subtotaloptionspage.ui
+msgctxt "subtotaloptionspage|sort"
+msgid "Pre-_sort area according to groups"
+msgstr "Bereich vorher nach Gruppen _sortieren"
+
+#. 6jJEr
+#: subtotaloptionspage.ui
+msgctxt "subtotaloptionspage|label1"
+msgid "Groups"
+msgstr "Gruppen"
+
+#. C2NEu
+#: subtotaloptionspage.ui
+msgctxt "subtotaloptionspage|ascending"
+msgid "_Ascending"
+msgstr "_Aufsteigend"
+
+#. maa6m
+#: subtotaloptionspage.ui
+msgctxt "subtotaloptionspage|descending"
+msgid "D_escending"
+msgstr "Abs_teigend"
+
+#. EGqiq
+#: subtotaloptionspage.ui
+msgctxt "subtotaloptionspage|formats"
+msgid "I_nclude formats"
+msgstr "_Formate einschließen"
+
+#. 4rGHy
+#: subtotaloptionspage.ui
+msgctxt "subtotaloptionspage|btnuserdef"
+msgid "C_ustom sort order"
+msgstr "_Benutzerdefinierte Sortierreihenfolge"
+
+#. fEyTF
+#: subtotaloptionspage.ui
+msgctxt "subtotaloptionspage|label2"
+msgid "Sort"
+msgstr "Sortierung"
+
+#. LPqCw
+#: textimportcsv.ui
+msgctxt "textimportcsv|TextImportCsvDialog"
+msgid "Text Import"
+msgstr "Textimport"
+
+#. 5eKmk
+#: textimportcsv.ui
+msgctxt "textimportcsv|textcharset"
+msgid "Ch_aracter set:"
+msgstr "Z_eichensatz:"
+
+#. 8Gbou
+#: textimportcsv.ui
+msgctxt "textimportcsv|textlanguage"
+msgid "_Language:"
+msgstr "_Sprache:"
+
+#. GAQTV
+#: textimportcsv.ui
+msgctxt "textimportcsv|textfromrow"
+msgid "From ro_w:"
+msgstr "Ab _Zeile:"
+
+#. nxMFN
+#: textimportcsv.ui
+msgctxt "textimportcsv|label1"
+msgid "Import"
+msgstr "Importieren"
+
+#. RpRBk
+#: textimportcsv.ui
+msgctxt "textimportcsv|tofixedwidth"
+msgid "_Fixed width"
+msgstr "_Feste Breite"
+
+#. 9eEuK
+#: textimportcsv.ui
+msgctxt "textimportcsv|toseparatedby"
+msgid "_Separated by"
+msgstr "_Getrennt"
+
+#. 2BKqB
+#: textimportcsv.ui
+msgctxt "textimportcsv|tab"
+msgid "_Tab"
+msgstr "_Tabulator"
+
+#. YQ88b
+#: textimportcsv.ui
+msgctxt "textimportcsv|mergedelimiters"
+msgid "Merge _delimiters"
+msgstr "Fel_dtrenner zusammenfassen"
+
+#. 5Jq8o
+#: textimportcsv.ui
+msgctxt "textimportcsv|comma"
+msgid "_Comma"
+msgstr "_Komma"
+
+#. aKEWs
+#: textimportcsv.ui
+msgctxt "textimportcsv|semicolon"
+msgid "S_emicolon"
+msgstr "_Semikolon"
+
+#. jhHJJ
+#: textimportcsv.ui
+msgctxt "textimportcsv|space"
+msgid "S_pace"
+msgstr "_Leerzeichen"
+
+#. Pn4Gr
+#: textimportcsv.ui
+msgctxt "textimportcsv|other"
+msgid "Othe_r"
+msgstr "_Andere"
+
+#. smjGu
+#: textimportcsv.ui
+msgctxt "textimportcsv|inputother-atkobject"
+msgid "Other"
+msgstr "Andere"
+
+#. JqXnh
+#: textimportcsv.ui
+msgctxt "textimportcsv|texttextdelimiter"
+msgid "Te_xt delimiter:"
+msgstr "Te_xttrenner:"
+
+#. nPRdc
+#: textimportcsv.ui
+msgctxt "textimportcsv|separatoroptions"
+msgid "Separator Options"
+msgstr "Trennoptionen"
+
+#. mPy9C
+#: textimportcsv.ui
+msgctxt "textimportcsv|quotedfieldastext"
+msgid "_Quoted field as text"
+msgstr "Werte in H_ochkomma als Text"
+
+#. nBNfT
+#: textimportcsv.ui
+msgctxt "textimportcsv|detectspecialnumbers"
+msgid "Detect special _numbers"
+msgstr "Erweiterte Zahlenerkenn_ung"
+
+#. PBycV
+#: textimportcsv.ui
+msgctxt "textimportcsv|label3"
+msgid "Other Options"
+msgstr "Weitere Optionen"
+
+#. 6FhCS
+#: textimportcsv.ui
+msgctxt "textimportcsv|textcolumntype"
+msgid "Column t_ype:"
+msgstr "Spaltent_yp:"
+
+#. A79gL
+#: textimportcsv.ui
+msgctxt "textimportcsv|textalttitle"
+msgid "Text to Columns"
+msgstr "Text in Spalten"
+
+#. XjAZq
+#: textimportcsv.ui
+msgctxt "textimportcsv|label4"
+msgid "Fields"
+msgstr "Feldbefehle"
+
+#. RNFRE
+#: textimportoptions.ui
+msgctxt "textimportoptions|TextImportOptionsDialog"
+msgid "Import Options"
+msgstr "Importoptionen"
+
+#. Ug4iB
+#: textimportoptions.ui
+msgctxt "textimportoptions|custom"
+msgid "Custom:"
+msgstr "Benutzerdefiniert:"
+
+#. DnkxF
+#: textimportoptions.ui
+msgctxt "textimportoptions|automatic"
+msgid "Automatic"
+msgstr "Automatisch"
+
+#. FMRA7
+#: textimportoptions.ui
+msgctxt "textimportoptions|label2"
+msgid "Select the Language to Use for Import"
+msgstr "Beim Import zu verwendende Sprache auswählen"
+
+#. iRYr7
+#: textimportoptions.ui
+msgctxt "textimportoptions|convertdata"
+msgid "Detect special numbers (such as dates)"
+msgstr "Erkennt weitere Zahlen (wie beispielsweise Datumswerte)"
+
+#. 6aP7U
+#: textimportoptions.ui
+msgctxt "textimportoptions|label3"
+msgid "Options"
+msgstr "Optionen"
+
+#. D7zk3
+#: tpviewpage.ui
+msgctxt "tpviewpage|formula"
+msgid "_Formulas"
+msgstr "_Formeln"
+
+#. a9dGg
+#: tpviewpage.ui
+msgctxt "tpviewpage|nil"
+msgid "Zero val_ues"
+msgstr "Null_werte"
+
+#. CVAZD
+#: tpviewpage.ui
+msgctxt "tpviewpage|annot"
+msgid "_Comment indicator"
+msgstr "Ko_mmentarmarkierung"
+
+#. G6GjE
+#: tpviewpage.ui
+msgctxt "tpviewpage|value"
+msgid "Value h_ighlighting"
+msgstr "_Werthervorhebung"
+
+#. ah84V
+#: tpviewpage.ui
+msgctxt "tpviewpage|anchor"
+msgid "_Anchor"
+msgstr "A_nker"
+
+#. XBGqd
+#: tpviewpage.ui
+msgctxt "tpviewpage|clipmark"
+msgid "Te_xt overflow"
+msgstr "Te_xtüberlauf"
+
+#. aqEWS
+#: tpviewpage.ui
+msgctxt "tpviewpage|rangefind"
+msgid "_Show references in color"
+msgstr "_Bezüge farbig anzeigen"
+
+#. qtccR
+#: tpviewpage.ui
+msgctxt "tpviewpage|label4"
+msgid "Display"
+msgstr "Anzeige"
+
+#. oCEpm
+#: tpviewpage.ui
+msgctxt "tpviewpage|rowcolheader"
+msgid "Colu_mn/row headers"
+msgstr "_Spalten-/Zeilenbeschriftung"
+
+#. WAwjG
+#: tpviewpage.ui
+msgctxt "tpviewpage|hscroll"
+msgid "Hori_zontal scroll bar"
+msgstr "Horizontale Bildlauflei_ste"
+
+#. PZvCk
+#: tpviewpage.ui
+msgctxt "tpviewpage|vscroll"
+msgid "_Vertical scroll bar"
+msgstr "_Vertikale Bildlaufleiste"
+
+#. rPmMd
+#: tpviewpage.ui
+msgctxt "tpviewpage|tblreg"
+msgid "Sh_eet tabs"
+msgstr "_Tabellenregister"
+
+#. WJSnC
+#: tpviewpage.ui
+msgctxt "tpviewpage|outline"
+msgid "_Outline symbols"
+msgstr "Glieder_ungssymbole"
+
+#. Ws4Ev
+#: tpviewpage.ui
+msgctxt "tpviewpage|label5"
+msgid "Window"
+msgstr "Fenster"
+
+#. bF3Yr
+#: tpviewpage.ui
+msgctxt "tpviewpage|grid_label"
+msgid "_Grid lines:"
+msgstr "_Gitterlinien:"
+
+#. E2U6D
+#: tpviewpage.ui
+msgctxt "tpviewpage|color_label"
+msgid "_Color:"
+msgstr "_Farbe:"
+
+#. BUibB
+#: tpviewpage.ui
+msgctxt "tpviewpage|grid"
+msgid "Show"
+msgstr "Anzeigen"
+
+#. GXPYd
+#: tpviewpage.ui
+msgctxt "tpviewpage|grid"
+msgid "Show on colored cells"
+msgstr "Vor Zellhintergrund"
+
+#. ucTDZ
+#: tpviewpage.ui
+msgctxt "tpviewpage|grid"
+msgid "Hide"
+msgstr "Verbergen"
+
+#. ShHLd
+#: tpviewpage.ui
+msgctxt "tpviewpage|break"
+msgid "_Page breaks"
+msgstr "_Seitenumbrüche"
+
+#. xkuBL
+#: tpviewpage.ui
+msgctxt "tpviewpage|guideline"
+msgid "Helplines _while moving"
+msgstr "H_ilfslinien beim Bewegen"
+
+#. Cb4AM
+#: tpviewpage.ui
+msgctxt "tpviewpage|label1"
+msgid "Visual Aids"
+msgstr "Optische Hilfen"
+
+#. Qd5Rp
+#: tpviewpage.ui
+msgctxt "tpviewpage|objgrf_label"
+msgid "Ob_jects/Images:"
+msgstr "_Objekte/Bilder:"
+
+#. BCaDn
+#: tpviewpage.ui
+msgctxt "tpviewpage|diagram_label"
+msgid "Cha_rts:"
+msgstr "_Diagramme:"
+
+#. q544D
+#: tpviewpage.ui
+msgctxt "tpviewpage|draw_label"
+msgid "_Drawing objects:"
+msgstr "Zei_chnungsobjekte:"
+
+#. mpELg
+#: tpviewpage.ui
+msgctxt "tpviewpage|objgrf"
+msgid "Show"
+msgstr "Anzeigen"
+
+#. Kx6yJ
+#: tpviewpage.ui
+msgctxt "tpviewpage|objgrf"
+msgid "Hide"
+msgstr "Verbergen"
+
+#. wFBeZ
+#: tpviewpage.ui
+msgctxt "tpviewpage|diagram"
+msgid "Show"
+msgstr "Anzeigen"
+
+#. H7MAB
+#: tpviewpage.ui
+msgctxt "tpviewpage|diagram"
+msgid "Hide"
+msgstr "Verbergen"
+
+#. YaiTQ
+#: tpviewpage.ui
+msgctxt "tpviewpage|draw"
+msgid "Show"
+msgstr "Anzeigen"
+
+#. DST5a
+#: tpviewpage.ui
+msgctxt "tpviewpage|draw"
+msgid "Hide"
+msgstr "Ausblenden"
+
+#. E6GxC
+#: tpviewpage.ui
+msgctxt "tpviewpage|label2"
+msgid "Objects"
+msgstr "Objekte"
+
+#. g4FQY
+#: tpviewpage.ui
+msgctxt "tpviewpage|synczoom"
+msgid "S_ynchronize sheets"
+msgstr "Tabellen s_ynchronisieren"
+
+#. pEFjC
+#: tpviewpage.ui
+msgctxt "tpviewpage|label3"
+msgid "Zoom"
+msgstr "Maßstab"
+
+#. AnLEa
+#: ttestdialog.ui
+msgctxt "ttestdialog|variable1-range-label"
+msgid "Variable 1 range:"
+msgstr "Bereich der Variablen 1:"
+
+#. SgAwF
+#: ttestdialog.ui
+msgctxt "ttestdialog|variable2-range-label"
+msgid "Variable 2 range:"
+msgstr "Bereich der Variablen 2:"
+
+#. dPc62
+#: ttestdialog.ui
+msgctxt "ttestdialog|output-range-label"
+msgid "Results to:"
+msgstr "Ergebnisse nach:"
+
+#. FzCYq
+#: ttestdialog.ui
+msgctxt "ttestdialog|label1"
+msgid "Data"
+msgstr "Daten"
+
+#. STA6h
+#: ttestdialog.ui
+msgctxt "ttestdialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr "Spalten"
+
+#. 5cU4i
+#: ttestdialog.ui
+msgctxt "ttestdialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr "Zeilen"
+
+#. BPFfu
+#: ttestdialog.ui
+msgctxt "ttestdialog|label2"
+msgid "Grouped by"
+msgstr "Gruppiert nach"
+
+#. ccFZ3
+#: ungroupdialog.ui
+msgctxt "ungroupdialog|UngroupDialog"
+msgid "Ungroup"
+msgstr "Gruppierung aufheben"
+
+#. bRDDQ
+#: ungroupdialog.ui
+msgctxt "ungroupdialog|rows"
+msgid "_Rows"
+msgstr "Z_eilen"
+
+#. GMCxr
+#: ungroupdialog.ui
+msgctxt "ungroupdialog|cols"
+msgid "_Columns"
+msgstr "S_palten"
+
+#. h7unP
+#: ungroupdialog.ui
+msgctxt "ungroupdialog|includeLabel"
+msgid "Deactivate for"
+msgstr "Aufheben für"
+
+#. Rzt3L
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|label1"
+msgid "_Allow:"
+msgstr "Z_ulassen:"
+
+#. bTnDJ
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|valueft"
+msgid "_Data:"
+msgstr "_Daten:"
+
+#. RCFrD
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|minft"
+msgid "_Minimum:"
+msgstr "_Minimum:"
+
+#. FxF3s
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|maxft"
+msgid "Ma_ximum:"
+msgstr "Ma_ximum:"
+
+#. cQo5d
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|allowempty"
+msgid "Allow _empty cells"
+msgstr "_Leerzellen zulassen"
+
+#. tsgJF
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|showlist"
+msgid "Show selection _list"
+msgstr "_Auswahlliste anzeigen"
+
+#. vwNGC
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|sortascend"
+msgid "Sor_t entries ascending"
+msgstr "Ein_träge aufsteigend sortieren"
+
+#. 96jcJ
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|hintft"
+msgid ""
+"A valid source can only consist of a contiguous selection of rows and "
+"columns, or a formula that results in an area or array."
+msgstr ""
+"Als Quelle ist nur eine zusammenhängende Auswahl von Spalten und Zeilen oder"
+" eine Formel, welche einen Bereich oder eine Matrix liefert, zulässig."
+
+#. suQcv
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore1"
+msgid "All values"
+msgstr "Jeden Wert"
+
+#. B9wqg
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore1"
+msgid "Whole Numbers"
+msgstr "Ganze Zahl"
+
+#. hCaRD
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore1"
+msgid "Decimal"
+msgstr "Dezimal"
+
+#. Xzb7t
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore1"
+msgid "Date"
+msgstr "Datum"
+
+#. tN45y
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore1"
+msgid "Time"
+msgstr "Uhrzeit"
+
+#. ocfFg
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore1"
+msgid "Cell range"
+msgstr "Zellbereich"
+
+#. 8P6mE
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore1"
+msgid "List"
+msgstr "Liste"
+
+#. GdBN2
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore1"
+msgid "Text length"
+msgstr "Textlänge"
+
+#. Nv24D
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore2"
+msgid "equal"
+msgstr "gleich"
+
+#. NgLaF
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore2"
+msgid "less than"
+msgstr "kleiner als"
+
+#. 9DK6f
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore2"
+msgid "greater than"
+msgstr "größer als"
+
+#. 3Wm4v
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore2"
+msgid "less than or equal"
+msgstr "kleiner oder gleich"
+
+#. 3CTKZ
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore2"
+msgid "greater than or equal to"
+msgstr "größer oder gleich"
+
+#. TEt6V
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore2"
+msgid "not equal"
+msgstr "ungleich"
+
+#. B8tih
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore2"
+msgid "valid range"
+msgstr "Gültiger Bereich"
+
+#. SMi3y
+#: validationcriteriapage.ui
+msgctxt "validationcriteriapage|liststore2"
+msgid "invalid range"
+msgstr "Ungültiger Bereich"
+
+#. NBBSA
+#: validationdialog.ui
+msgctxt "validationdialog|ValidationDialog"
+msgid "Validity"
+msgstr "Gültigkeit"
+
+#. u59K3
+#: validationdialog.ui
+msgctxt "validationdialog|criteria"
+msgid "Criteria"
+msgstr "Kriterien"
+
+#. Jrrv4
+#: validationdialog.ui
+msgctxt "validationdialog|inputhelp"
+msgid "Input Help"
+msgstr "Eingabehilfe"
+
+#. rEgBc
+#: validationdialog.ui
+msgctxt "validationdialog|erroralert"
+msgid "Error Alert"
+msgstr "Fehlermeldung"
+
+#. 4etq8
+#: validationhelptabpage.ui
+msgctxt "validationhelptabpage|tsbhelp"
+msgid "_Show input help when cell is selected"
+msgstr "E_ingabehilfe anzeigen, wenn die Zelle ausgewählt ist"
+
+#. WZNfj
+#: validationhelptabpage.ui
+msgctxt "validationhelptabpage|title_label"
+msgid "_Title:"
+msgstr "_Titel:"
+
+#. EHf6R
+#: validationhelptabpage.ui
+msgctxt "validationhelptabpage|inputhelp_label"
+msgid "_Input help:"
+msgstr "_Eingabehilfe:"
+
+#. epdvk
+#: validationhelptabpage.ui
+msgctxt "validationhelptabpage|label1"
+msgid "Contents"
+msgstr "Inhalte"
+
+#. pSFWN
+#: xmlsourcedialog.ui
+msgctxt "xmlsourcedialog|XMLSourceDialog"
+msgid "XML Source"
+msgstr "XML-Quelle"
+
+#. B5Q88
+#: xmlsourcedialog.ui
+msgctxt "xmlsourcedialog|selectsource|tooltip_text"
+msgid "Browse to set source file."
+msgstr "Durchsuchen, um Quelldatei festzulegen."
+
+#. WkbPB
+#: xmlsourcedialog.ui
+msgctxt "xmlsourcedialog|sourcefile"
+msgid "- not set -"
+msgstr "- nicht festgelegt -"
+
+#. peiAH
+#: xmlsourcedialog.ui
+msgctxt "xmlsourcedialog|label1"
+msgid "Source File"
+msgstr "Quelldatei"
+
+#. QsaTU
+#: xmlsourcedialog.ui
+msgctxt "xmlsourcedialog|label5"
+msgid "Mapped cell:"
+msgstr "Zugewiesene Zellen:"
+
+#. eN8dT
+#: xmlsourcedialog.ui
+msgctxt "xmlsourcedialog|label4"
+msgid "Map to Document"
+msgstr "Dokument zuweisen"
+
+#. E5nmH
+#: xmlsourcedialog.ui
+msgctxt "xmlsourcedialog|ok"
+msgid "_Import"
+msgstr "_Importieren"
+
+#. 5ozTx
+#: ztestdialog.ui
+msgctxt "ztestdialog|variable1-range-label"
+msgid "Variable 1 range:"
+msgstr "Bereich der Variablen 1:"
+
+#. nhD94
+#: ztestdialog.ui
+msgctxt "ztestdialog|variable2-range-label"
+msgid "Variable 2 range:"
+msgstr "Bereich der Variablen 2:"
+
+#. LEaQJ
+#: ztestdialog.ui
+msgctxt "ztestdialog|output-range-label"
+msgid "Results to:"
+msgstr "Ergebnisse nach:"
+
+#. k62LL
+#: ztestdialog.ui
+msgctxt "ztestdialog|label1"
+msgid "Data"
+msgstr "Daten"
+
+#. SnazD
+#: ztestdialog.ui
+msgctxt "ztestdialog|groupedby-columns-radio"
+msgid "Columns"
+msgstr "Spalten"
+
+#. LWhtJ
+#: ztestdialog.ui
+msgctxt "ztestdialog|groupedby-rows-radio"
+msgid "Rows"
+msgstr "Zeilen"
+
+#. Bby3W
+#: ztestdialog.ui
+msgctxt "ztestdialog|label2"
+msgid "Grouped by"
+msgstr "Gruppiert nach"
diff --git a/source/de/sc/source/core/src.po b/source/de/sc/source/core/src.po
deleted file mode 100644
index 24dde6588d4..00000000000
--- a/source/de/sc/source/core/src.po
+++ /dev/null
@@ -1,116 +0,0 @@
-#. extracted from sc/source/core/src
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-20 09:41+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492681268.000000\n"
-
-#: compiler.src
-msgctxt ""
-"compiler.src\n"
-"RID_FUNCTION_CATEGORIES\n"
-"Database\n"
-"itemlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: compiler.src
-msgctxt ""
-"compiler.src\n"
-"RID_FUNCTION_CATEGORIES\n"
-"Date&Time\n"
-"itemlist.text"
-msgid "Date&Time"
-msgstr "Datum&Zeit"
-
-#: compiler.src
-msgctxt ""
-"compiler.src\n"
-"RID_FUNCTION_CATEGORIES\n"
-"Financial\n"
-"itemlist.text"
-msgid "Financial"
-msgstr "Finanz"
-
-#: compiler.src
-msgctxt ""
-"compiler.src\n"
-"RID_FUNCTION_CATEGORIES\n"
-"Information\n"
-"itemlist.text"
-msgid "Information"
-msgstr "Information"
-
-#: compiler.src
-msgctxt ""
-"compiler.src\n"
-"RID_FUNCTION_CATEGORIES\n"
-"Logical\n"
-"itemlist.text"
-msgid "Logical"
-msgstr "Logisch"
-
-#: compiler.src
-msgctxt ""
-"compiler.src\n"
-"RID_FUNCTION_CATEGORIES\n"
-"Mathematical\n"
-"itemlist.text"
-msgid "Mathematical"
-msgstr "Mathematik"
-
-#: compiler.src
-msgctxt ""
-"compiler.src\n"
-"RID_FUNCTION_CATEGORIES\n"
-"Array\n"
-"itemlist.text"
-msgid "Array"
-msgstr "Matrix"
-
-#: compiler.src
-msgctxt ""
-"compiler.src\n"
-"RID_FUNCTION_CATEGORIES\n"
-"Statistical\n"
-"itemlist.text"
-msgid "Statistical"
-msgstr "Statistik"
-
-#: compiler.src
-msgctxt ""
-"compiler.src\n"
-"RID_FUNCTION_CATEGORIES\n"
-"Spreadsheet\n"
-"itemlist.text"
-msgid "Spreadsheet"
-msgstr "Tabellendokument"
-
-#: compiler.src
-msgctxt ""
-"compiler.src\n"
-"RID_FUNCTION_CATEGORIES\n"
-"Text\n"
-"itemlist.text"
-msgid "Text"
-msgstr "Text"
-
-#: compiler.src
-msgctxt ""
-"compiler.src\n"
-"RID_FUNCTION_CATEGORIES\n"
-"Add-in\n"
-"itemlist.text"
-msgid "Add-in"
-msgstr "Add-in"
diff --git a/source/de/sc/source/ui/StatisticsDialogs.po b/source/de/sc/source/ui/StatisticsDialogs.po
deleted file mode 100644
index 317ab90df6a..00000000000
--- a/source/de/sc/source/ui/StatisticsDialogs.po
+++ /dev/null
@@ -1,841 +0,0 @@
-#. extracted from sc/source/ui/StatisticsDialogs
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-20 09:49+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492681767.000000\n"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_MOVING_AVERAGE_UNDO_NAME\n"
-"string.text"
-msgid "Moving Average"
-msgstr "Gleitender Mittelwert"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_EXPONENTIAL_SMOOTHING_UNDO_NAME\n"
-"string.text"
-msgid "Exponential Smoothing"
-msgstr "Exponentielle Glättung"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANALYSIS_OF_VARIANCE_UNDO_NAME\n"
-"string.text"
-msgid "Analysis of Variance"
-msgstr "Varianzanalyse (ANOVA)"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANOVA_SINGLE_FACTOR_LABEL\n"
-"string.text"
-msgid "ANOVA - Single Factor"
-msgstr "Varianzanalyse (ANOVA) - einfaktoriell"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANOVA_TWO_FACTOR_LABEL\n"
-"string.text"
-msgid "ANOVA - Two Factor"
-msgstr "Varianzanalyse (ANOVA) - zweifaktoriell"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANOVA_LABEL_GROUPS\n"
-"string.text"
-msgid "Groups"
-msgstr "Gruppen"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANOVA_LABEL_BETWEEN_GROUPS\n"
-"string.text"
-msgid "Between Groups"
-msgstr "Zwischen den Gruppen"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANOVA_LABEL_WITHIN_GROUPS\n"
-"string.text"
-msgid "Within Groups"
-msgstr "Innerhalb der Gruppen"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANOVA_LABEL_SOURCE_OF_VARIATION\n"
-"string.text"
-msgid "Source of Variation"
-msgstr "Varianzquelle"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANOVA_LABEL_SS\n"
-"string.text"
-msgid "SS"
-msgstr "BB"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANOVA_LABEL_DF\n"
-"string.text"
-msgid "df"
-msgstr "fg"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANOVA_LABEL_MS\n"
-"string.text"
-msgid "MS"
-msgstr "MS"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANOVA_LABEL_F\n"
-"string.text"
-msgid "F"
-msgstr "F"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANOVA_LABEL_P_VALUE\n"
-"string.text"
-msgid "P-value"
-msgstr "P-Wert"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANOVA_LABEL_F_CRITICAL\n"
-"string.text"
-msgid "F critical"
-msgstr "F-kritisch"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ANOVA_LABEL_TOTAL\n"
-"string.text"
-msgid "Total"
-msgstr "Insgesamt"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_CORRELATION_UNDO_NAME\n"
-"string.text"
-msgid "Correlation"
-msgstr "Korrelation"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_CORRELATION_LABEL\n"
-"string.text"
-msgid "Correlations"
-msgstr "Korrelationen"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_COVARIANCE_UNDO_NAME\n"
-"string.text"
-msgid "Covariance"
-msgstr "Kovarianz"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_COVARIANCE_LABEL\n"
-"string.text"
-msgid "Covariances"
-msgstr "Kovarianzen"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_DESCRIPTIVE_STATISTICS_UNDO_NAME\n"
-"string.text"
-msgid "Descriptive Statistics"
-msgstr "Beschreibende Statistik"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_MEAN\n"
-"string.text"
-msgid "Mean"
-msgstr "Mittelwert"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_STD_ERROR\n"
-"string.text"
-msgid "Standard Error"
-msgstr "Standardfehler"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_MODE\n"
-"string.text"
-msgid "Mode"
-msgstr "Modus"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_MEDIAN\n"
-"string.text"
-msgid "Median"
-msgstr "Median"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_VARIANCE\n"
-"string.text"
-msgid "Variance"
-msgstr "Varianz"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_STD_DEVIATION\n"
-"string.text"
-msgid "Standard Deviation"
-msgstr "Standardabweichung"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_KURTOSIS\n"
-"string.text"
-msgid "Kurtosis"
-msgstr "Kurtosis"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_SKEWNESS\n"
-"string.text"
-msgid "Skewness"
-msgstr "Schräge"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_RANGE\n"
-"string.text"
-msgid "Range"
-msgstr "Bereich"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_MIN\n"
-"string.text"
-msgid "Minimum"
-msgstr "Minimum"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_MAX\n"
-"string.text"
-msgid "Maximum"
-msgstr "Maximum"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_SUM\n"
-"string.text"
-msgid "Sum"
-msgstr "Summe"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_COUNT\n"
-"string.text"
-msgid "Count"
-msgstr "Anzahl"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_FIRST_QUARTILE\n"
-"string.text"
-msgid "First Quartile "
-msgstr "Erstes Quartil"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STRID_CALC_THIRD_QUARTILE\n"
-"string.text"
-msgid "Third Quartile"
-msgstr "Drittes Quartil"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_UNDO_DISTRIBUTION_TEMPLATE\n"
-"string.text"
-msgid "Random ($(DISTRIBUTION))"
-msgstr "Zufällig ($(DISTRIBUTION))"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_DISTRIBUTION_UNIFORM_REAL\n"
-"string.text"
-msgid "Uniform"
-msgstr "Gleichverteilt"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_DISTRIBUTION_UNIFORM_INTEGER\n"
-"string.text"
-msgid "Uniform Integer"
-msgstr "Gleichverteilte ganze Zahlen"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_DISTRIBUTION_NORMAL\n"
-"string.text"
-msgid "Normal"
-msgstr "Normal"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_DISTRIBUTION_CAUCHY\n"
-"string.text"
-msgid "Cauchy"
-msgstr "Cauchy"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_DISTRIBUTION_BERNOULLI\n"
-"string.text"
-msgid "Bernoulli"
-msgstr "Bernoulli"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_DISTRIBUTION_BINOMIAL\n"
-"string.text"
-msgid "Binomial"
-msgstr "Binomialverteilt"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_DISTRIBUTION_NEGATIVE_BINOMIAL\n"
-"string.text"
-msgid "Negative Binomial"
-msgstr "Negativ binomialverteilt"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_DISTRIBUTION_CHI_SQUARED\n"
-"string.text"
-msgid "Chi Squared"
-msgstr "Chi-Quadrat"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_DISTRIBUTION_GEOMETRIC\n"
-"string.text"
-msgid "Geometric"
-msgstr "Geometrisch-verteilt"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_RNG_PARAMETER_MINIMUM\n"
-"string.text"
-msgid "Minimum"
-msgstr "Minimum"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_RNG_PARAMETER_MAXIMUM\n"
-"string.text"
-msgid "Maximum"
-msgstr "Maximum"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_RNG_PARAMETER_MEAN\n"
-"string.text"
-msgid "Mean"
-msgstr "Mittelwert"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_RNG_PARAMETER_STANDARD_DEVIATION\n"
-"string.text"
-msgid "Standard Deviation"
-msgstr "Standardabweichung"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_RNG_PARAMETER_STANDARD_MEDIAN\n"
-"string.text"
-msgid "Median"
-msgstr "Median"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_RNG_PARAMETER_STANDARD_SIGMA\n"
-"string.text"
-msgid "Sigma"
-msgstr "Sigma"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_RNG_PARAMETER_STANDARD_PROBABILITY\n"
-"string.text"
-msgid "p Value"
-msgstr "p-Wert"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS\n"
-"string.text"
-msgid "Number of Trials"
-msgstr "Anzahl der Versuche"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_RNG_PARAMETER_STANDARD_NU_VALUE\n"
-"string.text"
-msgid "nu Value"
-msgstr "n-Wert"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_SAMPLING_UNDO_NAME\n"
-"string.text"
-msgid "Sampling"
-msgstr "Stichproben"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_FTEST\n"
-"string.text"
-msgid "F-test"
-msgstr "F-Test"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_FTEST_UNDO_NAME\n"
-"string.text"
-msgid "F-test"
-msgstr "F-Test"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_TTEST\n"
-"string.text"
-msgid "t-test"
-msgstr "t-Test"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_TTEST_UNDO_NAME\n"
-"string.text"
-msgid "t-test"
-msgstr "t-Test"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ZTEST\n"
-"string.text"
-msgid "z-test"
-msgstr "Gauß-Test"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ZTEST_UNDO_NAME\n"
-"string.text"
-msgid "z-test"
-msgstr "Gauß-Test"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_CHI_SQUARE_TEST\n"
-"string.text"
-msgid "Test of Independence (Chi-Square)"
-msgstr "Unabhängigkeitstest (Chi-Quadrat)"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_REGRESSION_UNDO_NAME\n"
-"string.text"
-msgid "Regression"
-msgstr "Regression"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_REGRESSION\n"
-"string.text"
-msgid "Regression"
-msgstr "Regression"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_COLUMN_LABEL_TEMPLATE\n"
-"string.text"
-msgid "Column %NUMBER%"
-msgstr "Spalte %NUMBER%"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ROW_LABEL_TEMPLATE\n"
-"string.text"
-msgid "Row %NUMBER%"
-msgstr "Zeile %NUMBER%"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_LABEL_ALPHA\n"
-"string.text"
-msgid "Alpha"
-msgstr "Alpha"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_VARIABLE_1_LABEL\n"
-"string.text"
-msgid "Variable 1"
-msgstr "Variable 1"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_VARIABLE_2_LABEL\n"
-"string.text"
-msgid "Variable 2"
-msgstr "Variable 2"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL\n"
-"string.text"
-msgid "Hypothesized Mean Difference"
-msgstr "Hypothetische Mittelwertdifferenz"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_OBSERVATIONS_LABEL\n"
-"string.text"
-msgid "Observations"
-msgstr "Beobachtungen"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_OBSERVED_MEAN_DIFFERENCE_LABEL\n"
-"string.text"
-msgid "Observed Mean Difference"
-msgstr "Beobachtete Mittelwertdifferenz"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_DEGREES_OF_FREEDOM_LABEL\n"
-"string.text"
-msgid "df"
-msgstr "fg"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_P_VALUE_LABEL\n"
-"string.text"
-msgid "P-value"
-msgstr "P-Wert"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_CRITICAL_VALUE_LABEL\n"
-"string.text"
-msgid "Critical Value"
-msgstr "Kritischer Wert"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_TEST_STATISTIC_LABEL\n"
-"string.text"
-msgid "Test Statistic"
-msgstr "Statistik testen"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_LABEL_LINEAR\n"
-"string.text"
-msgid "Linear"
-msgstr "Linear"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_LABEL_LOGARITHMIC\n"
-"string.text"
-msgid "Logarithmic"
-msgstr "Logarithmisch"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_LABEL_POWER\n"
-"string.text"
-msgid "Power"
-msgstr "Potenz"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_LABEL_REGRESSION_MODEL\n"
-"string.text"
-msgid "Regression Model"
-msgstr "Regressionsmodell"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_LABEL_RSQUARED\n"
-"string.text"
-msgid "R^2"
-msgstr "R^2"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_LABEL_SLOPE\n"
-"string.text"
-msgid "Slope"
-msgstr "Steigung"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_LABEL_INTERCEPT\n"
-"string.text"
-msgid "Intercept"
-msgstr "Achsenabschnitt"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_FTEST_P_RIGHT_TAIL\n"
-"string.text"
-msgid "P (F<=f) right-tail"
-msgstr "P (F<=f) rechtsseitig"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_FTEST_F_CRITICAL_RIGHT_TAIL\n"
-"string.text"
-msgid "F Critical right-tail"
-msgstr "F kritisch, rechtsseitig"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_FTEST_P_LEFT_TAIL\n"
-"string.text"
-msgid "P (F<=f) left-tail"
-msgstr "P (F<=f) linksseitig"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_FTEST_F_CRITICAL_LEFT_TAIL\n"
-"string.text"
-msgid "F Critical left-tail"
-msgstr "F-kritisch, linksseitig"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_FTEST_P_TWO_TAIL\n"
-"string.text"
-msgid "P two-tail"
-msgstr "P beidseitig"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_FTEST_F_CRITICAL_TWO_TAIL\n"
-"string.text"
-msgid "F Critical two-tail"
-msgstr "F kritisch, beidseitig"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_TTEST_PEARSON_CORRELATION\n"
-"string.text"
-msgid "Pearson Correlation"
-msgstr "Pearson-Korrelation"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_TTEST_VARIANCE_OF_THE_DIFFERENCES\n"
-"string.text"
-msgid "Variance of the Differences"
-msgstr "Varianz der Differenzen"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_TTEST_T_STAT\n"
-"string.text"
-msgid "t Stat"
-msgstr "t-Statistik"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_TTEST_P_ONE_TAIL\n"
-"string.text"
-msgid "P (T<=t) one-tail"
-msgstr "P (T<=t) einseitig"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_TTEST_T_CRITICAL_ONE_TAIL\n"
-"string.text"
-msgid "t Critical one-tail"
-msgstr "t-kritisch, einseitig"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_TTEST_P_TWO_TAIL\n"
-"string.text"
-msgid "P (T<=t) two-tail"
-msgstr "P (T<=t) beidseitig"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_TTEST_T_CRITICAL_TWO_TAIL\n"
-"string.text"
-msgid "t Critical two-tail"
-msgstr "t-kritisch, beidseitig"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ZTEST_Z_VALUE\n"
-"string.text"
-msgid "z"
-msgstr "Z"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ZTEST_KNOWN_VARIANCE\n"
-"string.text"
-msgid "Known Variance"
-msgstr "Bekannte Varianz"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ZTEST_P_ONE_TAIL\n"
-"string.text"
-msgid "P (Z<=z) one-tail"
-msgstr "P (G<=g) einseitig"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ZTEST_Z_CRITICAL_ONE_TAIL\n"
-"string.text"
-msgid "z Critical one-tail"
-msgstr "g-kritisch, einseitig"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ZTEST_P_TWO_TAIL\n"
-"string.text"
-msgid "P (Z<=z) two-tail"
-msgstr "P (G<=g) beidseitig"
-
-#: StatisticsDialogs.src
-msgctxt ""
-"StatisticsDialogs.src\n"
-"STR_ZTEST_Z_CRITICAL_TWO_TAIL\n"
-"string.text"
-msgid "z Critical two-tail"
-msgstr "g-kritisch, beidseitig"
diff --git a/source/de/sc/source/ui/cctrl.po b/source/de/sc/source/ui/cctrl.po
deleted file mode 100644
index 379b26625f0..00000000000
--- a/source/de/sc/source/ui/cctrl.po
+++ /dev/null
@@ -1,73 +0,0 @@
-#. extracted from sc/source/ui/cctrl
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-17 03:27+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492399623.000000\n"
-
-#: checklistmenu.src
-msgctxt ""
-"checklistmenu.src\n"
-"STR_MENU_SORT_ASC\n"
-"string.text"
-msgid "Sort Ascending"
-msgstr "Aufsteigend sortieren"
-
-#: checklistmenu.src
-msgctxt ""
-"checklistmenu.src\n"
-"STR_MENU_SORT_DESC\n"
-"string.text"
-msgid "Sort Descending"
-msgstr "Absteigend sortieren"
-
-#: checklistmenu.src
-msgctxt ""
-"checklistmenu.src\n"
-"STR_MENU_SORT_CUSTOM\n"
-"string.text"
-msgid "Custom Sort"
-msgstr "Benutzerdefiniert sortieren"
-
-#: checklistmenu.src
-msgctxt ""
-"checklistmenu.src\n"
-"STR_BTN_TOGGLE_ALL\n"
-"string.text"
-msgid "All"
-msgstr "Alle"
-
-#: checklistmenu.src
-msgctxt ""
-"checklistmenu.src\n"
-"STR_BTN_SELECT_CURRENT\n"
-"string.text"
-msgid "Show only the current item."
-msgstr "Nur das aktuelle Element anzeigen."
-
-#: checklistmenu.src
-msgctxt ""
-"checklistmenu.src\n"
-"STR_BTN_UNSELECT_CURRENT\n"
-"string.text"
-msgid "Hide only the current item."
-msgstr "Nur das aktuelle Element ausblenden."
-
-#: checklistmenu.src
-msgctxt ""
-"checklistmenu.src\n"
-"STR_EDIT_SEARCH_ITEMS\n"
-"string.text"
-msgid "Search items..."
-msgstr "Elemente suchen..."
diff --git a/source/de/sc/source/ui/dbgui.po b/source/de/sc/source/ui/dbgui.po
deleted file mode 100644
index a30b6df1b48..00000000000
--- a/source/de/sc/source/ui/dbgui.po
+++ /dev/null
@@ -1,125 +0,0 @@
-#. extracted from sc/source/ui/dbgui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-02 16:52+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
-"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480697545.000000\n"
-
-#: pvfundlg.src
-msgctxt ""
-"pvfundlg.src\n"
-"SCSTR_DPFUNCLISTBOX\n"
-"Sum\n"
-"itemlist.text"
-msgid "Sum"
-msgstr "Summe"
-
-#: pvfundlg.src
-msgctxt ""
-"pvfundlg.src\n"
-"SCSTR_DPFUNCLISTBOX\n"
-"Count\n"
-"itemlist.text"
-msgid "Count"
-msgstr "Anzahl"
-
-#: pvfundlg.src
-msgctxt ""
-"pvfundlg.src\n"
-"SCSTR_DPFUNCLISTBOX\n"
-"Average\n"
-"itemlist.text"
-msgid "Average"
-msgstr "Mittelwert"
-
-#: pvfundlg.src
-msgctxt ""
-"pvfundlg.src\n"
-"SCSTR_DPFUNCLISTBOX\n"
-"Median\n"
-"itemlist.text"
-msgid "Median"
-msgstr "Median"
-
-#: pvfundlg.src
-msgctxt ""
-"pvfundlg.src\n"
-"SCSTR_DPFUNCLISTBOX\n"
-"Max\n"
-"itemlist.text"
-msgid "Max"
-msgstr "Max"
-
-#: pvfundlg.src
-msgctxt ""
-"pvfundlg.src\n"
-"SCSTR_DPFUNCLISTBOX\n"
-"Min\n"
-"itemlist.text"
-msgid "Min"
-msgstr "Min"
-
-#: pvfundlg.src
-msgctxt ""
-"pvfundlg.src\n"
-"SCSTR_DPFUNCLISTBOX\n"
-"Product\n"
-"itemlist.text"
-msgid "Product"
-msgstr "Produkt"
-
-#: pvfundlg.src
-msgctxt ""
-"pvfundlg.src\n"
-"SCSTR_DPFUNCLISTBOX\n"
-"Count (Numbers only)\n"
-"itemlist.text"
-msgid "Count (Numbers only)"
-msgstr "Anzahl (nur Zahlen)"
-
-#: pvfundlg.src
-msgctxt ""
-"pvfundlg.src\n"
-"SCSTR_DPFUNCLISTBOX\n"
-"StDev (Sample)\n"
-"itemlist.text"
-msgid "StDev (Sample)"
-msgstr "StAbw (Stichprobe)"
-
-#: pvfundlg.src
-msgctxt ""
-"pvfundlg.src\n"
-"SCSTR_DPFUNCLISTBOX\n"
-"StDevP (Population)\n"
-"itemlist.text"
-msgid "StDevP (Population)"
-msgstr "StAbwN (Grundgesamtheit)"
-
-#: pvfundlg.src
-msgctxt ""
-"pvfundlg.src\n"
-"SCSTR_DPFUNCLISTBOX\n"
-"Var (Sample)\n"
-"itemlist.text"
-msgid "Var (Sample)"
-msgstr "Varianz (Stichprobe)"
-
-#: pvfundlg.src
-msgctxt ""
-"pvfundlg.src\n"
-"SCSTR_DPFUNCLISTBOX\n"
-"VarP (Population)\n"
-"itemlist.text"
-msgid "VarP (Population)"
-msgstr "Varianzen (Grundgesamtheit)"
diff --git a/source/de/sc/source/ui/miscdlgs.po b/source/de/sc/source/ui/miscdlgs.po
deleted file mode 100644
index d7bcbd68d02..00000000000
--- a/source/de/sc/source/ui/miscdlgs.po
+++ /dev/null
@@ -1,217 +0,0 @@
-#. extracted from sc/source/ui/miscdlgs
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2015-07-26 06:05+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1437890747.000000\n"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_INSERT_COLS\n"
-"string.text"
-msgid "Column inserted"
-msgstr "Spalte eingefügt"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_INSERT_ROWS\n"
-"string.text"
-msgid "Row inserted "
-msgstr "Zeile eingefügt"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_INSERT_TABS\n"
-"string.text"
-msgid "Sheet inserted "
-msgstr "Tabelle eingefügt"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_DELETE_COLS\n"
-"string.text"
-msgid "Column deleted"
-msgstr "Spalte gelöscht"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_DELETE_ROWS\n"
-"string.text"
-msgid "Row deleted"
-msgstr "Zeile gelöscht"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_DELETE_TABS\n"
-"string.text"
-msgid "Sheet deleted"
-msgstr "Tabelle gelöscht"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_MOVE\n"
-"string.text"
-msgid "Range moved"
-msgstr "Bereich verschoben"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_CONTENT\n"
-"string.text"
-msgid "Changed contents"
-msgstr "Inhaltsänderung"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_CONTENT_WITH_CHILD\n"
-"string.text"
-msgid "Changed contents"
-msgstr "Inhaltsänderung"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_CHILD_CONTENT\n"
-"string.text"
-msgid "Changed to "
-msgstr "Änderung zu "
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_CHILD_ORGCONTENT\n"
-"string.text"
-msgid "Original"
-msgstr "Original"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_REJECT\n"
-"string.text"
-msgid "Changes rejected"
-msgstr "Änderung verworfen"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_ACCEPTED\n"
-"string.text"
-msgid "Accepted"
-msgstr "Akzeptierte"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_REJECTED\n"
-"string.text"
-msgid "Rejected"
-msgstr "Verworfen"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_NO_ENTRY\n"
-"string.text"
-msgid "No Entry"
-msgstr "Kein Eintrag"
-
-#: acredlin.src
-msgctxt ""
-"acredlin.src\n"
-"STR_CHG_EMPTY\n"
-"string.text"
-msgid "<empty>"
-msgstr "<leer>"
-
-#: conflictsdlg.src
-msgctxt ""
-"conflictsdlg.src\n"
-"STR_TITLE_CONFLICT\n"
-"string.text"
-msgid "Conflict"
-msgstr "Konflikt"
-
-#: conflictsdlg.src
-msgctxt ""
-"conflictsdlg.src\n"
-"STR_TITLE_AUTHOR\n"
-"string.text"
-msgid "Author"
-msgstr "Autor"
-
-#: conflictsdlg.src
-msgctxt ""
-"conflictsdlg.src\n"
-"STR_TITLE_DATE\n"
-"string.text"
-msgid "Date"
-msgstr "Datum"
-
-#: conflictsdlg.src
-msgctxt ""
-"conflictsdlg.src\n"
-"STR_UNKNOWN_USER_CONFLICT\n"
-"string.text"
-msgid "Unknown User"
-msgstr "Unbekannter Benutzer"
-
-#: retypepassdlg.src
-msgctxt ""
-"retypepassdlg.src\n"
-"STR_NOT_PROTECTED\n"
-"string.text"
-msgid "Not protected"
-msgstr "Nicht geschützt"
-
-#: retypepassdlg.src
-msgctxt ""
-"retypepassdlg.src\n"
-"STR_NOT_PASS_PROTECTED\n"
-"string.text"
-msgid "Not password-protected"
-msgstr "Nicht kennwortgeschützt"
-
-#: retypepassdlg.src
-msgctxt ""
-"retypepassdlg.src\n"
-"STR_HASH_BAD\n"
-"string.text"
-msgid "Hash incompatible"
-msgstr "Hash inkompatibel"
-
-#: retypepassdlg.src
-msgctxt ""
-"retypepassdlg.src\n"
-"STR_HASH_GOOD\n"
-"string.text"
-msgid "Hash compatible"
-msgstr "Hash kompatibel"
-
-#: retypepassdlg.src
-msgctxt ""
-"retypepassdlg.src\n"
-"STR_RETYPE\n"
-"string.text"
-msgid "Re-type"
-msgstr "Wiederholen"
diff --git a/source/de/sc/source/ui/navipi.po b/source/de/sc/source/ui/navipi.po
deleted file mode 100644
index 3a6dd22835e..00000000000
--- a/source/de/sc/source/ui/navipi.po
+++ /dev/null
@@ -1,153 +0,0 @@
-#. extracted from sc/source/ui/navipi
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-02-26 04:46+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1488084386.000000\n"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_CONTENT_ROOT\n"
-"string.text"
-msgid "Contents"
-msgstr "Inhalte"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_CONTENT_TABLE\n"
-"string.text"
-msgid "Sheets"
-msgstr "Tabellen"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_CONTENT_RANGENAME\n"
-"string.text"
-msgid "Range names"
-msgstr "Bereichsnamen"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_CONTENT_DBAREA\n"
-"string.text"
-msgid "Database ranges"
-msgstr "Datenbankbereiche"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_CONTENT_GRAPHIC\n"
-"string.text"
-msgid "Images"
-msgstr "Bilder"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_CONTENT_OLEOBJECT\n"
-"string.text"
-msgid "OLE objects"
-msgstr "OLE-Objekte"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_CONTENT_NOTE\n"
-"string.text"
-msgid "Comments"
-msgstr "Kommentare"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_CONTENT_AREALINK\n"
-"string.text"
-msgid "Linked areas"
-msgstr "Verknüpfte Bereiche"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_CONTENT_DRAWING\n"
-"string.text"
-msgid "Drawing objects"
-msgstr "Zeichnungsobjekte"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_DRAGMODE\n"
-"string.text"
-msgid "Drag Mode"
-msgstr "Ziehmodus"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_DISPLAY\n"
-"string.text"
-msgid "Display"
-msgstr "Anzeige"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_ACTIVE\n"
-"string.text"
-msgid "active"
-msgstr "Aktiv"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_NOTACTIVE\n"
-"string.text"
-msgid "inactive"
-msgstr "Inaktiv"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_HIDDEN\n"
-"string.text"
-msgid "hidden"
-msgstr "verborgen"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_ACTIVEWIN\n"
-"string.text"
-msgid "Active Window"
-msgstr "Aktives Fenster"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_QHLP_SCEN_LISTBOX\n"
-"string.text"
-msgid "Scenario Name"
-msgstr "Name des Szenarios"
-
-#: navipi.src
-msgctxt ""
-"navipi.src\n"
-"SCSTR_QHLP_SCEN_COMMENT\n"
-"string.text"
-msgid "Comment"
-msgstr "Kommentar"
diff --git a/source/de/sc/source/ui/src.po b/source/de/sc/source/ui/src.po
deleted file mode 100644
index dac1a9fd8ab..00000000000
--- a/source/de/sc/source/ui/src.po
+++ /dev/null
@@ -1,23971 +0,0 @@
-#. extracted from sc/source/ui/src
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-06-20 13:55+0200\n"
-"PO-Revision-Date: 2017-06-26 09:52+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1498470726.000000\n"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_INSERTCELLS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Insert"
-msgstr "Einfügen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DELETECELLS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Delete"
-msgstr "Löschen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_CUT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Cut"
-msgstr "Ausschneiden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_PASTE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Insert"
-msgstr "Einfügen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DRAGDROP+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Drag and Drop"
-msgstr "Ziehen-und-Ablegen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_MOVE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Move"
-msgstr "Verschieben"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_COPY+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Copy"
-msgstr "Kopieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DELETECONTENTS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Delete"
-msgstr "Löschen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_SELATTR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Attributes"
-msgstr "Attribute"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_SELATTRLINES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Attributes/Lines"
-msgstr "Attribute/Linien"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_COLWIDTH+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Column Width"
-msgstr "Spaltenbreite"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_OPTCOLWIDTH+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Optimal Column Width"
-msgstr "Optimale Spaltenbreite"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_ROWHEIGHT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Row height"
-msgstr "Zeilenhöhe"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_OPTROWHEIGHT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Optimal Row Height"
-msgstr "Optimale Zeilenhöhe"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_AUTOFILL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Fill"
-msgstr "Füllen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_MERGE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Merge"
-msgstr "Zusammenfassen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_REMERGE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Split"
-msgstr "Zusammenfassung aufheben"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_AUTOFORMAT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "AutoFormat"
-msgstr "AutoFormat"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_REPLACE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Replace"
-msgstr "Ersetzen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_CURSORATTR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Attributes"
-msgstr "Attribute"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_ENTERDATA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Input"
-msgstr "Eingabe"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_INSCOLBREAK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Insert Column Break"
-msgstr "Spaltenumbruch einfügen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DELCOLBREAK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Delete column break"
-msgstr "Spaltenumbruch löschen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_INSROWBREAK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Insert Row Break"
-msgstr "Zeilenumbruch einfügen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DELROWBREAK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Delete row break"
-msgstr "Zeilenumbruch löschen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DOOUTLINE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "View Details"
-msgstr "Detail einblenden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_REDOOUTLINE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Hide details"
-msgstr "Detail ausblenden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_MAKEOUTLINE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Group"
-msgstr "Gruppieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_REMAKEOUTLINE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Ungroup"
-msgstr "Gruppierung aufheben"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_OUTLINELEVEL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Select outline level"
-msgstr "Gliederungsebene auswählen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DOOUTLINEBLK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "View Details"
-msgstr "Detail einblenden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_REDOOUTLINEBLK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Hide details"
-msgstr "Detail ausblenden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_REMOVEALLOTLNS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Clear Outline"
-msgstr "Gliederung entfernen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_AUTOOUTLINE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "AutoOutline"
-msgstr "AutoGliederung"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_SUBTOTALS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Subtotals"
-msgstr "Zwischensummen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_SORT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Sort"
-msgstr "Sortieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_QUERY+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Filter"
-msgstr "Filter"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DBDATA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Change Database Range"
-msgstr "Datenbankbereich ändern"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_IMPORTDATA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Importing"
-msgstr "Importieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_REPEATDB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Refresh range"
-msgstr "Bereich aktualisieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_LISTNAMES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "List names"
-msgstr "Namen auflisten"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_PIVOT_NEW+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Create pivot table"
-msgstr "Pivot-Tabelle erzeugen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_PIVOT_MODIFY+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Edit pivot table"
-msgstr "Pivot-Tabelle bearbeiten"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_PIVOT_DELETE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Delete pivot table"
-msgstr "Pivot-Tabelle löschen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_CONSOLIDATE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Consolidate"
-msgstr "Konsolidieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_USESCENARIO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Use scenario"
-msgstr "Szenario anwenden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_MAKESCENARIO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Create scenario"
-msgstr "Szenario anlegen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_EDITSCENARIO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Edit scenario"
-msgstr "Szenario bearbeiten"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_APPLYCELLSTYLE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Apply Cell Style"
-msgstr "Zellvorlage zuweisen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_EDITCELLSTYLE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Edit Cell Style"
-msgstr "Zellvorlage bearbeiten"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_APPLYPAGESTYLE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Apply Page Style"
-msgstr "Seitenvorlage zuweisen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_EDITPAGESTYLE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Edit Page Style"
-msgstr "Seitenvorlage bearbeiten"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DETADDPRED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Trace Precedents"
-msgstr "Spur zum Vorgänger"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DETDELPRED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Remove Precedent"
-msgstr "Spur zum Vorgänger entfernen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DETADDSUCC+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Trace Dependents"
-msgstr "Spur zum Nachfolger"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DETDELSUCC+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Remove Dependent"
-msgstr "Spur zum Nachfolger entfernen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DETADDERROR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Trace Error"
-msgstr "Spur zum Fehler"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DETDELALL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Remove all Traces"
-msgstr "Alle Spuren entfernen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DETINVALID+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Mark invalid data"
-msgstr "Ungültige Daten markieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DETREFRESH+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Refresh Traces"
-msgstr "Spuren aktualisieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_CHARTDATA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Modify chart data range"
-msgstr "Datenbereich von Diagramm ändern"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_ORIGINALSIZE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Original Size"
-msgstr "Originalgröße"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_UPDATELINK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Update Link"
-msgstr "Verknüpfung aktualisieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_REMOVELINK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Unlink"
-msgstr "Verknüpfung aufheben"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_INSERTAREALINK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Insert Link"
-msgstr "Verknüpfung einfügen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_ENTERMATRIX+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Insert Array Formula"
-msgstr "Matrixformel einfügen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_INSERTNOTE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Insert Comment"
-msgstr "Kommentar einfügen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DELETENOTE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Delete Comment"
-msgstr "Kommentar löschen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_SHOWNOTE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Show Comment"
-msgstr "Kommentar anzeigen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_HIDENOTE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Hide Comment"
-msgstr "Kommentar ausblenden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_SHOWALLNOTES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Show All Comments"
-msgstr "Alle Kommentare einblenden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_HIDEALLNOTES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Hide All Comments"
-msgstr "Alle Kommentare ausblenden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_EDITNOTE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Edit Comment"
-msgstr "Kommentar bearbeiten"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DEC_INDENT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Decrease Indent"
-msgstr "Einzug verkleinern"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_INC_INDENT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Increase Indent"
-msgstr "Einzug vergrößern"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_PROTECT_TAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Protect sheet"
-msgstr "Tabelle schützen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_UNPROTECT_TAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Unprotect sheet"
-msgstr "Tabellenschutz aufheben"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_PROTECT_DOC+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Protect document"
-msgstr "Dokument schützen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_UNPROTECT_DOC+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Unprotect document"
-msgstr "Dokumentschutz aufheben"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_PRINTRANGES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Print range"
-msgstr "Druckbereich"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_REMOVEBREAKS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Delete Page Breaks"
-msgstr "Seitenumbrüche löschen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_PRINTSCALE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Change Scale"
-msgstr "Skalierung ändern"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DRAG_BREAK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Move Page Break"
-msgstr "Seitenumbruch verschieben"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_RANGENAMES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Edit range names"
-msgstr "Bereichsnamen bearbeiten"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_TRANSLITERATE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Change Case"
-msgstr "Groß- und Kleinschreibung ändern"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DBNAME_IMPORT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Import"
-msgstr "Importieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_DOSUBTOTALS_0+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "%PRODUCTNAME Calc"
-msgstr "%PRODUCTNAME Calc"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_DOSUBTOTALS_1+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Delete data?"
-msgstr "Daten löschen?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_DOSUBTOTALS_2+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Unable to insert rows"
-msgstr "Kann keine Zeilen einfügen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_REPEATDB_0+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "No operations to execute"
-msgstr "Keine Operationen auszuführen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_MAKEAUTOFILTER_0+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"The range does not contain column headers.\n"
-"Do you want the first line to be used as column header?"
-msgstr ""
-"Der Bereich enthält keine Spaltenköpfe.\n"
-"Soll die erste Zeile als Spaltenköpfe verwendet werden?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_IMPORTDATA_0+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error while importing data!"
-msgstr "Fehler beim Datenimport!"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PROGRESS_IMPORT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "# records imported..."
-msgstr "# Datensätze importiert..."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_MAKEOUTLINE_0+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Grouping not possible"
-msgstr "Gruppierung nicht möglich"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_REMOVEOUTLINE_0+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Ungrouping not possible"
-msgstr "Aufheben nicht möglich"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_PASTEFROMCLIP_0+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Insert into multiple selection not possible"
-msgstr "Einfügen auf Mehrfachauswahl nicht möglich"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_MOVEBLOCKTO_0+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Cell merge not possible if cells already merged!"
-msgstr "Das Verbinden ist nicht möglich, wenn bereits Zellen verbunden sind"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_INSERTCELLS_0+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Inserting into merged ranges not possible"
-msgstr "Kann nicht in zusammengefasste Bereiche einfügen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_DELETECELLS_0+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Deleting in merged ranges not possible"
-msgstr "Kann nicht aus zusammengefassten Bereichen löschen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_MERGECELLS_0+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Cell merge not possible if cells already merged"
-msgstr "Das Verbinden ist nicht möglich, wenn bereits Zellen verbunden sind"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SORT_ERR_MERGED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Ranges containing merged cells can only be sorted without formats."
-msgstr "Bereiche mit zusammengefassten Zellen können nur ohne Formate sortiert werden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_SOLVE_0+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Goal Seek succeeded. Result: "
-msgstr "Zielsuche erfolgreich. Ergebnis: "
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_SOLVE_1+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"\n"
-"\n"
-"Insert the result into the variable cell?"
-msgstr ""
-"\n"
-"\n"
-"Das Ergebnis in die variable Zelle einfügen?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_SOLVE_2+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"Goal Seek failed.\n"
-"\n"
-msgstr ""
-"Zielsuche fehlgeschlagen.\n"
-"\n"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_SOLVE_3+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Insert the closest value ("
-msgstr "Soll die beste Näherung ("
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MSSG_SOLVE_4+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ") into the variable cell anyway?"
-msgstr ") trotzdem in die variable Zelle eingefügt werden?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TABLE_GESAMTERGEBNIS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Grand Total"
-msgstr "Gesamtsumme"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TABLE_ERGEBNIS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Result"
-msgstr "Ergebnis"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_SPELLING+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Spellcheck"
-msgstr "Rechtschreibprüfung"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TABLE_UND+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "AND"
-msgstr "UND"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TABLE_ODER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "OR"
-msgstr "ODER"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TABLE_DEF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Sheet"
-msgstr "Tabelle"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MOVE_TO_END+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "- move to end position -"
-msgstr "- ans Ende stellen -"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NO_REF_TABLE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "#REF!"
-msgstr "#REF!"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_NODATA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The pivot table must contain at least one entry."
-msgstr "Die Pivot-Tabelle muss mindestens einen Eintrag enthalten."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_MOVENOTALLOWED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The data range can not be deleted."
-msgstr "Der Datenbereich kann nicht gelöscht werden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_ERROR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error creating the pivot table."
-msgstr "Fehler beim Erstellen der Pivot-Tabelle."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_NOTEMPTY+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The destination range is not empty. Overwrite existing contents?"
-msgstr "Der Zielbereich ist nicht leer. Soll der Inhalt überschrieben werden?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_REMOVE_PIVOTCHART+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "There is at least one pivot chart associated with this pivot table. Should remove all or abort?"
-msgstr "Dieser Pivot-Tabelle ist bereits mindestens ein Pivot-Diagramm zurgeordnet. Sollen alle entfernt oder abgebrochen werden?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DATAPILOT_SUBTOTAL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The source range contains subtotals which may distort the results. Use it anyway?"
-msgstr "Der Quellbereich enthält Zwischensummen, die das Ergebnis verfälschen können. Soll er trotzdem verwendet werden?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_TOTAL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Total"
-msgstr "Summe"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_DATA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_GROUP+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Group"
-msgstr "Gruppierung"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ROWCOL_SELCOUNT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "$1 rows, $2 columns selected"
-msgstr "$1 Zeilen, $2 Spalten ausgewählt"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FILTER_SELCOUNT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "$1 of $2 records found"
-msgstr "$1 von $2 Datensätzen gefunden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COLUMN+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Column"
-msgstr "Spalte"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ROW+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Row"
-msgstr "Zeile"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PAGE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Page"
-msgstr "Seite"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PGNUM+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Page %1"
-msgstr "Seite %1"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LOAD_DOC+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Load document"
-msgstr "Dokument laden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SAVE_DOC+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Save document"
-msgstr "Dokument speichern"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_AREA_ALREADY_INSERTED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "This range has already been inserted."
-msgstr "Dieser Bereich wurde bereits eingefügt."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_INVALID_TABREF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Invalid sheet reference."
-msgstr "Ungültiger Tabellenbezug."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_INVALID_QUERYAREA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "This range does not contain a valid query."
-msgstr "Dieser Bereich enthält keine gültige Abfrage."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_REIMPORT_EMPTY+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "This range does not contain imported data."
-msgstr "Dieser Bereich enthält keine importierten Daten."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NOMULTISELECT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "This function cannot be used with multiple selections."
-msgstr "Diese Funktion lässt sich nicht auf Mehrfachauswahl anwenden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FILL_SERIES_PROGRESS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Fill Row..."
-msgstr "Reihe Auffüllen..."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_THESAURUS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Thesaurus"
-msgstr "Thesaurus"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FILL_TAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Fill Sheets"
-msgstr "Tabellen füllen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UPDATE_SCENARIO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Add selected ranges to current scenario?"
-msgstr "Szenario um die ausgewählten Bereiche erweitern?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ERR_NEWSCENARIO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The scenario ranges must be selected in order to be able to create a new scenario."
-msgstr "Zum Erstellen eines neuen Szenarios müssen die Szenariobereiche ausgewählt werden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NOAREASELECTED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "A range has not been selected."
-msgstr "Kein Bereich ausgewählt."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NEWTABNAMENOTUNIQUE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "This name already exists."
-msgstr "Dieser Tabellenname existiert bereits."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_INVALIDTABNAME+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"Invalid sheet name.\n"
-"The sheet name must not be a duplicate of an existing name \n"
-"and may not contain the characters [ ] * ? : / \\"
-msgstr ""
-"Ungültiger Tabellenname.\n"
-"Der Tabellenname darf nicht identisch mit einem bestehenden \n"
-"Namen sein und nicht die Zeichen [ ] * ? : / oder \\ enthalten."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCENARIO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Scenario"
-msgstr "Szenario"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_TABLE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Pivot Table"
-msgstr "Pivot-Tabelle"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FUN_TEXT_SUM+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Sum"
-msgstr "Summe"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FUN_TEXT_SELECTION_COUNT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Selection count"
-msgstr "Anzahl Zellen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FUN_TEXT_COUNT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Count"
-msgstr "Anzahl"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FUN_TEXT_COUNT2+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "CountA"
-msgstr "Anzahl2"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FUN_TEXT_AVG+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Average"
-msgstr "Durchschnitt"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FUN_TEXT_MEDIAN+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Median"
-msgstr "Median"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FUN_TEXT_MAX+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Max"
-msgstr "Max"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FUN_TEXT_MIN+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Min"
-msgstr "Min"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FUN_TEXT_PRODUCT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Product"
-msgstr "Produkt"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FUN_TEXT_STDDEV+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "StDev"
-msgstr "StAbw"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FUN_TEXT_VAR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Var"
-msgstr "Var"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NOCHARTATCURSOR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "No chart found at this position."
-msgstr "Kein Diagramm an dieser Position gefunden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_NOTFOUND+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "No pivot table found at this position."
-msgstr "Keine Pivot-Tabelle an dieser Position gefunden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_EMPTYDATA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "(empty)"
-msgstr "(leer)"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PRINT_INVALID_AREA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Invalid print range"
-msgstr "Ungültiger Druckbereich"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PAGESTYLE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Page Style"
-msgstr "Seitenstil"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HEADER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Header"
-msgstr "Kopfzeile"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FOOTER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Footer"
-msgstr "Fußzeile"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TEXTATTRS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Text Attributes"
-msgstr "Textattribute"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HFCMD_DELIMITER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "\\"
-msgstr "\\"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HFCMD_PAGE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "PAGE"
-msgstr "SEITE"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HFCMD_PAGES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "PAGES"
-msgstr "SEITEN"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HFCMD_DATE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "DATE"
-msgstr "DATUM"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HFCMD_TIME+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "TIME"
-msgstr "ZEIT"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HFCMD_FILE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "FILE"
-msgstr "DATEI"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HFCMD_TABLE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "SHEET"
-msgstr "TABELLE"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PROTECTIONERR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Protected cells can not be modified."
-msgstr "Gesperrte Zellen können nicht geändert werden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_READONLYERR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Document opened in read-only mode."
-msgstr "Dokument ist schreibgeschützt geöffnet."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MATRIXFRAGMENTERR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "You cannot change only part of an array."
-msgstr "Sie können nicht nur einen Teil einer Matrix ändern."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PAGEHEADER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Header"
-msgstr "Kopfzeile"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PAGEFOOTER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Footer"
-msgstr "Fußzeile"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ERROR_STR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Err:"
-msgstr "Fehler:"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_DIV_ZERO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Division by zero"
-msgstr "Fehler: Division durch Null"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_NO_VALUE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Wrong data type"
-msgstr "Fehler: Falscher Datentyp"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_NO_REF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Not a valid reference"
-msgstr "Fehler: Ungültiger Bezug"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_NO_NAME+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Invalid name"
-msgstr "Fehler: Ungültiger Name"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_ILL_FPO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Invalid numeric value"
-msgstr "Fehler: ungültiger Zahlwert"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_NV+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Value not available"
-msgstr "Fehler: Wert nicht verfügbar"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NO_ADDIN+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "#ADDIN?"
-msgstr "#ADDIN?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_NO_ADDIN+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Add-in not found"
-msgstr "Fehler: Add-in nicht gefunden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NO_MACRO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "#MACRO?"
-msgstr "#MAKRO?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_NO_MACRO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Macro not found"
-msgstr "Fehler: Makro nicht gefunden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_SYNTAX+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Internal syntactical error"
-msgstr "Interner Syntaxfehler"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_ILL_ARG+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Invalid argument"
-msgstr "Fehler: Ungültiges Argument"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_ILL_PAR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error in parameter list"
-msgstr "Fehler in der Parameterliste"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_ILL_CHAR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Invalid character"
-msgstr "Fehler: Ungültiges Zeichen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_PAIR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: in bracketing"
-msgstr "Fehler in der Klammerung"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_OP_EXP+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Operator missing"
-msgstr "Fehler: Fehlender Operator"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_VAR_EXP+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Variable missing"
-msgstr "Fehler: Fehlende Variable"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_CODE_OVF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Formula overflow"
-msgstr "Fehler: Formel zu lang"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_STR_OVF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: String overflow"
-msgstr "Fehler: Zeichenkette zu lang"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_STACK_OVF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Internal overflow"
-msgstr "Fehler: Interner Überlauf"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_MATRIX_SIZE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Array or matrix size"
-msgstr "Fehler: Matrix oder Matrixgröße"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_CIRC_REF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Circular reference"
-msgstr "Fehler: Zirkulärer Bezug"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LONG_ERR_NO_CONV+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Error: Calculation does not converge"
-msgstr "Fehler: Rechenverfahren konvergiert nicht"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_GRIDCOLOR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Grid color"
-msgstr "Gitterfarbe"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CELL_FILTER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Filter"
-msgstr "Filter"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TARGETNOTFOUND+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The target database range does not exist."
-msgstr "Der Zieldatenbankbereich existiert nicht."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_INVALID_EPS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Invalid increment"
-msgstr "Ungültige Schrittweite"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_TABOP+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Multiple operations"
-msgstr "Mehrfachoperationen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_INVALID_AFNAME+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"You have entered an invalid name.\n"
-"AutoFormat could not be created. \n"
-"Try again using a different name."
-msgstr ""
-"Sie haben einen ungültigen Namen eingegeben.\n"
-"Das AutoFormat konnte nicht angelegt werden.\n"
-"Wählen Sie einen anderen Namen."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_AREA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Range"
-msgstr "Bereich"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_YES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Yes"
-msgstr "Ja"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "No"
-msgstr "Nein"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PROTECTION+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Protection"
-msgstr "Schutz"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FORMULAS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Formulas"
-msgstr "Formeln"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HIDE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Hide"
-msgstr "Ausblenden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PRINT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Print"
-msgstr "Drucken"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_INVALID_AFAREA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"To apply an AutoFormat,\n"
-"a table range of at least\n"
-"3x3 cells must be selected."
-msgstr ""
-"Um das AutoFormat anwenden zu können,\n"
-"muss ein Tabellenbereich von mindestens\n"
-"3x3 Zellen ausgewählt sein."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_OPTIONAL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "(optional)"
-msgstr "(optional)"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_REQUIRED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "(required)"
-msgstr "(erforderlich)"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NOTES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Comments"
-msgstr "Kommentare"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_QUERY_DELTAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Are you sure you want to delete the selected sheet(s)?"
-msgstr "Sind Sie sicher, dass Sie die ausgewählte(n) Tabelle(n) löschen wollen?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_QUERY_DELSCENARIO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Are you sure you want to delete the selected scenario?"
-msgstr "Sind Sie sicher, dass Sie das ausgewählte Szenario löschen möchten?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_EXPORT_ASCII+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Export Text File"
-msgstr "Textdatei exportieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_IMPORT_LOTUS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Import Lotus files"
-msgstr "Lotus-Import"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_IMPORT_DBF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Import DBase files"
-msgstr "DBase-Import"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_EXPORT_DBF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "DBase export"
-msgstr "DBase-Export"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_EXPORT_DIF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Dif Export"
-msgstr "Dif-Export"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_IMPORT_DIF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Dif Import"
-msgstr "Dif-Import"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_STYLENAME_STANDARD+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Default"
-msgstr "Standard"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_STYLENAME_RESULT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Result"
-msgstr "Ergebnis"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_STYLENAME_RESULT1+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Result2"
-msgstr "Ergebnis2"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_STYLENAME_HEADLINE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Heading"
-msgstr "Überschrift"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_STYLENAME_HEADLINE1+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Heading1"
-msgstr "Überschrift1"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_STYLENAME_REPORT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Report"
-msgstr "Bericht"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_THESAURUS_NO_STRING+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Thesaurus can only be used in text cells!"
-msgstr "Thesaurus nur in Textzellen möglich!"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SPELLING_BEGIN_TAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Should the spellcheck be continued at the beginning of the current sheet?"
-msgstr "Soll die Rechtschreibprüfung am Tabellenanfang fortgesetzt werden?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SPELLING_NO_LANG+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"is not available for the thesaurus.\n"
-"Please check your installation and install \n"
-"the desired language if necessary"
-msgstr ""
-"ist für den Thesaurus nicht verfügbar. \n"
-"Überprüfen Sie bitte Ihre Installation und installieren Sie \n"
-"gegebenenfalls die gewünschte Sprache"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SPELLING_STOP_OK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The spellcheck of this sheet has been completed."
-msgstr "Die Rechtschreibprüfung dieser Tabelle ist abgeschlossen."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_INSERT_TAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Insert Sheet"
-msgstr "Tabelle einfügen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_DELETE_TAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Delete Sheets"
-msgstr "Tabellen löschen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_RENAME_TAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Rename Sheet"
-msgstr "Tabelle umbenennen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_SET_TAB_BG_COLOR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Color Tab"
-msgstr "Register färben"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_SET_MULTI_TAB_BG_COLOR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Color Tabs"
-msgstr "Register färben"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_MOVE_TAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Move Sheets"
-msgstr "Tabellen verschieben"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_COPY_TAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Copy Sheet"
-msgstr "Tabelle kopieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_APPEND_TAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Append sheet"
-msgstr "Tabelle anhängen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_SHOWTAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Show Sheet"
-msgstr "Tabelle anzeigen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_SHOWTABS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Show Sheets"
-msgstr "Tabellen anzeigen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_HIDETAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Hide sheet"
-msgstr "Tabelle ausblenden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_HIDETABS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Hide sheets"
-msgstr "Tabellen ausblenden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_TAB_RTL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Flip sheet"
-msgstr "Tabelle wenden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ABSREFLOST+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The new table contains absolute references to other tables which may be incorrect!"
-msgstr "Die neue Tabelle enthält absolute Bezüge auf andere Tabellen, die nicht mehr stimmen müssen!"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NAMECONFLICT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Due to identical names, an existing range name in the destination document has been altered!"
-msgstr "Wegen einer Namensgleichheit wurde im Zieldokument ein bestehender Bereichsname verändert!"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ERR_AUTOFILTER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "AutoFilter not possible"
-msgstr "AutoFilter nicht möglich"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CREATENAME_REPLACE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Replace existing definition of #?"
-msgstr "Vorhandene Definition von # ersetzen?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CREATENAME_MARKERR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Invalid selection for range names"
-msgstr "Falsche Auswahl für Bereichsnamen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CONSOLIDATE_ERR1+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "References can not be inserted above the source data."
-msgstr "Verbindungen können nicht oberhalb der Quelldaten eingefügt werden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCENARIO_NOTFOUND+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Scenario not found"
-msgstr "Szenario nicht gefunden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_QUERY_DELENTRY+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Do you really want to delete the entry #?"
-msgstr "Möchten Sie den Eintrag # wirklich löschen?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_VOBJ_OBJECT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Objects/Images"
-msgstr "Objekte/Bilder"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_VOBJ_CHART+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Charts"
-msgstr "Diagramme"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_VOBJ_DRAWINGS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Drawing Objects"
-msgstr "Zeichenobjekte"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_VOBJ_MODE_SHOW+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Show"
-msgstr "Anzeigen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_VOBJ_MODE_HIDE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Hide"
-msgstr "Verbergen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_TOPDOWN+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Top to bottom"
-msgstr "Oben nach unten"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_LEFTRIGHT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Left-to-right"
-msgstr "Links-nach-Rechts"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_NOTES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Comments"
-msgstr "Kommentare"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_GRID+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Grid"
-msgstr "Tabellengitter"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_HEADERS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Row & Column Headers"
-msgstr "Zeilen- und Spaltenköpfe"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_FORMULAS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Formulas"
-msgstr "Formeln"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_NULLVALS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Zero Values"
-msgstr "Nullwerte"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_PRINTDIR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Print direction"
-msgstr "Druckrichtung"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_FIRSTPAGENO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "First page number"
-msgstr "Erste Seitenzahl"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_SCALE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Reduce/enlarge printout"
-msgstr "Ausdruck verkleinern/vergrößern"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_SCALETOPAGES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Fit print range(s) on number of pages"
-msgstr "Druckbereich(e) auf Seitenzahl anpassen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_SCALETO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Fit print range(s) to width/height"
-msgstr "Druckbereich(e) auf Breite/Höhe anpassen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_SCALE_WIDTH+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Width"
-msgstr "Breite"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_SCALE_HEIGHT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Height"
-msgstr "Höhe"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_SCALE_PAGES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "%1 page(s)"
-msgstr "%1 Seite(n)"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCATTR_PAGE_SCALE_AUTO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "automatic"
-msgstr "Automatisch"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DOC_STAT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Statistics"
-msgstr "Statistik"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LINKERROR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The link could not be updated."
-msgstr "Die Verknüpfung konnte nicht aktualisiert werden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LINKERRORFILE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "File:"
-msgstr "Datei:"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_LINKERRORTAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Sheet:"
-msgstr "Tabelle:"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_OVERVIEW+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Overview"
-msgstr "Überblick"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DOC_INFO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Doc.Information"
-msgstr "Dokumentinfo"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DOC_PRINTED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Printed"
-msgstr "Gedruckt"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_BY+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "by"
-msgstr "von"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ON+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "on"
-msgstr "am"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_RELOAD_TABLES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"This file contains links to other files.\n"
-"Should they be updated?"
-msgstr ""
-"Diese Datei enthält Verknüpfungen zu anderen Dateien.\n"
-"Sollen diese aktualisiert werden?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_REIMPORT_AFTER_LOAD+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"This file contains queries. The results of these queries were not saved.\n"
-"Do you want these queries to be repeated?"
-msgstr ""
-"Diese Datei enthält Abfragen. Die Abfrageergebnisse wurden nicht gespeichert.\n"
-"Sollen diese Abfragen wiederholt werden?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_INSERT_FULL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"Filled cells cannot be shifted\n"
-"beyond the sheet."
-msgstr ""
-"Ausgefüllte Zellen können nicht über\n"
-"die Tabelle hinaus verschoben werden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TABINSERT_ERROR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The table could not be inserted."
-msgstr "Die Tabelle konnte nicht eingefügt werden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TABREMOVE_ERROR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The sheets could not be deleted."
-msgstr "Die Tabellen konnten nicht gelöscht werden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PASTE_ERROR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The contents of the clipboard could not be pasted."
-msgstr "Der Inhalt der Zwischenablage konnte nicht eingefügt werden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PASTE_FULL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "There is not enough space on the sheet to insert here."
-msgstr "Es kann nicht über die Tabelle hinaus eingefügt werden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PASTE_BIGGER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"The content of the clipboard is bigger than the range selected.\n"
-"Do you want to insert it anyway?"
-msgstr ""
-"Der Inhalt der Zwischenablage ist größer als der ausgewählte Bereich.\n"
-"Möchten Sie trotzdem einfügen?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ERR_NOREF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "No cell references are found in the selected cells."
-msgstr "In den ausgewählten Zellen wurde kein Zellbezug gefunden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_GRAPHICNAME+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Image"
-msgstr "Bild"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_INVALIDNAME+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Invalid name."
-msgstr "Ungültiger Name."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_VALID_MACRONOTFOUND+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Selected macro not found."
-msgstr "Das ausgewählte Makro wurde nicht gefunden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_VALID_DEFERROR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Invalid value."
-msgstr "Ungültiger Wert."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PROGRESS_CALCULATING+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "calculating"
-msgstr "berechnen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PROGRESS_SORTING+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "sorting"
-msgstr "sortieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PROGRESS_HEIGHTING+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Adapt row height"
-msgstr "Zeilenhöhen anpassen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PROGRESS_COMPARING+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Compare #"
-msgstr "Vergleiche #"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DETINVALID_OVERFLOW+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"The maximum number of invalid cells has been exceeded.\n"
-"Not all invalid cells have been marked."
-msgstr ""
-"Die maximale Anzahl ungültiger Zellen wurde überschritten.\n"
-"Es wurden nicht alle ungültigen Zellen markiert."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_QUICKHELP_DELETE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Delete contents"
-msgstr "Inhalte löschen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_QUICKHELP_REF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "%1 R x %2 C"
-msgstr "%1 Z x %2 S"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FUNCTIONLIST_MORE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "More..."
-msgstr "Andere..."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ERR_INVALID_AREA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Invalid range"
-msgstr "Ungültiger Bereich"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_STYLE_INNER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Pivot Table Value"
-msgstr "Pivot-Tabelle Wert"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_STYLE_RESULT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Pivot Table Result"
-msgstr "Pivot-Tabelle Ergebnis"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_STYLE_CATEGORY+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Pivot Table Category"
-msgstr "Pivot-Tabelle Kategorie"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_STYLE_TITLE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Pivot Table Title"
-msgstr "Pivot-Tabelle Titel"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_STYLE_FIELDNAME+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Pivot Table Field"
-msgstr "Pivot-Tabelle Feld"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PIVOT_STYLE_TOP+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Pivot Table Corner"
-msgstr "Pivot-Tabelle Ecke"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_OPERATION_FILTER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Filter"
-msgstr "Filter"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_OPERATION_SORT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Sort"
-msgstr "Sortieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_OPERATION_SUBTOTAL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Subtotals"
-msgstr "Zwischensummen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_OPERATION_NONE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "None"
-msgstr "Keine"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_IMPORT_REPLACE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Do you want to replace the contents of #?"
-msgstr "Möchten Sie den Inhalt von # ersetzen?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TIP_WIDTH+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Width:"
-msgstr "Breite:"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TIP_HEIGHT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Height:"
-msgstr "Höhe:"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TIP_HIDE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Hide"
-msgstr "Verbergen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CHANGED_BLANK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "<empty>"
-msgstr "<leer>"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CHANGED_CELL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Cell #1 changed from '#2' to '#3'"
-msgstr "Zelle #1 von '#2' zu '#3' geändert"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CHANGED_INSERT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "#1 inserted"
-msgstr "#1 eingefügt"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CHANGED_DELETE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "#1 deleted"
-msgstr "#1 gelöscht"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CHANGED_MOVE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Range moved from #1 to #2"
-msgstr "Bereich von #1 nach #2 verschoben"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_END_REDLINING+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"This action will exit the change recording mode.\n"
-"Any information about changes will be lost.\n"
-"\n"
-"Exit change recording mode?\n"
-"\n"
-msgstr ""
-"Mit dieser Aktion wird die Aufzeichnung von Änderungen beendet.\n"
-"Jegliche Information über Änderungen geht hierdurch verloren.\n"
-"\n"
-"Aufzeichnung beenden?\n"
-"\n"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CLOSE_ERROR_LINK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The document can not be closed while a link is being updated."
-msgstr "Das Dokument kann nicht geschlossen werden, während eine Verknüpfung aktualisiert wird."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_RESIZEMATRIX+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Adapt array area"
-msgstr "Matrixbereich anpassen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TIP_RESIZEMATRIX+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Array formula %1 R x %2 C"
-msgstr "Matrixformel %1 Z x %2 S"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_HANGULHANJA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Hangul/Hanja Conversion"
-msgstr "Hangul/Hanja Konvertierung"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NAME_INPUT_CELL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Select Cell"
-msgstr "Zelle auswählen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NAME_INPUT_RANGE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Select Range"
-msgstr "Bereich auswählen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NAME_INPUT_DBRANGE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Select Database Range"
-msgstr "Datenbankbereich auswählen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NAME_INPUT_ROW+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Go To Row"
-msgstr "Gehe zu Zeile"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NAME_INPUT_SHEET+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Go To Sheet"
-msgstr "Gehe zu Tabelle"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NAME_INPUT_DEFINE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Define Name for Range"
-msgstr "Bereich benennen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NAME_ERROR_SELECTION+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The selection needs to be rectangular in order to name it."
-msgstr "Der ausgewählte Bereich muss rechteckig sein, um ihn benennen zu können."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NAME_ERROR_NAME+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "You must enter a valid reference or type a valid name for the selected range."
-msgstr "Sie müssen entweder einen gültigen Zellbezug oder einen gültigen Namen für den ausgewählten Bereich angeben."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CHANGED_MOVE_REJECTION_WARNING+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "WARNING: This action may have resulted in unintended changes to cell references in formulas."
-msgstr "ACHTUNG: Diese Aktion kann zu unbeabsichtigten Änderungen von Zellbezügen in Formeln führen."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CHANGED_DELETE_REJECTION_WARNING+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "WARNING: This action may have resulted in references to the deleted area not being restored."
-msgstr "ACHTUNG: Diese Aktion kann dazu geführt haben, dass Bezüge zum gelöschten Bereich nicht wiederhergestellt wurden."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_CHINESE_TRANSLATION+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Chinese conversion"
-msgstr "Chinesische Konvertierung"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ERR_DATAPILOT_INPUT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "You cannot change this part of the pivot table."
-msgstr "Sie können diesen Teil der Pivot-Tabelle nicht ändern."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_RECALC_MANUAL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Manual"
-msgstr "Manuell"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_RECALC_AUTO+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ERR_LONG_NESTED_ARRAY+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Nested arrays are not supported."
-msgstr "Verschachtelte Matrizen werden nicht unterstützt."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_TEXTTOCOLUMNS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Text to Columns"
-msgstr "Text in Spalten"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DOC_UPDATED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Your spreadsheet has been updated with changes saved by other users."
-msgstr "Ihr Tabellendokument wurde mit Änderungen anderer Benutzer aktualisiert."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DOC_WILLBESAVED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"The spreadsheet must be saved now to activate sharing mode.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Das Tabellendokument muss jetzt gespeichert werden, um die Freigabe zu aktivieren.\n"
-"\n"
-"Möchten Sie fortfahren?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DOC_WILLNOTBESAVED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Bereits aufgelöste Konflikte gehen verloren, Ihre Änderungen am Tabellendokument werden nicht gespeichert.\n"
-"\n"
-"Möchten Sie fortfahren?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DOC_DISABLESHARED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Wenn Sie die Freigabe des Tabellendokuments aufheben, können andere Benutzer ihre Änderungen nicht mehr in das Tabellendokument übernehmen.\n"
-"\n"
-"Möchten Sie fortfahren?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DOC_NOLONGERSHARED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"This spreadsheet is no longer in shared mode.\n"
-"\n"
-"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
-msgstr ""
-"Dieses Tabellendokument ist nicht mehr freigegeben.\n"
-"\n"
-"Speichern Sie Ihr Tabellendokument unter anderem Namen ab und übernehmen Sie die Änderungen in das Tabellendokument manuell."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SHARED_DOC_WARNING+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"The spreadsheet is in shared mode. This allows multiple users to access and edit the spreadsheet at the same time.\n"
-"\n"
-"Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities."
-msgstr ""
-"Das Tabellendokument ist freigegeben. Dadurch können mehrere Benutzer auf das Tabellendokument zugreifen und Änderungen vornehmen.\n"
-"\n"
-"Änderungen von Formatierungen wie Schriftarten, Farben und Zahlenformate werden im freigegebenen Modus nicht gespeichert; außerdem stehen einige Funktionen, wie das Bearbeiten von Diagrammen und Zeichnungsobjekten nicht zur Verfügung. Heben Sie die Freigabe auf, um Exklusivzugriff zu erhalten, wenn Sie entsprechende Änderungen vornehmen möchten."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FILE_LOCKED_TRY_LATER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
-"\n"
-"Sharing mode of a locked file cannot be disabled. Try again later."
-msgstr ""
-"Das freigegebene Tabellendokument ist im Moment gesperrt, da der folgende Benutzer Änderungen vornimmt: '%1'\n"
-"\n"
-"Die Freigabe kann nicht aufgehoben werden, solange das Tabellendokument gesperrt ist. Wiederholen Sie den Vorgang später."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FILE_LOCKED_SAVE_LATER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
-"\n"
-"Try again later to save your changes."
-msgstr ""
-"Das freigegebene Tabellendokument ist im Moment gesperrt, da der folgende Benutzer Änderungen vornimmt: '%1'\n"
-"\n"
-"Wiederholen Sie den Vorgang später, um Ihre Änderungen zu speichern."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNKNOWN_USER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Unknown User"
-msgstr "Unbekannter Benutzer"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SHAPE_AUTOSHAPE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "AutoShape"
-msgstr "AutoForm"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SHAPE_RECTANGLE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Rectangle"
-msgstr "Rechteck"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SHAPE_LINE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Line"
-msgstr "Linie"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SHAPE_OVAL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Oval"
-msgstr "Ellipse"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FORM_BUTTON+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Button"
-msgstr "Schaltfläche"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FORM_CHECKBOX+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Check Box"
-msgstr "Markierfeld"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FORM_OPTIONBUTTON+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Option Button"
-msgstr "Optionsfeld"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FORM_LABEL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Label"
-msgstr "Bezeichnung"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FORM_LISTBOX+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "List Box"
-msgstr "Listenfeld"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FORM_GROUPBOX+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Group Box"
-msgstr "Gruppenfeld"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FORM_DROPDOWN+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Drop Down"
-msgstr "Ausklappen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FORM_SPINNER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Spinner"
-msgstr "Drehfeld"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FORM_SCROLLBAR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Scroll Bar"
-msgstr "Bildlaufleiste"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_STYLE_FAMILY_CELL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Cell Styles"
-msgstr "Zellvorlagen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_STYLE_FAMILY_PAGE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Page Styles"
-msgstr "Seitenvorlagen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ERR_DATAPILOTSOURCE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Pivot table source data is invalid."
-msgstr "Quelldaten der Pivot-Tabelle sind ungültig."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_OPTIONS_WARN_SEPARATORS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
-msgstr "Da die aktuellen Formeltrenner mit dem Gebietsschema in Konflikt stehen, wurden die Formeltrenner auf ihre Standardwerte zurückgesetzt."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_INSERT_CURRENT_DATE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Insert Current Date"
-msgstr "Aktuelles Datum einfügen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_INSERT_CURRENT_TIME+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Insert Current Time"
-msgstr "Aktuelle Zeit einfügen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MANAGE_NAMES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Manage Names..."
-msgstr "Namen verwalten..."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HEADER_NAME+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Name"
-msgstr "Name"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HEADER_RANGE_OR_EXPR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Range or formula expression"
-msgstr "Bereich oder Formelausdruck"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HEADER_SCOPE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Scope"
-msgstr "Inhalt"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_MULTI_SELECT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "(multiple)"
-msgstr "(mehrere)"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_GLOBAL_SCOPE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Document (Global)"
-msgstr "Dokument (global)"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ERR_NAME_EXISTS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Invalid name. Already in use for the selected scope."
-msgstr "Ungültiger Name. Er wird im ausgewählten Bereich bereits verwendet."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ERR_NAME_INVALID+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Invalid name. Only use letters, numbers and underscore."
-msgstr "Ungültiger Name. Verwenden Sie nur Buchstaben, Zahlen und Unterstriche."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNSAVED_EXT_REF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"This Document contains external references to unsaved documents.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Dieses Dokument enthält externe Verweise auf nicht gespeicherte Dokumente.\n"
-"\n"
-"Möchten Sie fortfahren?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CLOSE_WITH_UNSAVED_REFS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
-msgstr "Auf dieses Dokument wird von einem anderen noch nicht gespeicherten Dokument verwiesen. Schließen ohne Speichern wird zu Datenverlust führen."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HEADER_RANGE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Range"
-msgstr "Bereich"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_HEADER_COND+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "First Condition"
-msgstr "Erste Bedingung"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_CONDITION+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Cell value is"
-msgstr "Zellwert ist"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_COLORSCALE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "ColorScale"
-msgstr "Farbskala"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_DATABAR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "DataBar"
-msgstr "Datenbalken"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_ICONSET+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "IconSet"
-msgstr "Symbolstil"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_BETWEEN+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "between"
-msgstr "zwischen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_NOTBETWEEN+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "not between"
-msgstr "nicht zwischen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_UNIQUE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "unique"
-msgstr "einmalig"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_DUPLICATE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "duplicate"
-msgstr "Duplikat"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_FORMULA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Formula is"
-msgstr "Formel ist"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_TOP10+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Top Elements"
-msgstr "Höchste Elemente"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_BOTTOM10+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Bottom Elements"
-msgstr "Niedrigste Elemente"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_TOP_PERCENT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Top Percent"
-msgstr "Höchster Prozentsatz"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_DATE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Date is"
-msgstr "Datum ist"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_BOTTOM_PERCENT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Bottom Percent"
-msgstr "Niedrigster Prozentsatz"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_ABOVE_AVERAGE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Above Average"
-msgstr "Überdurchschnittlich"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_BELOW_AVERAGE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Below Average"
-msgstr "Unterdurchschnittlich"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_ABOVE_EQUAL_AVERAGE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Above or equal Average"
-msgstr "Mehr als oder gleich wie der Durchschnitt"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_BELOW_EQUAL_AVERAGE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Below or equal Average"
-msgstr "Weniger als oder gleich wie der Durchschnitt"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_ERROR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "an Error code"
-msgstr "Ein Fehlercode"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_NOERROR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "not an Error code"
-msgstr "Kein Fehlercode"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_BEGINS_WITH+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Begins with"
-msgstr "Beginnt mit"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_ENDS_WITH+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Ends with"
-msgstr "Endet mit"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_CONTAINS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Contains"
-msgstr "Enthält"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_NOT_CONTAINS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Not Contains"
-msgstr "Enthält nicht"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_TODAY+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "today"
-msgstr "heute"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_YESTERDAY+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "yesterday"
-msgstr "gestern"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_TOMORROW+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "tomorrow"
-msgstr "morgen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_LAST7DAYS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "in the last 7 days"
-msgstr "in den letzten 7 Tagen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_THISWEEK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "this week"
-msgstr "Diese Woche"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_LASTWEEK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "last week"
-msgstr "letzte Woche"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_NEXTWEEK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "next week"
-msgstr "nächste Woche"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_THISMONTH+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "this month"
-msgstr "diesen Monat"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_LASTMONTH+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "last month"
-msgstr "letzten Monat"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_NEXTMONTH+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "next month"
-msgstr "nächsten Monat"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_THISYEAR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "this year"
-msgstr "dieses Jahr"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_LASTYEAR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "last year"
-msgstr "letztes Jahr"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_NEXTYEAR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "next year"
-msgstr "nächstes Jahr"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COND_AND+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "and"
-msgstr "und"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ERR_CONDFORMAT_PROTECTED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Conditional Formats can not be created, deleted or changed in protected sheets!"
-msgstr "Bedingte Formatierungen können in geschützten Tabellen nicht erstellt, gelöscht oder verändert werden!"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_EDIT_EXISTING_COND_FORMATS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
-"\n"
-" Do you want to edit the existing conditional format?"
-msgstr ""
-"Die ausgewählte Zelle enthält schon eine bedingte Formatierung. Sie können entweder das existierende bedingte Format bearbeiten oder ein neues bedingtes Format festlegen.\n"
-"\n"
-" Möchten Sie das existierende bedingte Format bearbeiten?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_QUERY_FORMULA_RECALC_ONLOAD_ODS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
-"\n"
-"Do you want to recalculate all formula cells in this document now?"
-msgstr ""
-"Dieses Dokument wurde zuletzt durch eine andere Anwendung als %PRODUCTNAME gespeichert. Einige Formelzellen können abweichende Ergebnisse liefern, wenn sie neu berechnet werden.\n"
-"\n"
-"Möchten Sie alle Formelzellen in diesem Dokument jetzt neu berechnen?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_QUERY_FORMULA_RECALC_ONLOAD_XLS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
-"\n"
-"Do you want to recalculate all formula cells now?"
-msgstr ""
-"Dieses Dokument wurde zuletzt in Excel gespeichert. Einige Formelzellen können abweichende Ergebnisse liefern, wenn sie neu berechnet werden.\n"
-"\n"
-"Möchten Sie alle Formelzellen in diesem Dokument jetzt neu berechnen?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ALWAYS_PERFORM_SELECTED+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Always perform this without prompt in the future."
-msgstr "Dies zukünftig immer ohne Bestätigung ausführen."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
-msgstr "Sie können keine Zellen einfügen oder löschen, wenn der betroffene Bereich Zellen einer Pivot-Tabelle enthält."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DPFIELD_GROUP_BY_SECONDS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Seconds"
-msgstr "Sekunden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DPFIELD_GROUP_BY_MINUTES+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Minutes"
-msgstr "Minuten"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DPFIELD_GROUP_BY_HOURS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Hours"
-msgstr "Stunden"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DPFIELD_GROUP_BY_DAYS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Days"
-msgstr "Tage"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DPFIELD_GROUP_BY_MONTHS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Months"
-msgstr "Monate"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DPFIELD_GROUP_BY_QUARTERS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Quarters"
-msgstr "Quartale"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DPFIELD_GROUP_BY_YEARS+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Years"
-msgstr "Jahre"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_INVALIDVAL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Invalid target value."
-msgstr "Unzulässiger Zielwert."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_INVALIDVAR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Undefined name for variable cell."
-msgstr "Undefinierter Name als variable Zelle."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_INVALIDFORM+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Undefined name as formula cell."
-msgstr "Undefinierter Name als Formelzelle."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NOFORMULA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Formula cell must contain a formula."
-msgstr "Formelzelle muss eine Formel enthalten."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_INVALIDINPUT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Invalid input."
-msgstr "Ungültige Eingabe."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_INVALIDCONDITION+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Invalid condition."
-msgstr "Ungültige Bedingung."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_QUERYREMOVE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid ""
-"Should the entry\n"
-"#\n"
-"be deleted?"
-msgstr ""
-"Soll der Eintrag\n"
-"#\n"
-"gelöscht werden?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COPYLIST+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Copy List"
-msgstr "Liste kopieren"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COPYFROM+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "List from"
-msgstr "Liste aus"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_COPYERR+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Cells without text have been ignored."
-msgstr "Zellen ohne Text wurden ignoriert."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CTRLCLICKHYPERLINK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "%s-click to follow hyperlink:"
-msgstr "%s-Klick, um der Verknüpfung zu folgen"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CLICKHYPERLINK+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "click to open hyperlink:"
-msgstr "Klick, um Hyperlink zu öffnen:"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PRINT_PREVIEW_NODATA+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "No Data"
-msgstr "Keine Daten"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PRINT_PREVIEW_EMPTY_RANGE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Print Range Empty"
-msgstr "Leerer Druckbereich"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_CONDFORMAT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Conditional Format"
-msgstr "Bedingte Formatierung"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_CONDFORMAT_LIST+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Conditional Formats"
-msgstr "Bedingte Formatierung"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNDO_FORMULA_TO_VALUE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Convert Formula To Value"
-msgstr "Formel in Wert umwandeln"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_UNQUOTED_STRING+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Strings without quotes are interpreted as column/row labels."
-msgstr "Zeichenketten ohne Anführungszeichen werden als Spalten-/Zeilenbeschriftungen interpretiert."
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ENTER_VALUE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Enter a value!"
-msgstr "Geben Sie einen Wert ein!"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TABLE_COUNT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Sheet %1 of %2"
-msgstr "Tabelle %1 von %2"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FUNCTIONS_FOUND+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "%1 and %2 more"
-msgstr "%1 und %2 mehr"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_GENERAL+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "General"
-msgstr "Allgemein"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_NUMBER+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Number"
-msgstr "Dezimalzahl"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_PERCENT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Percent"
-msgstr "Prozent"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_CURRENCY+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Currency"
-msgstr "Währung"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_DATE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Date"
-msgstr "Datum"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TIME+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Time"
-msgstr "Uhrzeit"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_SCIENTIFIC+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Scientific"
-msgstr "Wissenschaftlich"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_FRACTION+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Fraction"
-msgstr "Bruch"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_BOOLEAN_VALUE+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Boolean Value"
-msgstr "Wahrheitswert"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_TEXT+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Text"
-msgstr "Text"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_QUERY_PIVOTTABLE_DELTAB+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
-msgstr "Die ausgewählte(n) Tabelle(n) enthält/enthalten Quelldaten der zugehörigen Pivot-Tabellen, welche verloren gehen. Sind Sie sicher, dass Sie die ausgewählte(n) Tabelle(n) löschen möchten?"
-
-#: globstr.src
-msgctxt ""
-"globstr.src\n"
-"STR_ERR_NAME_INVALID_CELL_REF+RID_GLOBSTR_OFFSET\n"
-"string.text"
-msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
-msgstr "Ungültiger Name. Bezüge zu einer Zelle oder einem Zellbereich sind nicht erlaubt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Counts the cells of a data range whose contents match the search criteria.\n"
-"itemlist.text"
-msgid "Counts the cells of a data range whose contents match the search criteria."
-msgstr "Zählt alle Zellen eines Datenbereichs, deren Inhalte den Suchkriterien entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database\n"
-"itemlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range of cells containing data.\n"
-"itemlist.text"
-msgid "The range of cells containing data."
-msgstr "Der Zellbereich, der die Daten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database field\n"
-"itemlist.text"
-msgid "Database field"
-msgstr "Datenbankfeld"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates which database field (column) is to be used for the search criteria.\n"
-"itemlist.text"
-msgid "Indicates which database field (column) is to be used for the search criteria."
-msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criteria\n"
-"itemlist.text"
-msgid "Search criteria"
-msgstr "Suchkriterien"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the cell range containing the search criteria.\n"
-"itemlist.text"
-msgid "Defines the cell range containing the search criteria."
-msgstr "Gibt den Zellbereich mit den Suchkriterien an."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Counts all non-blank cells of a data range where the content corresponds to the search criteria.\n"
-"itemlist.text"
-msgid "Counts all non-blank cells of a data range where the content corresponds to the search criteria."
-msgstr "Zählt alle nicht leeren Zellen eines Datenbereichs, deren Inhalte den Suchkriterien entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database\n"
-"itemlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range of cells containing data.\n"
-"itemlist.text"
-msgid "The range of cells containing data."
-msgstr "Der Zellbereich, der die Daten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database field\n"
-"itemlist.text"
-msgid "Database field"
-msgstr "Datenbankfeld"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates which database field (column) is to be used for the search criteria.\n"
-"itemlist.text"
-msgid "Indicates which database field (column) is to be used for the search criteria."
-msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criteria\n"
-"itemlist.text"
-msgid "Search criteria"
-msgstr "Suchkriterien"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_COUNT_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the cell range containing the search criteria.\n"
-"itemlist.text"
-msgid "Defines the cell range containing the search criteria."
-msgstr "Gibt den Zellbereich mit den Suchkriterien an."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_AVERAGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the average value of all the cells of a data range whose contents match the search criteria.\n"
-"itemlist.text"
-msgid "Returns the average value of all the cells of a data range whose contents match the search criteria."
-msgstr "Bildet den Mittelwert aller Zellen eines Datenbereichs, deren Inhalte den Suchkriterien entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_AVERAGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database\n"
-"itemlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_AVERAGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range of cells containing data.\n"
-"itemlist.text"
-msgid "The range of cells containing data."
-msgstr "Der Zellbereich, der die Daten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_AVERAGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database field\n"
-"itemlist.text"
-msgid "Database field"
-msgstr "Datenbankfeld"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_AVERAGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates which database field (column) is to be used for the search criteria.\n"
-"itemlist.text"
-msgid "Indicates which database field (column) is to be used for the search criteria."
-msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_AVERAGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criteria\n"
-"itemlist.text"
-msgid "Search criteria"
-msgstr "Suchkriterien"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_AVERAGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the cell range containing the search criteria.\n"
-"itemlist.text"
-msgid "Defines the cell range containing the search criteria."
-msgstr "Gibt den Zellbereich mit den Suchkriterien an."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_GET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the contents of the cell of a data range which matches the search criteria.\n"
-"itemlist.text"
-msgid "Defines the contents of the cell of a data range which matches the search criteria."
-msgstr "Liefert den Inhalt der Zelle eines Datenbereichs, deren Inhalt den Suchkriterien entspricht."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_GET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database\n"
-"itemlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_GET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range of cells containing data.\n"
-"itemlist.text"
-msgid "The range of cells containing data."
-msgstr "Der Zellbereich, der die Daten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_GET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database field\n"
-"itemlist.text"
-msgid "Database field"
-msgstr "Datenbankfeld"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_GET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates which database field (column) is to be used for the search criteria.\n"
-"itemlist.text"
-msgid "Indicates which database field (column) is to be used for the search criteria."
-msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_GET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criteria\n"
-"itemlist.text"
-msgid "Search criteria"
-msgstr "Suchkriterien"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_GET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the cell range containing the search criteria.\n"
-"itemlist.text"
-msgid "Defines the cell range containing the search criteria."
-msgstr "Gibt den Zellbereich mit den Suchkriterien an."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MAX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the maximum value from all of the cells of a data range which correspond to the search criteria.\n"
-"itemlist.text"
-msgid "Returns the maximum value from all of the cells of a data range which correspond to the search criteria."
-msgstr "Bestimmt das Maximum aller Zellen eines Datenbereichs, deren Inhalte den Suchkriterien entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MAX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database\n"
-"itemlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MAX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range of cells containing data.\n"
-"itemlist.text"
-msgid "The range of cells containing data."
-msgstr "Der Zellbereich, der die Daten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MAX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database field\n"
-"itemlist.text"
-msgid "Database field"
-msgstr "Datenbankfeld"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MAX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates which database field (column) is to be used for the search criteria.\n"
-"itemlist.text"
-msgid "Indicates which database field (column) is to be used for the search criteria."
-msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MAX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criteria\n"
-"itemlist.text"
-msgid "Search criteria"
-msgstr "Suchkriterien"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MAX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the cell range containing the search criteria.\n"
-"itemlist.text"
-msgid "Defines the cell range containing the search criteria."
-msgstr "Gibt den Zellbereich mit den Suchkriterien an."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the minimum of all cells of a data range where the contents correspond to the search criteria.\n"
-"itemlist.text"
-msgid "Returns the minimum of all cells of a data range where the contents correspond to the search criteria."
-msgstr "Bestimmt das Minimum aller Zellen eines Datenbereichs, deren Inhalte den Suchkriterien entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database\n"
-"itemlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range of cells containing data.\n"
-"itemlist.text"
-msgid "The range of cells containing data."
-msgstr "Der Zellbereich, der die Daten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database field\n"
-"itemlist.text"
-msgid "Database field"
-msgstr "Datenbankfeld"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates which database field (column) is to be used for the search criteria.\n"
-"itemlist.text"
-msgid "Indicates which database field (column) is to be used for the search criteria."
-msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criteria\n"
-"itemlist.text"
-msgid "Search criteria"
-msgstr "Suchkriterien"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_MIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the cell range containing the search criteria.\n"
-"itemlist.text"
-msgid "Defines the cell range containing the search criteria."
-msgstr "Gibt den Zellbereich mit den Suchkriterien an."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_PRODUCT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Multiplies all cells of a data range where the contents match the search criteria.\n"
-"itemlist.text"
-msgid "Multiplies all cells of a data range where the contents match the search criteria."
-msgstr "Multipliziert alle Zellen eines Datenbereichs, deren Inhalte den Suchkriterien entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_PRODUCT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database\n"
-"itemlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_PRODUCT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range of cells containing data.\n"
-"itemlist.text"
-msgid "The range of cells containing data."
-msgstr "Der Zellbereich, der die Daten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_PRODUCT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database field\n"
-"itemlist.text"
-msgid "Database field"
-msgstr "Datenbankfeld"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_PRODUCT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates which database field (column) is to be used for the search criteria.\n"
-"itemlist.text"
-msgid "Indicates which database field (column) is to be used for the search criteria."
-msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_PRODUCT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criteria\n"
-"itemlist.text"
-msgid "Search criteria"
-msgstr "Suchkriterien"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_PRODUCT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the cell range containing the search criteria.\n"
-"itemlist.text"
-msgid "Defines the cell range containing the search criteria."
-msgstr "Gibt den Zellbereich mit den Suchkriterien an."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the standard deviation of all cells in a data range whose contents match the search criteria.\n"
-"itemlist.text"
-msgid "Calculates the standard deviation of all cells in a data range whose contents match the search criteria."
-msgstr "Bestimmt die Standardabweichung aller Zellen eines Datenbereichs, deren Inhalte den Suchkriterien entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database\n"
-"itemlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range of cells containing data.\n"
-"itemlist.text"
-msgid "The range of cells containing data."
-msgstr "Der Zellbereich, der die Daten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database field\n"
-"itemlist.text"
-msgid "Database field"
-msgstr "Datenbankfeld"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates which database field (column) is to be used for the search criteria.\n"
-"itemlist.text"
-msgid "Indicates which database field (column) is to be used for the search criteria."
-msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criteria\n"
-"itemlist.text"
-msgid "Search criteria"
-msgstr "Suchkriterien"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the cell range containing the search criteria.\n"
-"itemlist.text"
-msgid "Defines the cell range containing the search criteria."
-msgstr "Gibt den Zellbereich mit den Suchkriterien an."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria.\n"
-"itemlist.text"
-msgid "Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria."
-msgstr "Bestimmt die Standardabweichung bzgl. der Grundgesamtheit aller Zellen eines Datenbereichs, deren Inhalte den Suchkriterien entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database\n"
-"itemlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range of cells containing data.\n"
-"itemlist.text"
-msgid "The range of cells containing data."
-msgstr "Der Zellbereich, der die Daten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database field\n"
-"itemlist.text"
-msgid "Database field"
-msgstr "Datenbankfeld"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates which database field (column) is to be used for the search criteria.\n"
-"itemlist.text"
-msgid "Indicates which database field (column) is to be used for the search criteria."
-msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criteria\n"
-"itemlist.text"
-msgid "Search criteria"
-msgstr "Suchkriterien"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_STD_DEV_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the cell range containing the search criteria.\n"
-"itemlist.text"
-msgid "Defines the cell range containing the search criteria."
-msgstr "Gibt den Zellbereich mit den Suchkriterien an."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Adds all the cells of a data range where the contents match the search criteria.\n"
-"itemlist.text"
-msgid "Adds all the cells of a data range where the contents match the search criteria."
-msgstr "Addiert alle Zellen eines Datenbereichs, deren Inhalte den Suchkriterien entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database\n"
-"itemlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range of cells containing data.\n"
-"itemlist.text"
-msgid "The range of cells containing data."
-msgstr "Der Zellbereich, der die Daten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database field\n"
-"itemlist.text"
-msgid "Database field"
-msgstr "Datenbankfeld"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates which database field (column) is to be used for the search criteria.\n"
-"itemlist.text"
-msgid "Indicates which database field (column) is to be used for the search criteria."
-msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criteria\n"
-"itemlist.text"
-msgid "Search criteria"
-msgstr "Suchkriterien"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the cell range containing the search criteria.\n"
-"itemlist.text"
-msgid "Defines the cell range containing the search criteria."
-msgstr "Gibt den Zellbereich mit den Suchkriterien an."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Determines the variance of all the cells in a data range where the contents match the search criteria.\n"
-"itemlist.text"
-msgid "Determines the variance of all the cells in a data range where the contents match the search criteria."
-msgstr "Bestimmt die Varianz aller Zellen eines Datenbereichs, deren Inhalte den Suchkriterien entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database\n"
-"itemlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range of cells containing data.\n"
-"itemlist.text"
-msgid "The range of cells containing data."
-msgstr "Der Zellbereich, der die Daten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database field\n"
-"itemlist.text"
-msgid "Database field"
-msgstr "Datenbankfeld"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates which database field (column) is to be used for the search criteria.\n"
-"itemlist.text"
-msgid "Indicates which database field (column) is to be used for the search criteria."
-msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criteria\n"
-"itemlist.text"
-msgid "Search criteria"
-msgstr "Suchkriterien"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the cell range containing the search criteria.\n"
-"itemlist.text"
-msgid "Defines the cell range containing the search criteria."
-msgstr "Gibt den Zellbereich mit den Suchkriterien an."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Determines variance of a population based on all cells in a data range where contents match the search criteria.\n"
-"itemlist.text"
-msgid "Determines variance of a population based on all cells in a data range where contents match the search criteria."
-msgstr "Bestimmt die Varianz bzgl. der Grundgesamtheit aller Zellen eines Datenbereichs, deren Inhalte den Suchkriterien entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database\n"
-"itemlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range of cells containing data.\n"
-"itemlist.text"
-msgid "The range of cells containing data."
-msgstr "Der Zellbereich, der die Daten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Database field\n"
-"itemlist.text"
-msgid "Database field"
-msgstr "Datenbankfeld"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates which database field (column) is to be used for the search criteria.\n"
-"itemlist.text"
-msgid "Indicates which database field (column) is to be used for the search criteria."
-msgstr "Legt das Datenbankfeld (Spalte) für die Suchkriterien fest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criteria\n"
-"itemlist.text"
-msgid "Search criteria"
-msgstr "Suchkriterien"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the cell range containing the search criteria.\n"
-"itemlist.text"
-msgid "Defines the cell range containing the search criteria."
-msgstr "Gibt den Zellbereich mit den Suchkriterien an."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Provides an internal number for the date given.\n"
-"itemlist.text"
-msgid "Provides an internal number for the date given."
-msgstr "Liefert die interne Zahl für das angegebene Datum."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"year\n"
-"itemlist.text"
-msgid "year"
-msgstr "Jahr"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"An integer between 1583 and 9956 or 0 and 99 (19xx or 20xx depending on the defined option).\n"
-"itemlist.text"
-msgid "An integer between 1583 and 9956 or 0 and 99 (19xx or 20xx depending on the defined option)."
-msgstr "Eine ganze Zahl zwischen 1583 und 9956, oder 0 und 99 (19xx oder 20xx gemäß eingestellter Option)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"month\n"
-"itemlist.text"
-msgid "month"
-msgstr "Monat"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"An integer between 1 and 12 representing the month.\n"
-"itemlist.text"
-msgid "An integer between 1 and 12 representing the month."
-msgstr "Eine ganze Zahl zwischen 1 und 12 für den Monat."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"day\n"
-"itemlist.text"
-msgid "day"
-msgstr "Tag"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"An integer between 1 and 31 representing the day of the month.\n"
-"itemlist.text"
-msgid "An integer between 1 and 31 representing the day of the month."
-msgstr "Eine ganze Zahl zwischen 1 und 31 für den Tag."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATE_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns an internal number for a text having a possible date format.\n"
-"itemlist.text"
-msgid "Returns an internal number for a text having a possible date format."
-msgstr "Bestimmt aus einem Text in einem möglichen Datumseingabeformat eine interne Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATE_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATE_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format.\n"
-"itemlist.text"
-msgid "A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format."
-msgstr "Ein in Anführungszeichen eingeschlossener Text, der ein Datum in einem %PRODUCTNAME Datumsformat wiedergibt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DAY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the sequential date of the month as an integer (1-31) in relation to the date value.\n"
-"itemlist.text"
-msgid "Returns the sequential date of the month as an integer (1-31) in relation to the date value."
-msgstr "Bestimmt zu dem Datumswert den fortlaufenden Tag des Monats als Zahl (1 - 31)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DAY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DAY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The internal number for the date.\n"
-"itemlist.text"
-msgid "The internal number for the date."
-msgstr "Interne Zahl des Datums."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DIFF_DATE_360+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the number of days between two dates based on a 360-day year.\n"
-"itemlist.text"
-msgid "Calculates the number of days between two dates based on a 360-day year."
-msgstr "Bestimmt die Tagesdifferenz zweier Daten bei 360-Tage/Jahr-Berechnung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DIFF_DATE_360+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Date_1\n"
-"itemlist.text"
-msgid "Date_1"
-msgstr "Datum_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DIFF_DATE_360+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The start date for calculating the difference in days.\n"
-"itemlist.text"
-msgid "The start date for calculating the difference in days."
-msgstr "Früheres Datum für die Tagesdifferenz."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DIFF_DATE_360+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Date_2\n"
-"itemlist.text"
-msgid "Date_2"
-msgstr "Datum_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DIFF_DATE_360+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The end date for calculating the difference in days.\n"
-"itemlist.text"
-msgid "The end date for calculating the difference in days."
-msgstr "Späteres Datum für die Tagesdifferenz."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DIFF_DATE_360+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DIFF_DATE_360+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Method used to form differences: Type = 0 denotes US method (NASD), Type = 1 denotes the European method.\n"
-"itemlist.text"
-msgid "Method used to form differences: Type = 0 denotes US method (NASD), Type = 1 denotes the European method."
-msgstr "Art der Differenzbildung: Art = 0 heißt US-Methode (NASD), Art = 1 heißt europäische Methode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the number of workdays between two dates using arguments to indicate weekenddays and holidays.\n"
-"itemlist.text"
-msgid "Returns the number of workdays between two dates using arguments to indicate weekenddays and holidays."
-msgstr "Gibt die Anzahl der Arbeitstage zwischen zwei Daten aus, wobei Argumente zum Kennzeichnen von Wochenend- und Feiertagen benutzt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Start Date\n"
-"itemlist.text"
-msgid "Start Date"
-msgstr "Startdatum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Start date for calculation.\n"
-"itemlist.text"
-msgid "Start date for calculation."
-msgstr "Startdatum für die Berechnung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"End Date\n"
-"itemlist.text"
-msgid "End Date"
-msgstr "Enddatum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"End date for calculation.\n"
-"itemlist.text"
-msgid "End date for calculation."
-msgstr "Enddatum für die Berechnung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"list of dates\n"
-"itemlist.text"
-msgid "list of dates"
-msgstr "Freie Tage"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Optional set of one or more dates to be considered as holiday.\n"
-"itemlist.text"
-msgid "Optional set of one or more dates to be considered as holiday."
-msgstr "Optionale Angabe von einem oder mehreren Daten, die als freie Tage angerechnet werden sollen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array\n"
-"itemlist.text"
-msgid "array"
-msgstr "Wochenende"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Optional list of numbers to indicate working (0) and weekend (non-zero) days. When omitted, weekend is Saturday and Sunday.\n"
-"itemlist.text"
-msgid "Optional list of numbers to indicate working (0) and weekend (non-zero) days. When omitted, weekend is Saturday and Sunday."
-msgstr "Optionale Liste an Zahlen, um Arbeits- (0) und Wochenendtage (nicht Null) zu kennzeichnen. Falls fehlend, ist das Wochenende Samstag und Sonntag."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the number of workdays between two dates using arguments to indicate weekend days and holidays.\n"
-"itemlist.text"
-msgid "Returns the number of workdays between two dates using arguments to indicate weekend days and holidays."
-msgstr "Gibt die Anzahl der Arbeitstage zwischen zwei Daten unter Berücksichtigung von Argumenten, welche Wochenend- und Ferientage vorgeben, zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Start Date\n"
-"itemlist.text"
-msgid "Start Date"
-msgstr "Startdatum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Start date for calculation.\n"
-"itemlist.text"
-msgid "Start date for calculation."
-msgstr "Startdatum für die Berechnung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"End Date\n"
-"itemlist.text"
-msgid "End Date"
-msgstr "Enddatum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"End date for calculation.\n"
-"itemlist.text"
-msgid "End date for calculation."
-msgstr "Enddatum für die Berechnung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number or string\n"
-"itemlist.text"
-msgid "number or string"
-msgstr "Wochenende"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday.\n"
-"itemlist.text"
-msgid "Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday."
-msgstr "Optionale Zahl oder Zeichenkette, die festlegt, wann Wochenendtage liegen. Falls fehlend, werden Samstag und Sonntag als Wochenendtage gezählt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array\n"
-"itemlist.text"
-msgid "array"
-msgstr "Freie Tage"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NETWORKDAYS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Optional set of one or more dates to be considered as holiday.\n"
-"itemlist.text"
-msgid "Optional set of one or more dates to be considered as holiday."
-msgstr "Optionale Angabe von einem oder mehreren Daten, die als freie Tage angerechnet werden sollen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WORKDAY_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the serial number of the date before or after a number of workdays using arguments to indicate weekend days and holidays.\n"
-"itemlist.text"
-msgid "Returns the serial number of the date before or after a number of workdays using arguments to indicate weekend days and holidays."
-msgstr "Gibt die laufende Nummer des Datums vor oder nach einer Anzahl von Werktagen unter Berücksichtigung von Argumenten, welche Wochenend- und Ferientage vorgeben, zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WORKDAY_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Start Date\n"
-"itemlist.text"
-msgid "Start Date"
-msgstr "Startdatum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WORKDAY_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Start date for calculation.\n"
-"itemlist.text"
-msgid "Start date for calculation."
-msgstr "Startdatum für die Berechnung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WORKDAY_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Days\n"
-"itemlist.text"
-msgid "Days"
-msgstr "Tage"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WORKDAY_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of workdays before or after start date.\n"
-"itemlist.text"
-msgid "The number of workdays before or after start date."
-msgstr "Anzahl der Arbeitstage vor oder nach dem Startdatum."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WORKDAY_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number or string\n"
-"itemlist.text"
-msgid "number or string"
-msgstr "Wochenende"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WORKDAY_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday.\n"
-"itemlist.text"
-msgid "Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday."
-msgstr "Optionale Zahl oder Zeichenkette, die festlegt, wann Wochenendtage liegen. Falls fehlend, werden Samstag und Sonntag als Wochenendtage gezählt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WORKDAY_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array\n"
-"itemlist.text"
-msgid "array"
-msgstr "Freie Tage"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WORKDAY_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Optional set of one or more dates to be considered as holiday.\n"
-"itemlist.text"
-msgid "Optional set of one or more dates to be considered as holiday."
-msgstr "Optionale Angabe von einem oder mehreren Daten, die als freie Tage angerechnet werden sollen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_HOUR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Determines the sequential number of the hour of the day (0-23) for the time value.\n"
-"itemlist.text"
-msgid "Determines the sequential number of the hour of the day (0-23) for the time value."
-msgstr "Bestimmt zu dem Zeitwert die fortlaufende Stunde des Tags als Zahl (0 - 23)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_HOUR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_HOUR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Internal time value\n"
-"itemlist.text"
-msgid "Internal time value"
-msgstr "Interner Zeitwert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_MIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Determines the sequential number for the minute of the hour (0-59) for the time value.\n"
-"itemlist.text"
-msgid "Determines the sequential number for the minute of the hour (0-59) for the time value."
-msgstr "Bestimmt zu dem Zeitwert die fortlaufende Minute pro Stunde als Zahl (0 - 59)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_MIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_MIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Internal time value.\n"
-"itemlist.text"
-msgid "Internal time value."
-msgstr "Interner Zeitwert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_MONTH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Determines the sequential number of a month of the year (1-12) for the date value.\n"
-"itemlist.text"
-msgid "Determines the sequential number of a month of the year (1-12) for the date value."
-msgstr "Bestimmt zu dem Datumswert den fortlaufenden Monat im Jahr als Zahl (1 - 12)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_MONTH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_MONTH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The internal number of the date.\n"
-"itemlist.text"
-msgid "The internal number of the date."
-msgstr "Interne Zahl des Datums."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_ACT_TIME+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Determines the current time of the computer.\n"
-"itemlist.text"
-msgid "Determines the current time of the computer."
-msgstr "Bestimmt die aktuelle Zeit des Computers."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_SEC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Determines the sequential number of the second of a minute (0-59) for the time value.\n"
-"itemlist.text"
-msgid "Determines the sequential number of the second of a minute (0-59) for the time value."
-msgstr "Bestimmt zu dem Zeitwert die fortlaufende Sekunde in einer Minute als Zahl (0 - 59)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_SEC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_SEC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The internal time value.\n"
-"itemlist.text"
-msgid "The internal time value."
-msgstr "Interner Zeitwert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_TIME+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Determines a time value from the details for hour, minute and second.\n"
-"itemlist.text"
-msgid "Determines a time value from the details for hour, minute and second."
-msgstr "Bestimmt einen Zeitwert aus Zahlangaben für Stunde, Minute und Sekunde."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_TIME+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"hour\n"
-"itemlist.text"
-msgid "hour"
-msgstr "Stunde"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_TIME+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The integer for the hour.\n"
-"itemlist.text"
-msgid "The integer for the hour."
-msgstr "Ganze Zahl für die Stunde."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_TIME+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"minute\n"
-"itemlist.text"
-msgid "minute"
-msgstr "Minute"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_TIME+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The integer for the minute.\n"
-"itemlist.text"
-msgid "The integer for the minute."
-msgstr "Ganze Zahl für die Minute."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_TIME+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"second\n"
-"itemlist.text"
-msgid "second"
-msgstr "Sekunde"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_TIME+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The integer for the second.\n"
-"itemlist.text"
-msgid "The integer for the second."
-msgstr "Ganze Zahl für die Sekunde."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_TIME_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a sequential number for a text shown in a possible time entry format.\n"
-"itemlist.text"
-msgid "Returns a sequential number for a text shown in a possible time entry format."
-msgstr "Bestimmt aus einem Text in einem möglichen Zeiteingabeformat eine fortlaufende Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_TIME_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_TIME_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A text enclosed in quotation marks which returns a time in a %PRODUCTNAME time format.\n"
-"itemlist.text"
-msgid "A text enclosed in quotation marks which returns a time in a %PRODUCTNAME time format."
-msgstr "Ein in Anführungszeichen eingeschlossener Text, der eine Zeitangabe in einem %PRODUCTNAME Zeitformat wiedergibt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_ACT_DATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Determines the current date of the computer.\n"
-"itemlist.text"
-msgid "Determines the current date of the computer."
-msgstr "Bestimmt das aktuelle Datum des Computers."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DAY_OF_WEEK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the day of the week for the date value as an integer.\n"
-"itemlist.text"
-msgid "Returns the day of the week for the date value as an integer."
-msgstr "Bestimmt zu dem Datumswert den Wochentag als ganze Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DAY_OF_WEEK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DAY_OF_WEEK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The internal number for the date.\n"
-"itemlist.text"
-msgid "The internal number for the date."
-msgstr "Interne Zahl des Datums."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DAY_OF_WEEK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DAY_OF_WEEK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Fixes the beginning of the week and the type of calculation to be used.\n"
-"itemlist.text"
-msgid "Fixes the beginning of the week and the type of calculation to be used."
-msgstr "Legt den Wochenanfang und die Art der Berechnung fest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_YEAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the year of a date value as an integer.\n"
-"itemlist.text"
-msgid "Returns the year of a date value as an integer."
-msgstr "Bestimmt zu dem Datumswert das Jahr als Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_YEAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_YEAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Internal number of the date.\n"
-"itemlist.text"
-msgid "Internal number of the date."
-msgstr "Interne Zahl des Datums."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DIFF_DATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the number of days between two dates.\n"
-"itemlist.text"
-msgid "Calculates the number of days between two dates."
-msgstr "Bestimmt die Tagesdifferenz zweier Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DIFF_DATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Date_2\n"
-"itemlist.text"
-msgid "Date_2"
-msgstr "Datum_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DIFF_DATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The end date for calculating the difference in days.\n"
-"itemlist.text"
-msgid "The end date for calculating the difference in days."
-msgstr "Späteres Datum für die Tagesdifferenz."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DIFF_DATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Date_1\n"
-"itemlist.text"
-msgid "Date_1"
-msgstr "Datum_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DIFF_DATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The start date for calculating the difference in days.\n"
-"itemlist.text"
-msgid "The start date for calculating the difference in days."
-msgstr "Früheres Datum für die Tagesdifferenz."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATEDIF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the number of whole days, months or years between 'start date' and 'end date'.\n"
-"itemlist.text"
-msgid "Returns the number of whole days, months or years between 'start date' and 'end date'."
-msgstr "Gibt die Anzahl der ganzen Tage, Monate oder Jahre zwischen 'Startdatum' und 'Enddatum' zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATEDIF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Start date\n"
-"itemlist.text"
-msgid "Start date"
-msgstr "Startdatum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATEDIF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The start date.\n"
-"itemlist.text"
-msgid "The start date."
-msgstr "Das Startdatum."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATEDIF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"End date\n"
-"itemlist.text"
-msgid "End date"
-msgstr "Enddatum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATEDIF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The end date.\n"
-"itemlist.text"
-msgid "The end date."
-msgstr "Das Enddatum."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATEDIF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Interval\n"
-"itemlist.text"
-msgid "Interval"
-msgstr "Intervall"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_DATEDIF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Interval to be calculated. Can be \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\".\n"
-"itemlist.text"
-msgid "Interval to be calculated. Can be \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
-msgstr "Das zu berechnende Intervall. Möglich sind \"d\", \"m\", \"y\", \"ym\", \"md\" oder \"yd\"."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEEK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the calendar week corresponding to the given date.\n"
-"itemlist.text"
-msgid "Calculates the calendar week corresponding to the given date."
-msgstr "Bestimmt zu dem Datumswert die Kalenderwoche im Jahr."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEEK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEEK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The internal number of the date.\n"
-"itemlist.text"
-msgid "The internal number of the date."
-msgstr "Interne Zahl des Datums."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEEK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mode\n"
-"itemlist.text"
-msgid "mode"
-msgstr "Modus"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEEK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates the first day of the week and when week 1 starts.\n"
-"itemlist.text"
-msgid "Indicates the first day of the week and when week 1 starts."
-msgstr "Legt den ersten Tag der Woche fest und wann die erste Woche beginnt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ISOWEEKNUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the ISO 8601 calendar week for the given date.\n"
-"itemlist.text"
-msgid "Calculates the ISO 8601 calendar week for the given date."
-msgstr "Bestimmt zum angegebenen Datumswert die ISO-8601 Kalenderwoche."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ISOWEEKNUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ISOWEEKNUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The internal number of the date.\n"
-"itemlist.text"
-msgid "The internal number of the date."
-msgstr "Die interne Zahl des Datums."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEEKNUM_OOO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the calendar week corresponding to the given date.\n"
-"This function only provides interoperability with %PRODUCTNAME 5.0 and earlier and OpenOffice.org.\n"
-"itemlist.text"
-msgid ""
-"Calculates the calendar week corresponding to the given date.\n"
-"This function only provides interoperability with %PRODUCTNAME 5.0 and earlier and OpenOffice.org."
-msgstr ""
-"Bestimmt zum Datumswert die Kalenderwoche im Jahr.\n"
-"Diese Funktion existiert nur zur Kompatibilität mit %PRODUCTNAME 5.0 und älter sowie mit OpenOffice.org."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEEKNUM_OOO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEEKNUM_OOO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The internal number of the date.\n"
-"itemlist.text"
-msgid "The internal number of the date."
-msgstr "Die interne Zahl des Datums."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEEKNUM_OOO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mode\n"
-"itemlist.text"
-msgid "mode"
-msgstr "Modus"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEEKNUM_OOO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Indicates the first day of the week (1 = Sunday, other values = Monday).\n"
-"itemlist.text"
-msgid "Indicates the first day of the week (1 = Sunday, other values = Monday)."
-msgstr "Legt den ersten Tag in der Woche fest (1 = Sonntag, andere Werte = Montag)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EASTERSUNDAY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the date of Easter Sunday in a given year.\n"
-"itemlist.text"
-msgid "Calculates the date of Easter Sunday in a given year."
-msgstr "Bestimmt das Datum des Ostersonntags eines Jahres."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EASTERSUNDAY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"year\n"
-"itemlist.text"
-msgid "year"
-msgstr "Jahr"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EASTERSUNDAY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"An integer between 1583 and 9956, or 0 and 99 (19xx or 20xx depending on the option set).\n"
-"itemlist.text"
-msgid "An integer between 1583 and 9956, or 0 and 99 (19xx or 20xx depending on the option set)."
-msgstr "Eine ganze Zahl zwischen 1583 und 9956, oder 0 und 99 (19xx oder 20xx gemäß eingestellter Option)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Present value. Calculates the present value of an investment.\n"
-"itemlist.text"
-msgid "Present value. Calculates the present value of an investment."
-msgstr "Barwert. Berechnet den Barwert einer Investition."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The rate of interest for the period given.\n"
-"itemlist.text"
-msgid "The rate of interest for the period given."
-msgstr "Der Zinssatz pro Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"NPER\n"
-"itemlist.text"
-msgid "NPER"
-msgstr "ZZR"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The payment period. The total number of periods in which the annuity is paid.\n"
-"itemlist.text"
-msgid "The payment period. The total number of periods in which the annuity is paid."
-msgstr "Das Zahlungsziel. Die Gesamtzahl an Perioden, in denen die Raten gezahlt werden sollen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"PMT\n"
-"itemlist.text"
-msgid "PMT"
-msgstr "RMZ"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Regular payments. The constant amount of annuity that is paid in each period.\n"
-"itemlist.text"
-msgid "Regular payments. The constant amount of annuity that is paid in each period."
-msgstr "Regelmäßige Zahlungen. Die regelmäßige Zahl an Zahlungen, die in jeder Periode gezahlt werden sollen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"FV\n"
-"itemlist.text"
-msgid "FV"
-msgstr "ZW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Future value. The value (final value) to be attained after the last payment.\n"
-"itemlist.text"
-msgid "Future value. The value (final value) to be attained after the last payment."
-msgstr "Zukunftswert. Der (End-) Wert, der nach der letzten Zahlung erreicht werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type = 1 denotes due at the beginning of the period, = 0 at the end.\n"
-"itemlist.text"
-msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
-msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Future value. Returns the future value of an investment based on regular payments and a constant interest rate.\n"
-"itemlist.text"
-msgid "Future value. Returns the future value of an investment based on regular payments and a constant interest rate."
-msgstr "Zukunftswert. Gibt den Zukunftswert einer Anlage aufgrund von regelmäßigen Zahlungen und einem konstanten Zinssatz zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The rate of interest per period.\n"
-"itemlist.text"
-msgid "The rate of interest per period."
-msgstr "Der Zinssatz pro Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"NPER\n"
-"itemlist.text"
-msgid "NPER"
-msgstr "ZZR"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Payment period. The total number of periods in which the annuity (pension) is paid.\n"
-"itemlist.text"
-msgid "Payment period. The total number of periods in which the annuity (pension) is paid."
-msgstr "Zahlungsziel. Die Gesamtzahl an Perioden, in denen die Raten (Renten) gezahlt werden sollen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"PMT\n"
-"itemlist.text"
-msgid "PMT"
-msgstr "RMZ"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Regular payments. The constant annuity to be paid in each period.\n"
-"itemlist.text"
-msgid "Regular payments. The constant annuity to be paid in each period."
-msgstr "Regelmäßige Zahlung. Die konstante Annuität, die in jeder Periode gezahlt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"PV\n"
-"itemlist.text"
-msgid "PV"
-msgstr "BW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Present value. The current value of a series of payments\n"
-"itemlist.text"
-msgid "Present value. The current value of a series of payments"
-msgstr "Barwert. Der derzeitige Wert einer Reihe von Zahlungen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type = 1 denotes due at the beginning of the period, = 0 at the end.\n"
-"itemlist.text"
-msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
-msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Payment period. Calculates the number of payment periods for an investment based on regular payments and a constant interest rate.\n"
-"itemlist.text"
-msgid "Payment period. Calculates the number of payment periods for an investment based on regular payments and a constant interest rate."
-msgstr "Zahlungszeitraum. Berechnet die Anzahl der Zahlungsperioden einer Investition bei regelmäßigen Zahlungen und konstantem Zinssatz."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The rate of interest per period.\n"
-"itemlist.text"
-msgid "The rate of interest per period."
-msgstr "Der Zinssatz pro Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"PMT\n"
-"itemlist.text"
-msgid "PMT"
-msgstr "RMZ"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Regular payments. The constant annuity to be paid in each period.\n"
-"itemlist.text"
-msgid "Regular payments. The constant annuity to be paid in each period."
-msgstr "Regelmäßige Zahlung. Die konstante Annuität, die in jeder Periode gezahlt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"PV\n"
-"itemlist.text"
-msgid "PV"
-msgstr "BW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Present value. The current value of a series of payments\n"
-"itemlist.text"
-msgid "Present value. The current value of a series of payments"
-msgstr "Barwert. Der derzeitige Wert einer Reihe von Zahlungen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"FV\n"
-"itemlist.text"
-msgid "FV"
-msgstr "ZW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Future value. The value (end value) to be attained after the final payment.\n"
-"itemlist.text"
-msgid "Future value. The value (end value) to be attained after the final payment."
-msgstr "Zukunftswert. Der (End-) Wert, der nach der letzten Zahlung erreicht werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type = 1 denotes due at the beginning of the period, = 0 at the end.\n"
-"itemlist.text"
-msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
-msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Regular payments. Returns the periodic payment of an annuity, based on regular payments and a fixed periodic interest rate.\n"
-"itemlist.text"
-msgid "Regular payments. Returns the periodic payment of an annuity, based on regular payments and a fixed periodic interest rate."
-msgstr "Regelmäßige Zahlungen. Gibt die periodische Zahlung einer Jahresrente aus, die auf regelmäßigen Zahlungen und einen vorgegebenen periodischen Zinssatz basiert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The rate of interest per period.\n"
-"itemlist.text"
-msgid "The rate of interest per period."
-msgstr "Der Zinssatz pro Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"NPER\n"
-"itemlist.text"
-msgid "NPER"
-msgstr "ZZR"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Payment period. The total number of periods in which the annuity (pension) is paid.\n"
-"itemlist.text"
-msgid "Payment period. The total number of periods in which the annuity (pension) is paid."
-msgstr "Zahlungsziel. Die Gesamtzahl an Perioden, in denen die Raten (Renten) gezahlt werden sollen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"PV\n"
-"itemlist.text"
-msgid "PV"
-msgstr "BW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Present value. The current value of a series of payments\n"
-"itemlist.text"
-msgid "Present value. The current value of a series of payments"
-msgstr "Barwert. Der derzeitige Wert einer Reihe von Zahlungen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"FV\n"
-"itemlist.text"
-msgid "FV"
-msgstr "ZW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Future value. The value (end value) to be attained after the final payment.\n"
-"itemlist.text"
-msgid "Future value. The value (end value) to be attained after the final payment."
-msgstr "Zukunftswert. Der (End-) Wert, der nach der letzten Zahlung erreicht werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type = 1 denotes due at the beginning of the period, = 0 at the end.\n"
-"itemlist.text"
-msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
-msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the constant interest rate of an investment with regular payments.\n"
-"itemlist.text"
-msgid "Calculates the constant interest rate of an investment with regular payments."
-msgstr "Berechnet den konstanten Zinssatz einer Investition bei regelmäßigen Zahlungen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"NPER\n"
-"itemlist.text"
-msgid "NPER"
-msgstr "ZZR"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Payment period. The total number of periods in which the annuity (pension) is paid.\n"
-"itemlist.text"
-msgid "Payment period. The total number of periods in which the annuity (pension) is paid."
-msgstr "Zahlungszeitraum. Die Gesamtanzahl der Perioden, in denen die Annuität (Rente) gezahlt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"PMT\n"
-"itemlist.text"
-msgid "PMT"
-msgstr "RMZ"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Regular payments. The constant annuity to be paid in each period.\n"
-"itemlist.text"
-msgid "Regular payments. The constant annuity to be paid in each period."
-msgstr "Regelmäßige Zahlung. Die konstante Annuität, die in jeder Periode gezahlt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"PV\n"
-"itemlist.text"
-msgid "PV"
-msgstr "BW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Present value. The current value of a series of payments\n"
-"itemlist.text"
-msgid "Present value. The current value of a series of payments"
-msgstr "Barwert. Der derzeitige Wert einer Reihe von Zahlungen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"FV\n"
-"itemlist.text"
-msgid "FV"
-msgstr "ZW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Future value. The value (end value) to be attained after the final payment.\n"
-"itemlist.text"
-msgid "Future value. The value (end value) to be attained after the final payment."
-msgstr "Zukünftiger Wert. Der Wert (Endwert), der nach der letzten Zahlung erreicht werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type = 1 denotes due at the beginning of the period, = 0 at the end.\n"
-"itemlist.text"
-msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
-msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Guess\n"
-"itemlist.text"
-msgid "Guess"
-msgstr "SW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Guess. The estimate of the interest rate for the iterative calculating method.\n"
-"itemlist.text"
-msgid "Guess. The estimate of the interest rate for the iterative calculating method."
-msgstr "Schätzwert. Der Schätzwert des Zinses für das iterative Berechnungsverfahren."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Compounded interest. Calculates the interest payment on the principal for an investment with regular payments and a constant interest rate for a given period.\n"
-"itemlist.text"
-msgid "Compounded interest. Calculates the interest payment on the principal for an investment with regular payments and a constant interest rate for a given period."
-msgstr "Zinseszins. Berechnet für einen bestimmten Zeitraum die Zinszahlung eines Grundbetrags für eine Investition bei regelmäßigen Zahlungen und konstantem Zinssatz."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The rate of interest per period.\n"
-"itemlist.text"
-msgid "The rate of interest per period."
-msgstr "Der Zinssatz pro Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Period\n"
-"itemlist.text"
-msgid "Period"
-msgstr "Periode"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Periods. The periods for which the compounded interest is to be calculated. P = 1 denotes for the first period, P = NPER for the last one.\n"
-"itemlist.text"
-msgid "Periods. The periods for which the compounded interest is to be calculated. P = 1 denotes for the first period, P = NPER for the last one."
-msgstr "Periode. Die Periode, für welche die Zinseszinsen berechnet werden. P = 1 heißt für die erste, P = ZZR für die letzte Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"NPER\n"
-"itemlist.text"
-msgid "NPER"
-msgstr "ZZR"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Payment period. The total number of periods in which the annuity (pension) is paid.\n"
-"itemlist.text"
-msgid "Payment period. The total number of periods in which the annuity (pension) is paid."
-msgstr "Zahlungszeitraum. Die Gesamtanzahl der Perioden, in denen die Annuität (Rente) gezahlt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"pv\n"
-"itemlist.text"
-msgid "pv"
-msgstr "BW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Present value. The current value of a series of payments\n"
-"itemlist.text"
-msgid "Present value. The current value of a series of payments"
-msgstr "Barwert. Der derzeitige Wert einer Reihe von Zahlungen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"FV\n"
-"itemlist.text"
-msgid "FV"
-msgstr "ZW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Future value. The value (end value) to be attained after the final payment.\n"
-"itemlist.text"
-msgid "Future value. The value (end value) to be attained after the final payment."
-msgstr "Zukünftiger Wert. Der Wert (Endwert), der nach der letzten Zahlung erreicht werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type = 1 denotes due at the beginning of the period, = 0 at the end.\n"
-"itemlist.text"
-msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
-msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Repayment. Calculates the repayment amount for a period for an investment whereby the payments are at regular intervals and the interest rate constant.\n"
-"itemlist.text"
-msgid "Repayment. Calculates the repayment amount for a period for an investment whereby the payments are at regular intervals and the interest rate constant."
-msgstr "Tilgung. Berechnet den Tilgungsbetrag einer Periode für eine Investition, wobei die Zahlungen regelmäßig und der Zinssatz konstant sind."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The interest rate per period.\n"
-"itemlist.text"
-msgid "The interest rate per period."
-msgstr "Der Zinssatz pro Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Period\n"
-"itemlist.text"
-msgid "Period"
-msgstr "Periode"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Period. The period for which the repayments are to be calculated. Per = 1 denotes for the first period, P = NPER for the last\n"
-"itemlist.text"
-msgid "Period. The period for which the repayments are to be calculated. Per = 1 denotes for the first period, P = NPER for the last"
-msgstr "Periode. Die Periode, für welche die Tilgung berechnet werden soll. P = 1 heißt für die erste, P = ZZR für die letzte Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"NPER\n"
-"itemlist.text"
-msgid "NPER"
-msgstr "ZZR"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The payment period. The total number of periods in which the annuity (pension) is paid.\n"
-"itemlist.text"
-msgid "The payment period. The total number of periods in which the annuity (pension) is paid."
-msgstr "Zahlungszeitraum. Die Gesamtanzahl der Perioden, in denen die Annuität (Rente) gezahlt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"PV\n"
-"itemlist.text"
-msgid "PV"
-msgstr "BW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The present value. The present value or the amount the annuity is currently worth.\n"
-"itemlist.text"
-msgid "The present value. The present value or the amount the annuity is currently worth."
-msgstr "Barwert. Der derzeitige Wert oder die Menge, welche die Annuität gegenwärtig wert ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"FV\n"
-"itemlist.text"
-msgid "FV"
-msgstr "ZW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Future value. The value (end value) attained after the last payment has been made.\n"
-"itemlist.text"
-msgid "Future value. The value (end value) attained after the last payment has been made."
-msgstr "Zukunftswert. Der (End-) Wert, der nach der letzten Zahlung erreicht werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type = 1 denotes due at the beginning of the period, = 0 at the end.\n"
-"itemlist.text"
-msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
-msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_PRINC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative Capital. Calculates the total amount of the repayment share in a period for an investment with constant interest rate.\n"
-"itemlist.text"
-msgid "Cumulative Capital. Calculates the total amount of the repayment share in a period for an investment with constant interest rate."
-msgstr "Kumuliertes Kapital. Berechnet den Gesamtbetrag der Tilgungsanteile in einem Zeitraum für eine Investition bei konstantem Zinssatz."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_PRINC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_PRINC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The rate of interest per period.\n"
-"itemlist.text"
-msgid "The rate of interest per period."
-msgstr "Der Zinssatz pro Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_PRINC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"NPER\n"
-"itemlist.text"
-msgid "NPER"
-msgstr "ZZR"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_PRINC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Payment period. The total number of periods in which the annuity (pension) is paid.\n"
-"itemlist.text"
-msgid "Payment period. The total number of periods in which the annuity (pension) is paid."
-msgstr "Zahlungsziel. Die Gesamtzahl an Perioden, in denen die Raten (Renten) gezahlt werden sollen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_PRINC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"PV\n"
-"itemlist.text"
-msgid "PV"
-msgstr "BW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_PRINC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The present value. The present value or the amount the annuity is currently worth.\n"
-"itemlist.text"
-msgid "The present value. The present value or the amount the annuity is currently worth."
-msgstr "Barwert. Der derzeitige Wert oder die Menge, welche die Annuität gegenwärtig wert ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_PRINC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"S\n"
-"itemlist.text"
-msgid "S"
-msgstr "S"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_PRINC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The start period. The first period to be taken into account. S = 1 denotes the very first period.\n"
-"itemlist.text"
-msgid "The start period. The first period to be taken into account. S = 1 denotes the very first period."
-msgstr "Anfangsperiode. Die erste Periode, die berücksichtigt wird. A = 1 heißt die allererste Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_PRINC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"E\n"
-"itemlist.text"
-msgid "E"
-msgstr "E"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_PRINC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"End period. The last period to be taken into account.\n"
-"itemlist.text"
-msgid "End period. The last period to be taken into account."
-msgstr "Endperiode. Die letzte Periode, die berücksichtigt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_PRINC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_PRINC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type = 1 denotes due at the beginning of the period, = 0 at the end.\n"
-"itemlist.text"
-msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
-msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative compounded interest. Calculates the total amount of the interest share in a period for an investment with a constant interest rate.\n"
-"itemlist.text"
-msgid "Cumulative compounded interest. Calculates the total amount of the interest share in a period for an investment with a constant interest rate."
-msgstr "Kumulierte Zinseszinsen. Berechnet den Gesamtbetrag der Zinsanteile in einem Zeitraum für eine Investition bei konstantem Zinssatz."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The rate of interest per period.\n"
-"itemlist.text"
-msgid "The rate of interest per period."
-msgstr "Der Zinssatz pro Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"NPER\n"
-"itemlist.text"
-msgid "NPER"
-msgstr "ZZR"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Payment period. The total number of periods in which the annuity (pension) is paid.\n"
-"itemlist.text"
-msgid "Payment period. The total number of periods in which the annuity (pension) is paid."
-msgstr "Zahlungsziel. Die Gesamtzahl an Perioden, in denen die Raten (Renten) gezahlt werden sollen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"pv\n"
-"itemlist.text"
-msgid "pv"
-msgstr "BW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The present value. The present value or the amount the annuity is currently worth.\n"
-"itemlist.text"
-msgid "The present value. The present value or the amount the annuity is currently worth."
-msgstr "Barwert. Der derzeitige Wert oder die Menge, welche die Annuität gegenwärtig wert ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"S\n"
-"itemlist.text"
-msgid "S"
-msgstr "S"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The start period. The first period to be taken into account. S = 1 denotes the very first period.\n"
-"itemlist.text"
-msgid "The start period. The first period to be taken into account. S = 1 denotes the very first period."
-msgstr "Anfangsperiode. Die erste Periode, die berücksichtigt wird. A = 1 heißt die allererste Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"E\n"
-"itemlist.text"
-msgid "E"
-msgstr "E"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The end period. The last period to be taken into account.\n"
-"itemlist.text"
-msgid "The end period. The last period to be taken into account."
-msgstr "Endperiode. Die letzte Periode, die berücksichtigt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CUM_IPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type = 1 denotes due at the beginning of the period, = 0 at the end.\n"
-"itemlist.text"
-msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
-msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SYD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the arithmetically declining value of an asset (depreciation) for a specified period.\n"
-"itemlist.text"
-msgid "Calculates the arithmetically declining value of an asset (depreciation) for a specified period."
-msgstr "Berechnet den arithmetisch abnehmenden Wert eines Vermögenswerts (Abschreibung) für einen festgelegten Zeitraum."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SYD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cost\n"
-"itemlist.text"
-msgid "Cost"
-msgstr "AW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SYD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Acquisition costs. The initial cost of the asset.\n"
-"itemlist.text"
-msgid "Acquisition costs. The initial cost of the asset."
-msgstr "Anschaffungswert. Die Anschaffungskosten des Wirtschaftgutes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SYD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Salvage\n"
-"itemlist.text"
-msgid "Salvage"
-msgstr "RW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SYD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Salvage: The remaining value of the asset at the end of its life.\n"
-"itemlist.text"
-msgid "Salvage: The remaining value of the asset at the end of its life."
-msgstr "Restwert: Der verbleibende Wert am Ende der Nutzungsdauer."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SYD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Life\n"
-"itemlist.text"
-msgid "Life"
-msgstr "ND"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SYD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Useful life. The number of periods in the useful life of the asset.\n"
-"itemlist.text"
-msgid "Useful life. The number of periods in the useful life of the asset."
-msgstr "Nutzungsdauer. Die Anzahl der Perioden, über die das Wirtschaftsgut abgeschrieben wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SYD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Period\n"
-"itemlist.text"
-msgid "Period"
-msgstr "Periode"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SYD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Period. The depreciation period which must have the same time unit as average useful life.\n"
-"itemlist.text"
-msgid "Period. The depreciation period which must have the same time unit as average useful life."
-msgstr "Zeitraum. Die Periode der Abschreibung, welche dieselbe Zeiteinheit wie die durchschnittliche Nutzungsdauer haben muss."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SLN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the linear depreciation per period.\n"
-"itemlist.text"
-msgid "Calculates the linear depreciation per period."
-msgstr "Berechnet die lineare Abschreibung pro Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SLN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cost\n"
-"itemlist.text"
-msgid "Cost"
-msgstr "AW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SLN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Acquisition cost. The initial cost of an asset.\n"
-"itemlist.text"
-msgid "Acquisition cost. The initial cost of an asset."
-msgstr "Anschaffungswert. Die Anschaffungskosten des Wirtschaftgutes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SLN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Salvage\n"
-"itemlist.text"
-msgid "Salvage"
-msgstr "RW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SLN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Salvage: The remaining value of the asset at the end of its life.\n"
-"itemlist.text"
-msgid "Salvage: The remaining value of the asset at the end of its life."
-msgstr "Restwert: Der verbleibende Wert am Ende der Nutzungsdauer."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SLN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Life\n"
-"itemlist.text"
-msgid "Life"
-msgstr "ND"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SLN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Useful life. The number of periods in the useful life of the asset.\n"
-"itemlist.text"
-msgid "Useful life. The number of periods in the useful life of the asset."
-msgstr "Nutzungsdauer. Die Anzahl der Perioden, über die das Wirtschaftsgut abgeschrieben wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the depreciation of an asset for a specific period using the double-declining balance method or declining balance factor.\n"
-"itemlist.text"
-msgid "Calculates the depreciation of an asset for a specific period using the double-declining balance method or declining balance factor."
-msgstr "Berechnet die Abschreibung eines Vermögenswerts für einen festgelegten Zeitraum, wobei die doppelt-degressive Bilanzmethode oder der degressive Balancefaktor verwendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cost\n"
-"itemlist.text"
-msgid "Cost"
-msgstr "AW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Acquisition costs. The initial cost of the asset.\n"
-"itemlist.text"
-msgid "Acquisition costs. The initial cost of the asset."
-msgstr "Anschaffungswert. Die Anschaffungskosten des Wirtschaftgutes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Salvage\n"
-"itemlist.text"
-msgid "Salvage"
-msgstr "RW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Salvage: The remaining value of the asset at the end of its life.\n"
-"itemlist.text"
-msgid "Salvage: The remaining value of the asset at the end of its life."
-msgstr "Restwert: Der verbleibende Wert am Ende der Nutzungsdauer."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Life\n"
-"itemlist.text"
-msgid "Life"
-msgstr "ND"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Useful life. The number of periods in the useful life of the asset.\n"
-"itemlist.text"
-msgid "Useful life. The number of periods in the useful life of the asset."
-msgstr "Nutzungsdauer. Die Anzahl der Perioden, über die das Wirtschaftsgut abgeschrieben wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Period\n"
-"itemlist.text"
-msgid "Period"
-msgstr "Periode"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Period. The depreciation period in the same time unit as the average useful life entry.\n"
-"itemlist.text"
-msgid "Period. The depreciation period in the same time unit as the average useful life entry."
-msgstr "Periode. Die Periode der Abschreibung in derselben Zeiteinheit wie die durchschnittliche Nutzungsdauer."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Factor\n"
-"itemlist.text"
-msgid "Factor"
-msgstr "FA"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Factor. The factor for balance decline. F = 2 means a double declining balance factor\n"
-"itemlist.text"
-msgid "Factor. The factor for balance decline. F = 2 means a double declining balance factor"
-msgstr "Faktor. Der Faktor für den Balancerückgang. F = 2 heißt doppelt-degressiver Balancefaktor."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the real depreciation of an asset for a specified period using the fixed-declining balance method.\n"
-"itemlist.text"
-msgid "Returns the real depreciation of an asset for a specified period using the fixed-declining balance method."
-msgstr "Berechnet die geometrisch-degressive Abschreibung für eine bestimmte Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cost\n"
-"itemlist.text"
-msgid "Cost"
-msgstr "AW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Acquisition costs: The initial cost of the asset.\n"
-"itemlist.text"
-msgid "Acquisition costs: The initial cost of the asset."
-msgstr "Anschaffungswert: Die Anschaffungskosten des Wirtschaftsgutes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Salvage\n"
-"itemlist.text"
-msgid "Salvage"
-msgstr "RW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Salvage: The remaining value of the asset at the end of its life.\n"
-"itemlist.text"
-msgid "Salvage: The remaining value of the asset at the end of its life."
-msgstr "Restwert: Der verbleibende Wert am Ende der Nutzungsdauer."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Life\n"
-"itemlist.text"
-msgid "Life"
-msgstr "ND"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Useful life. The number of periods in the useful life of the asset.\n"
-"itemlist.text"
-msgid "Useful life. The number of periods in the useful life of the asset."
-msgstr "Nutzungsdauer. Die Anzahl der Perioden, über die das Wirtschaftsgut abgeschrieben wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Period\n"
-"itemlist.text"
-msgid "Period"
-msgstr "Periode"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Periods: The period for which the depreciation is calculated. The time unit used for period must be the same as that for the useful life.\n"
-"itemlist.text"
-msgid "Periods: The period for which the depreciation is calculated. The time unit used for period must be the same as that for the useful life."
-msgstr "Periode: Die Periode, für welche die Abschreibung berechnet wird. Die benutzte Zeiteinheit für die Periode muss dieselbe sein wie die für die Nutzungsdauer."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"month\n"
-"itemlist.text"
-msgid "month"
-msgstr "Monat"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Months: The number of months in the first year of depreciation.\n"
-"itemlist.text"
-msgid "Months: The number of months in the first year of depreciation."
-msgstr "Monate: Die Anzahl der Monate im ersten Jahr der Abschreibung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Variable declining balance. Returns the declining balance depreciation for a particular period.\n"
-"itemlist.text"
-msgid "Variable declining balance. Returns the declining balance depreciation for a particular period."
-msgstr "Variable declining balance. Berechnet die arithmetisch-degressive Abschreibung für eine bestimmte Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cost\n"
-"itemlist.text"
-msgid "Cost"
-msgstr "AW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cost. The initial cost of the asset.\n"
-"itemlist.text"
-msgid "Cost. The initial cost of the asset."
-msgstr "Anschaffungswert. Die Anschaffungskosten des Wirtschaftgutes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Salvage\n"
-"itemlist.text"
-msgid "Salvage"
-msgstr "RW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Salvage. The salvage value of an asset at the end of its useful life.\n"
-"itemlist.text"
-msgid "Salvage. The salvage value of an asset at the end of its useful life."
-msgstr "Restwert. Der verbleibende Wert am Ende der Nutzungsdauer."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Life\n"
-"itemlist.text"
-msgid "Life"
-msgstr "ND"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Useful life. The number of periods in the useful life of the asset.\n"
-"itemlist.text"
-msgid "Useful life. The number of periods in the useful life of the asset."
-msgstr "Nutzungsdauer. Die Anzahl der Perioden, über die das Wirtschaftsgut abgeschrieben wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"S\n"
-"itemlist.text"
-msgid "S"
-msgstr "S"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Start. The first period for depreciation in the same time unit as the useful life.\n"
-"itemlist.text"
-msgid "Start. The first period for depreciation in the same time unit as the useful life."
-msgstr "Anfang. Die erste Periode der Abschreibung in derselben Zeiteinheit wie die Nutzungsdauer."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"end\n"
-"itemlist.text"
-msgid "end"
-msgstr "Ende"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"End. The last period of the depreciation using the same time unit as for the useful life.\n"
-"itemlist.text"
-msgid "End. The last period of the depreciation using the same time unit as for the useful life."
-msgstr "Ende. Die letzte Periode der Abschreibung in derselben Zeiteinheit wie die Nutzungsdauer."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Factor\n"
-"itemlist.text"
-msgid "Factor"
-msgstr "FA"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Factor. The factor for the reduction of the depreciation. F = 2 denotes double rate depreciation.\n"
-"itemlist.text"
-msgid "Factor. The factor for the reduction of the depreciation. F = 2 denotes double rate depreciation."
-msgstr "Faktor. Der Faktor für die Abnahme der Abschreibung. F = 2 heißt Doppelraten-Abschreibung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VBD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Do not alter. Type = 1 denotes switch to linear depreciation, type = 0 do not switch.\n"
-"itemlist.text"
-msgid "Do not alter. Type = 1 denotes switch to linear depreciation, type = 0 do not switch."
-msgstr "Nicht wechseln. Art = 1 heißt Umschalten auf lineare Abschreibung, Art = 0 heißt kein Umschalten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EFFECT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the annual net interest rate for a nominal interest rate.\n"
-"itemlist.text"
-msgid "Calculates the annual net interest rate for a nominal interest rate."
-msgstr "Berechnet die jährliche Effektivverzinsung zu einer Nominalverzinsung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EFFECT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"NOM\n"
-"itemlist.text"
-msgid "NOM"
-msgstr "NZ"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EFFECT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Nominal Interest\n"
-"itemlist.text"
-msgid "Nominal Interest"
-msgstr "Nominalverzinsung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EFFECT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"P\n"
-"itemlist.text"
-msgid "P"
-msgstr "P"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EFFECT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Periods. The number of interest payments per year.\n"
-"itemlist.text"
-msgid "Periods. The number of interest payments per year."
-msgstr "Perioden. Die Anzahl der Zinszahlungen pro Jahr."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NOMINAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the yearly nominal interest rate as an effective interest rate.\n"
-"itemlist.text"
-msgid "Calculates the yearly nominal interest rate as an effective interest rate."
-msgstr "Berechnet die jährlichen Nominalzinsen zu einer Effektivverzinsung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NOMINAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"effect_rate\n"
-"itemlist.text"
-msgid "effect_rate"
-msgstr "EZ"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NOMINAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The effective interest rate\n"
-"itemlist.text"
-msgid "The effective interest rate"
-msgstr "Effektiver Zinssatz"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NOMINAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"npery\n"
-"itemlist.text"
-msgid "npery"
-msgstr "npery"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NOMINAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Periods. The number of interest payment per year.\n"
-"itemlist.text"
-msgid "Periods. The number of interest payment per year."
-msgstr "Perioden. Die Anzahl der Zinszahlungen pro Jahr."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Net present value. Calculates the net present value of an investment based on a series of periodic payments and a discount rate.\n"
-"itemlist.text"
-msgid "Net present value. Calculates the net present value of an investment based on a series of periodic payments and a discount rate."
-msgstr "Nettobarwert. Berechnet den Kapitalwert einer Investition auf Basis eines Abzinsungsfaktors bei periodischen Zahlungen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"RATE\n"
-"itemlist.text"
-msgid "RATE"
-msgstr "ZINS"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The rate of discount for one period.\n"
-"itemlist.text"
-msgid "The rate of discount for one period."
-msgstr "Der Abzinsungssatz für eine Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value \n"
-"itemlist.text"
-msgid "value "
-msgstr "Wert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NPV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value 1, value 2,... are 1 to 30 arguments representing payments and income.\n"
-"itemlist.text"
-msgid "Value 1, value 2,... are 1 to 30 arguments representing payments and income."
-msgstr "Wert 1, Wert 2, ... sind 1 bis 30 Werte für Zahlungen und Einnahmen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IRR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the actuarial rate of interest of an investment excluding costs or profits.\n"
-"itemlist.text"
-msgid "Returns the actuarial rate of interest of an investment excluding costs or profits."
-msgstr "Berechnet den internen Zinsfuß einer Investition ohne Kosten oder Gewinne."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IRR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values\n"
-"itemlist.text"
-msgid "Values"
-msgstr "Werte"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IRR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"An array or reference to cells whose contents correspond to the payments. \n"
-"itemlist.text"
-msgid "An array or reference to cells whose contents correspond to the payments. "
-msgstr "Matrix oder Zellbezug auf Zellen, deren Inhalt den Zahlungen entsprechen. "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IRR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Guess\n"
-"itemlist.text"
-msgid "Guess"
-msgstr "SW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IRR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Guess. An estimated value of the rate of return to be used for the iteration calculation.\n"
-"itemlist.text"
-msgid "Guess. An estimated value of the rate of return to be used for the iteration calculation."
-msgstr "Schätzwert. Startwert des Zinsfußes für das Iterationsverfahren."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIRR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the modified internal rate of return for a series of investments.\n"
-"itemlist.text"
-msgid "Returns the modified internal rate of return for a series of investments."
-msgstr "Berechnet den modifizierten internen Zinsfuß einer Reihe von Investitionen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIRR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values\n"
-"itemlist.text"
-msgid "Values"
-msgstr "Werte"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIRR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"An array or reference to cells whose contents correspond to the payments.\n"
-"itemlist.text"
-msgid "An array or reference to cells whose contents correspond to the payments."
-msgstr "Matrix oder Zellbezug auf Zellen, deren Inhalt den Zahlungen entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIRR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"investment\n"
-"itemlist.text"
-msgid "investment"
-msgstr "Investition"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIRR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Interest rate for investments (the negative values in the array).\n"
-"itemlist.text"
-msgid "Interest rate for investments (the negative values in the array)."
-msgstr "Zinsfuß der Investitionen (die negativen Werte der Matrix)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIRR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"reinvest_rate\n"
-"itemlist.text"
-msgid "reinvest_rate"
-msgstr "Reinvestition"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIRR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"interest rate for reinvestments (the positive values in the array).\n"
-"itemlist.text"
-msgid "interest rate for reinvestments (the positive values in the array)."
-msgstr "Zinsfuß der Reinvestitionen (die positiven Werte der Matrix)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ISPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the amount of interest for constant amortization rates.\n"
-"itemlist.text"
-msgid "Returns the amount of interest for constant amortization rates."
-msgstr "Berechnet die Höhe der Zinsen bei gleich bleibenden Tilgungsraten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ISPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"rate\n"
-"itemlist.text"
-msgid "rate"
-msgstr "Zins"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ISPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Interest rate for a single amortization rate.\n"
-"itemlist.text"
-msgid "Interest rate for a single amortization rate."
-msgstr "Zinssatz für eine Tilgungsrate."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ISPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Period\n"
-"itemlist.text"
-msgid "Period"
-msgstr "Periode"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ISPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number of amortization periods for the calculation of the interest.\n"
-"itemlist.text"
-msgid "Number of amortization periods for the calculation of the interest."
-msgstr "Anzahl der Tilgungszeiträume für die Berechnung der Zinsen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ISPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"total_periods\n"
-"itemlist.text"
-msgid "total_periods"
-msgstr "Gesamt_Zeitraum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ISPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Sum total of amortization periods.\n"
-"itemlist.text"
-msgid "Sum total of amortization periods."
-msgstr "Gesamtanzahl der Tilgungszeiträume."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ISPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"invest\n"
-"itemlist.text"
-msgid "invest"
-msgstr "Invest"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ISPMT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Amount of the investment.\n"
-"itemlist.text"
-msgid "Amount of the investment."
-msgstr "Betrag der Investition."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PDURATION+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Duration. Calculates the number of periods required by an investment to attain the desired value.\n"
-"itemlist.text"
-msgid "Duration. Calculates the number of periods required by an investment to attain the desired value."
-msgstr "Laufzeit. Berechnet die Anzahl der Perioden, die eine Investition benötigt, um auf einen angestrebten Wert zu kommen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PDURATION+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"RATE\n"
-"itemlist.text"
-msgid "RATE"
-msgstr "ZINS"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PDURATION+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The constant rate of interest.\n"
-"itemlist.text"
-msgid "The constant rate of interest."
-msgstr "Der konstante Zinsatz."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PDURATION+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"pv\n"
-"itemlist.text"
-msgid "pv"
-msgstr "BW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PDURATION+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The present value. The current value of the investment.\n"
-"itemlist.text"
-msgid "The present value. The current value of the investment."
-msgstr "Barwert. Der momentane Wert der Investition."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PDURATION+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"FV\n"
-"itemlist.text"
-msgid "FV"
-msgstr "ZW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PDURATION+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The future value of the investment.\n"
-"itemlist.text"
-msgid "The future value of the investment."
-msgstr "Zukünftiger Wert der Investition."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RRI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Interest. Calculates the interest rate which represents the rate of return from an investment.\n"
-"itemlist.text"
-msgid "Interest. Calculates the interest rate which represents the rate of return from an investment."
-msgstr "Zins. Berechnet den Zinssatz, der die Rendite aus einer Investition darstellt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RRI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"P\n"
-"itemlist.text"
-msgid "P"
-msgstr "P"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RRI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of periods used in the calculation.\n"
-"itemlist.text"
-msgid "The number of periods used in the calculation."
-msgstr "Anzahl der Perioden für die Berechnung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RRI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"pv\n"
-"itemlist.text"
-msgid "pv"
-msgstr "BW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RRI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Present value. The current value of the investment.\n"
-"itemlist.text"
-msgid "Present value. The current value of the investment."
-msgstr "Barwert. Der momentane Wert der Investition."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RRI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"FV\n"
-"itemlist.text"
-msgid "FV"
-msgstr "ZW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RRI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The future value of the investment.\n"
-"itemlist.text"
-msgid "The future value of the investment."
-msgstr "Zukünftiger Wert der Investition."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_REF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if value is a reference.\n"
-"itemlist.text"
-msgid "Returns TRUE if value is a reference."
-msgstr "Liefert WAHR, wenn der Wert ein Bezug ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_REF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_REF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be tested.\n"
-"itemlist.text"
-msgid "The value to be tested."
-msgstr "Der Wert, der geprüft werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_ERR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if the value is an error value not equal to #N/A.\n"
-"itemlist.text"
-msgid "Returns TRUE if the value is an error value not equal to #N/A."
-msgstr "Liefert WAHR, wenn der Wert ein Fehlerwert ungleich #NV ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_ERR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_ERR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be tested.\n"
-"itemlist.text"
-msgid "The value to be tested."
-msgstr "Der Wert, der geprüft werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_ERROR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if the value is an error value.\n"
-"itemlist.text"
-msgid "Returns TRUE if the value is an error value."
-msgstr "Liefert WAHR, wenn der Wert ein Fehlerwert ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_ERROR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_ERROR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be tested.\n"
-"itemlist.text"
-msgid "The value to be tested."
-msgstr "Der Wert, der geprüft werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_EMPTY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if value refers to an empty cell.\n"
-"itemlist.text"
-msgid "Returns TRUE if value refers to an empty cell."
-msgstr "Liefert WAHR, wenn der Wert ein Bezug auf eine leere Zelle ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_EMPTY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_EMPTY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be tested.\n"
-"itemlist.text"
-msgid "The value to be tested."
-msgstr "Der Wert, der geprüft werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_LOGICAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if the value carries a logical number format.\n"
-"itemlist.text"
-msgid "Returns TRUE if the value carries a logical number format."
-msgstr "Liefert WAHR, wenn der Wert ein logisches Zahlenformat trägt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_LOGICAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_LOGICAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be tested.\n"
-"itemlist.text"
-msgid "The value to be tested."
-msgstr "Der Wert, der geprüft werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_NV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if value equals #N/A.\n"
-"itemlist.text"
-msgid "Returns TRUE if value equals #N/A."
-msgstr "Liefert WAHR, wenn der Wert gleich #NV ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_NV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_NV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be tested.\n"
-"itemlist.text"
-msgid "The value to be tested."
-msgstr "Der Wert, der geprüft werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_NON_STRING+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if the value is not text.\n"
-"itemlist.text"
-msgid "Returns TRUE if the value is not text."
-msgstr "Liefert WAHR, wenn der Wert kein Text ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_NON_STRING+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_NON_STRING+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be tested.\n"
-"itemlist.text"
-msgid "The value to be tested."
-msgstr "Der Wert, der geprüft werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_STRING+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if value is text.\n"
-"itemlist.text"
-msgid "Returns TRUE if value is text."
-msgstr "Liefert WAHR, wenn der Wert ein Text ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_STRING+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_STRING+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be tested.\n"
-"itemlist.text"
-msgid "The value to be tested."
-msgstr "Der Wert, der geprüft werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if value is a number.\n"
-"itemlist.text"
-msgid "Returns TRUE if value is a number."
-msgstr "Liefert WAHR, wenn der Wert eine Zahl ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be tested.\n"
-"itemlist.text"
-msgid "The value to be tested."
-msgstr "Der Wert, der geprüft werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_FORMULA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if the cell is a formula cell.\n"
-"itemlist.text"
-msgid "Returns TRUE if the cell is a formula cell."
-msgstr "Liefert WAHR, wenn die Zelle eine Formelzelle ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_FORMULA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"reference\n"
-"itemlist.text"
-msgid "reference"
-msgstr "Bezug"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_FORMULA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The cell to be checked.\n"
-"itemlist.text"
-msgid "The cell to be checked."
-msgstr "Die Zelle, die überprüft werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORMULA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the formula of a formula cell.\n"
-"itemlist.text"
-msgid "Returns the formula of a formula cell."
-msgstr "Liefert die Formel einer Formelzelle."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORMULA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Reference\n"
-"itemlist.text"
-msgid "Reference"
-msgstr "Bezug"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORMULA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The formula cell.\n"
-"itemlist.text"
-msgid "The formula cell."
-msgstr "Die Formelzelle."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_N+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts a value to a number.\n"
-"itemlist.text"
-msgid "Converts a value to a number."
-msgstr "Wandelt einen Wert in eine Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_N+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_N+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be interpreted as a number.\n"
-"itemlist.text"
-msgid "The value to be interpreted as a number."
-msgstr "Der Wert, der als Zahl interpretiert wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NO_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Not available. Returns the error value #N/A.\n"
-"itemlist.text"
-msgid "Not available. Returns the error value #N/A."
-msgstr "Nicht verfügbar. Setzt eine Zelle auf den Fehlerwert #NV."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TYPE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the data type of a value (1 = number, 2 = text, 4 = Boolean value, 8 = formula, 16 = error value, 64 = array).\n"
-"itemlist.text"
-msgid "Returns the data type of a value (1 = number, 2 = text, 4 = Boolean value, 8 = formula, 16 = error value, 64 = array)."
-msgstr "Gibt den Datentyp eines Werts zurück (1 = Zahl, 2 = Text, 4 = Boolescher Wert, 8 = Formel, 16 = Fehlerwert , 64 = Matrix)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TYPE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TYPE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the data type is to be determined.\n"
-"itemlist.text"
-msgid "The value for which the data type is to be determined."
-msgstr "Der Wert, dessen Datentyp bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CELL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Determines information about address, formatting or contents of a cell.\n"
-"itemlist.text"
-msgid "Determines information about address, formatting or contents of a cell."
-msgstr "Ermittelt Informationen über Adresse, Formatierung oder Inhalt einer Zelle."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CELL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"info_type\n"
-"itemlist.text"
-msgid "info_type"
-msgstr "Infotyp"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CELL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"String that specifies the type of information.\n"
-"itemlist.text"
-msgid "String that specifies the type of information."
-msgstr "Zeichenkette, welche die Art der Information bestimmt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CELL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Reference\n"
-"itemlist.text"
-msgid "Reference"
-msgstr "Bezug"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CELL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The position of the cell you want to examine.\n"
-"itemlist.text"
-msgid "The position of the cell you want to examine."
-msgstr "Die Position der zu untersuchenden Zelle."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CURRENT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the current value of the formula at the present location. \n"
-"itemlist.text"
-msgid "Calculates the current value of the formula at the present location. "
-msgstr "Ermittelt den aktuellen Wert der Formel an der Position, an der diese Funktion steht. "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FALSE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the logical value as FALSE.\n"
-"itemlist.text"
-msgid "Defines the logical value as FALSE."
-msgstr "Setzt den Wahrheitswert FALSCH."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NOT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Reverses the value of the argument.\n"
-"itemlist.text"
-msgid "Reverses the value of the argument."
-msgstr "Kehrt den Wert des Argumentes um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NOT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Logical value\n"
-"itemlist.text"
-msgid "Logical value"
-msgstr "Wahrheitswert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NOT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"An expression that can be either TRUE or FALSE.\n"
-"itemlist.text"
-msgid "An expression that can be either TRUE or FALSE."
-msgstr "Ein Ausdruck, der WAHR oder FALSCH annehmen kann."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the logical value TRUE.\n"
-"itemlist.text"
-msgid "Returns the logical value TRUE."
-msgstr "Setzt den Wahrheitswert WAHR."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Specifies a logical test to be performed.\n"
-"itemlist.text"
-msgid "Specifies a logical test to be performed."
-msgstr "Gibt eine Wahrheitsprüfung an, die durchgeführt werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Test\n"
-"itemlist.text"
-msgid "Test"
-msgstr "Prüfung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Any value or expression which can be either TRUE or FALSE.\n"
-"itemlist.text"
-msgid "Any value or expression which can be either TRUE or FALSE."
-msgstr "Ein beliebiger Wert oder Ausdruck, der WAHR oder FALSCH sein kann."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Then_value\n"
-"itemlist.text"
-msgid "Then_value"
-msgstr "Dann_Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The result of the function if the logical test returns a TRUE.\n"
-"itemlist.text"
-msgid "The result of the function if the logical test returns a TRUE."
-msgstr "Das Ergebnis der Funktion, wenn die Wahrheitsprüfung WAHR ergibt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Otherwise_value\n"
-"itemlist.text"
-msgid "Otherwise_value"
-msgstr "Sonst_Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The result of the function if the logical test returns FALSE.\n"
-"itemlist.text"
-msgid "The result of the function if the logical test returns FALSE."
-msgstr "Das Ergebnis der Funktion, wenn die Wahrheitsprüfung FALSCH ergibt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF_ERROR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns value if not an error value, else alternative.\n"
-"itemlist.text"
-msgid "Returns value if not an error value, else alternative."
-msgstr "Liefert einen Wert zurück, wenn es kein Fehlerwert ist, ansonsten den Alternativwert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF_ERROR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF_ERROR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be calculated.\n"
-"itemlist.text"
-msgid "The value to be calculated."
-msgstr "Der zu berechnende Wert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF_ERROR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alternative value\n"
-"itemlist.text"
-msgid "alternative value"
-msgstr "Alternativer Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF_ERROR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The alternative to be returned, should value be an error value.\n"
-"itemlist.text"
-msgid "The alternative to be returned, should value be an error value."
-msgstr "Der Alternativwert, der zurückgeliefert wird, wenn ein Wert ein Fehlerwert ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF_NA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns value if not a #N/A error, else alternative.\n"
-"itemlist.text"
-msgid "Returns value if not a #N/A error, else alternative."
-msgstr "Liefert einen Wert zurück, wenn kein #NV-Fehler vorliegt, ansonsten den Alternativwert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF_NA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF_NA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be calculated.\n"
-"itemlist.text"
-msgid "The value to be calculated."
-msgstr "Der zu berechnende Wert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF_NA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alternative value\n"
-"itemlist.text"
-msgid "alternative value"
-msgstr "Alternativer Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IF_NA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The alternative to be returned, should value be a #N/A error.\n"
-"itemlist.text"
-msgid "The alternative to be returned, should value be a #N/A error."
-msgstr "Der Alternativwert, der zurückgeliefert wird, wenn ein #NV-Fehler vorliegt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if an argument is TRUE.\n"
-"itemlist.text"
-msgid "Returns TRUE if an argument is TRUE."
-msgstr "Setzt WAHR, wenn ein Argument WAHR ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Logical value \n"
-"itemlist.text"
-msgid "Logical value "
-msgstr "Wahrheitswert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Logical value 1, logical value 2,... are 1 to 30 conditions to be tested and which return either TRUE or FALSE.\n"
-"itemlist.text"
-msgid "Logical value 1, logical value 2,... are 1 to 30 conditions to be tested and which return either TRUE or FALSE."
-msgstr "Wahrheitswert 1, Wahrheitswert 2, ... sind 1 bis 30 Bedingungen, die überprüft werden sollen und jeweils entweder WAHR oder FALSCH liefern."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_XOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if an odd number of arguments evaluates to TRUE.\n"
-"itemlist.text"
-msgid "Returns TRUE if an odd number of arguments evaluates to TRUE."
-msgstr "Gibt WAHR zurück, wenn eine ungerade Anzahl an Argumenten WAHR ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_XOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Logical value \n"
-"itemlist.text"
-msgid "Logical value "
-msgstr "Wahrheitswert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_XOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Logical value 1, logical value 2, ... are 1 to 30 conditions to be tested and which return either TRUE or FALSE.\n"
-"itemlist.text"
-msgid "Logical value 1, logical value 2, ... are 1 to 30 conditions to be tested and which return either TRUE or FALSE."
-msgstr "Wahrheitswert 1, Wahrheitswert 2, ... sind 1 bis 30 Bedingungen, die überprüft werden sollen und jeweils entweder WAHR oder FALSCH liefern."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if all arguments are TRUE.\n"
-"itemlist.text"
-msgid "Returns TRUE if all arguments are TRUE."
-msgstr "Setzt WAHR, wenn alle Argumente WAHR sind."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Logical value \n"
-"itemlist.text"
-msgid "Logical value "
-msgstr "Wahrheitswert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Logical value 1, logical value 2;...are 1 to 30 conditions to be tested and each returns either TRUE or FALSE.\n"
-"itemlist.text"
-msgid "Logical value 1, logical value 2;...are 1 to 30 conditions to be tested and each returns either TRUE or FALSE."
-msgstr "Wahrheitswert 1, Wahrheitswert 2, ... sind 1 bis 30 Bedingungen, die überprüft werden sollen und jeweils entweder WAHR oder FALSCH liefern."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ABS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Absolute value of a number.\n"
-"itemlist.text"
-msgid "Absolute value of a number."
-msgstr "Berechnet den Betrag (Absolutwert) einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ABS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ABS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number whose absolute value is to be returned.\n"
-"itemlist.text"
-msgid "The number whose absolute value is to be returned."
-msgstr "Die Zahl, deren Absolutwert berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POWER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a^b, base a raised to the power of exponent b.\n"
-"itemlist.text"
-msgid "Returns a^b, base a raised to the power of exponent b."
-msgstr "Liefert a^b, die Potenz für Basis a hoch Exponent b."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POWER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Base\n"
-"itemlist.text"
-msgid "Base"
-msgstr "Basis"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POWER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The base a of the power a^b.\n"
-"itemlist.text"
-msgid "The base a of the power a^b."
-msgstr "Die Basis der Potenz a^b."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POWER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Exponent\n"
-"itemlist.text"
-msgid "Exponent"
-msgstr "Exponent"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POWER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The exponent b of the power a^b.\n"
-"itemlist.text"
-msgid "The exponent b of the power a^b."
-msgstr "Der Exponent b der Potenz a^b."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_EMPTY_CELLS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Counts the blank cells in a specified range.\n"
-"itemlist.text"
-msgid "Counts the blank cells in a specified range."
-msgstr "Zählt die leeren Zellen in einem Bereich."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_EMPTY_CELLS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"range\n"
-"itemlist.text"
-msgid "range"
-msgstr "Bereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_EMPTY_CELLS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range in which empty cells are to be counted.\n"
-"itemlist.text"
-msgid "The range in which empty cells are to be counted."
-msgstr "Bereich in dem leere Zellen gezählt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the value of the number Pi.\n"
-"itemlist.text"
-msgid "Returns the value of the number Pi."
-msgstr "Liefert den Wert der Zahl Pi."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the sum of all arguments.\n"
-"itemlist.text"
-msgid "Returns the sum of all arguments."
-msgstr "Summiert die Argumente."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 arguments whose total is to be calculated.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 arguments whose total is to be calculated."
-msgstr "Zahl 1;Zahl 2;... sind 1 bis 30 Argumente, deren Summe berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_SQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the sum of the squares of the arguments.\n"
-"itemlist.text"
-msgid "Returns the sum of the squares of the arguments."
-msgstr "Summiert die Quadrate der Argumente."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_SQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_SQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2,... are 1 to 30 arguments for which the sum of the squares is to be calculated.\n"
-"itemlist.text"
-msgid "Number 1, number 2,... are 1 to 30 arguments for which the sum of the squares is to be calculated."
-msgstr "Zahl 1;Zahl 2;... sind 1 bis 30 Argumente, deren Quadratesumme berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PRODUCT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Multiplies the arguments.\n"
-"itemlist.text"
-msgid "Multiplies the arguments."
-msgstr "Multipliziert die Argumente."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PRODUCT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number \n"
-"itemlist.text"
-msgid "Number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PRODUCT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 arguments to be multiplied and a result returned.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 arguments to be multiplied and a result returned."
-msgstr "Zahl 1;Zahl 2;... sind 1 bis 30 Argumente, deren Produkt berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Totals the arguments that meet the condition.\n"
-"itemlist.text"
-msgid "Totals the arguments that meet the condition."
-msgstr "Summiert die Argumente, die der Bedingung genügen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"range\n"
-"itemlist.text"
-msgid "range"
-msgstr "Bereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range to be evaluated by the criteria given.\n"
-"itemlist.text"
-msgid "The range to be evaluated by the criteria given."
-msgstr "Der Bereich, auf den die Bedingung angewendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"criteria\n"
-"itemlist.text"
-msgid "criteria"
-msgstr "Bedingung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The criteria to be applied to the range.\n"
-"itemlist.text"
-msgid "The criteria to be applied to the range."
-msgstr "Die Bedingung, die auf einen Bereich angewendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"sum_range\n"
-"itemlist.text"
-msgid "sum_range"
-msgstr "Summenbereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range from which the values are to be totalled.\n"
-"itemlist.text"
-msgid "The range from which the values are to be totalled."
-msgstr "Bereich, aus dem die Werte summiert werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Averages the arguments that meet the conditions.\n"
-"itemlist.text"
-msgid "Averages the arguments that meet the conditions."
-msgstr "Berechnet den Mittelwert der Argumente, welche die Bedingung erfüllen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"range\n"
-"itemlist.text"
-msgid "range"
-msgstr "Bereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range to be evaluated by the criteria given.\n"
-"itemlist.text"
-msgid "The range to be evaluated by the criteria given."
-msgstr "Der Bereich, auf den die vorgegebene Bedingung angewendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"criteria\n"
-"itemlist.text"
-msgid "criteria"
-msgstr "Bedingung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The criteria to be applied to the range.\n"
-"itemlist.text"
-msgid "The criteria to be applied to the range."
-msgstr "Die Bedingung, die auf den Bereich angewendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"average_range\n"
-"itemlist.text"
-msgid "average_range"
-msgstr "Mittelwertbereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range from which the values are to be averaged.\n"
-"itemlist.text"
-msgid "The range from which the values are to be averaged."
-msgstr "Der Bereich, für den die Mittelwerte berechnet werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Totals the values of cells in a range that meet multiple criteria in multiple ranges.\n"
-"itemlist.text"
-msgid "Totals the values of cells in a range that meet multiple criteria in multiple ranges."
-msgstr "Summiert die Werte der Zellen in einem Bereich, die mehrere Bedingungen in mehreren Bereichen erfüllen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"sum_range\n"
-"itemlist.text"
-msgid "sum_range"
-msgstr "Summenbereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range from which the values are to be totalled.\n"
-"itemlist.text"
-msgid "The range from which the values are to be totalled."
-msgstr "Bereich, aus dem die Werte summiert werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"range \n"
-"itemlist.text"
-msgid "range "
-msgstr "Bereich "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Range 1, range 2,... are the ranges to be evaluated by the criteria given.\n"
-"itemlist.text"
-msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given."
-msgstr "Bereich 1, Bereich 2,... sind die Bereiche, die mittels der vorgegebenen Bedingungen beurteilt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"criteria \n"
-"itemlist.text"
-msgid "criteria "
-msgstr "Bedingung "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.\n"
-"itemlist.text"
-msgid "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given."
-msgstr "Bedingung 1, Bedingung 2,... sind die Bedingungen, welche auf den angegebenen Bereich angewendet werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Averages the value of the cells that meet multiple criteria in multiple ranges.\n"
-"itemlist.text"
-msgid "Averages the value of the cells that meet multiple criteria in multiple ranges."
-msgstr "Berechnet den Mittelwert der Zellen, auf die mehrere Bedingungen in mehreren Bereichen zutreffen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"average_range\n"
-"itemlist.text"
-msgid "average_range"
-msgstr "Mittelwertbereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range from which the values are to be averaged.\n"
-"itemlist.text"
-msgid "The range from which the values are to be averaged."
-msgstr "Bereich, für den die Mittelwerte berechnet werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"range \n"
-"itemlist.text"
-msgid "range "
-msgstr "Bereich "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Range 1, range 2,... are the ranges to be evaluated by the criteria given.\n"
-"itemlist.text"
-msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given."
-msgstr "Bereich 1, Bereich 2,... sind die Bereiche, auf welche die vorgegebenen Bedingungen angewendet werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"criteria \n"
-"itemlist.text"
-msgid "criteria "
-msgstr "Bedingung "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.\n"
-"itemlist.text"
-msgid "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given."
-msgstr "Bedingung 1, Bedingung 2,... sind die Bedingungen, welche auf die vorgegebenen Bereiche angewendet werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Counts the cells that meet multiple criteria in multiple ranges.\n"
-"itemlist.text"
-msgid "Counts the cells that meet multiple criteria in multiple ranges."
-msgstr "Zählt die Zellen, auf die mehrere Bedingungen in mehreren Bereichen zutreffen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"range \n"
-"itemlist.text"
-msgid "range "
-msgstr "Bereich "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Range 1, range 2,... are the ranges to be evaluated by the criteria given.\n"
-"itemlist.text"
-msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given."
-msgstr "Bereich 1, Bereich 2,... sind die Bereiche, die mittels der vorgegebenen Bedingungen beurteilt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"criteria \n"
-"itemlist.text"
-msgid "criteria "
-msgstr "Bedingung "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_IFS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.\n"
-"itemlist.text"
-msgid "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given."
-msgstr "Bedingung 1, Bedingung 2,... sind die Bedingungen, welche auf den angegebenen Bereich angewendet werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Counts the arguments which meet the set conditions.\n"
-"itemlist.text"
-msgid "Counts the arguments which meet the set conditions."
-msgstr "Zählt die Argumente, die den Bedingungen genügen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"range\n"
-"itemlist.text"
-msgid "range"
-msgstr "Bereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range of cells to be evaluated by the criteria given.\n"
-"itemlist.text"
-msgid "The range of cells to be evaluated by the criteria given."
-msgstr "Zellbereich, auf den die Bedingung angewendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"criteria\n"
-"itemlist.text"
-msgid "criteria"
-msgstr "Bedingung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_IF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The criteria to be applied to the range.\n"
-"itemlist.text"
-msgid "The criteria to be applied to the range."
-msgstr "Die Bedingung, welche auf den Bereich angewendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SQRT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the square root of a number.\n"
-"itemlist.text"
-msgid "Returns the square root of a number."
-msgstr "Berechnet die Quadratwurzel einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SQRT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SQRT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A positive value for which the square root is to be calculated.\n"
-"itemlist.text"
-msgid "A positive value for which the square root is to be calculated."
-msgstr "Ein positiver Wert, dessen Quadratwurzel berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANDOM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a random number between 0 and 1.\n"
-"itemlist.text"
-msgid "Returns a random number between 0 and 1."
-msgstr "Liefert eine Zufallszahl zwischen 0 und 1."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_EVEN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if value is an even integer.\n"
-"itemlist.text"
-msgid "Returns TRUE if value is an even integer."
-msgstr "Liefert WAHR, wenn der Wert eine gerade Zahl ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_EVEN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_EVEN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be tested.\n"
-"itemlist.text"
-msgid "The value to be tested."
-msgstr "Der Wert, der geprüft werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_ODD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns TRUE if value is an odd integer.\n"
-"itemlist.text"
-msgid "Returns TRUE if value is an odd integer."
-msgstr "Liefert WAHR, wenn der Wert eine ungerade Zahl ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_ODD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IS_ODD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be tested.\n"
-"itemlist.text"
-msgid "The value to be tested."
-msgstr "Der Wert, der geprüft werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COMBIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the number of combinations for elements without repetition.\n"
-"itemlist.text"
-msgid "Calculates the number of combinations for elements without repetition."
-msgstr "Berechnet die Anzahl der Kombinationen von Elementen ohne Wiederholung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COMBIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number_1\n"
-"itemlist.text"
-msgid "number_1"
-msgstr "Anzahl 1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COMBIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The total number of elements.\n"
-"itemlist.text"
-msgid "The total number of elements."
-msgstr "Gesamtanzahl der Elemente."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COMBIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number_2\n"
-"itemlist.text"
-msgid "number_2"
-msgstr "Anzahl 2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COMBIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of elements selected.\n"
-"itemlist.text"
-msgid "The number of elements selected."
-msgstr "Anzahl der ausgewählten Elemente."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COMBIN_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the number of combinations of elements including repetition.\n"
-"itemlist.text"
-msgid "Calculates the number of combinations of elements including repetition."
-msgstr "Berechnet die Anzahl der Kombinationen von Elementen mit Wiederholung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COMBIN_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number_1\n"
-"itemlist.text"
-msgid "number_1"
-msgstr "Anzahl 1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COMBIN_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The total number of elements.\n"
-"itemlist.text"
-msgid "The total number of elements."
-msgstr "Gesamtanzahl der Elemente."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COMBIN_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number_2\n"
-"itemlist.text"
-msgid "number_2"
-msgstr "Anzahl 2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COMBIN_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of elements selected.\n"
-"itemlist.text"
-msgid "The number of elements selected."
-msgstr "Anzahl der ausgewählten Elemente."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_COS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the arccosine of a number.\n"
-"itemlist.text"
-msgid "Returns the arccosine of a number."
-msgstr "Berechnet den Arkuskosinus einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_COS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_COS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A value between -1 and 1 for which the arccosine is to be returned.\n"
-"itemlist.text"
-msgid "A value between -1 and 1 for which the arccosine is to be returned."
-msgstr "Eine Zahl zwischen -1 und 1, deren Arkuskosinus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_SIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the arcsine of a number.\n"
-"itemlist.text"
-msgid "Returns the arcsine of a number."
-msgstr "Berechnet den Arkussinus einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_SIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_SIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A value between -1 and 1 for which the arcsine is to be returned.\n"
-"itemlist.text"
-msgid "A value between -1 and 1 for which the arcsine is to be returned."
-msgstr "Ein Wert zwischen -1 und 1, dessen Arkussinus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_COS_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the inverse hyperbolic cosine of a number.\n"
-"itemlist.text"
-msgid "Returns the inverse hyperbolic cosine of a number."
-msgstr "Berechnet den Areakosinus Hyperbolicus einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_COS_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_COS_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned.\n"
-"itemlist.text"
-msgid "A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned."
-msgstr "Ein Wert größer oder gleich 1, für den der Areakosinus Hyperbolicus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_SIN_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the inverse hyperbolic sine of a number.\n"
-"itemlist.text"
-msgid "Returns the inverse hyperbolic sine of a number."
-msgstr "Berechnet den Areasinus Hyperbolicus einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_SIN_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_SIN_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the inverse hyperbolic sine is to be returned.\n"
-"itemlist.text"
-msgid "The value for which the inverse hyperbolic sine is to be returned."
-msgstr "Der Wert, dessen Areasinus Hyperbolicus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_COT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the inverse cotangent of a number.\n"
-"itemlist.text"
-msgid "Returns the inverse cotangent of a number."
-msgstr "Berechnet den Arkuskotangens einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_COT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_COT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the inverse cotangent is to be returned.\n"
-"itemlist.text"
-msgid "The value for which the inverse cotangent is to be returned."
-msgstr "Der Wert, dessen Arkuskotangens berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_TAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the arctangent of a number.\n"
-"itemlist.text"
-msgid "Returns the arctangent of a number."
-msgstr "Berechnet den Arkustangens einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_TAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_TAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the arctangent is to be returned.\n"
-"itemlist.text"
-msgid "The value for which the arctangent is to be returned."
-msgstr "Der Wert, dessen Arkustangens berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_COT_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the inverse hyperbolic cotangent of a number.\n"
-"itemlist.text"
-msgid "Returns the inverse hyperbolic cotangent of a number."
-msgstr "Berechnet den Areakotanges Hyperbolicus einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_COT_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_COT_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned.\n"
-"itemlist.text"
-msgid "A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned."
-msgstr "Ein Wert kleiner als -1 oder größer als 1, dessen Areakotanges Hyperbolicus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_TAN_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the inverse hyperbolic tangent of a number.\n"
-"itemlist.text"
-msgid "Returns the inverse hyperbolic tangent of a number."
-msgstr "Berechnet den Areatangens Hyperbolicus einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_TAN_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_TAN_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned.\n"
-"itemlist.text"
-msgid "A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned."
-msgstr "Ein Wert zwischen -1 und 1, dessen Areatanges Hyperbolicus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the cosine of a number.\n"
-"itemlist.text"
-msgid "Returns the cosine of a number."
-msgstr "Berechnet den Kosinus einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The angle in the radians for which the cosine is to be returned.\n"
-"itemlist.text"
-msgid "The angle in the radians for which the cosine is to be returned."
-msgstr "Der Winkel im Bogenmaß, dessen Kosinus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the sine of a number.\n"
-"itemlist.text"
-msgid "Returns the sine of a number."
-msgstr "Berechnet den Sinus einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The angle in radians for which the sine is to be calculated.\n"
-"itemlist.text"
-msgid "The angle in radians for which the sine is to be calculated."
-msgstr "Der Winkel im Bogenmaß, dessen Sinus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the cotangent of a number.\n"
-"itemlist.text"
-msgid "Returns the cotangent of a number."
-msgstr "Berechnet den Kotangens einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The angle in radians whose cotangent value is to be returned.\n"
-"itemlist.text"
-msgid "The angle in radians whose cotangent value is to be returned."
-msgstr "Der Winkel im Bogenmaß, dessen Kotangens berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the tangent of a number.\n"
-"itemlist.text"
-msgid "Returns the tangent of a number."
-msgstr "Berechnet den Tangens einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The angle in radians for which the tangent is to be calculated.\n"
-"itemlist.text"
-msgid "The angle in radians for which the tangent is to be calculated."
-msgstr "Der Winkel im Bogenmaß, dessen Tangens berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COS_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the hyperbolic cosine of a number.\n"
-"itemlist.text"
-msgid "Returns the hyperbolic cosine of a number."
-msgstr "Berechnet den Kosinus Hyperbolicus einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COS_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COS_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the hyperbolic cosine is to be returned.\n"
-"itemlist.text"
-msgid "The value for which the hyperbolic cosine is to be returned."
-msgstr "Der Wert, dessen Kosinus Hyperbolicus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SIN_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the hyperbolic sine of a number.\n"
-"itemlist.text"
-msgid "Returns the hyperbolic sine of a number."
-msgstr "Berechnet den Sinus Hyperbolicus einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SIN_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SIN_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the hyperbolic sine is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the hyperbolic sine is to be calculated."
-msgstr "Der Wert, dessen Sinus Hyperbolicus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COT_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the hyperbolic cotangent of a number.\n"
-"itemlist.text"
-msgid "Returns the hyperbolic cotangent of a number."
-msgstr "Berechnet den Kotangens Hyperbolicus einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COT_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COT_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A value not equal to 0 for which the hyperbolic cotangent is to be returned.\n"
-"itemlist.text"
-msgid "A value not equal to 0 for which the hyperbolic cotangent is to be returned."
-msgstr "Ein Wert ungleich 0, dessen Kotangens Hyperbolicus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TAN_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the hyperbolic tangent of a number.\n"
-"itemlist.text"
-msgid "Returns the hyperbolic tangent of a number."
-msgstr "Berechnet den Tangens Hyperbolicus einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TAN_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TAN_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the hyperbolic tangent is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the hyperbolic tangent is to be calculated."
-msgstr "Der Wert, dessen Tangens Hyperbolicus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_TAN_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the arctangent for the specified coordinates.\n"
-"itemlist.text"
-msgid "Returns the arctangent for the specified coordinates."
-msgstr "Berechnet den Arkustangens zu den angegebenen Koordinaten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_TAN_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number_x\n"
-"itemlist.text"
-msgid "number_x"
-msgstr "Zahl_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_TAN_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for the x coordinate.\n"
-"itemlist.text"
-msgid "The value for the x coordinate."
-msgstr "Wert für die X-Koordinate."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_TAN_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number_y\n"
-"itemlist.text"
-msgid "number_y"
-msgstr "Zahl_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARC_TAN_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for the y coordinate.\n"
-"itemlist.text"
-msgid "The value for the y coordinate."
-msgstr "Wert für die Y-Koordinate."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COSECANT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Return the cosecant of an angle. CSC(x)=1/SIN(x)\n"
-"itemlist.text"
-msgid "Return the cosecant of an angle. CSC(x)=1/SIN(x)"
-msgstr "Gibt den Kosekans eines Winkels aus. COSEC(x)=1/SIN(x)"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COSECANT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Angle\n"
-"itemlist.text"
-msgid "Angle"
-msgstr "Winkel"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COSECANT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The angle in radians for which the cosecant is to be calculated.\n"
-"itemlist.text"
-msgid "The angle in radians for which the cosecant is to be calculated."
-msgstr "Der Winkel im Bogenmaß, dessen Kosekans berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SECANT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Return the secant of an angle. SEC(x)=1/COS(x)\n"
-"itemlist.text"
-msgid "Return the secant of an angle. SEC(x)=1/COS(x)"
-msgstr "Gibt den Sekans eines Winkels aus. SEC(x)=1/COS(x)"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SECANT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Angle\n"
-"itemlist.text"
-msgid "Angle"
-msgstr "Winkel"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SECANT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The angle in radians for which the secant is to be calculated.\n"
-"itemlist.text"
-msgid "The angle in radians for which the secant is to be calculated."
-msgstr "Der Winkel im Bogenmaß, dessen Sekans berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COSECANT_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Return the hyperbolic cosecant of a hyperbolic angle. CSCH(x)=1/SINH(x)\n"
-"itemlist.text"
-msgid "Return the hyperbolic cosecant of a hyperbolic angle. CSCH(x)=1/SINH(x)"
-msgstr "Berechnet den Kosekans Hyperbolicus einer Zahl. COSECHYP(x)=1/SINHYP(x)"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COSECANT_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Angle\n"
-"itemlist.text"
-msgid "Angle"
-msgstr "Winkel"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COSECANT_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The hyperbolic angle in radians for which the hyperbolic cosecant is to be calculated.\n"
-"itemlist.text"
-msgid "The hyperbolic angle in radians for which the hyperbolic cosecant is to be calculated."
-msgstr "Der Winkel im Bogenmaß, dessen Kosekans Hyperbolicus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SECANT_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Return the hyperbolic secant of a hyperbolic angle. SECH(x)=1/COSH(x)\n"
-"itemlist.text"
-msgid "Return the hyperbolic secant of a hyperbolic angle. SECH(x)=1/COSH(x)"
-msgstr "Berechnet den Sekans Hyperbolicus einer Zahl. SECHYP(x)=1/COSHYP(x)"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SECANT_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Angle\n"
-"itemlist.text"
-msgid "Angle"
-msgstr "Winkel"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SECANT_HYP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The hyperbolic angle in radians for which the hyperbolic secant is to be calculated.\n"
-"itemlist.text"
-msgid "The hyperbolic angle in radians for which the hyperbolic secant is to be calculated."
-msgstr "Der Winkel im Bogenmaß, dessen Sekans Hyperbolicus berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DEG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts a radian to degrees\n"
-"itemlist.text"
-msgid "Converts a radian to degrees"
-msgstr "Wandelt Bogenmaß (Radiant) in Grad um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DEG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DEG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The angle in a radian\n"
-"itemlist.text"
-msgid "The angle in a radian"
-msgstr "Der Winkel im Bogenmaß (Radiant)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RAD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts degrees to radians\n"
-"itemlist.text"
-msgid "Converts degrees to radians"
-msgstr "Wandelt Grad in Bogenmaß (Radiant) um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RAD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RAD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The angle in degrees.\n"
-"itemlist.text"
-msgid "The angle in degrees."
-msgstr "Der Winkel in Grad."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the exponent for basis e.\n"
-"itemlist.text"
-msgid "Calculates the exponent for basis e."
-msgstr "Berechnet die Exponentialfunktion zur Basis e."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The exponent applied to base e.\n"
-"itemlist.text"
-msgid "The exponent applied to base e."
-msgstr "Der Exponent zur Basis e."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the logarithm to any specified base.\n"
-"itemlist.text"
-msgid "Calculates the logarithm to any specified base."
-msgstr "Berechnet den Logarithmus zu einer beliebigen Basis."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A value greater than 0 for which the logarithm is to be calculated.\n"
-"itemlist.text"
-msgid "A value greater than 0 for which the logarithm is to be calculated."
-msgstr "Ein Wert größer als 0, dessen Logarithmus berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Base\n"
-"itemlist.text"
-msgid "Base"
-msgstr "Basis"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The base of the logarithm. If omitted, the base is regarded as 10.\n"
-"itemlist.text"
-msgid "The base of the logarithm. If omitted, the base is regarded as 10."
-msgstr "Die Basis für die Logarithmusberechnung. FAlls leer, wird 10 als Basis angenommen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the natural logarithm of a number.\n"
-"itemlist.text"
-msgid "Calculates the natural logarithm of a number."
-msgstr "Berechnet den natürlichen Logarithmus einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A value greater than 0 for which the natural logarithm is to be calculated.\n"
-"itemlist.text"
-msgid "A value greater than 0 for which the natural logarithm is to be calculated."
-msgstr "Ein Wert größer als 0, dessen natürlicher Logarithmus berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG10+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the base-10 logarithm of a number.\n"
-"itemlist.text"
-msgid "Calculates the base-10 logarithm of a number."
-msgstr "Berechnet den Logarithmus zu der Basis 10."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG10+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG10+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A value greater than 0 for which the logarithm is to be calculated.\n"
-"itemlist.text"
-msgid "A value greater than 0 for which the logarithm is to be calculated."
-msgstr "Ein Wert größer als 0, dessen Logarithmus berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the factorial of a number.\n"
-"itemlist.text"
-msgid "Calculates the factorial of a number."
-msgstr "Berechnet die Fakultät einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number for which the factorial is to be calculated.\n"
-"itemlist.text"
-msgid "The number for which the factorial is to be calculated."
-msgstr "Die Zahl, deren Fakultät berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MOD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the remainder of a division.\n"
-"itemlist.text"
-msgid "Calculates the remainder of a division."
-msgstr "Berechnet den Rest einer Division."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MOD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Dividend\n"
-"itemlist.text"
-msgid "Dividend"
-msgstr "Dividend"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MOD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be divided.\n"
-"itemlist.text"
-msgid "The number to be divided."
-msgstr "Die Zahl, die geteilt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MOD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Divisor\n"
-"itemlist.text"
-msgid "Divisor"
-msgstr "Divisor"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MOD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number by which the dividend is divided.\n"
-"itemlist.text"
-msgid "The number by which the dividend is divided."
-msgstr "Die Zahl, durch die geteilt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PLUS_MINUS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the algebraic sign of a number.\n"
-"itemlist.text"
-msgid "Returns the algebraic sign of a number."
-msgstr "Liefert das Vorzeichen einer Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PLUS_MINUS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PLUS_MINUS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number for which the algebraic sign is to be determined.\n"
-"itemlist.text"
-msgid "The number for which the algebraic sign is to be determined."
-msgstr "Die Zahl, deren Vorzeichen bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUB_TOTAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates subtotals in a spreadsheet.\n"
-"itemlist.text"
-msgid "Calculates subtotals in a spreadsheet."
-msgstr "Berechnet Zwischenergebnisse in einem Tabellendokument."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUB_TOTAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Function\n"
-"itemlist.text"
-msgid "Function"
-msgstr "Funktion"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUB_TOTAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Function index. Is an index of the possible functions Total, Max, ...\n"
-"itemlist.text"
-msgid "Function index. Is an index of the possible functions Total, Max, ..."
-msgstr "Funktionsindex. Ist ein Index auf die möglichen Funktion Summe, Max, ..."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUB_TOTAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"range \n"
-"itemlist.text"
-msgid "range "
-msgstr "Bereich "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUB_TOTAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The cells of the range which are to be taken into account.\n"
-"itemlist.text"
-msgid "The cells of the range which are to be taken into account."
-msgstr "Der Bereich, dessen Zellen berücksichtigt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AGGREGATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates an aggregate in a spreadsheet.\n"
-"itemlist.text"
-msgid "Calculates an aggregate in a spreadsheet."
-msgstr "Berechnet eine Gesamtheit in einem Tabellendokument."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AGGREGATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Function\n"
-"itemlist.text"
-msgid "Function"
-msgstr "Funktion"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AGGREGATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Function index. Is an index of the possible functions Total, Max, ...\n"
-"itemlist.text"
-msgid "Function index. Is an index of the possible functions Total, Max, ..."
-msgstr "Funktionsindex. Ist ein Index auf die mögliche Funktion Summe, Max, ..."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AGGREGATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Options\n"
-"itemlist.text"
-msgid "Options"
-msgstr "Option"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AGGREGATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Option index. Is an index of the possible ignore options.\n"
-"itemlist.text"
-msgid "Option index. Is an index of the possible ignore options."
-msgstr "Optionsindex. Ist ein Index, um Optionen zu ignorieren."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AGGREGATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Ref1 or array \n"
-"itemlist.text"
-msgid "Ref1 or array "
-msgstr "Bezug 1 oder Bereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AGGREGATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The cell(s) of the range which are to be taken into account.\n"
-"itemlist.text"
-msgid "The cell(s) of the range which are to be taken into account."
-msgstr "Der Bereich, dessen Zelle(n) berücksichtigt werden sollen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AGGREGATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Ref2..n or k \n"
-"itemlist.text"
-msgid "Ref2..n or k "
-msgstr "Bezug 2 ... n oder k "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AGGREGATE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The cells of the range which are to be taken into account or mandatory 2nd argument for certain functions.\n"
-"itemlist.text"
-msgid "The cells of the range which are to be taken into account or mandatory 2nd argument for certain functions."
-msgstr "Der Bereich, dessen Zellen berücksichtigt werden sollen, oder obligatorisch als zweites Argument für bestimmte Funktionen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds a number down to the nearest integer.\n"
-"itemlist.text"
-msgid "Rounds a number down to the nearest integer."
-msgstr "Rundet eine Zahl auf die nächst kleinere ganze Zahl ab."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded down.\n"
-"itemlist.text"
-msgid "The number to be rounded down."
-msgstr "Die Zahl, die abgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRUNC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Truncates the decimal places of a number.\n"
-"itemlist.text"
-msgid "Truncates the decimal places of a number."
-msgstr "Schneidet Nachkommastellen einer Zahl ab."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRUNC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRUNC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be truncated.\n"
-"itemlist.text"
-msgid "The number to be truncated."
-msgstr "Die Zahl, deren Nachkommastellen abgeschnitten werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRUNC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"count\n"
-"itemlist.text"
-msgid "count"
-msgstr "Anzahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRUNC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of places after the decimal point that are not to be truncated.\n"
-"itemlist.text"
-msgid "The number of places after the decimal point that are not to be truncated."
-msgstr "Die Anzahl der Nachkommastellen, die nicht abgeschnitten werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds a number to a predefined accuracy.\n"
-"itemlist.text"
-msgid "Rounds a number to a predefined accuracy."
-msgstr "Runden einer Zahl auf eine vorgegebene Genauigkeit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded.\n"
-"itemlist.text"
-msgid "The number to be rounded."
-msgstr "Die Zahl, die gerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"count\n"
-"itemlist.text"
-msgid "count"
-msgstr "Stellen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of places to which a number is to be rounded.\n"
-"itemlist.text"
-msgid "The number of places to which a number is to be rounded."
-msgstr "Die Anzahl der Stellen, auf die gerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND_UP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds a number up to the predefined accuracy.\n"
-"itemlist.text"
-msgid "Rounds a number up to the predefined accuracy."
-msgstr "Rundet eine Zahl auf eine vorgegebene Genauigkeit auf."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND_UP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND_UP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded up.\n"
-"itemlist.text"
-msgid "The number to be rounded up."
-msgstr "Die Zahl, die aufgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND_UP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"count\n"
-"itemlist.text"
-msgid "count"
-msgstr "Stellen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND_UP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of places to which a number is to be rounded.\n"
-"itemlist.text"
-msgid "The number of places to which a number is to be rounded."
-msgstr "Die Anzahl der Stellen, auf die gerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND_DOWN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds a number down to a predefined accuracy.\n"
-"itemlist.text"
-msgid "Rounds a number down to a predefined accuracy."
-msgstr "Rundet eine Zahl auf eine vorgegebene Genauigkeit ab."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND_DOWN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND_DOWN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded down.\n"
-"itemlist.text"
-msgid "The number to be rounded down."
-msgstr "Die Zahl, die abgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND_DOWN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"count\n"
-"itemlist.text"
-msgid "count"
-msgstr "Stellen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUND_DOWN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of places down to which a number is to be rounded.\n"
-"itemlist.text"
-msgid "The number of places down to which a number is to be rounded."
-msgstr "Die Anzahl der Stellen, auf die abgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EVEN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds a positive number up and negative number down to the nearest even integer.\n"
-"itemlist.text"
-msgid "Rounds a positive number up and negative number down to the nearest even integer."
-msgstr "Rundet eine positive Zahl auf die nächste gerade Ganzzahl auf und eine negative Zahl auf die nächste gerade Ganzzahl ab."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EVEN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EVEN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded up.\n"
-"itemlist.text"
-msgid "The number to be rounded up."
-msgstr "Die Zahl, die aufgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ODD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds a positive number up and negative number down to the nearest odd integer.\n"
-"itemlist.text"
-msgid "Rounds a positive number up and negative number down to the nearest odd integer."
-msgstr "Rundet eine positive Zahl auf die nächste ungerade Ganzzahl auf und eine negative Zahl auf die nächste ungerade Ganzzahl ab."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ODD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ODD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded up.\n"
-"itemlist.text"
-msgid "The number to be rounded up."
-msgstr "Die Zahl, die aufgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds a number away from zero to the nearest multiple of significance.\n"
-"This function exists for interoperability with Microsoft Excel 2007 or older versions.\n"
-"itemlist.text"
-msgid ""
-"Rounds a number away from zero to the nearest multiple of significance.\n"
-"This function exists for interoperability with Microsoft Excel 2007 or older versions."
-msgstr ""
-"Rundet eine Zahl weg von Null auf das nächste Vielfache der Schrittweite.\n"
-"Diese Funktion existiert für die Kompatibilität zu Microsoft Excel 2007 oder älter."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded up.\n"
-"itemlist.text"
-msgid "The number to be rounded up."
-msgstr "Die Zahl, die aufgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Significance\n"
-"itemlist.text"
-msgid "Significance"
-msgstr "Schrittweite"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to whose multiple the value is rounded.\n"
-"itemlist.text"
-msgid "The number to whose multiple the value is rounded."
-msgstr "Die Zahl, auf deren Vielfaches der Wert aufgerundet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_PRECISE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds a number up to the nearest multiple of significance, regardless of sign of significance.\n"
-"itemlist.text"
-msgid "Rounds a number up to the nearest multiple of significance, regardless of sign of significance."
-msgstr "Rundet eine Zahl zum nächsten Vielfachen der Schrittweite auf, unabhängig vom Vorzeichen der Schrittweite."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_PRECISE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_PRECISE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded up.\n"
-"itemlist.text"
-msgid "The number to be rounded up."
-msgstr "Die Zahl, die aufgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_PRECISE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Significance\n"
-"itemlist.text"
-msgid "Significance"
-msgstr "Schrittweite"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_PRECISE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to whose multiple the value is rounded.\n"
-"itemlist.text"
-msgid "The number to whose multiple the value is rounded."
-msgstr "Die Zahl, auf deren Vielfaches der Wert aufgerundet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_ISO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds a number up to the nearest multiple of significance, regardless of sign of significance.\n"
-"itemlist.text"
-msgid "Rounds a number up to the nearest multiple of significance, regardless of sign of significance."
-msgstr "Rundet eine Zahl zum nächsten Vielfachen der Schrittweite auf, unabhängig vom Vorzeichen der Schrittweite."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_ISO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_ISO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded up.\n"
-"itemlist.text"
-msgid "The number to be rounded up."
-msgstr "Die Zahl, die aufgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_ISO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Significance\n"
-"itemlist.text"
-msgid "Significance"
-msgstr "Schrittweite"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_ISO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to whose multiple the value is rounded.\n"
-"itemlist.text"
-msgid "The number to whose multiple the value is rounded."
-msgstr "Die Zahl, auf deren Vielfaches der Wert aufgerundet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds a number up to the nearest multiple of significance.\n"
-"itemlist.text"
-msgid "Rounds a number up to the nearest multiple of significance."
-msgstr "Rundet eine Zahl auf das nächste Vielfache der Schrittweite auf."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded up.\n"
-"itemlist.text"
-msgid "The number to be rounded up."
-msgstr "Die Zahl, die aufgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Significance\n"
-"itemlist.text"
-msgid "Significance"
-msgstr "Schrittweite"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If given the number to whose multiple the value is rounded, else -1 or 1 depending on sign of Number.\n"
-"itemlist.text"
-msgid "If given the number to whose multiple the value is rounded, else -1 or 1 depending on sign of Number."
-msgstr "Falls angegeben: die Zahl, zu derem Vielfachen der Wert gerundet wird, sonst -1 oder 1, abhängig vom Vorzeichen der Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mode\n"
-"itemlist.text"
-msgid "Mode"
-msgstr "Modus"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If given and not equal to zero then rounded up according to amount when a negative number and significance.\n"
-"itemlist.text"
-msgid "If given and not equal to zero then rounded up according to amount when a negative number and significance."
-msgstr "Wenn angegeben und ungleich Null wird bei negativer Zahl und Schrittweite betragsmäßig aufgerundet."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds a number up to the nearest multiple of significance.\n"
-"itemlist.text"
-msgid "Rounds a number up to the nearest multiple of significance."
-msgstr "Rundet eine Zahl auf das nächste Vielfache der Schrittweite auf."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded up.\n"
-"itemlist.text"
-msgid "The number to be rounded up."
-msgstr "Die Zahl, die aufgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Significance\n"
-"itemlist.text"
-msgid "Significance"
-msgstr "Schrittweite"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If given the number to whose multiple the value is rounded, else 1.\n"
-"itemlist.text"
-msgid "If given the number to whose multiple the value is rounded, else 1."
-msgstr "Falls angegeben: die Zahl, zu derem Vielfachen der Wert gerundet wird, sonst 1."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mode\n"
-"itemlist.text"
-msgid "Mode"
-msgstr "Modus"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CEIL_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"For negative numbers; if given and not equal to zero then rounds away from zero, else rounds towards zero.\n"
-"itemlist.text"
-msgid "For negative numbers; if given and not equal to zero then rounds away from zero, else rounds towards zero."
-msgstr "Für negative Zahlen; falls angegeben und ungleich Null, wird von Null weg gerundet, sonst zu Null hin."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds number down to the nearest multiple of significance.\n"
-"itemlist.text"
-msgid "Rounds number down to the nearest multiple of significance."
-msgstr "Rundet eine Zahl auf das nächste Vielfache der Schrittweite ab."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded down.\n"
-"itemlist.text"
-msgid "The number to be rounded down."
-msgstr "Die Zahl, die abgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Significance\n"
-"itemlist.text"
-msgid "Significance"
-msgstr "Schrittweite"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to whose multiple the value is to be rounded down.\n"
-"itemlist.text"
-msgid "The number to whose multiple the value is to be rounded down."
-msgstr "Die Zahl, auf deren Vielfaches der Wert abgerundet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mode\n"
-"itemlist.text"
-msgid "Mode"
-msgstr "Modus"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If given and not equal to zero then rounded towards zero with negative number and significance.\n"
-"itemlist.text"
-msgid "If given and not equal to zero then rounded towards zero with negative number and significance."
-msgstr "Wenn angegeben und ungleich Null wird bei negativer Zahl und Schrittweite betragsmäßig abgerundet."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds number towards zero to the nearest multiple of absolute value of significance.\n"
-"This function exists for interoperability with Microsoft Excel 2007 or older versions.\n"
-"itemlist.text"
-msgid ""
-"Rounds number towards zero to the nearest multiple of absolute value of significance.\n"
-"This function exists for interoperability with Microsoft Excel 2007 or older versions."
-msgstr ""
-"Rundet eine Zahl in Richtung Null auf das nächste Vielfache des Betrags (Absolutwert) der Schrittweite.\n"
-"Diese Funktion existiert für die Kompatibilität zu Microsoft Excel 2007 oder älter."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded down.\n"
-"itemlist.text"
-msgid "The number to be rounded down."
-msgstr "Die Zahl, die abgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Significance\n"
-"itemlist.text"
-msgid "Significance"
-msgstr "Schrittweite"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to whose multiple the value is to be rounded down.\n"
-"itemlist.text"
-msgid "The number to whose multiple the value is to be rounded down."
-msgstr "Die Zahl, auf deren Vielfaches der Wert abgerundet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds number down to the nearest multiple of significance, regardless of sign of significance.\n"
-"itemlist.text"
-msgid "Rounds number down to the nearest multiple of significance, regardless of sign of significance."
-msgstr "Rundet eine Zahl zum nächsten Vielfachen der Schrittweite ab, unabhängig vom Vorzeichen der Schrittweite."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded down.\n"
-"itemlist.text"
-msgid "The number to be rounded down."
-msgstr "Die Zahl, die abgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Significance\n"
-"itemlist.text"
-msgid "Significance"
-msgstr "Schrittweite"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to whose multiple the value is to be rounded down.\n"
-"itemlist.text"
-msgid "The number to whose multiple the value is to be rounded down."
-msgstr "Die Zahl, auf deren Vielfaches der Wert abgerundet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mode\n"
-"itemlist.text"
-msgid "Mode"
-msgstr "Modus"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_MATH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"For negative numbers; if given and not equal to or less than zero rounds towards zero.\n"
-"itemlist.text"
-msgid "For negative numbers; if given and not equal to or less than zero rounds towards zero."
-msgstr "Für negative Zahlen; falls angegeben und größer Null, wird zu Null hin gerundet."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_PRECISE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds number down (towards -∞) to the nearest multiple of significance.\n"
-"itemlist.text"
-msgid "Rounds number down (towards -∞) to the nearest multiple of significance."
-msgstr "Rundet eine Zahl auf das nächste Vielfache der Schrittweite ab (Richtung -∞)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_PRECISE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_PRECISE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded down.\n"
-"itemlist.text"
-msgid "The number to be rounded down."
-msgstr "Die Zahl, die abgerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_PRECISE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Significance\n"
-"itemlist.text"
-msgid "Significance"
-msgstr "Schrittweite"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FLOOR_PRECISE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to whose multiple the value is to be rounded down. Sign has no meaning.\n"
-"itemlist.text"
-msgid "The number to whose multiple the value is to be rounded down. Sign has no meaning."
-msgstr "Die Zahl, auf deren Vielfaches der Wert abgerundet wird. Das Vorzeichen ist irrelevant."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GCD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Greatest Common Divisor\n"
-"itemlist.text"
-msgid "Greatest Common Divisor"
-msgstr "Größter gemeinsamer Teiler."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GCD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Integer \n"
-"itemlist.text"
-msgid "Integer "
-msgstr "Ganzzahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GCD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Integer 1; integer 2,... are integers for which the greatest common divisor is to be calculated.\n"
-"itemlist.text"
-msgid "Integer 1; integer 2,... are integers for which the greatest common divisor is to be calculated."
-msgstr "Ganzzahl 1;Ganzzahl 2,... sind ganze Zahlen, deren größter gemeinsamer Teiler berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LCM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Lowest common multiple\n"
-"itemlist.text"
-msgid "Lowest common multiple"
-msgstr "Kleinstes gemeinsames Vielfaches."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LCM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Integer \n"
-"itemlist.text"
-msgid "Integer "
-msgstr "Ganzzahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LCM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Integer 1; integer 2,... are integers whose smallest common multiple is to be calculated.\n"
-"itemlist.text"
-msgid "Integer 1; integer 2,... are integers whose smallest common multiple is to be calculated."
-msgstr "Ganzzahl 1;Ganzzahl 2,... sind ganze Zahlen, deren kleinstes gemeinsames Vielfaches berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_TRANS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Array transposition. Exchanges the rows and columns of an array.\n"
-"itemlist.text"
-msgid "Array transposition. Exchanges the rows and columns of an array."
-msgstr "Matrixtransponierung. Vertauscht Zeilen und Spalten einer Matrix."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_TRANS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array\n"
-"itemlist.text"
-msgid "array"
-msgstr "Matrix"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_TRANS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array in which the rows and columns have been transposed.\n"
-"itemlist.text"
-msgid "The array in which the rows and columns have been transposed."
-msgstr "Die Matrix, deren Zeilen und Spalten vertauscht werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_MULT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Array multiplication. Returns the product of two arrays.\n"
-"itemlist.text"
-msgid "Array multiplication. Returns the product of two arrays."
-msgstr "Matrixmultiplikation. Bildet das Produkt zweier Matrizen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_MULT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array_1\n"
-"itemlist.text"
-msgid "array_1"
-msgstr "Matrix_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_MULT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The first array for the array product.\n"
-"itemlist.text"
-msgid "The first array for the array product."
-msgstr "Die erste Matrix für das Matrixprodukt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_MULT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array_2\n"
-"itemlist.text"
-msgid "array_2"
-msgstr "Matrix_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_MULT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The second array having the same number of rows as the first array has columns.\n"
-"itemlist.text"
-msgid "The second array having the same number of rows as the first array has columns."
-msgstr "Die zweite Matrix mit der gleichen Anzahl von Zeilen, wie die erste Matrix Spalten hat."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_DET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the array determinant.\n"
-"itemlist.text"
-msgid "Returns the array determinant."
-msgstr "Bestimmt die Matrixdeterminante."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_DET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array\n"
-"itemlist.text"
-msgid "array"
-msgstr "Matrix"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_DET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array for which the determinant is to be determined.\n"
-"itemlist.text"
-msgid "The array for which the determinant is to be determined."
-msgstr "Die Matrix, deren Determinante bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the inverse of an array.\n"
-"itemlist.text"
-msgid "Returns the inverse of an array."
-msgstr "Bestimmt die Inverse einer Matrix."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array\n"
-"itemlist.text"
-msgid "array"
-msgstr "Matrix"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAT_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array to be inverted.\n"
-"itemlist.text"
-msgid "The array to be inverted."
-msgstr "Die Matrix, die invertiert wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MATRIX_UNIT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the unitary square array of a certain size.\n"
-"itemlist.text"
-msgid "Returns the unitary square array of a certain size."
-msgstr "Bestimmt die quadratische Einheitsmatrix einer bestimmten Größe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MATRIX_UNIT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Dimensions\n"
-"itemlist.text"
-msgid "Dimensions"
-msgstr "Dimension"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MATRIX_UNIT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The size of the unitary array.\n"
-"itemlist.text"
-msgid "The size of the unitary array."
-msgstr "Die Größe der Einheitsmatrix."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_PRODUCT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"(Inner products) Returns the sum of the products of array arguments.\n"
-"itemlist.text"
-msgid "(Inner products) Returns the sum of the products of array arguments."
-msgstr "(Skalarprodukt) Summiert die Produkte der Argumente von Matrizen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_PRODUCT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Array \n"
-"itemlist.text"
-msgid "Array "
-msgstr "Matrix "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_PRODUCT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Array 1, array 2, ... are up to 30 arrays whose arguments are to be multiplied.\n"
-"itemlist.text"
-msgid "Array 1, array 2, ... are up to 30 arrays whose arguments are to be multiplied."
-msgstr "Matrix 1; Matrix 2,... sind bis zu 30 Matrizen, deren Argumente multipliziert werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_X2MY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the sum of the difference of squares of two arrays.\n"
-"itemlist.text"
-msgid "Returns the sum of the difference of squares of two arrays."
-msgstr "Summiert die Differenzen der Quadrate zweier Matrizen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_X2MY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array_x\n"
-"itemlist.text"
-msgid "array_x"
-msgstr "Matrix_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_X2MY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"First array where the square of the arguments are totalled.\n"
-"itemlist.text"
-msgid "First array where the square of the arguments are totalled."
-msgstr "Erste Matrix, deren Argumente quadriert summiert werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_X2MY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array_y\n"
-"itemlist.text"
-msgid "array_y"
-msgstr "Matrix_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_X2MY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Second array where the square of the arguments is to be subtracted.\n"
-"itemlist.text"
-msgid "Second array where the square of the arguments is to be subtracted."
-msgstr "Zweite Matrix, deren Argumente quadriert abgezogen werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_X2DY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the total of the square sum of two arrays.\n"
-"itemlist.text"
-msgid "Returns the total of the square sum of two arrays."
-msgstr "Summiert die Quadratesummen zweier Matrizen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_X2DY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array_x\n"
-"itemlist.text"
-msgid "array_x"
-msgstr "Matrix_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_X2DY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"First array where the square of the arguments are totalled.\n"
-"itemlist.text"
-msgid "First array where the square of the arguments are totalled."
-msgstr "Erste Matrix, deren Argumente quadriert summiert werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_X2DY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array_y\n"
-"itemlist.text"
-msgid "array_y"
-msgstr "Matrix_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_X2DY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Second array where the square of the arguments is to be totalled.\n"
-"itemlist.text"
-msgid "Second array where the square of the arguments is to be totalled."
-msgstr "Zweite Matrix, deren Argumente quadriert summiert werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_XMY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the sum of squares of differences of two arrays.\n"
-"itemlist.text"
-msgid "Returns the sum of squares of differences of two arrays."
-msgstr "Summiert die Quadrate der Differenzen zweier Matrizen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_XMY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array_x\n"
-"itemlist.text"
-msgid "array_x"
-msgstr "Matrix_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_XMY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"First array for forming argument differences.\n"
-"itemlist.text"
-msgid "First array for forming argument differences."
-msgstr "Erste Matrix zur Bildung der Argumentdifferenzen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_XMY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array_y\n"
-"itemlist.text"
-msgid "array_y"
-msgstr "Matrix_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUM_XMY2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Second array for forming the argument differences.\n"
-"itemlist.text"
-msgid "Second array for forming the argument differences."
-msgstr "Zweite Matrix zur Bildung der Argumentdifferenzen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FREQUENCY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a frequency distribution as a vertical array.\n"
-"itemlist.text"
-msgid "Returns a frequency distribution as a vertical array."
-msgstr "Erstellt eine Häufigkeitsverteilung als Spaltenmatrix."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FREQUENCY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FREQUENCY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data.\n"
-"itemlist.text"
-msgid "The array of the data."
-msgstr "Die Matrix der Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FREQUENCY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"classes\n"
-"itemlist.text"
-msgid "classes"
-msgstr "Klassen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FREQUENCY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array for forming classes.\n"
-"itemlist.text"
-msgid "The array for forming classes."
-msgstr "Die Matrix zur Klassenbildung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LINEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates parameters of the linear regression as an array.\n"
-"itemlist.text"
-msgid "Calculates parameters of the linear regression as an array."
-msgstr "Berechnet Kenngrößen der linearen Regression als Matrix."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LINEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_Y\n"
-"itemlist.text"
-msgid "data_Y"
-msgstr "Daten_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LINEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Y data array.\n"
-"itemlist.text"
-msgid "The Y data array."
-msgstr "Die Matrix der Y-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LINEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_X\n"
-"itemlist.text"
-msgid "data_X"
-msgstr "Daten_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LINEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The X data array.\n"
-"itemlist.text"
-msgid "The X data array."
-msgstr "Die Matrix der X-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LINEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Linear_type\n"
-"itemlist.text"
-msgid "Linear_type"
-msgstr "Art_der_Geraden"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LINEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If type = 0 the linears will be calculated through the zero point, or else moved linears.\n"
-"itemlist.text"
-msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears."
-msgstr "Falls Art = 0, werden Geraden durch den Nullpunkt berechnet, sonst verschobene Geraden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LINEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"stats\n"
-"itemlist.text"
-msgid "stats"
-msgstr "Kenngrößen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LINEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well.\n"
-"itemlist.text"
-msgid "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well."
-msgstr "Ist Kenngrößen=0, so werden nur die Regressionskoeffizienten berechnet, sonst noch weitere Werte."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOGEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the parameters of the exponential regression curve as an array.\n"
-"itemlist.text"
-msgid "Calculates the parameters of the exponential regression curve as an array."
-msgstr "Berechnet Kenngrößen der exponentiellen Regression als Matrix."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOGEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_Y\n"
-"itemlist.text"
-msgid "data_Y"
-msgstr "Daten_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOGEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Y data array.\n"
-"itemlist.text"
-msgid "The Y data array."
-msgstr "Die Matrix der Y-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOGEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_X\n"
-"itemlist.text"
-msgid "data_X"
-msgstr "Daten_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOGEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The X data array.\n"
-"itemlist.text"
-msgid "The X data array."
-msgstr "Die Matrix der X-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOGEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Function_type\n"
-"itemlist.text"
-msgid "Function_type"
-msgstr "Art_der_Funktion"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOGEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x.\n"
-"itemlist.text"
-msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x."
-msgstr "Falls Art = 0, werden Funktionen der Form y=m^x berechnet, sonst Funktionen der Form y=b*m^x."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOGEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"stats\n"
-"itemlist.text"
-msgid "stats"
-msgstr "Kenngrößen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOGEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well.\n"
-"itemlist.text"
-msgid "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well."
-msgstr "Ist Kenngrößen=0, so werden nur die Regressionskoeffizienten berechnet, sonst noch weitere Werte."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TREND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates points along a regression line.\n"
-"itemlist.text"
-msgid "Calculates points along a regression line."
-msgstr "Berechnet Punkte auf der Regressiongeraden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TREND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_Y\n"
-"itemlist.text"
-msgid "data_Y"
-msgstr "Daten_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TREND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Y data array.\n"
-"itemlist.text"
-msgid "The Y data array."
-msgstr "Die Matrix der Y-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TREND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_X\n"
-"itemlist.text"
-msgid "data_X"
-msgstr "Daten_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TREND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The X data array as the basis for the regression.\n"
-"itemlist.text"
-msgid "The X data array as the basis for the regression."
-msgstr "Die Matrix der X-Daten als Grundlage zur Regression."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TREND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"new data_X\n"
-"itemlist.text"
-msgid "new data_X"
-msgstr "Neue_Daten_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TREND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of X data for recalculating the values.\n"
-"itemlist.text"
-msgid "The array of X data for recalculating the values."
-msgstr "Die Matrix der X-Daten zur Neuberechnung von Werten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TREND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Linear_type\n"
-"itemlist.text"
-msgid "Linear_type"
-msgstr "Art_der_Geraden"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TREND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If type = 0 the linears will be calculated through the zero point, or else moved linears.\n"
-"itemlist.text"
-msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears."
-msgstr "Ist Art=0, so werden Geraden durch den Nullpunkt berechnet, sonst auch verschobene Geraden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GROWTH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates points on the exponential regression function.\n"
-"itemlist.text"
-msgid "Calculates points on the exponential regression function."
-msgstr "Berechnet Punkte auf der exponentiellen Regressionsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GROWTH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_Y\n"
-"itemlist.text"
-msgid "data_Y"
-msgstr "Daten_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GROWTH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Y data array.\n"
-"itemlist.text"
-msgid "The Y data array."
-msgstr "Die Matrix der Y-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GROWTH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_X\n"
-"itemlist.text"
-msgid "data_X"
-msgstr "Daten_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GROWTH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The X data array as the basis for the regression.\n"
-"itemlist.text"
-msgid "The X data array as the basis for the regression."
-msgstr "Die Matrix der X-Daten als Grundlage zur Regression."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GROWTH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"new_data_X\n"
-"itemlist.text"
-msgid "new_data_X"
-msgstr "Neue_Daten_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GROWTH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of X data for recalculating the values.\n"
-"itemlist.text"
-msgid "The array of X data for recalculating the values."
-msgstr "Die Matrix der X-Daten zur Neuberechnung von Werten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GROWTH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Function_type\n"
-"itemlist.text"
-msgid "Function_type"
-msgstr "Art_der_Funktion"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GROWTH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x.\n"
-"itemlist.text"
-msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x."
-msgstr "Ist Art=0, so werden Funktionen der Form y=m^x berechnet, sonst auch Funktionen y=b*m^x."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Counts how many numbers are in the list of arguments.\n"
-"itemlist.text"
-msgid "Counts how many numbers are in the list of arguments."
-msgstr "Zählt, wie viele Zahlen eine Liste von Argumenten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value \n"
-"itemlist.text"
-msgid "value "
-msgstr "Wert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value 1, value 2, ... are 1 to 30 arguments containing different data types but where only numbers are counted.\n"
-"itemlist.text"
-msgid "Value 1, value 2, ... are 1 to 30 arguments containing different data types but where only numbers are counted."
-msgstr "Wert 1; Wert 2;... sind 1 bis 30 Argumente mit unterschiedlichen Datentypen, wobei nur Zahlen in die Zählung eingehen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Counts how many values are in the list of arguments.\n"
-"itemlist.text"
-msgid "Counts how many values are in the list of arguments."
-msgstr "Zählt, wie viele Werte eine Liste von Argumenten enthält."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value \n"
-"itemlist.text"
-msgid "value "
-msgstr "Wert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COUNT_2+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value 1, value 2, ... are 1 to 30 arguments representing the values to be counted.\n"
-"itemlist.text"
-msgid "Value 1, value 2, ... are 1 to 30 arguments representing the values to be counted."
-msgstr "Wert 1; Wert 2;... sind 1 bis 30 Argumente, die den zu zählenden Werten entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the maximum value in a list of arguments.\n"
-"itemlist.text"
-msgid "Returns the maximum value in a list of arguments."
-msgstr "Liefert die größte Zahl einer Argumentliste."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments for which the largest number is to be determined.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments for which the largest number is to be determined."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, deren größte Zahl bestimmt werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAX_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the maximum value in a list of arguments. Text is evaluated as Zero.\n"
-"itemlist.text"
-msgid "Returns the maximum value in a list of arguments. Text is evaluated as Zero."
-msgstr "Liefert den größten Wert einer Argumentliste. Text wird als Null gewertet."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAX_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value \n"
-"itemlist.text"
-msgid "value "
-msgstr "Wert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAX_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value 1, value 2, are 1 to 30 arguments whose largest value is to be determined.\n"
-"itemlist.text"
-msgid "Value 1, value 2, are 1 to 30 arguments whose largest value is to be determined."
-msgstr "Wert 1, Wert 2, ... sind 1 bis 30 Argumente, deren größter Wert bestimmt werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the minimum value in a list of arguments.\n"
-"itemlist.text"
-msgid "Returns the minimum value in a list of arguments."
-msgstr "Liefert die kleinste Zahl einer Argumentliste."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments for which the smallest number is to be determined.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments for which the smallest number is to be determined."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, deren kleinste Zahl bestimmt werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIN_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the smallest value in a list of arguments. Text is evaluated as zero.\n"
-"itemlist.text"
-msgid "Returns the smallest value in a list of arguments. Text is evaluated as zero."
-msgstr "Liefert den kleinsten Wert einer Argumentliste. Text wird als Null gewertet."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIN_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value \n"
-"itemlist.text"
-msgid "value "
-msgstr "Wert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIN_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value 1; value 2;... are 1 to 30 arguments whose smallest number is to be determined.\n"
-"itemlist.text"
-msgid "Value 1; value 2;... are 1 to 30 arguments whose smallest number is to be determined."
-msgstr "Wert 1; Wert 2;... sind 1 bis 30 Argumente, deren kleinste Zahl bestimmt werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the variance based on a sample.\n"
-"itemlist.text"
-msgid "Calculates the variance based on a sample."
-msgstr "Berechnet die Varianz, ausgehend von einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine, aus einer Grundgesamtheit gezogene, Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_S+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the variance based on a sample.\n"
-"itemlist.text"
-msgid "Calculates the variance based on a sample."
-msgstr "Berechnet die Varianz, ausgehend von einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_S+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_S+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine, aus einer Grundgesamtheit gezogene, Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the variance based on a sample. Text is evaluated as zero.\n"
-"itemlist.text"
-msgid "Returns the variance based on a sample. Text is evaluated as zero."
-msgstr "Berechnet die Varianz, ausgehend von einer Stichprobe. Text wird als Null gewertet."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value \n"
-"itemlist.text"
-msgid "value "
-msgstr "Wert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population.\n"
-"itemlist.text"
-msgid "Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population."
-msgstr "Wert 1; Wert 2;... sind 1 bis 30 Argumente, die eine, aus einer Grundgesamtheit gezogene, Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates variance based on the entire population.\n"
-"itemlist.text"
-msgid "Calculates variance based on the entire population."
-msgstr "Berechnet die Varianz, ausgehend von der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die einer Grundgesamtheit entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_P_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates variance based on the entire population.\n"
-"itemlist.text"
-msgid "Calculates variance based on the entire population."
-msgstr "Berechnet die Varianz, ausgehend von der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_P_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_P_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population."
-msgstr "Zahl_1, Zahl_2,... sind 1 bis 30 numerische Argumente, die einer Grundgesamtheit entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_P_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the variance based on the entire population. Text is evaluated as zero.\n"
-"itemlist.text"
-msgid "Returns the variance based on the entire population. Text is evaluated as zero."
-msgstr "Berechnet die Varianz, ausgehend von der Grundgesamtheit. Text wird als Null gewertet."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_P_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value \n"
-"itemlist.text"
-msgid "value "
-msgstr "Wert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VAR_P_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value 1; value 2;... are 1 to 30 arguments representing a population.\n"
-"itemlist.text"
-msgid "Value 1; value 2;... are 1 to 30 arguments representing a population."
-msgstr "Wert 1; Wert 2;... sind 1 bis 30 Argumente, die einer Grundgesamtheit entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the standard deviation based on a sample.\n"
-"itemlist.text"
-msgid "Calculates the standard deviation based on a sample."
-msgstr "Berechnet die Standardabweichung, ausgehend von einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine, aus einer Grundgesamtheit gezogene, Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_S+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the standard deviation based on a sample.\n"
-"itemlist.text"
-msgid "Calculates the standard deviation based on a sample."
-msgstr "Berechnet die Standardabweichung, ausgehend von einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_S+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_S+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population."
-msgstr "Zahl_1, Zahl_2,... sind 1 bis 30 numerische Argumente, die eine, aus einer Grundgesamtheit gezogene, Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the standard deviation based on a sample. Text is evaluated as zero.\n"
-"itemlist.text"
-msgid "Returns the standard deviation based on a sample. Text is evaluated as zero."
-msgstr "Berechnet die Standardabweichung, ausgehend von einer Stichprobe. Text wird als Null gewertet."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value \n"
-"itemlist.text"
-msgid "value "
-msgstr "Wert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population.\n"
-"itemlist.text"
-msgid "Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population."
-msgstr "Wert 1; Wert 2;... sind 1 bis 30 Argumente, die eine, aus einer Grundgesamtheit gezogene, Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the standard deviation based on the entire population.\n"
-"itemlist.text"
-msgid "Calculates the standard deviation based on the entire population."
-msgstr "Berechnet die Standardabweichung, ausgehend von der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population."
-msgstr "Zahl_1, Zahl_2,... sind 1 bis 30 numerische Argumente, die einer Grundgesamtheit entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_P_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the standard deviation based on the entire population.\n"
-"itemlist.text"
-msgid "Calculates the standard deviation based on the entire population."
-msgstr "Berechnet die Standardabweichung, ausgehend von der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_P_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_P_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population."
-msgstr "Zahl_1, Zahl_2,... sind 1 bis 30 numerische Argumente, die einer Grundgesamtheit entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_P_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the standard deviation based on the entire population. Text is evaluated as zero.\n"
-"itemlist.text"
-msgid "Returns the standard deviation based on the entire population. Text is evaluated as zero."
-msgstr "Berechnet die Standardabweichung, ausgehend von der Grundgesamtheit. Text wird als Null gewertet."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_P_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value \n"
-"itemlist.text"
-msgid "value "
-msgstr "Wert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ST_DEV_P_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value 1; value 2;... are 1 to 30 arguments corresponding to a population.\n"
-"itemlist.text"
-msgid "Value 1; value 2;... are 1 to 30 arguments corresponding to a population."
-msgstr "Wert 1; Wert 2;... sind 1 bis 30 Argumente, die einer Grundgesamtheit entsprechen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the average of a sample.\n"
-"itemlist.text"
-msgid "Returns the average of a sample."
-msgstr "Berechnet den Mittelwert einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2;...are 1 to 30 numeric arguments representing a population sample.\n"
-"itemlist.text"
-msgid "Number 1, number 2;...are 1 to 30 numeric arguments representing a population sample."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine, aus einer Grundgesamtheit gezogene, Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the average value for a sample. Text is evaluated as zero.\n"
-"itemlist.text"
-msgid "Returns the average value for a sample. Text is evaluated as zero."
-msgstr "Berechnet den Mittelwert einer Stichprobe. Text wird als Null gewertet."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value \n"
-"itemlist.text"
-msgid "value "
-msgstr "Wert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVERAGE_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population.\n"
-"itemlist.text"
-msgid "Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population."
-msgstr "Wert 1; Wert 2;... sind 1 bis 30 Argumente, die eine, aus einer Grundgesamtheit gezogene, Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DEV_SQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the sum of squares of deviations from the sample mean value\n"
-"itemlist.text"
-msgid "Returns the sum of squares of deviations from the sample mean value"
-msgstr "Berechnet die Summe der quadratischen Abweichung einer Stichprobe vom Mittelwert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DEV_SQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DEV_SQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVE_DEV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the average of the absolute deviations of a sample from the mean.\n"
-"itemlist.text"
-msgid "Returns the average of the absolute deviations of a sample from the mean."
-msgstr "Berechnet die durchschnittliche absolute Abweichung einer Stichprobe vom Mittelwert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVE_DEV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AVE_DEV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2;...are 1 to 30 numerical arguments representing a sample.\n"
-"itemlist.text"
-msgid "Number 1, number 2;...are 1 to 30 numerical arguments representing a sample."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SKEW+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the skewness of a distribution.\n"
-"itemlist.text"
-msgid "Returns the skewness of a distribution."
-msgstr "Berechnet die Schiefe einer Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SKEW+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SKEW+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments portraying a sample of the distribution.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments portraying a sample of the distribution."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe der Verteilung darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SKEWP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the skewness of a distribution using the population of a random variable.\n"
-"itemlist.text"
-msgid "Returns the skewness of a distribution using the population of a random variable."
-msgstr "Gibt die Schräge einer Verteilung durch den Gebrauch der Population einer zufälligen Variable aus."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SKEWP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SKEWP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments portraying the population.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments portraying the population."
-msgstr "Zahl 1, Zahl 2, ... sind 1 bis 30 numerische Argumente, welche die Population darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_KURT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the kurtosis of a distribution.\n"
-"itemlist.text"
-msgid "Returns the kurtosis of a distribution."
-msgstr "Berechnet die Kurtosis einer Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_KURT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_KURT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments, representing a sample of the distribution.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments, representing a sample of the distribution."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe der Verteilung darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GEO_MEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the geometric mean of a sample.\n"
-"itemlist.text"
-msgid "Returns the geometric mean of a sample."
-msgstr "Berechnet den geometrischen Mittelwert einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GEO_MEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GEO_MEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HAR_MEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the harmonic mean of a sample.\n"
-"itemlist.text"
-msgid "Returns the harmonic mean of a sample."
-msgstr "Berechnet den harmonischen Mittelwert einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HAR_MEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HAR_MEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MODAL_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the most common value in a sample.\n"
-"itemlist.text"
-msgid "Returns the most common value in a sample."
-msgstr "Berechnet den häufigsten Wert in einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MODAL_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MODAL_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MODAL_VALUE_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the most common value in a sample.\n"
-"itemlist.text"
-msgid "Returns the most common value in a sample."
-msgstr "Berechnet den häufigsten Wert in einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MODAL_VALUE_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MODAL_VALUE_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample."
-msgstr "Zahl 1, Zahl 2, ... sind 1 bis 30 numerische Argumente, welche ein Beispiel darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MODAL_VALUE_MULTI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the most common value in a sample.\n"
-"itemlist.text"
-msgid "Returns the most common value in a sample."
-msgstr "Berechnet den häufigsten Wert in einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MODAL_VALUE_MULTI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MODAL_VALUE_MULTI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample."
-msgstr "Zahl 1; Zahl 2; ... sind 1 bis 254 numerische Argumente, die eine Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MEDIAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the median of a given sample.\n"
-"itemlist.text"
-msgid "Returns the median of a given sample."
-msgstr "Berechnet den Median einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MEDIAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number \n"
-"itemlist.text"
-msgid "number "
-msgstr "Zahl "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MEDIAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample.\n"
-"itemlist.text"
-msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample."
-msgstr "Zahl 1; Zahl 2;... sind 1 bis 30 numerische Argumente, die eine Stichprobe darstellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the alpha quantile of a sample.\n"
-"itemlist.text"
-msgid "Returns the alpha quantile of a sample."
-msgstr "Berechnet ein Alpha-Quantil einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Alpha\n"
-"itemlist.text"
-msgid "Alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The percentage rate of the quantile between 0 and 1.\n"
-"itemlist.text"
-msgid "The percentage rate of the quantile between 0 and 1."
-msgstr "Der Prozentwert des Quantils zwischen 0 und 1."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the alpha percentile of a sample.\n"
-"itemlist.text"
-msgid "Returns the alpha percentile of a sample."
-msgstr "Berechnet ein Alpha-Quantil einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Alpha\n"
-"itemlist.text"
-msgid "Alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The percentile value, range 0...1, exclusive.\n"
-"itemlist.text"
-msgid "The percentile value, range 0...1, exclusive."
-msgstr "Quantilwert, Bereich 0...1, exklusiv."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the alpha percentile of a sample.\n"
-"itemlist.text"
-msgid "Returns the alpha percentile of a sample."
-msgstr "Berechnet ein Alpha-Quantil einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Alpha\n"
-"itemlist.text"
-msgid "Alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENTILE_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The percentile value, range 0...1, inclusive.\n"
-"itemlist.text"
-msgid "The percentile value, range 0...1, inclusive."
-msgstr "Quantilwert, Bereich 0...1, inklusiv."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the quartile of a sample.\n"
-"itemlist.text"
-msgid "Returns the quartile of a sample."
-msgstr "Berechnet ein Quartil einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX).\n"
-"itemlist.text"
-msgid "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)."
-msgstr "Die Art des Quartils (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the quartile of a sample.\n"
-"itemlist.text"
-msgid "Returns the quartile of a sample."
-msgstr "Berechnet ein Quartil einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The type of the quartile (1 = 25%, 2 = 50%, 3 = 75%).\n"
-"itemlist.text"
-msgid "The type of the quartile (1 = 25%, 2 = 50%, 3 = 75%)."
-msgstr "Die Art des Quartils (1 = 25%, 2 = 50%, 3 = 75%)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the quartile of a sample.\n"
-"itemlist.text"
-msgid "Returns the quartile of a sample."
-msgstr "Berechnet ein Quartil einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_QUARTILE_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX).\n"
-"itemlist.text"
-msgid "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)."
-msgstr "Die Art des Quartils (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LARGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the k-th largest value of a sample.\n"
-"itemlist.text"
-msgid "Returns the k-th largest value of a sample."
-msgstr "Berechnet den k-größten Wert einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LARGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LARGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LARGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rank_c\n"
-"itemlist.text"
-msgid "Rank_c"
-msgstr "Rang_K"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LARGE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The ranking of the value.\n"
-"itemlist.text"
-msgid "The ranking of the value."
-msgstr "Der Rang des Werts."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SMALL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the k-th smallest value of a sample.\n"
-"itemlist.text"
-msgid "Returns the k-th smallest value of a sample."
-msgstr "Berechnet den k-kleinsten Wert einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SMALL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SMALL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SMALL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rank_c\n"
-"itemlist.text"
-msgid "Rank_c"
-msgstr "Rang_K"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SMALL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The ranking of the value.\n"
-"itemlist.text"
-msgid "The ranking of the value."
-msgstr "Der Rang des Werts."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the percentage rank of a value in a sample.\n"
-"itemlist.text"
-msgid "Returns the percentage rank of a value in a sample."
-msgstr "Berechnet den prozentualen Rang eines Wertes in einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which percentage ranking is to be determined.\n"
-"itemlist.text"
-msgid "The value for which percentage ranking is to be determined."
-msgstr "Der Wert, dessen prozentualer Rang bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"significance\n"
-"itemlist.text"
-msgid "significance"
-msgstr "Signifikanz"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of significant digits for the returned percentage: if omitted, a value of 3 is used.\n"
-"itemlist.text"
-msgid "The number of significant digits for the returned percentage: if omitted, a value of 3 is used."
-msgstr "Die Anzahl der signifikanten Stellen des zurückgegebenen Prozentwerts: falls fehlend, wird ein Wert von 3 verwendet."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the percentage rank (0..1, exclusive) of a value in a sample.\n"
-"itemlist.text"
-msgid "Returns the percentage rank (0..1, exclusive) of a value in a sample."
-msgstr "Gibt den Prozentrang (0...1, exklusiv) eines Werts in einem Beispiel zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which percentage ranking is to be determined.\n"
-"itemlist.text"
-msgid "The value for which percentage ranking is to be determined."
-msgstr "Der Wert, dessen prozentualer Rang bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"significance\n"
-"itemlist.text"
-msgid "significance"
-msgstr "Signifikanz"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_EXC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of significant digits for the returned percentage: if omitted, a value of 3 is used.\n"
-"itemlist.text"
-msgid "The number of significant digits for the returned percentage: if omitted, a value of 3 is used."
-msgstr "Die Anzahl der signifikanten Stellen des zurückgegebenen Prozentwerts: falls fehlend, wird ein Wert von 3 verwendet."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the percentage rank (0..1, inclusive) of a value in a sample.\n"
-"itemlist.text"
-msgid "Returns the percentage rank (0..1, inclusive) of a value in a sample."
-msgstr "Gibt den Prozentrang (0...1, inklusiv) eines Werts in einem Beispiel zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which percentage ranking is to be determined.\n"
-"itemlist.text"
-msgid "The value for which percentage ranking is to be determined."
-msgstr "Der Wert, dessen prozentualer Rang bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"significance\n"
-"itemlist.text"
-msgid "significance"
-msgstr "Signifikanz"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERCENT_RANK_INC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of significant digits for the returned percentage: if omitted, a value of 3 is used.\n"
-"itemlist.text"
-msgid "The number of significant digits for the returned percentage: if omitted, a value of 3 is used."
-msgstr "Die Anzahl der signifikanten Stellen des zurückgegebenen Prozentwerts: falls fehlend, wird ein Wert von 3 benutzt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the ranking of a value in a sample.\n"
-"itemlist.text"
-msgid "Returns the ranking of a value in a sample."
-msgstr "Berechnet den Rang eines Wertes in einer Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the rank is to be determined.\n"
-"itemlist.text"
-msgid "The value for which the rank is to be determined."
-msgstr "Der Wert, dessen Rang bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data\n"
-"itemlist.text"
-msgid "Data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Sequence order: 0 or omitted means descending, any other value than 0 means ascending.\n"
-"itemlist.text"
-msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending."
-msgstr "Die Anordnung der Rangfolge: 0 oder nicht angegeben bedeutet absteigend, ein Wert ungleich 0 bedeutet aufsteigend."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_EQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the ranking of a value in a sample; if more than one value has the same rank, the top rank of that set of values is returned.\n"
-"itemlist.text"
-msgid "Returns the ranking of a value in a sample; if more than one value has the same rank, the top rank of that set of values is returned."
-msgstr "Gibt den Rang eines Werts in einem Beispiel zurück; falls mehr als ein Wert denselben Rang hat, wird der höchste Rang dieses Wertesatzes zurückgegeben."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_EQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_EQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the rank is to be determined.\n"
-"itemlist.text"
-msgid "The value for which the rank is to be determined."
-msgstr "Der Wert, dessen Rang bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_EQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data\n"
-"itemlist.text"
-msgid "Data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_EQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_EQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_EQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Sequence order: 0 or omitted means descending, any other value than 0 means ascending.\n"
-"itemlist.text"
-msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending."
-msgstr "Reihenfolge: 0 oder weggelassen bedeutet absteigend, jeder anderer Wert außer 0 bedeutet aufsteigend."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_AVG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the ranking of a value in a sample; if more than one value has the same rank, the average rank is returned.\n"
-"itemlist.text"
-msgid "Returns the ranking of a value in a sample; if more than one value has the same rank, the average rank is returned."
-msgstr "Gibt den Rang eines Werts in einem Beispiel zurück; falls mehr als ein Wert denselben Rang hat, wird der Durchschnittsrang zurückgegeben."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_AVG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_AVG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the rank is to be determined.\n"
-"itemlist.text"
-msgid "The value for which the rank is to be determined."
-msgstr "Der Wert, dessen Rang bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_AVG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data\n"
-"itemlist.text"
-msgid "Data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_AVG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_AVG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RANK_AVG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Sequence order: 0 or omitted means descending, any other value than 0 means ascending.\n"
-"itemlist.text"
-msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending."
-msgstr "Reihenfolge: 0 oder weggelassen bedeutet absteigend, jeder andere Wert außer 0 bedeutet aufsteigend."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRIM_MEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the mean of a sample without including the marginal values.\n"
-"itemlist.text"
-msgid "Returns the mean of a sample without including the marginal values."
-msgstr "Berechnet den Mittelwert einer Stichprobe ohne die Randwerte."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRIM_MEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRIM_MEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the data in the sample.\n"
-"itemlist.text"
-msgid "The array of the data in the sample."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRIM_MEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Alpha\n"
-"itemlist.text"
-msgid "Alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRIM_MEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The percentage of marginal data that is not to be taken into account.\n"
-"itemlist.text"
-msgid "The percentage of marginal data that is not to be taken into account."
-msgstr "Der Prozentsatz der Randdaten, die nicht berücksichtigt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PROB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the discrete probability of an interval.\n"
-"itemlist.text"
-msgid "Returns the discrete probability of an interval."
-msgstr "Berechnet diskrete Wahrscheinlichkeiten eines Intervalls."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PROB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PROB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The sample data array.\n"
-"itemlist.text"
-msgid "The sample data array."
-msgstr "Die Matrix der Daten in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PROB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"probability\n"
-"itemlist.text"
-msgid "probability"
-msgstr "Wahrscheinlichkeiten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PROB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array of the associated probabilities.\n"
-"itemlist.text"
-msgid "The array of the associated probabilities."
-msgstr "Die Matrix der dazugehörigen Wahrscheinlichkeiten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PROB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Start\n"
-"itemlist.text"
-msgid "Start"
-msgstr "Anfang"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PROB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The start of the value interval whose probabilities is to be totalled.\n"
-"itemlist.text"
-msgid "The start of the value interval whose probabilities is to be totalled."
-msgstr "Der Anfang des Werteintervalls, dessen Wahrscheinlichkeiten aufsummiert werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PROB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"End\n"
-"itemlist.text"
-msgid "End"
-msgstr "Ende"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PROB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The end of the value interval where the probabilities are to be totalled.\n"
-"itemlist.text"
-msgid "The end of the value interval where the probabilities are to be totalled."
-msgstr "Das Ende des Werteintervalls, dessen Wahrscheinlichkeiten aufsummiert werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_B+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the probability of a trial result using binomial distribution.\n"
-"itemlist.text"
-msgid "Returns the probability of a trial result using binomial distribution."
-msgstr "Berechnet die Wahrscheinlichkeit eines Versuchsergebnisses mit der Binomialverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_B+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"trials\n"
-"itemlist.text"
-msgid "trials"
-msgstr "Versuche"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_B+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of trials.\n"
-"itemlist.text"
-msgid "The number of trials."
-msgstr "Anzahl der Versuche."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_B+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"SP\n"
-"itemlist.text"
-msgid "SP"
-msgstr "SP"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_B+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The individual probability of a trial result.\n"
-"itemlist.text"
-msgid "The individual probability of a trial result."
-msgstr "Einzelwahrscheinlichkeit eines Versuchsergebnis."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_B+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"T_1\n"
-"itemlist.text"
-msgid "T_1"
-msgstr "S_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_B+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Lower limit for the number of trials.\n"
-"itemlist.text"
-msgid "Lower limit for the number of trials."
-msgstr "Untere Schranke der Versuchsanzahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_B+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"T_2\n"
-"itemlist.text"
-msgid "T_2"
-msgstr "S_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_B+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Upper limit for the number of trials.\n"
-"itemlist.text"
-msgid "Upper limit for the number of trials."
-msgstr "Obere Schranke der Versuchsanzahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PHI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the distribution function for a standard normal distribution.\n"
-"itemlist.text"
-msgid "Values of the distribution function for a standard normal distribution."
-msgstr "Werte der Verteilungsfunktion zur Standardnormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PHI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PHI+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the standard normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the standard normal distribution is to be calculated."
-msgstr "Der Wert, zu dem die Standardnormalverteilung berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAUSS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the integral values of the standard normal cumulative distribution.\n"
-"itemlist.text"
-msgid "Returns the integral values of the standard normal cumulative distribution."
-msgstr "Integralwerte der Standardnormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAUSS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAUSS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the integral value of the standard normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the integral value of the standard normal distribution is to be calculated."
-msgstr "Der Wert, zu dem der Integralwert der Standardnormalverteilung berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FISHER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the Fisher transformation.\n"
-"itemlist.text"
-msgid "Returns the Fisher transformation."
-msgstr "Berechnung der Fisher-Transformation."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FISHER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FISHER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be transformed (-1 < VALUE < 1).\n"
-"itemlist.text"
-msgid "The value to be transformed (-1 < VALUE < 1)."
-msgstr "Der Wert, der transformiert wird (-1 < WERT < 1)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FISHER_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the inverse of the Fisher transformation.\n"
-"itemlist.text"
-msgid "Returns the inverse of the Fisher transformation."
-msgstr "Berechnung der inversen Fisher-Transformation."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FISHER_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FISHER_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value that is to be transformed back.\n"
-"itemlist.text"
-msgid "The value that is to be transformed back."
-msgstr "Der Wert, der rücktransformiert wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the binomial distribution.\n"
-"itemlist.text"
-msgid "Values of the binomial distribution."
-msgstr "Werte der Binomialverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"X\n"
-"itemlist.text"
-msgid "X"
-msgstr "X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of successes in a series of trials.\n"
-"itemlist.text"
-msgid "The number of successes in a series of trials."
-msgstr "Die Anzahl der Erfolge in der Versuchsreihe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"trials\n"
-"itemlist.text"
-msgid "trials"
-msgstr "Versuche"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The total number of trials.\n"
-"itemlist.text"
-msgid "The total number of trials."
-msgstr "Die Gesamtanzahl der Versuche."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"SP\n"
-"itemlist.text"
-msgid "SP"
-msgstr "SP"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The success probability of a trial.\n"
-"itemlist.text"
-msgid "The success probability of a trial."
-msgstr "Die Erfolgswahrscheinlichkeit eines Versuchs."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"C\n"
-"itemlist.text"
-msgid "C"
-msgstr "C"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability.\n"
-"itemlist.text"
-msgid "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability."
-msgstr "Kumuliert. K = 0 berechnet die Einzel-, K = 1 die kumulierte Wahrscheinlichkeit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the binomial distribution.\n"
-"itemlist.text"
-msgid "Values of the binomial distribution."
-msgstr "Werte der Binomialverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"X\n"
-"itemlist.text"
-msgid "X"
-msgstr "X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of successes in a series of trials.\n"
-"itemlist.text"
-msgid "The number of successes in a series of trials."
-msgstr "Die Anzahl der Erfolge in der Versuchsreihe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"trials\n"
-"itemlist.text"
-msgid "trials"
-msgstr "Versuche"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The total number of trials.\n"
-"itemlist.text"
-msgid "The total number of trials."
-msgstr "Die Gesamtanzahl der Versuche."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"SP\n"
-"itemlist.text"
-msgid "SP"
-msgstr "SP"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The success probability of a trial.\n"
-"itemlist.text"
-msgid "The success probability of a trial."
-msgstr "Die Erfolgswahrscheinlichkeit eines Versuchs."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"C\n"
-"itemlist.text"
-msgid "C"
-msgstr "K"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability.\n"
-"itemlist.text"
-msgid "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability."
-msgstr "Kumuliert. K = 0 berechnet die Einzel-, K = 1 die kumulierte Wahrscheinlichkeit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_VERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the negative binomial distribution.\n"
-"itemlist.text"
-msgid "Values of the negative binomial distribution."
-msgstr "Werte der negativen Binomialverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_VERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"X\n"
-"itemlist.text"
-msgid "X"
-msgstr "X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_VERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of failures in the trial range.\n"
-"itemlist.text"
-msgid "The number of failures in the trial range."
-msgstr "Die Anzahl der Misserfolge in der Versuchsreihe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_VERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"R\n"
-"itemlist.text"
-msgid "R"
-msgstr "R"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_VERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of successes in the trial sequence.\n"
-"itemlist.text"
-msgid "The number of successes in the trial sequence."
-msgstr "Die Anzahl der Erfolge in der Versuchsreihe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_VERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"SP\n"
-"itemlist.text"
-msgid "SP"
-msgstr "SP"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_VERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The success probability of a trial.\n"
-"itemlist.text"
-msgid "The success probability of a trial."
-msgstr "Die Erfolgswahrscheinlichkeit eines Versuchs."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the negative binomial distribution.\n"
-"itemlist.text"
-msgid "Values of the negative binomial distribution."
-msgstr "Werte der negativen Binomialverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"X\n"
-"itemlist.text"
-msgid "X"
-msgstr "X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of failures in the trial range.\n"
-"itemlist.text"
-msgid "The number of failures in the trial range."
-msgstr "Die Anzahl der Misserfolge in der Versuchsreihe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"R\n"
-"itemlist.text"
-msgid "R"
-msgstr "R"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of successes in the trial sequence.\n"
-"itemlist.text"
-msgid "The number of successes in the trial sequence."
-msgstr "Die Anzahl der Erfolge in der Versuchsreihe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"SP\n"
-"itemlist.text"
-msgid "SP"
-msgstr "SP"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The success probability of a trial.\n"
-"itemlist.text"
-msgid "The success probability of a trial."
-msgstr "Die Erfolgswahrscheinlichkeit eines Versuchs."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NEG_BINOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere Wert oder WAHR berechnet die kumulierte Verteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CRIT_BINOM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.\n"
-"itemlist.text"
-msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value."
-msgstr "Gibt den kleinsten Wert zurück, für den die kumulative Binomialverteilung größer oder gleich dem Wert der Bedingung ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CRIT_BINOM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"trials\n"
-"itemlist.text"
-msgid "trials"
-msgstr "Versuche"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CRIT_BINOM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The total number of trials.\n"
-"itemlist.text"
-msgid "The total number of trials."
-msgstr "Die Gesamtanzahl der Versuche."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CRIT_BINOM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"SP\n"
-"itemlist.text"
-msgid "SP"
-msgstr "SP"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CRIT_BINOM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The success probability of a trial.\n"
-"itemlist.text"
-msgid "The success probability of a trial."
-msgstr "Die Erfolgswahrscheinlichkeit eines Versuchs."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CRIT_BINOM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alpha\n"
-"itemlist.text"
-msgid "alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CRIT_BINOM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The border probability that is attained or exceeded.\n"
-"itemlist.text"
-msgid "The border probability that is attained or exceeded."
-msgstr "Die Grenzwahrscheinlichkeit, die erreicht oder überschritten wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.\n"
-"itemlist.text"
-msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value."
-msgstr "Berechnet den kleinsten Wert, für den die kumulierte Wahrscheinlichkeit der Binomialverteilung größer oder gleich dem Wert einer bestimmten Grenzwahrscheinlichkeit ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"trials\n"
-"itemlist.text"
-msgid "trials"
-msgstr "Versuche"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The total number of trials.\n"
-"itemlist.text"
-msgid "The total number of trials."
-msgstr "Die Gesamtanzahl der Versuche."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"SP\n"
-"itemlist.text"
-msgid "SP"
-msgstr "SP"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The success probability of a trial.\n"
-"itemlist.text"
-msgid "The success probability of a trial."
-msgstr "Die Erfolgswahrscheinlichkeit eines Versuchs."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alpha\n"
-"itemlist.text"
-msgid "alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BINOM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The border probability that is attained or exceeded.\n"
-"itemlist.text"
-msgid "The border probability that is attained or exceeded."
-msgstr "Die Grenzwahrscheinlichkeit, die erreicht oder überschritten wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the Poisson distribution.\n"
-"itemlist.text"
-msgid "Returns the Poisson distribution."
-msgstr "Berechnung der Poisson-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the Poisson distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the Poisson distribution is to be calculated."
-msgstr "Der Wert, zu dem die Poisson-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mean\n"
-"itemlist.text"
-msgid "mean"
-msgstr "MW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mean. The mean value of the Poisson distribution.\n"
-"itemlist.text"
-msgid "Mean. The mean value of the Poisson distribution."
-msgstr "Mittelwert. Der Mittelwert der Poisson-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere Wert, WAHR oder ein fehlender Wert berechnet die kumulierte Verteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the Poisson distribution.\n"
-"itemlist.text"
-msgid "Returns the Poisson distribution."
-msgstr "Berechnung der Poisson-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the Poisson distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the Poisson distribution is to be calculated."
-msgstr "Der Wert, zu dem die Poisson-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mean\n"
-"itemlist.text"
-msgid "mean"
-msgstr "MW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mean. The mean value of the Poisson distribution.\n"
-"itemlist.text"
-msgid "Mean. The mean value of the Poisson distribution."
-msgstr "Mittelwert. Der Mittelwert der Poisson-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_POISSON_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere Wert, WAHR oder ein fehlender Wert berechnet die kumulierte Verteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the normal distribution.\n"
-"itemlist.text"
-msgid "Values of the normal distribution."
-msgstr "Werte der Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the normal distribution is to be calculated."
-msgstr "Der Wert, zu dem die Normalverteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mean\n"
-"itemlist.text"
-msgid "Mean"
-msgstr "Mittelwert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The mean value. The mean value of the normal distribution.\n"
-"itemlist.text"
-msgid "The mean value. The mean value of the normal distribution."
-msgstr "Mittelwert. Der Mittelwert der Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"STDEV\n"
-"itemlist.text"
-msgid "STDEV"
-msgstr "STABW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Standard deviation. The standard deviation of the normal distribution.\n"
-"itemlist.text"
-msgid "Standard deviation. The standard deviation of the normal distribution."
-msgstr "Standardabweichung. Die Standardabweichung der Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"C\n"
-"itemlist.text"
-msgid "C"
-msgstr "C"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere Wert, WAHR oder ein fehlender Wert berechnet die kumulierte Verteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the normal distribution.\n"
-"itemlist.text"
-msgid "Values of the normal distribution."
-msgstr "Werte der Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the normal distribution is to be calculated."
-msgstr "Der Wert, zu dem die Normalverteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mean\n"
-"itemlist.text"
-msgid "Mean"
-msgstr "Mittelwert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The mean value. The mean value of the normal distribution.\n"
-"itemlist.text"
-msgid "The mean value. The mean value of the normal distribution."
-msgstr "Mittelwert. Der Mittelwert der Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"STDEV\n"
-"itemlist.text"
-msgid "STDEV"
-msgstr "STABW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Standard deviation. The standard deviation of the normal distribution.\n"
-"itemlist.text"
-msgid "Standard deviation. The standard deviation of the normal distribution."
-msgstr "Standardabweichung. Die Standardabweichung der Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"C\n"
-"itemlist.text"
-msgid "C"
-msgstr "C"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere Wert oder WAHR berechnet die kumulierte Verteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse normal distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse normal distribution."
-msgstr "Werte der inversen Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse normal distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse Normalverteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mean\n"
-"itemlist.text"
-msgid "mean"
-msgstr "MW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The mean value. The mean value of the normal distribution.\n"
-"itemlist.text"
-msgid "The mean value. The mean value of the normal distribution."
-msgstr "Mittelwert. Der Mittelwert der Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"STDEV\n"
-"itemlist.text"
-msgid "STDEV"
-msgstr "STABW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Standard deviation. The standard deviation of the normal distribution.\n"
-"itemlist.text"
-msgid "Standard deviation. The standard deviation of the normal distribution."
-msgstr "Standardabweichung. Die Standardabweichung der Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse normal distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse normal distribution."
-msgstr "Werte der inversen Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse normal distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, für den die Inversnormalverteilung berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mean\n"
-"itemlist.text"
-msgid "mean"
-msgstr "MW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The mean value. The mean value of the normal distribution.\n"
-"itemlist.text"
-msgid "The mean value. The mean value of the normal distribution."
-msgstr "Mittelwert. Der Mittelwert der Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"STDEV\n"
-"itemlist.text"
-msgid "STDEV"
-msgstr "STABW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NORM_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Standard deviation. The standard deviation of the normal distribution.\n"
-"itemlist.text"
-msgid "Standard deviation. The standard deviation of the normal distribution."
-msgstr "Standardabweichung. Die Standardabweichung der Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STD_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The values of the standard normal cumulative distribution.\n"
-"itemlist.text"
-msgid "The values of the standard normal cumulative distribution."
-msgstr "Werte der Standardnormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STD_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STD_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the standard normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the standard normal distribution is to be calculated."
-msgstr "Der Wert, zu dem die Standardnormalverteilung berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STD_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The values of the standard normal distribution.\n"
-"itemlist.text"
-msgid "The values of the standard normal distribution."
-msgstr "Werte der Standardnormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STD_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STD_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the standard normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the standard normal distribution is to be calculated."
-msgstr "Der Wert, zu dem die Standardnormalverteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STD_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STD_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere Wert oder WAHR berechnet die Gesamtverteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_S_NORM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse standard normal distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse standard normal distribution."
-msgstr "Werte der inversen Standardnormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_S_NORM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_S_NORM_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse standard normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse standard normal distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse Standardnormalverteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_S_NORM_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse standard normal distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse standard normal distribution."
-msgstr "Werte der inversen Standardnormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_S_NORM_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_S_NORM_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse standard normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse standard normal distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die Inversstandardnormalverteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the log normal distribution.\n"
-"itemlist.text"
-msgid "Values of the log normal distribution."
-msgstr "Werte der Lognormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the log normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the log normal distribution is to be calculated."
-msgstr "Der Wert, zu dem die Lognormalverteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mean\n"
-"itemlist.text"
-msgid "mean"
-msgstr "MW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The mean value of the log normal distribution. It is set to 0 if omitted.\n"
-"itemlist.text"
-msgid "The mean value of the log normal distribution. It is set to 0 if omitted."
-msgstr "Der Mittelwert der Lognormalverteilung. 0, wenn nicht anders angegeben."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"STDEV\n"
-"itemlist.text"
-msgid "STDEV"
-msgstr "STABW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The standard deviation of the log normal distribution. It is set to 1 if omitted.\n"
-"itemlist.text"
-msgid "The standard deviation of the log normal distribution. It is set to 1 if omitted."
-msgstr "Die Standardabweichung der Lognormalverteilung. 1, wenn nicht anders angegeben."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Ein beliebiger anderer Wert, WAHR oder ein fehlender Wert berechnet die kumulative Verteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the log normal distribution.\n"
-"itemlist.text"
-msgid "Values of the log normal distribution."
-msgstr "Werte der Lognormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the log normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the log normal distribution is to be calculated."
-msgstr "Der Wert, zu dem die Lognormalverteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mean\n"
-"itemlist.text"
-msgid "mean"
-msgstr "MW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The mean value of the log normal distribution.\n"
-"itemlist.text"
-msgid "The mean value of the log normal distribution."
-msgstr "Der Mittelwert der Lognormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"STDEV\n"
-"itemlist.text"
-msgid "STDEV"
-msgstr "STABW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The standard deviation of the log normal distribution.\n"
-"itemlist.text"
-msgid "The standard deviation of the log normal distribution."
-msgstr "Die Standardabweichung der Lognormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_NORM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere Wert oder WAHR berechnet die kumulierte Verteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse of the lognormal distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse of the lognormal distribution."
-msgstr "Werte der inversen Lognormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse log normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse log normal distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse Lognormalverteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mean\n"
-"itemlist.text"
-msgid "mean"
-msgstr "MW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mean value. The mean value of the log normal distribution.\n"
-"itemlist.text"
-msgid "Mean value. The mean value of the log normal distribution."
-msgstr "Mittelwert. Der Mittelwert der Lognormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"STDEV\n"
-"itemlist.text"
-msgid "STDEV"
-msgstr "STABW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Standard deviation. The standard deviation of the log normal distribution.\n"
-"itemlist.text"
-msgid "Standard deviation. The standard deviation of the log normal distribution."
-msgstr "Standardabweichung. Die Standardabweichung der Lognormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse of the lognormal distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse of the lognormal distribution."
-msgstr "Werte der inversen Lognormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse log normal distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse log normal distribution is to be calculated."
-msgstr "Der Prozentwert, für den die inverse Lognormalverteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mean\n"
-"itemlist.text"
-msgid "mean"
-msgstr "MW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mean value. The mean value of the log normal distribution.\n"
-"itemlist.text"
-msgid "Mean value. The mean value of the log normal distribution."
-msgstr "Mittelwert. Der Mittelwert der Lognormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"STDEV\n"
-"itemlist.text"
-msgid "STDEV"
-msgstr "STABW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOG_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Standard deviation. The standard deviation of the log normal distribution.\n"
-"itemlist.text"
-msgid "Standard deviation. The standard deviation of the log normal distribution."
-msgstr "Standardabweichung. Die Standardabweichung der Lognormalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the exponential distribution.\n"
-"itemlist.text"
-msgid "Values of the exponential distribution."
-msgstr "Werte der Exponentialverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to which the exponential distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value to which the exponential distribution is to be calculated."
-msgstr "Der Wert, zu dem die Exponentialverteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"lambda\n"
-"itemlist.text"
-msgid "lambda"
-msgstr "Lambda"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The parameters of the exponential distribution.\n"
-"itemlist.text"
-msgid "The parameters of the exponential distribution."
-msgstr "Der Parameter der Exponentialverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"C\n"
-"itemlist.text"
-msgid "C"
-msgstr "C"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulated. C=0 calculates the density function, C=1 the distribution.\n"
-"itemlist.text"
-msgid "Cumulated. C=0 calculates the density function, C=1 the distribution."
-msgstr "Kumuliert. K = 0 berechnet die Dichtefunktion, K = 1 die Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the exponential distribution.\n"
-"itemlist.text"
-msgid "Values of the exponential distribution."
-msgstr "Werte der Exponentialverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to which the exponential distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value to which the exponential distribution is to be calculated."
-msgstr "Der Wert, zu dem die Exponentialverteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"lambda\n"
-"itemlist.text"
-msgid "lambda"
-msgstr "Lambda"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The parameters of the exponential distribution.\n"
-"itemlist.text"
-msgid "The parameters of the exponential distribution."
-msgstr "Der Parameter der Exponentialverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"C\n"
-"itemlist.text"
-msgid "C"
-msgstr "K"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXP_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulated. C=0 calculates the density function, C=1 the distribution.\n"
-"itemlist.text"
-msgid "Cumulated. C=0 calculates the density function, C=1 the distribution."
-msgstr "Kumuliert. K = 0 berechnet die Dichtefunktion, K = 1 die Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution.\n"
-"itemlist.text"
-msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution."
-msgstr "Berechnet die Werte der Wahrscheinlichkeitsdichtefunktion oder der kumulativen Verteilungsfunktion der Gammaverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the gamma distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the gamma distribution is to be calculated."
-msgstr "Der Wert, zu dem die Gamma-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alpha\n"
-"itemlist.text"
-msgid "alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Alpha parameter of the Gamma distribution.\n"
-"itemlist.text"
-msgid "The Alpha parameter of the Gamma distribution."
-msgstr "Der Parameter Alpha der Gamma-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"beta\n"
-"itemlist.text"
-msgid "beta"
-msgstr "Beta"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Beta parameter of the Gamma distribution.\n"
-"itemlist.text"
-msgid "The Beta parameter of the Gamma distribution."
-msgstr "Der Parameter Beta der Gamma-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Ein beliebiger anderer Wert, WAHR oder ein fehlender Wert berechnet die kumulierte Verteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution.\n"
-"itemlist.text"
-msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution."
-msgstr "Gibt den Wert der Wahrscheinlichkeitsdichtefunktion oder der Gesamtverteilungsfunktion für die Gammaverteilung zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the gamma distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the gamma distribution is to be calculated."
-msgstr "Der Wert, zu dem die Gamma-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alpha\n"
-"itemlist.text"
-msgid "alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Alpha parameter of the Gamma distribution.\n"
-"itemlist.text"
-msgid "The Alpha parameter of the Gamma distribution."
-msgstr "Der Parameter Alpha der Gamma-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"beta\n"
-"itemlist.text"
-msgid "beta"
-msgstr "Beta"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Beta parameter of the Gamma distribution.\n"
-"itemlist.text"
-msgid "The Beta parameter of the Gamma distribution."
-msgstr "Der Parameter Beta der Gamma-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere Wert oder WAHR berechnet die kumulierte Verteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse gamma distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse gamma distribution."
-msgstr "Werte der inversen Gamma-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse gamma distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse gamma distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse Gamma-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alpha\n"
-"itemlist.text"
-msgid "alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Alpha (shape) parameter of the Gamma distribution.\n"
-"itemlist.text"
-msgid "The Alpha (shape) parameter of the Gamma distribution."
-msgstr "Der Parameter Alpha der Gamma-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"beta\n"
-"itemlist.text"
-msgid "beta"
-msgstr "Beta"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Beta (scale) parameter of the Gamma distribution.\n"
-"itemlist.text"
-msgid "The Beta (scale) parameter of the Gamma distribution."
-msgstr "Der Parameter Beta der Gamma-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse gamma distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse gamma distribution."
-msgstr "Werte der inversen Gamma-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse gamma distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse gamma distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, für welchen die Inversgammaverteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alpha\n"
-"itemlist.text"
-msgid "alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Alpha (shape) parameter of the Gamma distribution.\n"
-"itemlist.text"
-msgid "The Alpha (shape) parameter of the Gamma distribution."
-msgstr "Der Parameter Alpha der Gamma-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"beta\n"
-"itemlist.text"
-msgid "beta"
-msgstr "Beta"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Beta (scale) parameter of the Gamma distribution.\n"
-"itemlist.text"
-msgid "The Beta (scale) parameter of the Gamma distribution."
-msgstr "Der Parameter Beta der Gamma-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_LN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the natural logarithm of the gamma function.\n"
-"itemlist.text"
-msgid "Returns the natural logarithm of the gamma function."
-msgstr "Logarithmische Werte der Gamma-Funktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_LN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_LN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the natural logarithm of the gamma function is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the natural logarithm of the gamma function is to be calculated."
-msgstr "Der Wert, zu dem der natürliche Logarithmus der Gamma-Funktion berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_LN_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the natural logarithm of the gamma function.\n"
-"itemlist.text"
-msgid "Returns the natural logarithm of the gamma function."
-msgstr "Logarithmische Werte der Gamma-Funktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_LN_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA_LN_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the natural logarithm of the gamma function is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the natural logarithm of the gamma function is to be calculated."
-msgstr "Der Wert, für welchen der natürliche Logarithmus der Gammafunktion berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the value of the Gamma function.\n"
-"itemlist.text"
-msgid "Returns the value of the Gamma function."
-msgstr "Liefert den Wert der Gamma-Funktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GAMMA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the Gamma function is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the Gamma function is to be calculated."
-msgstr "Der Wert, für den die Gamma-Funktion berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the beta distribution.\n"
-"itemlist.text"
-msgid "Values of the beta distribution."
-msgstr "Werte der Beta-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the beta distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the beta distribution is to be calculated."
-msgstr "Der Wert, zu dem die Beta-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alpha\n"
-"itemlist.text"
-msgid "alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Alpha parameter of the Beta distribution.\n"
-"itemlist.text"
-msgid "The Alpha parameter of the Beta distribution."
-msgstr "Der Parameter Alpha der Beta-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"beta\n"
-"itemlist.text"
-msgid "beta"
-msgstr "Beta"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Beta parameter of the Beta distribution.\n"
-"itemlist.text"
-msgid "The Beta parameter of the Beta distribution."
-msgstr "Der Parameter Beta der Beta-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Start\n"
-"itemlist.text"
-msgid "Start"
-msgstr "Anfang"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The starting value for the value interval of the distribution.\n"
-"itemlist.text"
-msgid "The starting value for the value interval of the distribution."
-msgstr "Der Anfangswert für das Werteintervall der Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"End\n"
-"itemlist.text"
-msgid "End"
-msgstr "Ende"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The final value for the value interval of the distribution.\n"
-"itemlist.text"
-msgid "The final value for the value interval of the distribution."
-msgstr "Der Endwert für das Werteintervall der Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion, ein beliebiger anderer Wert, WAHR oder ein fehlender Wert berechnet die kumulierte Verteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse beta distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse beta distribution."
-msgstr "Werte der inversen Beta-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse beta distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse beta distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse Beta-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alpha\n"
-"itemlist.text"
-msgid "alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Alpha parameter of the Beta distribution.\n"
-"itemlist.text"
-msgid "The Alpha parameter of the Beta distribution."
-msgstr "Der Parameter Alpha der Beta-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"beta\n"
-"itemlist.text"
-msgid "beta"
-msgstr "Beta"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Beta parameter of the Beta distribution.\n"
-"itemlist.text"
-msgid "The Beta parameter of the Beta distribution."
-msgstr "Der Parameter Beta der Beta-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Start\n"
-"itemlist.text"
-msgid "Start"
-msgstr "Anfang"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The starting value for the value interval of the distribution.\n"
-"itemlist.text"
-msgid "The starting value for the value interval of the distribution."
-msgstr "Der Anfangswert für das Werteintervall der Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"End\n"
-"itemlist.text"
-msgid "End"
-msgstr "Ende"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The final value for the value interval of the distribution.\n"
-"itemlist.text"
-msgid "The final value for the value interval of the distribution."
-msgstr "Der Endwert für das Werteintervall der Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the beta distribution.\n"
-"itemlist.text"
-msgid "Values of the beta distribution."
-msgstr "Werte der Beta-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the beta distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the beta distribution is to be calculated."
-msgstr "Der Wert, zu dem die Beta-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alpha\n"
-"itemlist.text"
-msgid "alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Alpha parameter of the Beta distribution.\n"
-"itemlist.text"
-msgid "The Alpha parameter of the Beta distribution."
-msgstr "Der Parameter Alpha der Beta-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"beta\n"
-"itemlist.text"
-msgid "beta"
-msgstr "Beta"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Beta parameter of the Beta distribution.\n"
-"itemlist.text"
-msgid "The Beta parameter of the Beta distribution."
-msgstr "Der Parameter Beta der Beta-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion, jeder andere Wert, WAHR oder ein fehlender Wert berechnet die kumulierte Verteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Start\n"
-"itemlist.text"
-msgid "Start"
-msgstr "Anfang"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The starting value for the value interval of the distribution.\n"
-"itemlist.text"
-msgid "The starting value for the value interval of the distribution."
-msgstr "Der Anfangswert für das Werteintervall der Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"End\n"
-"itemlist.text"
-msgid "End"
-msgstr "Ende"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The final value for the value interval of the distribution.\n"
-"itemlist.text"
-msgid "The final value for the value interval of the distribution."
-msgstr "Der Endwert für das Werteintervall der Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse beta distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse beta distribution."
-msgstr "Werte der inversen Beta-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse beta distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse beta distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse Beta-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alpha\n"
-"itemlist.text"
-msgid "alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Alpha parameter of the Beta distribution.\n"
-"itemlist.text"
-msgid "The Alpha parameter of the Beta distribution."
-msgstr "Der Parameter Alpha der Beta-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"beta\n"
-"itemlist.text"
-msgid "beta"
-msgstr "Beta"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Beta parameter of the Beta distribution.\n"
-"itemlist.text"
-msgid "The Beta parameter of the Beta distribution."
-msgstr "Der Parameter Beta der Beta-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Start\n"
-"itemlist.text"
-msgid "Start"
-msgstr "Anfang"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The starting value for the value interval of the distribution.\n"
-"itemlist.text"
-msgid "The starting value for the value interval of the distribution."
-msgstr "Der Anfangswert für das Werteintervall der Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"End\n"
-"itemlist.text"
-msgid "End"
-msgstr "Ende"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BETA_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The final value for the value interval of the distribution.\n"
-"itemlist.text"
-msgid "The final value for the value interval of the distribution."
-msgstr "Der Endwert für das Werteintervall der Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the values of the Weibull distribution.\n"
-"itemlist.text"
-msgid "Returns the values of the Weibull distribution."
-msgstr "Werte der Weibull-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the Weibull distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the Weibull distribution is to be calculated."
-msgstr "Der Wert, zu dem die Weibull-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Alpha\n"
-"itemlist.text"
-msgid "Alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Alpha parameter of the Weibull distribution.\n"
-"itemlist.text"
-msgid "The Alpha parameter of the Weibull distribution."
-msgstr "Der Parameter Alpha der Weibull-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"beta\n"
-"itemlist.text"
-msgid "beta"
-msgstr "Beta"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Beta parameter of the Weibull distribution.\n"
-"itemlist.text"
-msgid "The Beta parameter of the Weibull distribution."
-msgstr "Der Parameter Beta der Weibull-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"C\n"
-"itemlist.text"
-msgid "C"
-msgstr "C"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulated. C=0 calculates the density function, C=1 the distribution.\n"
-"itemlist.text"
-msgid "Cumulated. C=0 calculates the density function, C=1 the distribution."
-msgstr "Kumuliert. K = 0 berechnet die Dichtefunktion, K = 1 die Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the values of the Weibull distribution.\n"
-"itemlist.text"
-msgid "Returns the values of the Weibull distribution."
-msgstr "Werte der Weibull-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the Weibull distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the Weibull distribution is to be calculated."
-msgstr "Der Wert, zu dem die Weibull-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Alpha\n"
-"itemlist.text"
-msgid "Alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Alpha parameter of the Weibull distribution.\n"
-"itemlist.text"
-msgid "The Alpha parameter of the Weibull distribution."
-msgstr "Der Parameter Alpha der Weibull-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"beta\n"
-"itemlist.text"
-msgid "beta"
-msgstr "Beta"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Beta parameter of the Weibull distribution.\n"
-"itemlist.text"
-msgid "The Beta parameter of the Weibull distribution."
-msgstr "Der Parameter Beta der Weibull-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"C\n"
-"itemlist.text"
-msgid "C"
-msgstr "K"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEIBULL_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulated. C=0 calculates the density function, C=1 the distribution.\n"
-"itemlist.text"
-msgid "Cumulated. C=0 calculates the density function, C=1 the distribution."
-msgstr "Kumuliert. K = 0 berechnet die Dichtefunktion, K = 1 die Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the hypergeometric distribution.\n"
-"itemlist.text"
-msgid "Values of the hypergeometric distribution."
-msgstr "Werte der hypergeometrischen Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"X\n"
-"itemlist.text"
-msgid "X"
-msgstr "X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of successes in the sample.\n"
-"itemlist.text"
-msgid "The number of successes in the sample."
-msgstr "Die Anzahl der Erfolge in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"n_sample\n"
-"itemlist.text"
-msgid "n_sample"
-msgstr "N_Stich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The size of the sample.\n"
-"itemlist.text"
-msgid "The size of the sample."
-msgstr "Die Größe der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"successes\n"
-"itemlist.text"
-msgid "successes"
-msgstr "Erfolge"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of successes in the population.\n"
-"itemlist.text"
-msgid "The number of successes in the population."
-msgstr "Die Anzahl der Erfolge in der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"n_population\n"
-"itemlist.text"
-msgid "n_population"
-msgstr "N_Gesamt"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The population size.\n"
-"itemlist.text"
-msgid "The population size."
-msgstr "Die Größe der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulated. TRUE calculates the cumulative distribution function, FALSE the probability mass function.\n"
-"itemlist.text"
-msgid "Cumulated. TRUE calculates the cumulative distribution function, FALSE the probability mass function."
-msgstr "Kummuliert. WAHR berechnet die kumulierte Verteilungsfunktion, FALSCH die Wahrscheinlichkeitsdichtefunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the hypergeometric distribution.\n"
-"itemlist.text"
-msgid "Values of the hypergeometric distribution."
-msgstr "Werte der hypergeometrischen Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"X\n"
-"itemlist.text"
-msgid "X"
-msgstr "X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of successes in the sample.\n"
-"itemlist.text"
-msgid "The number of successes in the sample."
-msgstr "Die Anzahl der Erfolge in der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"n_sample\n"
-"itemlist.text"
-msgid "n_sample"
-msgstr "N_Stich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The size of the sample.\n"
-"itemlist.text"
-msgid "The size of the sample."
-msgstr "Die Größe der Stichprobe."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"successes\n"
-"itemlist.text"
-msgid "successes"
-msgstr "Erfolge"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of successes in the population.\n"
-"itemlist.text"
-msgid "The number of successes in the population."
-msgstr "Die Anzahl der Erfolge in der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"n_population\n"
-"itemlist.text"
-msgid "n_population"
-msgstr "N_Gesamt"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The population size.\n"
-"itemlist.text"
-msgid "The population size."
-msgstr "Die Größe der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYP_GEOM_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulated. TRUE calculates the cumulative distribution function, FALSE the probability mass function.\n"
-"itemlist.text"
-msgid "Cumulated. TRUE calculates the cumulative distribution function, FALSE the probability mass function."
-msgstr "Kummuliert. WAHR berechnet die kumulierte Verteilungsfunktion, FALSCH die Wahrscheinlichkeitsdichtefunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the t-distribution.\n"
-"itemlist.text"
-msgid "Returns the t-distribution."
-msgstr "Werte der t-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the T distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the T distribution is to be calculated."
-msgstr "Der Wert, zu dem die t-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom\n"
-"itemlist.text"
-msgid "degrees_freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the T distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the T distribution."
-msgstr "Die Freiheitsgrade der t-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mode\n"
-"itemlist.text"
-msgid "mode"
-msgstr "Modus"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution.\n"
-"itemlist.text"
-msgid "Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution."
-msgstr "Modus = 1 berechnet den einseitigen Test, Modus = 2 den zweiseitigen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_2T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the two-tailed t-distribution.\n"
-"itemlist.text"
-msgid "Returns the two-tailed t-distribution."
-msgstr "Gibt die zweiseitige T-Verteilung zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_2T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_2T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the T distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the T distribution is to be calculated."
-msgstr "Der Wert, zu dem die t-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_2T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom\n"
-"itemlist.text"
-msgid "degrees_freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_2T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the T distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the T distribution."
-msgstr "Die Freiheitsgrade der t-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the t-distribution.\n"
-"itemlist.text"
-msgid "Returns the t-distribution."
-msgstr "Werte der t-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the T distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the T distribution is to be calculated."
-msgstr "Der Wert, zu dem die t-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom\n"
-"itemlist.text"
-msgid "degrees_freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the T distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the T distribution."
-msgstr "Die Freiheitsgrade der t-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"cumulative\n"
-"itemlist.text"
-msgid "cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"True calculates the cumulative distribution function, false the probability density function.\n"
-"itemlist.text"
-msgid "True calculates the cumulative distribution function, false the probability density function."
-msgstr "WAHR berechnet die Gesamtverteilungsfunktion, FALSCH die Wahrscheinlichkeitsdichtefunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the right-tailed t-distribution.\n"
-"itemlist.text"
-msgid "Returns the right-tailed t-distribution."
-msgstr "Gibt die rechtsseitige T-Verteilung zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the T distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the T distribution is to be calculated."
-msgstr "Der Wert, zu dem die t-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom\n"
-"itemlist.text"
-msgid "degrees_freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_DIST_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the T distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the T distribution."
-msgstr "Die Freiheitsgrade der t-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse t-distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse t-distribution."
-msgstr "Werte der inversen t-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse T distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse T distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse t-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom\n"
-"itemlist.text"
-msgid "degrees_freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the T distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the T distribution."
-msgstr "Die Freiheitsgrade der t-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the left-tailed inverse t-distribution.\n"
-"itemlist.text"
-msgid "Values of the left-tailed inverse t-distribution."
-msgstr "Werte der linksseitigen inversen T-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse T distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse T distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, für den die inverse T-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom\n"
-"itemlist.text"
-msgid "degrees_freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the T distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the T distribution."
-msgstr "Die Freiheitsgrade der t-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV_2T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the two-tailed inverse t-distribution.\n"
-"itemlist.text"
-msgid "Values of the two-tailed inverse t-distribution."
-msgstr "Werte der zweiseitigen inversen T-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV_2T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV_2T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse T distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse T distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, für den die inverse T-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV_2T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom\n"
-"itemlist.text"
-msgid "degrees_freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_INV_2T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the T distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the T distribution."
-msgstr "Die Freiheitsgrade der t-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the F probability distribution.\n"
-"itemlist.text"
-msgid "Values of the F probability distribution."
-msgstr "Werte der F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the F distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the F distribution is to be calculated."
-msgstr "Der Wert, zu dem die F-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom_1\n"
-"itemlist.text"
-msgid "degrees_freedom_1"
-msgstr "Freiheitsgrade_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom in the numerator of the F distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom in the numerator of the F distribution."
-msgstr "Die Freiheitsgrade im Zähler der F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom_2\n"
-"itemlist.text"
-msgid "degrees_freedom_2"
-msgstr "Freiheitsgrade_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom in the denominator of the F distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom in the denominator of the F distribution."
-msgstr "Die Freiheitsgrade im Nenner der F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the left tail F probability distribution.\n"
-"itemlist.text"
-msgid "Values of the left tail F probability distribution."
-msgstr "Werte der linksseitigen F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the F distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the F distribution is to be calculated."
-msgstr "Der Wert, zu dem die F-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom_1\n"
-"itemlist.text"
-msgid "degrees_freedom_1"
-msgstr "Freiheitsgrade_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom in the numerator of the F distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom in the numerator of the F distribution."
-msgstr "Die Freiheitsgrade im Zähler der F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom_2\n"
-"itemlist.text"
-msgid "degrees_freedom_2"
-msgstr "Freiheitsgrade_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom in the denominator of the F distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom in the denominator of the F distribution."
-msgstr "Die Freiheitsgrade im Nenner der F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"cumulative\n"
-"itemlist.text"
-msgid "cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative distribution function (TRUE) or probability density function (FALSE).\n"
-"itemlist.text"
-msgid "Cumulative distribution function (TRUE) or probability density function (FALSE)."
-msgstr "Kumulierte Verteilungsfunktion (WAHR) oder Wahrscheinlichkeitsdichtefunktion (FALSCH)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the right tail F probability distribution.\n"
-"itemlist.text"
-msgid "Values of the right tail F probability distribution."
-msgstr "Werte der rechtsseitigen F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the F distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the F distribution is to be calculated."
-msgstr "Der Wert, zu dem die F-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom_1\n"
-"itemlist.text"
-msgid "degrees_freedom_1"
-msgstr "Freiheitsgrade_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom in the numerator of the F distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom in the numerator of the F distribution."
-msgstr "Die Freiheitsgrade im Zähler der F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom_2\n"
-"itemlist.text"
-msgid "degrees_freedom_2"
-msgstr "Freiheitsgrade_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_DIST_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom in the denominator of the F distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom in the denominator of the F distribution."
-msgstr "Die Freiheitsgrade im Nenner der F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse F distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse F distribution."
-msgstr "Werte der inversen F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse F distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse F distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse F-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom_1\n"
-"itemlist.text"
-msgid "degrees_freedom_1"
-msgstr "Freiheitsgrade_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom in the numerator of the F distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom in the numerator of the F distribution."
-msgstr "Die Freiheitsgrade im Zähler der F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom_2\n"
-"itemlist.text"
-msgid "degrees_freedom_2"
-msgstr "Freiheitsgrade_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom in the denominator of the F distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom in the denominator of the F distribution."
-msgstr "Die Freiheitsgrade im Nenner der F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse left tail F distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse left tail F distribution."
-msgstr "Werte der inversen linksseitigen F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse F distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse F distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse F-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom_1\n"
-"itemlist.text"
-msgid "degrees_freedom_1"
-msgstr "Freiheitsgrade_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom in the numerator of the F distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom in the numerator of the F distribution."
-msgstr "Die Freiheitsgrade im Zähler der F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom_2\n"
-"itemlist.text"
-msgid "degrees_freedom_2"
-msgstr "Freiheitsgrade_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_LT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom in the denominator of the F distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom in the denominator of the F distribution."
-msgstr "Die Freiheitsgrade im Nenner der F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse right tail F distribution.\n"
-"itemlist.text"
-msgid "Values of the inverse right tail F distribution."
-msgstr "Werte der inversen rechtsseitigen F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse F distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse F distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse F-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom_1\n"
-"itemlist.text"
-msgid "degrees_freedom_1"
-msgstr "Freiheitsgrade_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom in the numerator of the F distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom in the numerator of the F distribution."
-msgstr "Die Freiheitsgrade im Zähler der F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom_2\n"
-"itemlist.text"
-msgid "degrees_freedom_2"
-msgstr "Freiheitsgrade_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_INV_RT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom in the denominator of the F distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom in the denominator of the F distribution."
-msgstr "Die Freiheitsgrade im Nenner der F-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the right-tail probability of the chi-square distribution.\n"
-"itemlist.text"
-msgid "Returns the right-tail probability of the chi-square distribution."
-msgstr "Liefert die rechtsseitige Wahrscheinlichkeit der Chi-Quadrat-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the chi square distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the chi square distribution is to be calculated."
-msgstr "Der Wert, zu dem die Chi-Quadrat-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom\n"
-"itemlist.text"
-msgid "degrees_freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the chi square distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the chi square distribution."
-msgstr "Die Freiheitsgrade der Chi-Quadrat-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the right-tail probability of the chi-square distribution.\n"
-"itemlist.text"
-msgid "Returns the right-tail probability of the chi-square distribution."
-msgstr "Liefert die rechtsseitige Wahrscheinlichkeit der Chi-Quadrat-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the chi square distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the chi square distribution is to be calculated."
-msgstr "Der Wert, zu dem die Chi-Quadrat-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom\n"
-"itemlist.text"
-msgid "degrees_freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the chi square distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the chi square distribution."
-msgstr "Die Freiheitsgrade der Chi-Quadrat-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution.\n"
-"itemlist.text"
-msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution."
-msgstr "Liefert Werte der linksseitigen Verteilungsfunktion oder Werte der Wahrscheinlichkeitsdichtefunktion der Chi-Quadrat-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the probability density function or cumulative distribution function is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the probability density function or cumulative distribution function is to be calculated."
-msgstr "Der Wert, für den die Wahrscheinlichkeitsdichtefunktion oder die kumulative Verteilungsfunktion berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Degrees of Freedom\n"
-"itemlist.text"
-msgid "Degrees of Freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the chi-square distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the chi-square distribution."
-msgstr "Freiheitsgrade der Chi-Quadrat-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere Wert, WAHR oder ein fehlender Wert berechnet die kumulierte Verteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution.\n"
-"itemlist.text"
-msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution."
-msgstr "Liefert Werte der linksseitigen Verteilungsfunktion oder Werte der Wahrscheinlichkeitsdichtefunktion der Chi-Quadrat-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value for which the probability density function or cumulative distribution function is to be calculated.\n"
-"itemlist.text"
-msgid "The value for which the probability density function or cumulative distribution function is to be calculated."
-msgstr "Der Wert, für den die Wahrscheinlichkeitsdichtefunktion oder die kumulative Verteilungsfunktion berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Degrees of Freedom\n"
-"itemlist.text"
-msgid "Degrees of Freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the chi-square distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the chi-square distribution."
-msgstr "Freiheitsgrade der Chi-Quadrat-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cumulative\n"
-"itemlist.text"
-msgid "Cumulative"
-msgstr "Kumuliert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_DIST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.\n"
-"itemlist.text"
-msgid "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function."
-msgstr "0 oder FALSCH berechnet die Wahrscheinlichkeitsdichtefunktion. Jeder andere Wert oder WAHR berechnet die kumulierte Verteilungsfunktion."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse of CHIDIST(x; DegreesOfFreedom).\n"
-"itemlist.text"
-msgid "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."
-msgstr "Werte der Inversen von CHIVERT(x; Freiheitsgrade)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse chi square distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse chi square distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse Chi-Quadrat-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom\n"
-"itemlist.text"
-msgid "degrees_freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the chi square distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the chi square distribution."
-msgstr "Die Freiheitsgrade der Chi-Quadrat-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse of CHIDIST(x; DegreesOfFreedom).\n"
-"itemlist.text"
-msgid "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."
-msgstr "Werte der Inversen von CHIVERT(x; Freiheitsgrade)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse chi square distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse chi square distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse Chi-Quadrat-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"degrees_freedom\n"
-"itemlist.text"
-msgid "degrees_freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the chi square distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the chi square distribution."
-msgstr "Die Freiheitsgrade der Chi-Quadrat-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE()).\n"
-"itemlist.text"
-msgid "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())."
-msgstr "Werte der inversen Funktion für CHIQUVERT(x;Freiheitsgrade;WAHR())."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Probability\n"
-"itemlist.text"
-msgid "Probability"
-msgstr "Wahrscheinlichkeit"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse of the chi square distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse of the chi square distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse Chi-Quadrat-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Degrees of Freedom\n"
-"itemlist.text"
-msgid "Degrees of Freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_INV+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the chi square distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the chi square distribution."
-msgstr "Die Freiheitsgrade der Chi-Quadrat-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Values of the inverse of CHISQ.DIST(x;DegreesOfFreedom;TRUE()).\n"
-"itemlist.text"
-msgid "Values of the inverse of CHISQ.DIST(x;DegreesOfFreedom;TRUE())."
-msgstr "Werte der inversen Funktion für CHIQU.VERT(x;Freiheitsgrade;WAHR())."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Probability\n"
-"itemlist.text"
-msgid "Probability"
-msgstr "Wahrscheinlichkeit"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The probability value for which the inverse of the chi square distribution is to be calculated.\n"
-"itemlist.text"
-msgid "The probability value for which the inverse of the chi square distribution is to be calculated."
-msgstr "Der Wahrscheinlichkeitswert, zu dem die inverse Chi-Quadrat-Verteilung berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Degrees of Freedom\n"
-"itemlist.text"
-msgid "Degrees of Freedom"
-msgstr "Freiheitsgrade"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHISQ_INV_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The degrees of freedom of the chi square distribution.\n"
-"itemlist.text"
-msgid "The degrees of freedom of the chi square distribution."
-msgstr "Die Freiheitsgrade der Chi-Quadrat-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STANDARD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts a random variable to a normalized value.\n"
-"itemlist.text"
-msgid "Converts a random variable to a normalized value."
-msgstr "Umrechnung einer Zufallsvariablen auf standardisierte Werte."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STANDARD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STANDARD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be standardized.\n"
-"itemlist.text"
-msgid "The value to be standardized."
-msgstr "Der Wert, der standardisiert werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STANDARD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mean\n"
-"itemlist.text"
-msgid "mean"
-msgstr "MW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STANDARD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The mean value used for moving.\n"
-"itemlist.text"
-msgid "The mean value used for moving."
-msgstr "Der Mittelwert, um den verschoben wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STANDARD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"STDEV\n"
-"itemlist.text"
-msgid "STDEV"
-msgstr "STABW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STANDARD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The standard deviation used for scaling.\n"
-"itemlist.text"
-msgid "The standard deviation used for scaling."
-msgstr "Die Standardabweichung, um die skaliert wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERMUT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the number of permutations for a given number of elements without repetition.\n"
-"itemlist.text"
-msgid "Returns the number of permutations for a given number of elements without repetition."
-msgstr "Berechnet die Anzahl der Variationen von Elementen ohne Wiederholung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERMUT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Count_1\n"
-"itemlist.text"
-msgid "Count_1"
-msgstr "Anzahl 1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERMUT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The total number of elements.\n"
-"itemlist.text"
-msgid "The total number of elements."
-msgstr "Gesamtanzahl der Elemente."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERMUT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Count_2\n"
-"itemlist.text"
-msgid "Count_2"
-msgstr "Anzahl 2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERMUT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The selection number taken from the elements.\n"
-"itemlist.text"
-msgid "The selection number taken from the elements."
-msgstr "Anzahl der ausgewählten Elemente."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERMUTATION_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the number of permutations for a given number of objects (repetition allowed).\n"
-"itemlist.text"
-msgid "Returns the number of permutations for a given number of objects (repetition allowed)."
-msgstr "Berechnet die Anzahl der Variationen von Elementen (mit Wiederholung)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERMUTATION_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Count_1\n"
-"itemlist.text"
-msgid "Count_1"
-msgstr "Anzahl 1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERMUTATION_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The total number of elements.\n"
-"itemlist.text"
-msgid "The total number of elements."
-msgstr "Gesamtanzahl der Elemente."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERMUTATION_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Count_2\n"
-"itemlist.text"
-msgid "Count_2"
-msgstr "Anzahl 2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PERMUTATION_A+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The selection number taken from the elements.\n"
-"itemlist.text"
-msgid "The selection number taken from the elements."
-msgstr "Anzahl der ausgewählten Elemente."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a (1-alpha) confidence interval for a normal distribution.\n"
-"itemlist.text"
-msgid "Returns a (1-alpha) confidence interval for a normal distribution."
-msgstr "Berechnet ein (1-alpha)-Konfidenzintervall einer Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alpha\n"
-"itemlist.text"
-msgid "alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The level of the confidence interval.\n"
-"itemlist.text"
-msgid "The level of the confidence interval."
-msgstr "Das Niveau des Konfidenzintervalls."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"STDEV\n"
-"itemlist.text"
-msgid "STDEV"
-msgstr "STABW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The standard deviation of the population.\n"
-"itemlist.text"
-msgid "The standard deviation of the population."
-msgstr "Die Standardabweichung der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"size\n"
-"itemlist.text"
-msgid "size"
-msgstr "Größe"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The size of the population.\n"
-"itemlist.text"
-msgid "The size of the population."
-msgstr "Die Größe der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_N+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a (1-alpha) confidence interval for a normal distribution.\n"
-"itemlist.text"
-msgid "Returns a (1-alpha) confidence interval for a normal distribution."
-msgstr "Berechnet ein (1-alpha)-Konfidenzintervall einer Normalverteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_N+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alpha\n"
-"itemlist.text"
-msgid "alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_N+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The level of the confidence interval.\n"
-"itemlist.text"
-msgid "The level of the confidence interval."
-msgstr "Das Niveau des Konfidenzintervalls."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_N+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"STDEV\n"
-"itemlist.text"
-msgid "STDEV"
-msgstr "STABW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_N+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The standard deviation of the population.\n"
-"itemlist.text"
-msgid "The standard deviation of the population."
-msgstr "Die Standardabweichung der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_N+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"size\n"
-"itemlist.text"
-msgid "size"
-msgstr "Größe"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_N+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The size of the population.\n"
-"itemlist.text"
-msgid "The size of the population."
-msgstr "Die Größe der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a (1-alpha) confidence interval for a Student's t distribution.\n"
-"itemlist.text"
-msgid "Returns a (1-alpha) confidence interval for a Student's t distribution."
-msgstr "Berechnet ein (1-alpha)-Konfidenzintervall einer studentischen t-Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"alpha\n"
-"itemlist.text"
-msgid "alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The level of the confidence interval.\n"
-"itemlist.text"
-msgid "The level of the confidence interval."
-msgstr "Das Niveau des Konfidenzintervalls."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"STDEV\n"
-"itemlist.text"
-msgid "STDEV"
-msgstr "STABW"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The standard deviation of the population.\n"
-"itemlist.text"
-msgid "The standard deviation of the population."
-msgstr "Die Standardabweichung der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"size\n"
-"itemlist.text"
-msgid "size"
-msgstr "Größe"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONFIDENCE_T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The size of the population.\n"
-"itemlist.text"
-msgid "The size of the population."
-msgstr "Die Größe der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the probability of observing a z-statistic greater than the one computed based on a sample.\n"
-"itemlist.text"
-msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample."
-msgstr "Berechnet die Wahrscheinlichkeit einer z-Statistik, die größer als die auf Basis der Stichprobe errechneten ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The given sample, drawn from a normally distributed population.\n"
-"itemlist.text"
-msgid "The given sample, drawn from a normally distributed population."
-msgstr "Die Stichprobe, die aus einer normalverteilten Grundgesamtheit gewählt wurde."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mu\n"
-"itemlist.text"
-msgid "mu"
-msgstr "my"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The known mean of the population.\n"
-"itemlist.text"
-msgid "The known mean of the population."
-msgstr "Der bekannte Mittelwert der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"sigma\n"
-"itemlist.text"
-msgid "sigma"
-msgstr "sigma"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The known standard deviation of the population. If omitted, the standard deviation of the given sample is used.\n"
-"itemlist.text"
-msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
-msgstr "Die bekannte Standardabweichung der Grundgesamtheit. Falls nicht anders angegeben, wird die Standardabweichung der Stichprobe angenommen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the probability of observing a z-statistic greater than the one computed based on a sample.\n"
-"itemlist.text"
-msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample."
-msgstr "Berechnet die Wahrscheinlichkeit des Beobachtens einer Z-Statistik, die größer ist als die auf einem Beispiel berechnete."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data\n"
-"itemlist.text"
-msgid "data"
-msgstr "Daten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The given sample, drawn from a normally distributed population.\n"
-"itemlist.text"
-msgid "The given sample, drawn from a normally distributed population."
-msgstr "Die Stichprobe, die aus einer normalverteilten Grundgesamtheit gewählt wurde."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mu\n"
-"itemlist.text"
-msgid "mu"
-msgstr "my"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The known mean of the population.\n"
-"itemlist.text"
-msgid "The known mean of the population."
-msgstr "Der bekannte Mittelwert der Grundgesamtheit."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"sigma\n"
-"itemlist.text"
-msgid "sigma"
-msgstr "sigma"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_Z_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The known standard deviation of the population. If omitted, the standard deviation of the given sample is used.\n"
-"itemlist.text"
-msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
-msgstr "Die bekannte Standardabweichung der Population. Falls fehlend, wird die Standardabweichung des gegebenen Beispiels benutzt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the chi square independence test.\n"
-"itemlist.text"
-msgid "Returns the chi square independence test."
-msgstr "Berechnet den Chi-Quadrat-Unabhängigkeitstest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data_B\n"
-"itemlist.text"
-msgid "Data_B"
-msgstr "Daten_B"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The observed data array.\n"
-"itemlist.text"
-msgid "The observed data array."
-msgstr "Die Matrix der beobachteten Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_E\n"
-"itemlist.text"
-msgid "data_E"
-msgstr "Daten_E"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The expected data array.\n"
-"itemlist.text"
-msgid "The expected data array."
-msgstr "Die Matrix der erwarteten Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the chi square independence test.\n"
-"itemlist.text"
-msgid "Returns the chi square independence test."
-msgstr "Berechnet den Chi-Quadrat-Unabhängigkeitstest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data_B\n"
-"itemlist.text"
-msgid "Data_B"
-msgstr "Daten_B"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The observed data array.\n"
-"itemlist.text"
-msgid "The observed data array."
-msgstr "Die Matrix der beobachteten Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_E\n"
-"itemlist.text"
-msgid "data_E"
-msgstr "Daten_E"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHI_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The expected data array.\n"
-"itemlist.text"
-msgid "The expected data array."
-msgstr "Die Matrix der erwarteten Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the F test.\n"
-"itemlist.text"
-msgid "Calculates the F test."
-msgstr "Berechnet den F-Varianztest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_1\n"
-"itemlist.text"
-msgid "data_1"
-msgstr "Daten_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The first record array.\n"
-"itemlist.text"
-msgid "The first record array."
-msgstr "Die Matrix des ersten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_2\n"
-"itemlist.text"
-msgid "data_2"
-msgstr "Daten_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The second record array.\n"
-"itemlist.text"
-msgid "The second record array."
-msgstr "Die Matrix des zweiten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the F test.\n"
-"itemlist.text"
-msgid "Calculates the F test."
-msgstr "Berechnet den F-Varianztest."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_1\n"
-"itemlist.text"
-msgid "data_1"
-msgstr "Daten_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The first record array.\n"
-"itemlist.text"
-msgid "The first record array."
-msgstr "Die Matrix des ersten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_2\n"
-"itemlist.text"
-msgid "data_2"
-msgstr "Daten_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_F_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The second record array.\n"
-"itemlist.text"
-msgid "The second record array."
-msgstr "Die Matrix des zweiten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the T test.\n"
-"itemlist.text"
-msgid "Calculates the T test."
-msgstr "Berechnet den t-Test."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_1\n"
-"itemlist.text"
-msgid "data_1"
-msgstr "Daten_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The first record array.\n"
-"itemlist.text"
-msgid "The first record array."
-msgstr "Die Matrix des ersten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_2\n"
-"itemlist.text"
-msgid "data_2"
-msgstr "Daten_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The second record array.\n"
-"itemlist.text"
-msgid "The second record array."
-msgstr "Die Matrix des zweiten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mode\n"
-"itemlist.text"
-msgid "mode"
-msgstr "Modus"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution\n"
-"itemlist.text"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Modus legt die Anzahl der zu berechnenden Verteilungsseiten fest. Modus = 1 berechnet die einseitige, Modus = 2 die zweiseitige Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The type of the T test.\n"
-"itemlist.text"
-msgid "The type of the T test."
-msgstr "Der Typ des t-Tests."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the T test.\n"
-"itemlist.text"
-msgid "Calculates the T test."
-msgstr "Berechnet den t-Test."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_1\n"
-"itemlist.text"
-msgid "data_1"
-msgstr "Daten_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The first record array.\n"
-"itemlist.text"
-msgid "The first record array."
-msgstr "Die Matrix des ersten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_2\n"
-"itemlist.text"
-msgid "data_2"
-msgstr "Daten_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The second record array.\n"
-"itemlist.text"
-msgid "The second record array."
-msgstr "Die Matrix des zweiten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mode\n"
-"itemlist.text"
-msgid "mode"
-msgstr "Modus"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution\n"
-"itemlist.text"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Modus legt die Anzahl der zu berechnenden Verteilungsseiten fest. Modus = 1 berechnet die einseitige, Modus = 2 die zweiseitige Verteilung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T_TEST_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The type of the T test.\n"
-"itemlist.text"
-msgid "The type of the T test."
-msgstr "Der Typ des t-Tests."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RSQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the square of the Pearson product moment correlation coefficient.\n"
-"itemlist.text"
-msgid "Returns the square of the Pearson product moment correlation coefficient."
-msgstr "Berechnet den Pearsonschen Korrelationskoeffizienten in quadrierter Form."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RSQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_Y\n"
-"itemlist.text"
-msgid "data_Y"
-msgstr "Daten_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RSQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Y data array.\n"
-"itemlist.text"
-msgid "The Y data array."
-msgstr "Die Matrix der Y-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RSQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_X\n"
-"itemlist.text"
-msgid "data_X"
-msgstr "Daten_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RSQ+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The X data array.\n"
-"itemlist.text"
-msgid "The X data array."
-msgstr "Die Matrix der X-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INTERCEPT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the intercept of the linear regression line and the Y axis.\n"
-"itemlist.text"
-msgid "Returns the intercept of the linear regression line and the Y axis."
-msgstr "Berechnet den Schnittpunkt der Regressionsgeraden mit der Y-Achse."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INTERCEPT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_Y\n"
-"itemlist.text"
-msgid "data_Y"
-msgstr "Daten_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INTERCEPT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Y data array.\n"
-"itemlist.text"
-msgid "The Y data array."
-msgstr "Die Matrix der Y-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INTERCEPT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_X\n"
-"itemlist.text"
-msgid "data_X"
-msgstr "Daten_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INTERCEPT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The X data array.\n"
-"itemlist.text"
-msgid "The X data array."
-msgstr "Die Matrix der X-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SLOPE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the slope of the linear regression line.\n"
-"itemlist.text"
-msgid "Returns the slope of the linear regression line."
-msgstr "Berechnet die Steigung der Regressionsgeraden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SLOPE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_Y\n"
-"itemlist.text"
-msgid "data_Y"
-msgstr "Daten_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SLOPE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Y data array.\n"
-"itemlist.text"
-msgid "The Y data array."
-msgstr "Die Matrix der Y-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SLOPE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_X\n"
-"itemlist.text"
-msgid "data_X"
-msgstr "Daten_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SLOPE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The X data array.\n"
-"itemlist.text"
-msgid "The X data array."
-msgstr "Die Matrix der X-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STEYX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the standard error of the linear regression.\n"
-"itemlist.text"
-msgid "Returns the standard error of the linear regression."
-msgstr "Berechnet den Standardfehler bei der linearen Regression."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STEYX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_Y\n"
-"itemlist.text"
-msgid "data_Y"
-msgstr "Daten_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STEYX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Y data array.\n"
-"itemlist.text"
-msgid "The Y data array."
-msgstr "Die Matrix der Y-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STEYX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_X\n"
-"itemlist.text"
-msgid "data_X"
-msgstr "Daten_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STEYX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The X data array.\n"
-"itemlist.text"
-msgid "The X data array."
-msgstr "Die Matrix der X-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PEARSON+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the Pearson product moment correlation coefficient.\n"
-"itemlist.text"
-msgid "Returns the Pearson product moment correlation coefficient."
-msgstr "Berechnet den Pearsonschen Korrelationskoeffizienten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PEARSON+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data_1\n"
-"itemlist.text"
-msgid "Data_1"
-msgstr "Daten_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PEARSON+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The first record array.\n"
-"itemlist.text"
-msgid "The first record array."
-msgstr "Die Matrix des ersten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PEARSON+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data_2\n"
-"itemlist.text"
-msgid "Data_2"
-msgstr "Daten_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PEARSON+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The second record array.\n"
-"itemlist.text"
-msgid "The second record array."
-msgstr "Die Matrix des zweiten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CORREL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the correlation coefficient.\n"
-"itemlist.text"
-msgid "Returns the correlation coefficient."
-msgstr "Berechnet den Korrelationskoeffizienten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CORREL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data_1\n"
-"itemlist.text"
-msgid "Data_1"
-msgstr "Daten_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CORREL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The first record array.\n"
-"itemlist.text"
-msgid "The first record array."
-msgstr "Die Matrix des ersten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CORREL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data_2\n"
-"itemlist.text"
-msgid "Data_2"
-msgstr "Daten_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CORREL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The second record array.\n"
-"itemlist.text"
-msgid "The second record array."
-msgstr "Die Matrix des zweiten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the population covariance.\n"
-"itemlist.text"
-msgid "Calculates the population covariance."
-msgstr "Berechnet die Kovarianz einer Population."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data_1\n"
-"itemlist.text"
-msgid "Data_1"
-msgstr "Daten_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The first record array.\n"
-"itemlist.text"
-msgid "The first record array."
-msgstr "Die Matrix des ersten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data_2\n"
-"itemlist.text"
-msgid "Data_2"
-msgstr "Daten_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The second record array.\n"
-"itemlist.text"
-msgid "The second record array."
-msgstr "Die Matrix des zweiten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVARIANCE_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the population covariance.\n"
-"itemlist.text"
-msgid "Calculates the population covariance."
-msgstr "Berechnet die Kovarianz einer Population."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVARIANCE_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data_1\n"
-"itemlist.text"
-msgid "Data_1"
-msgstr "Daten_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVARIANCE_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The first record array.\n"
-"itemlist.text"
-msgid "The first record array."
-msgstr "Die Matrix des ersten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVARIANCE_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data_2\n"
-"itemlist.text"
-msgid "Data_2"
-msgstr "Daten_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVARIANCE_P+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The second record array.\n"
-"itemlist.text"
-msgid "The second record array."
-msgstr "Die Matrix des zweiten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVARIANCE_S+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the sample covariance.\n"
-"itemlist.text"
-msgid "Calculates the sample covariance."
-msgstr "Berechnet die Beispielkovarianz."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVARIANCE_S+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data_1\n"
-"itemlist.text"
-msgid "Data_1"
-msgstr "Daten_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVARIANCE_S+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The first record array.\n"
-"itemlist.text"
-msgid "The first record array."
-msgstr "Die Matrix des ersten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVARIANCE_S+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data_2\n"
-"itemlist.text"
-msgid "Data_2"
-msgstr "Daten_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COVARIANCE_S+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The second record array.\n"
-"itemlist.text"
-msgid "The second record array."
-msgstr "Die Matrix des zweiten Datensatzes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a value along a linear regression\n"
-"itemlist.text"
-msgid "Returns a value along a linear regression"
-msgstr "Berechnet einen Wert auf der Regressionsgeraden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The X value for which the Y value on the regression linear is to be calculated.\n"
-"itemlist.text"
-msgid "The X value for which the Y value on the regression linear is to be calculated."
-msgstr "Der X-Wert, zu dem der Y-Wert auf der Regressionsgeraden berechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_Y\n"
-"itemlist.text"
-msgid "data_Y"
-msgstr "Daten_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Y data array.\n"
-"itemlist.text"
-msgid "The Y data array."
-msgstr "Die Matrix der Y-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_X\n"
-"itemlist.text"
-msgid "data_X"
-msgstr "Daten_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The X data array.\n"
-"itemlist.text"
-msgid "The X data array."
-msgstr "Die Matrix der X-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_ADD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates future value(s) using additive Exponential Smoothing algorithm.\n"
-"itemlist.text"
-msgid "Calculates future value(s) using additive Exponential Smoothing algorithm."
-msgstr "Berechnet zukünftige(n) Wert(e) unter Verwendung der additiven exponentiellen Glättung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_ADD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"target\n"
-"itemlist.text"
-msgid "target"
-msgstr "Stellen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_ADD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The date (array) for which you want to predict a value.\n"
-"itemlist.text"
-msgid "The date (array) for which you want to predict a value."
-msgstr "Das Datum (Matix), für welches der Wert berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_ADD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"values\n"
-"itemlist.text"
-msgid "values"
-msgstr "Werte"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_ADD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The data array from which you want to forecast.\n"
-"itemlist.text"
-msgid "The data array from which you want to forecast."
-msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_ADD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"timeline\n"
-"itemlist.text"
-msgid "timeline"
-msgstr "Zeitraum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_ADD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The date or numeric array; a consistent step between values is needed.\n"
-"itemlist.text"
-msgid "The date or numeric array; a consistent step between values is needed."
-msgstr "Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen den Werten ist notwendig."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_ADD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"period length\n"
-"itemlist.text"
-msgid "period length"
-msgstr "Periodenlänge"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_ADD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number of Samples in Period (default 1); length of the seasonal pattern.\n"
-"itemlist.text"
-msgid "Number of Samples in Period (default 1); length of the seasonal pattern."
-msgstr "Anzahl an Proben pro Periode (Standardwert: 1); Länge der Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_ADD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data completion\n"
-"itemlist.text"
-msgid "data completion"
-msgstr "Vervollständigung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_ADD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data completion (default 1); 0 treats missing points as zero, 1 interpolates.\n"
-"itemlist.text"
-msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr "Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1 interpoliert sie."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_ADD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"aggregation\n"
-"itemlist.text"
-msgid "aggregation"
-msgstr "Näherung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_ADD+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.\n"
-"itemlist.text"
-msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
-msgstr "Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von (Zeit-) Werten verwendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_MUL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates future value(s) using multiplicative Exponential Smoothing algorithm.\n"
-"itemlist.text"
-msgid "Calculates future value(s) using multiplicative Exponential Smoothing algorithm."
-msgstr "Berechnet zukünftige(n) Wert(e) unter Verwendung der multiplikativen exponentiellen Glättung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_MUL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"target\n"
-"itemlist.text"
-msgid "target"
-msgstr "Stellen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_MUL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The date (array) for which you want to predict a value.\n"
-"itemlist.text"
-msgid "The date (array) for which you want to predict a value."
-msgstr "Das Datum (Matix), für welches der Wert berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_MUL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"values\n"
-"itemlist.text"
-msgid "values"
-msgstr "Werte"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_MUL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The data array from which you want to forecast.\n"
-"itemlist.text"
-msgid "The data array from which you want to forecast."
-msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_MUL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"timeline\n"
-"itemlist.text"
-msgid "timeline"
-msgstr "Zeitraum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_MUL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The date or numeric array; a consistent step between values is needed.\n"
-"itemlist.text"
-msgid "The date or numeric array; a consistent step between values is needed."
-msgstr "Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen den Werten ist notwendig."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_MUL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"period length\n"
-"itemlist.text"
-msgid "period length"
-msgstr "Periodenlänge"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_MUL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number of Samples in Period (default 1); length of the seasonal pattern.\n"
-"itemlist.text"
-msgid "Number of Samples in Period (default 1); length of the seasonal pattern."
-msgstr "Anzahl an Proben pro Periode (Standardwert: 1); Länge der Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_MUL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data completion\n"
-"itemlist.text"
-msgid "data completion"
-msgstr "Vervollständigung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_MUL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data completion (default 1); 0 treats missing points as zero, 1 interpolates.\n"
-"itemlist.text"
-msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr "Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1 interpoliert sie."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_MUL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"aggregation\n"
-"itemlist.text"
-msgid "aggregation"
-msgstr "Näherung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_MUL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.\n"
-"itemlist.text"
-msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
-msgstr "Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von (Zeit-) Werten verwendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a prediction interval at the specified target value(s) for additive Exponential Smoothing method\n"
-"itemlist.text"
-msgid "Returns a prediction interval at the specified target value(s) for additive Exponential Smoothing method"
-msgstr "Liefert zu (einem) vorgegebenen Zielwert(en) ein Vorhersageintervall unter Verwendung der additiven exponentiellen Glättung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"target\n"
-"itemlist.text"
-msgid "target"
-msgstr "Stellen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The date (array) for which you want to predict a value.\n"
-"itemlist.text"
-msgid "The date (array) for which you want to predict a value."
-msgstr "Das Datum (Matix), für welches der Wert berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"values\n"
-"itemlist.text"
-msgid "values"
-msgstr "Werte"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The data array from which you want to forecast.\n"
-"itemlist.text"
-msgid "The data array from which you want to forecast."
-msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"timeline\n"
-"itemlist.text"
-msgid "timeline"
-msgstr "Zeitraum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The date or numeric array; a consistent step between values is needed.\n"
-"itemlist.text"
-msgid "The date or numeric array; a consistent step between values is needed."
-msgstr "Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen den Werten ist notwendig."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"confidence level\n"
-"itemlist.text"
-msgid "confidence level"
-msgstr "Konfidenzintervall"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval.\n"
-"itemlist.text"
-msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval."
-msgstr "Konfidenzintervall (Standardwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0% bis 100% zur Berechnung des Vorhersageintervalls."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"period length\n"
-"itemlist.text"
-msgid "period length"
-msgstr "Periodenlänge"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number of Samples in Period (default 1); length of the seasonal pattern.\n"
-"itemlist.text"
-msgid "Number of Samples in Period (default 1); length of the seasonal pattern."
-msgstr "Anzahl an Proben pro Periode (Standardwert: 1); Länge der Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data completion\n"
-"itemlist.text"
-msgid "data completion"
-msgstr "Vervollständigung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data completion (default 1); 0 treats missing points as zero, 1 interpolates.\n"
-"itemlist.text"
-msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr "Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1 interpoliert sie."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"aggregation\n"
-"itemlist.text"
-msgid "aggregation"
-msgstr "Näherung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.\n"
-"itemlist.text"
-msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
-msgstr "Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von (Zeit-) Werten verwendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a prediction interval at the specified target value(s) for multiplicative Exponential Smoothing method\n"
-"itemlist.text"
-msgid "Returns a prediction interval at the specified target value(s) for multiplicative Exponential Smoothing method"
-msgstr "Liefert zu (einem) vorgegebenen Zielwert(en) ein Vorhersageintervall unter Verwendung der multiplikativen exponentiellen Glättung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"target\n"
-"itemlist.text"
-msgid "target"
-msgstr "Stellen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The date (array) for which you want to predict a value.\n"
-"itemlist.text"
-msgid "The date (array) for which you want to predict a value."
-msgstr "Das Datum (Matix), für welches der Wert berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"values\n"
-"itemlist.text"
-msgid "values"
-msgstr "Werte"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The data array from which you want to forecast.\n"
-"itemlist.text"
-msgid "The data array from which you want to forecast."
-msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"timeline\n"
-"itemlist.text"
-msgid "timeline"
-msgstr "Zeitraum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The date or numeric array; a consistent step between values is needed.\n"
-"itemlist.text"
-msgid "The date or numeric array; a consistent step between values is needed."
-msgstr "Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen den Werten ist notwendig."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"confidence level\n"
-"itemlist.text"
-msgid "confidence level"
-msgstr "Konfidenzintervall"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval.\n"
-"itemlist.text"
-msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval."
-msgstr "Konfidenzintervall (Standardwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0% bis 100% zur Berechnung des Vorhersageintervalls."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"period length\n"
-"itemlist.text"
-msgid "period length"
-msgstr "Periodenlänge"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number of Samples in Period (default 1); length of the seasonal pattern.\n"
-"itemlist.text"
-msgid "Number of Samples in Period (default 1); length of the seasonal pattern."
-msgstr "Anzahl an Proben pro Periode (Standardwert: 1); Länge der Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data completion\n"
-"itemlist.text"
-msgid "data completion"
-msgstr "Vervollständigung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data completion (default 1); 0 treats missing points as zero, 1 interpolates.\n"
-"itemlist.text"
-msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr "Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1 interpoliert sie."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"aggregation\n"
-"itemlist.text"
-msgid "aggregation"
-msgstr "Näherung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_PIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.\n"
-"itemlist.text"
-msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
-msgstr "Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von (Zeit-) Werten verwendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_SEA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the number of samples in period (season) using additive Exponential Triple Smoothing algorithm.\n"
-"itemlist.text"
-msgid "Calculates the number of samples in period (season) using additive Exponential Triple Smoothing algorithm."
-msgstr "Berechnet die Anzahl an Proben pro Periode (Saison) unter Verwendung der additiven exponentiellen Glättung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_SEA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"values\n"
-"itemlist.text"
-msgid "values"
-msgstr "Werte"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_SEA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The data array from which you want to forecast.\n"
-"itemlist.text"
-msgid "The data array from which you want to forecast."
-msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_SEA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"timeline\n"
-"itemlist.text"
-msgid "timeline"
-msgstr "Zeitraum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_SEA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The date or numeric array; a consistent step between values is needed.\n"
-"itemlist.text"
-msgid "The date or numeric array; a consistent step between values is needed."
-msgstr "Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen den Werten ist notwendig."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_SEA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data completion\n"
-"itemlist.text"
-msgid "data completion"
-msgstr "Vervollständigung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_SEA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data completion (default 1); 0 treats missing points as zero, 1 interpolates.\n"
-"itemlist.text"
-msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr "Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1 interpoliert sie."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_SEA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"aggregation\n"
-"itemlist.text"
-msgid "aggregation"
-msgstr "Näherung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_SEA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.\n"
-"itemlist.text"
-msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
-msgstr "Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von (Zeit-) Werten verwendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns statistical value(s) using additive Exponential Smoothing algorithm.\n"
-"itemlist.text"
-msgid "Returns statistical value(s) using additive Exponential Smoothing algorithm."
-msgstr "Gibt (einen) statistische(n) Wert(e) unter Verwendung der additiven exponentiellen Glättung zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"values\n"
-"itemlist.text"
-msgid "values"
-msgstr "Werte"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The data array from which you want to forecast.\n"
-"itemlist.text"
-msgid "The data array from which you want to forecast."
-msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"timeline\n"
-"itemlist.text"
-msgid "timeline"
-msgstr "Zeitraum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The date or numeric array; a consistent step between values is needed.\n"
-"itemlist.text"
-msgid "The date or numeric array; a consistent step between values is needed."
-msgstr "Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen den Werten ist notwendig."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"statistic type\n"
-"itemlist.text"
-msgid "statistic type"
-msgstr "Statistiktyp"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast\n"
-"itemlist.text"
-msgid "Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast"
-msgstr "Wert (1-9) bzw. Matrix mit Werten, der angibt, wecher Statistikwert für die zu berechnende Prognose zurückgegeben werden soll"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"period length\n"
-"itemlist.text"
-msgid "period length"
-msgstr "Periodenlänge"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number of Samples in Period (default 1); length of the seasonal pattern.\n"
-"itemlist.text"
-msgid "Number of Samples in Period (default 1); length of the seasonal pattern."
-msgstr "Anzahl an Proben pro Periode (Standardwert: 1); Länge der Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data completion\n"
-"itemlist.text"
-msgid "data completion"
-msgstr "Vervollständigung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data completion (default 1); 0 treats missing points as zero, 1 interpolates.\n"
-"itemlist.text"
-msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr "Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1 interpoliert sie."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"aggregation\n"
-"itemlist.text"
-msgid "aggregation"
-msgstr "Näherung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.\n"
-"itemlist.text"
-msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
-msgstr "Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von (Zeit-) Werten verwendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns statistical value(s) using multiplicative Exponential Smoothing algorithm.\n"
-"itemlist.text"
-msgid "Returns statistical value(s) using multiplicative Exponential Smoothing algorithm."
-msgstr "Gibt (einen) statistische(n) Wert(e) unter Verwendung der multiplikativen exponentiellen Glättung zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"values\n"
-"itemlist.text"
-msgid "values"
-msgstr "Werte"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The data array from which you want to forecast.\n"
-"itemlist.text"
-msgid "The data array from which you want to forecast."
-msgstr "Die Datenmatrix, für welche die Berechnung erfolgen soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"timeline\n"
-"itemlist.text"
-msgid "timeline"
-msgstr "Zeitraum"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The date or numeric array; a consistent step between values is needed.\n"
-"itemlist.text"
-msgid "The date or numeric array; a consistent step between values is needed."
-msgstr "Das Datum oder eine numerische Matrix; eine konstante Schrittweite zwischen den Werten ist notwendig."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"statistic type\n"
-"itemlist.text"
-msgid "statistic type"
-msgstr "Statistiktyp"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast\n"
-"itemlist.text"
-msgid "Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast"
-msgstr "Wert (1-9) bzw. Matrix mit Werten, der angibt, wecher Statistikwert für die zu berechnende Prognose zurückgegeben werden soll"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"period length\n"
-"itemlist.text"
-msgid "period length"
-msgstr "Periodenlänge"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number Of Samples in Period (default 1); length of the seasonal pattern.\n"
-"itemlist.text"
-msgid "Number Of Samples in Period (default 1); length of the seasonal pattern."
-msgstr "Anzahl an Proben pro Periode (Standardwert: 1); Länge der Periode."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data completion\n"
-"itemlist.text"
-msgid "data completion"
-msgstr "Vervollständigung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data completion (default 1); 0 treats missing points as zero, 1 interpolates.\n"
-"itemlist.text"
-msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr "Vervollständigung (Standardwert: 1); 0 behandelt fehlende Punkte als Null, 1 interpoliert sie."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"aggregation\n"
-"itemlist.text"
-msgid "aggregation"
-msgstr "Näherung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_ETS_STM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.\n"
-"itemlist.text"
-msgid "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values."
-msgstr "Näherung (Standardwert: 1 = MITTELWERT); Methode, die zur Annäherung von (Zeit-) Werten verwendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_LIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a value along a linear regression\n"
-"itemlist.text"
-msgid "Returns a value along a linear regression"
-msgstr "Berechnet einen Wert auf der Regressionsgeraden"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_LIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_LIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The X value for which the Y value on the regression linear is to be calculated.\n"
-"itemlist.text"
-msgid "The X value for which the Y value on the regression linear is to be calculated."
-msgstr "Der X-Wert, zu dem der Y-Wert auf der Regressionsgeraden berechnet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_LIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_Y\n"
-"itemlist.text"
-msgid "data_Y"
-msgstr "Daten_Y"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_LIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Y data array.\n"
-"itemlist.text"
-msgid "The Y data array."
-msgstr "Die Matrix der Y-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_LIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"data_X\n"
-"itemlist.text"
-msgid "data_X"
-msgstr "Daten_X"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FORECAST_LIN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The X data array.\n"
-"itemlist.text"
-msgid "The X data array."
-msgstr "Die Matrix der X-Daten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ADDRESS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the reference to a cell as text.\n"
-"itemlist.text"
-msgid "Returns the reference to a cell as text."
-msgstr "Bestimmt den Bezug auf eine Zelle als Text."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ADDRESS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"row\n"
-"itemlist.text"
-msgid "row"
-msgstr "Zeile"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ADDRESS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The row number of the cell.\n"
-"itemlist.text"
-msgid "The row number of the cell."
-msgstr "Die Zeilennummer der Zelle."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ADDRESS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"column\n"
-"itemlist.text"
-msgid "column"
-msgstr "Spalte"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ADDRESS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The column number of the cell.\n"
-"itemlist.text"
-msgid "The column number of the cell."
-msgstr "Die Spaltennummer der Zelle."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ADDRESS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"ABS\n"
-"itemlist.text"
-msgid "ABS"
-msgstr "Bezug"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ADDRESS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Specifies whether absolute or relative referencing is to be used.\n"
-"itemlist.text"
-msgid "Specifies whether absolute or relative referencing is to be used."
-msgstr "Legt fest, ob absolute oder relative Bezüge verwendet werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ADDRESS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A1\n"
-"itemlist.text"
-msgid "A1"
-msgstr "A1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ADDRESS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style.\n"
-"itemlist.text"
-msgid "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style."
-msgstr "Die Bezugsart: 0 oder FALSCH entspricht der Z1S1-Bezugsart, ein anderer oder kein Wert bedeuten A1-Bezugsart."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ADDRESS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"sheet\n"
-"itemlist.text"
-msgid "sheet"
-msgstr "Tabelle"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ADDRESS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The spreadsheet name of the cell reference.\n"
-"itemlist.text"
-msgid "The spreadsheet name of the cell reference."
-msgstr "Der Tabellendokumentname des Zellbezugs."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AREAS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the number of individual ranges that belong to a (multiple) range.\n"
-"itemlist.text"
-msgid "Returns the number of individual ranges that belong to a (multiple) range."
-msgstr "Bestimmt die Anzahl der Einzelbereiche, die zu einem (Mehrfach-) Bereich gehören."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AREAS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"reference\n"
-"itemlist.text"
-msgid "reference"
-msgstr "Bezug"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_AREAS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The reference to a (multiple) range.\n"
-"itemlist.text"
-msgid "The reference to a (multiple) range."
-msgstr "Der Bezug auf einen (Mehrfach-) Bereich."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHOOSE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Selects a value from a list of up to 30 value arguments.\n"
-"itemlist.text"
-msgid "Selects a value from a list of up to 30 value arguments."
-msgstr "Wählt einen Wert aus bis zu 30 Argumenten aus."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHOOSE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Index\n"
-"itemlist.text"
-msgid "Index"
-msgstr "Index"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHOOSE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The index of the value (1..30) selected.\n"
-"itemlist.text"
-msgid "The index of the value (1..30) selected."
-msgstr "Der Index des ausgewählten Wertes (1...30)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHOOSE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value \n"
-"itemlist.text"
-msgid "value "
-msgstr "Wert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHOOSE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value 1, value 2,... The list of arguments from which a value is chosen.\n"
-"itemlist.text"
-msgid "Value 1, value 2,... The list of arguments from which a value is chosen."
-msgstr "Wert 1; Wert 2;... Die Liste der Argumente, aus der ein Wert ausgewählt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLUMN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the internal column number of a reference.\n"
-"itemlist.text"
-msgid "Returns the internal column number of a reference."
-msgstr "Bestimmt die interne Spaltennummer eines Bezugs."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLUMN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"reference\n"
-"itemlist.text"
-msgid "reference"
-msgstr "Bezug"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLUMN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The reference to a cell or a range.\n"
-"itemlist.text"
-msgid "The reference to a cell or a range."
-msgstr "Der Bezug auf eine Zelle oder einen Bereich."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROW+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the internal row number of a reference.\n"
-"itemlist.text"
-msgid "Defines the internal row number of a reference."
-msgstr "Bestimmt die interne Zeilennummer eines Bezugs."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROW+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"reference\n"
-"itemlist.text"
-msgid "reference"
-msgstr "Bezug"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROW+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The reference to a cell or a range.\n"
-"itemlist.text"
-msgid "The reference to a cell or a range."
-msgstr "Der Bezug auf eine Zelle oder einen Bereich."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SHEET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the internal sheet number of a reference or a string.\n"
-"itemlist.text"
-msgid "Returns the internal sheet number of a reference or a string."
-msgstr "Bestimmt die interne Tabellennummer eines Bezugs oder einer Zeichenkette."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SHEET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"reference\n"
-"itemlist.text"
-msgid "reference"
-msgstr "Bezug"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SHEET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The reference to a cell or a range or the character string of a sheet name.\n"
-"itemlist.text"
-msgid "The reference to a cell or a range or the character string of a sheet name."
-msgstr "Der Bezug auf eine Zelle oder einen Bereich oder die Zeichenkette eines Tabellennamens."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLUMNS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the number of columns in an array or reference.\n"
-"itemlist.text"
-msgid "Returns the number of columns in an array or reference."
-msgstr "Bestimmt die Anzahl der Spalten eines Bezugs oder einer Matrix."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLUMNS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array\n"
-"itemlist.text"
-msgid "array"
-msgstr "Matrix"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLUMNS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array (reference) for which the number of columns is to be determined.\n"
-"itemlist.text"
-msgid "The array (reference) for which the number of columns is to be determined."
-msgstr "Die Matrix (der Bezug), deren Spaltenanzahl bestimmt werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROWS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the number of rows in a reference or array.\n"
-"itemlist.text"
-msgid "Returns the number of rows in a reference or array."
-msgstr "Bestimmt die Anzahl der Zeilen eines Bezugs oder einer Matrix."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROWS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array\n"
-"itemlist.text"
-msgid "array"
-msgstr "Matrix"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROWS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array (reference) for which the number of rows is to be determined.\n"
-"itemlist.text"
-msgid "The array (reference) for which the number of rows is to be determined."
-msgstr "Die Matrix (der Bezug), deren Zeilenanzahl bestimmt werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SHEETS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the number of sheets of a given reference. If no parameter has been entered, the total number of sheets in the document is returned.\n"
-"itemlist.text"
-msgid "Returns the number of sheets of a given reference. If no parameter has been entered, the total number of sheets in the document is returned."
-msgstr "Bestimmt die Anzahl Tabellen eines Bezugs. Ist kein Parameter angegeben, wird die Anzahl Tabellen des Dokuments zurückgegeben."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SHEETS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"reference\n"
-"itemlist.text"
-msgid "reference"
-msgstr "Bezug"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SHEETS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The reference to a cell or a range.\n"
-"itemlist.text"
-msgid "The reference to a cell or a range."
-msgstr "Der Bezug auf eine Zelle oder einen Bereich."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_H_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Horizontal search and reference to the cells located below.\n"
-"itemlist.text"
-msgid "Horizontal search and reference to the cells located below."
-msgstr "Waagerechte Suche und Verweis auf darunter stehende Zellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_H_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"search_criteria\n"
-"itemlist.text"
-msgid "search_criteria"
-msgstr "Suchkriterium"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_H_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be found in the first row.\n"
-"itemlist.text"
-msgid "The value to be found in the first row."
-msgstr "Der Wert, nach dem in der ersten Zeile gesucht wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_H_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array\n"
-"itemlist.text"
-msgid "array"
-msgstr "Matrix"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_H_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array or the range for the reference.\n"
-"itemlist.text"
-msgid "The array or the range for the reference."
-msgstr "Die Matrix oder der Bereich für den Verweis."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_H_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Index\n"
-"itemlist.text"
-msgid "Index"
-msgstr "Index"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_H_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The row index in the array.\n"
-"itemlist.text"
-msgid "The row index in the array."
-msgstr "Zeilenindex in der Matrix."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_H_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"sorted\n"
-"itemlist.text"
-msgid "sorted"
-msgstr "Sortiert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_H_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If the value is TRUE or not given, the search row of the array must be sorted in ascending order.\n"
-"itemlist.text"
-msgid "If the value is TRUE or not given, the search row of the array must be sorted in ascending order."
-msgstr "Ist der Wert WAHR oder nicht angegeben, muss die Suchzeile der Matrix aufsteigend sortiert sein."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_V_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Vertical search and reference to indicated cells.\n"
-"itemlist.text"
-msgid "Vertical search and reference to indicated cells."
-msgstr "Senkrechte Suche und Verweis auf nebenliegende Zellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_V_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criterion\n"
-"itemlist.text"
-msgid "Search criterion"
-msgstr "Suchkriterium"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_V_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be found in the first column.\n"
-"itemlist.text"
-msgid "The value to be found in the first column."
-msgstr "Der Wert, nach dem in der ersten Spalte gesucht wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_V_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"array\n"
-"itemlist.text"
-msgid "array"
-msgstr "Matrix"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_V_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array or range for referencing.\n"
-"itemlist.text"
-msgid "The array or range for referencing."
-msgstr "Die Matrix oder der Bereich für den Verweis."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_V_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Index\n"
-"itemlist.text"
-msgid "Index"
-msgstr "Index"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_V_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Column index number in the array.\n"
-"itemlist.text"
-msgid "Column index number in the array."
-msgstr "Spaltenindex in der Matrix."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_V_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"sort order\n"
-"itemlist.text"
-msgid "sort order"
-msgstr "Sortiert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_V_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If the value is TRUE or not given, the search column of the array must be sorted in ascending order.\n"
-"itemlist.text"
-msgid "If the value is TRUE or not given, the search column of the array must be sorted in ascending order."
-msgstr "Ist der Wert WAHR oder nicht angegeben, muss die Suchspalte der Matrix aufsteigend sortiert sein."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDEX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a reference to a cell from a defined range.\n"
-"itemlist.text"
-msgid "Returns a reference to a cell from a defined range."
-msgstr "Bestimmt einen Bezug auf eine Zelle aus einem angegebenen Bereich."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDEX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"reference\n"
-"itemlist.text"
-msgid "reference"
-msgstr "Bezug"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDEX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The reference to a (multiple) range.\n"
-"itemlist.text"
-msgid "The reference to a (multiple) range."
-msgstr "Der Bezug auf einen (Mehrfach-) Bereich."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDEX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"row\n"
-"itemlist.text"
-msgid "row"
-msgstr "Zeile"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDEX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The row in the range.\n"
-"itemlist.text"
-msgid "The row in the range."
-msgstr "Die Zeile in dem Bereich."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDEX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"column\n"
-"itemlist.text"
-msgid "column"
-msgstr "Spalte"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDEX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The column in the range.\n"
-"itemlist.text"
-msgid "The column in the range."
-msgstr "Die Spalte in dem Bereich."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDEX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"range\n"
-"itemlist.text"
-msgid "range"
-msgstr "Bereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDEX+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The index of the subrange if referring to a multiple range.\n"
-"itemlist.text"
-msgid "The index of the subrange if referring to a multiple range."
-msgstr "Der Index des Teilbereichs, falls es sich um einen Mehrfachbereich handelt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDIRECT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the contents of a cell that is referenced in text form.\n"
-"itemlist.text"
-msgid "Returns the contents of a cell that is referenced in text form."
-msgstr "Bestimmt den Inhalt einer als Bezug in Textform angegebenen Zelle."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDIRECT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"ref \n"
-"itemlist.text"
-msgid "ref "
-msgstr "Bezug "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDIRECT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The cell whose contents are to be evaluated is to be referenced in text form (e.g. \"A1\").\n"
-"itemlist.text"
-msgid "The cell whose contents are to be evaluated is to be referenced in text form (e.g. \"A1\")."
-msgstr "Die Zelle, deren Inhalt ausgewertet werden soll als Bezug in Textform (beispielsweise \"A1\")."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDIRECT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A1\n"
-"itemlist.text"
-msgid "A1"
-msgstr "A1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INDIRECT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style.\n"
-"itemlist.text"
-msgid "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style."
-msgstr "Die Bezugsart: 0 oder FALSCH entspricht der Z1S1-Bezugsart, ein anderer oder kein Wert bedeuten A1-Bezugsart."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Determines a value in a vector by comparison to values in another vector.\n"
-"itemlist.text"
-msgid "Determines a value in a vector by comparison to values in another vector."
-msgstr "Bestimmt einen Wert in einem Vektor durch Wertvergleich in einem anderen Vektor."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criterion\n"
-"itemlist.text"
-msgid "Search criterion"
-msgstr "Suchkriterium"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be used for comparison.\n"
-"itemlist.text"
-msgid "The value to be used for comparison."
-msgstr "Der Wert, mit dem verglichen wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search vector\n"
-"itemlist.text"
-msgid "Search vector"
-msgstr "Suchvektor"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The vector (row or column) in which to search.\n"
-"itemlist.text"
-msgid "The vector (row or column) in which to search."
-msgstr "Der Vektor (die Zeile oder Spalte), in dem gesucht werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"result_vector\n"
-"itemlist.text"
-msgid "result_vector"
-msgstr "Ergebnisvektor"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOOKUP+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The vector (row or range) from which the value is to be determined.\n"
-"itemlist.text"
-msgid "The vector (row or range) from which the value is to be determined."
-msgstr "Der Vektor (die Zeile oder Spalte), aus dem der Wert bestimmt werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MATCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines a position in a array after comparing values.\n"
-"itemlist.text"
-msgid "Defines a position in a array after comparing values."
-msgstr "Bestimmt eine Position in einer Matrix nach einem Wertvergleich."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MATCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Search criterion\n"
-"itemlist.text"
-msgid "Search criterion"
-msgstr "Suchkriterium"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MATCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be used for comparison.\n"
-"itemlist.text"
-msgid "The value to be used for comparison."
-msgstr "Der Wert, mit dem verglichen wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MATCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"lookup_array\n"
-"itemlist.text"
-msgid "lookup_array"
-msgstr "Suchmatrix"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MATCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The array (range) in which the search is made.\n"
-"itemlist.text"
-msgid "The array (range) in which the search is made."
-msgstr "Die Matrix (der Bereich), in der gesucht werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MATCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MATCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Type can take the value 1, 0 or -1 and determines the criteria are to be used for comparison purposes.\n"
-"itemlist.text"
-msgid "Type can take the value 1, 0 or -1 and determines the criteria are to be used for comparison purposes."
-msgstr "Typ kann die Werte 1, 0 oder -1 annehmen und bestimmt, nach welchen Kriterien verglichen wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OFFSET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a reference which has been moved in relation to the starting point.\n"
-"itemlist.text"
-msgid "Returns a reference which has been moved in relation to the starting point."
-msgstr "Bestimmt einen Bezug, der gegenüber dem Ausgangspunkt verschoben ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OFFSET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"reference\n"
-"itemlist.text"
-msgid "reference"
-msgstr "Bezug"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OFFSET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The reference (cell) from which to base the movement.\n"
-"itemlist.text"
-msgid "The reference (cell) from which to base the movement."
-msgstr "Der Bezug (die Zelle), von der ab die Verschiebung bestimmt werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OFFSET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"rows\n"
-"itemlist.text"
-msgid "rows"
-msgstr "Zeilen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OFFSET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of rows to be moved either up or down.\n"
-"itemlist.text"
-msgid "The number of rows to be moved either up or down."
-msgstr "Die Anzahl der Zeilen, um die nach oben oder unten verschoben wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OFFSET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"columns\n"
-"itemlist.text"
-msgid "columns"
-msgstr "Spalten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OFFSET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of columns that are to be moved to the left or to the right.\n"
-"itemlist.text"
-msgid "The number of columns that are to be moved to the left or to the right."
-msgstr "Die Anzahl der Spalten, um die nach links oder rechts verschoben wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OFFSET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"height\n"
-"itemlist.text"
-msgid "height"
-msgstr "Höhe"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OFFSET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of rows of the moved reference.\n"
-"itemlist.text"
-msgid "The number of rows of the moved reference."
-msgstr "Die Anzahl der Zeilen des verschobenen Bezugs."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OFFSET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"width\n"
-"itemlist.text"
-msgid "width"
-msgstr "Breite"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_OFFSET+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of columns in the moved reference.\n"
-"itemlist.text"
-msgid "The number of columns in the moved reference."
-msgstr "Die Anzahl der Spalten des verschobenen Bezugs."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ERROR_TYPE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a number corresponding to an error type\n"
-"itemlist.text"
-msgid "Returns a number corresponding to an error type"
-msgstr "Bestimmt die Fehlernummer zu aufgetretenen Fehlern."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ERROR_TYPE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"reference\n"
-"itemlist.text"
-msgid "reference"
-msgstr "Bezug"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ERROR_TYPE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The reference (cell) in which the error occurred.\n"
-"itemlist.text"
-msgid "The reference (cell) in which the error occurred."
-msgstr "Der Bezug (die Zelle), in dem der Fehler aufgetreten ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ERROR_TYPE_ODF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a number corresponding to one of the error values or #N/A if no error exists\n"
-"itemlist.text"
-msgid "Returns a number corresponding to one of the error values or #N/A if no error exists"
-msgstr "Gibt eine Zahl zurück, die einem der Fehlerwerte entspricht, oder #NV, falls kein Fehler existiert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ERROR_TYPE_ODF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"expression\n"
-"itemlist.text"
-msgid "expression"
-msgstr "Ausdruck"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ERROR_TYPE_ODF+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The error value whose identifying number you want to find. Can be the actual error value or a reference to a cell that you want to test.\n"
-"itemlist.text"
-msgid "The error value whose identifying number you want to find. Can be the actual error value or a reference to a cell that you want to test."
-msgstr "Der Fehlerwert, dessen Kennnummer Sie suchen möchten. Dies kann der Fehlerwert direkt oder ein Bezug zu einer Zelle sein, die Sie testen möchten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STYLE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Applies a Style to the formula cell.\n"
-"itemlist.text"
-msgid "Applies a Style to the formula cell."
-msgstr "Weist der Formelzelle eine Formatvorlage zu."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STYLE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Style\n"
-"itemlist.text"
-msgid "Style"
-msgstr "Vorlage"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STYLE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The name of the Style to be applied.\n"
-"itemlist.text"
-msgid "The name of the Style to be applied."
-msgstr "Der Name der Vorlage, die zugewiesen wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STYLE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Time\n"
-"itemlist.text"
-msgid "Time"
-msgstr "Zeit"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STYLE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The time (in seconds) that the Style is to remain valid.\n"
-"itemlist.text"
-msgid "The time (in seconds) that the Style is to remain valid."
-msgstr "Die Zeit (in Sekunden), welche die Vorlage gültig bleibt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STYLE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Style2\n"
-"itemlist.text"
-msgid "Style2"
-msgstr "Vorlage2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_STYLE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The Style to be applied after time expires.\n"
-"itemlist.text"
-msgid "The Style to be applied after time expires."
-msgstr "Die Vorlage, die nach Ablauf der Zeit zugewiesen wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Result of a DDE link.\n"
-"itemlist.text"
-msgid "Result of a DDE link."
-msgstr "Ergebnis einer DDE-Verknüpfung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"server\n"
-"itemlist.text"
-msgid "server"
-msgstr "Server"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The name of the server application.\n"
-"itemlist.text"
-msgid "The name of the server application."
-msgstr "Der Name der Serveranwendung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"File\n"
-"itemlist.text"
-msgid "File"
-msgstr "Datei"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The name of the file.\n"
-"itemlist.text"
-msgid "The name of the file."
-msgstr "Der Name der Datei."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"range\n"
-"itemlist.text"
-msgid "range"
-msgstr "Bereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range from which data is to be taken.\n"
-"itemlist.text"
-msgid "The range from which data is to be taken."
-msgstr "Der Bereich, aus dem Daten gelesen werden sollen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"mode\n"
-"itemlist.text"
-msgid "mode"
-msgstr "Modus"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DDE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines how data is to be converted to numbers.\n"
-"itemlist.text"
-msgid "Defines how data is to be converted to numbers."
-msgstr "Definiert, wie die Daten in Zahlen umgewandelt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYPERLINK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Hyperlink.\n"
-"itemlist.text"
-msgid "Hyperlink."
-msgstr "Hyperlink."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYPERLINK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"URL \n"
-"itemlist.text"
-msgid "URL "
-msgstr "URL "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYPERLINK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"URL\n"
-"itemlist.text"
-msgid "URL"
-msgstr "URL"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYPERLINK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"CellText \n"
-"itemlist.text"
-msgid "CellText "
-msgstr "Zelltext "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_HYPERLINK+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Cell Text\n"
-"itemlist.text"
-msgid "Cell Text"
-msgstr "Zelltext"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_PIVOT_DATA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Extracts value(s) from a pivot table.\n"
-"itemlist.text"
-msgid "Extracts value(s) from a pivot table."
-msgstr "Liefert Wert(e) aus einer Pivot-Tabelle."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_PIVOT_DATA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Data Field\n"
-"itemlist.text"
-msgid "Data Field"
-msgstr "Datenfeld"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_PIVOT_DATA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The name of the pivot table field to extract.\n"
-"itemlist.text"
-msgid "The name of the pivot table field to extract."
-msgstr "Der Name des Feldes der Pivot-Tabelle."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_PIVOT_DATA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Pivot Table\n"
-"itemlist.text"
-msgid "Pivot Table"
-msgstr "Pivot-Tabelle"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_PIVOT_DATA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A reference to a cell or range in the pivot table.\n"
-"itemlist.text"
-msgid "A reference to a cell or range in the pivot table."
-msgstr "Bezug zu einer Zelle oder einem Zellbereich der Pivot-Tabelle."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_PIVOT_DATA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Field Name / Item\n"
-"itemlist.text"
-msgid "Field Name / Item"
-msgstr "Feldname / Element"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_GET_PIVOT_DATA+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Field name/value pair to filter the target data.\n"
-"itemlist.text"
-msgid "Field name/value pair to filter the target data."
-msgstr "Feldname/Wertepaar, um Zieldaten zu filtern."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BAHTTEXT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts a number to text (Baht).\n"
-"itemlist.text"
-msgid "Converts a number to text (Baht)."
-msgstr "Wandelt eine Zahl in Text um (Baht)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BAHTTEXT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BAHTTEXT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to convert.\n"
-"itemlist.text"
-msgid "The number to convert."
-msgstr "Die umzuwandelnde Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_JIS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts half-width ASCII and katakana characters to full-width.\n"
-"itemlist.text"
-msgid "Converts half-width ASCII and katakana characters to full-width."
-msgstr "Wandelt ASCII- und Katakana-Zeichen halber Breite in Zeichen normaler Breite um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_JIS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_JIS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text to convert.\n"
-"itemlist.text"
-msgid "The text to convert."
-msgstr "Zu konvertierender Text."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ASC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts full-width ASCII and katakana characters to half-width.\n"
-"itemlist.text"
-msgid "Converts full-width ASCII and katakana characters to half-width."
-msgstr "Wandelt ASCII- und Katakana-Zeichen normaler Breite in Zeichen halber Breite um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ASC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ASC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text to convert.\n"
-"itemlist.text"
-msgid "The text to convert."
-msgstr "Zu konvertierender Text."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CODE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a numeric code for the first character in a text string.\n"
-"itemlist.text"
-msgid "Returns a numeric code for the first character in a text string."
-msgstr "Liefert den Code des ersten Zeichens eines Textes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CODE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CODE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"This is the text for which the code of the first character is to be found.\n"
-"itemlist.text"
-msgid "This is the text for which the code of the first character is to be found."
-msgstr "Ist der Text, für den der Code des ersten Zeichens ermittelt werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CURRENCY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts a number to text in currency format.\n"
-"itemlist.text"
-msgid "Converts a number to text in currency format."
-msgstr "Wandelt einen Zahlenwert in einen Text im Währungsformat um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CURRENCY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CURRENCY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value is a number, a reference to a cell containing a number or a formula that results in a number.\n"
-"itemlist.text"
-msgid "Value is a number, a reference to a cell containing a number or a formula that results in a number."
-msgstr "Wert ist eine Zahl, ein Bezug auf eine Zelle, die eine Zahl enthält, oder eine Formel, die eine Zahl ergibt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CURRENCY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"decimals\n"
-"itemlist.text"
-msgid "decimals"
-msgstr "Dezimalstellen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CURRENCY+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Decimal places. Denotes the number of digits to the right of the decimal point.\n"
-"itemlist.text"
-msgid "Decimal places. Denotes the number of digits to the right of the decimal point."
-msgstr "Dezimalstellen. Ist die Anzahl der Ziffern rechts vom Dezimalkomma."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts a code number into a character or letter.\n"
-"itemlist.text"
-msgid "Converts a code number into a character or letter."
-msgstr "Wandelt eine Codezahl in ein Zeichen oder Buchstaben um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CHAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The code value for the character.\n"
-"itemlist.text"
-msgid "The code value for the character."
-msgstr "Der Codewert für das Zeichen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CLEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Removes all nonprintable characters from text.\n"
-"itemlist.text"
-msgid "Removes all nonprintable characters from text."
-msgstr "Löscht nicht druckbare Zeichen aus dem Text."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CLEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CLEAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text from which nonprintable characters are to be removed.\n"
-"itemlist.text"
-msgid "The text from which nonprintable characters are to be removed."
-msgstr "Der Text, aus dem die nicht druckbaren Zeichen entfernt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONCAT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Combines several text items into one.\n"
-"itemlist.text"
-msgid "Combines several text items into one."
-msgstr "Verbindet Texte zu einem einzigen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONCAT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONCAT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Text for the concatenation.\n"
-"itemlist.text"
-msgid "Text for the concatenation."
-msgstr "Text für die Verkettung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONCAT_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Combines several text items into one, accepts cell ranges as arguments.\n"
-"itemlist.text"
-msgid "Combines several text items into one, accepts cell ranges as arguments."
-msgstr "Verkettet mehrere Textelemente zu einem, akzeptiert Zellbereiche als Argumente."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONCAT_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONCAT_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Text and/or cell ranges for the concatenation.\n"
-"itemlist.text"
-msgid "Text and/or cell ranges for the concatenation."
-msgstr "Text und/oder Zellbereiche für die Verknüpfung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TEXTJOIN_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Combines several text items into one, accepts cell ranges as arguments. Uses delimiter between items.\n"
-"itemlist.text"
-msgid "Combines several text items into one, accepts cell ranges as arguments. Uses delimiter between items."
-msgstr "Verkettet mehrere Textelemente zu einem, akzeptiert Zellbereiche als Argumente. Verwendet Trennzeichen zwischen den Elementen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TEXTJOIN_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"delimiter\n"
-"itemlist.text"
-msgid "delimiter"
-msgstr "Trennzeichen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TEXTJOIN_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Text string to be used as delimiter.\n"
-"itemlist.text"
-msgid "Text string to be used as delimiter."
-msgstr "Zeichenkette, die als Trennzeichen verwendendet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TEXTJOIN_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"skip empty cells\n"
-"itemlist.text"
-msgid "skip empty cells"
-msgstr "Leere Zellen überspringen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TEXTJOIN_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If TRUE, empty cells will be ignored.\n"
-"itemlist.text"
-msgid "If TRUE, empty cells will be ignored."
-msgstr "Falls WAHR, werden leere Zellen ignoriert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TEXTJOIN_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TEXTJOIN_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Text and/or cell ranges for the concatenation.\n"
-"itemlist.text"
-msgid "Text and/or cell ranges for the concatenation."
-msgstr "Text und/oder Zellbereiche für die Verknüpfung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Checks 1 or more conditions and returns a value corresponding to the first true condition.\n"
-"itemlist.text"
-msgid "Checks 1 or more conditions and returns a value corresponding to the first true condition."
-msgstr "Prüft eine oder mehr Bedingungen und gibt einen Wert zurück, welcher der ersten wahren Bedingung entspricht."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"test\n"
-"itemlist.text"
-msgid "test"
-msgstr "Test"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Any value or expression which can be either TRUE or FALSE.\n"
-"itemlist.text"
-msgid "Any value or expression which can be either TRUE or FALSE."
-msgstr "Ein beliebiger Wert oder Ausdruck, der WAHR oder FALSCH sein kann."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"result\n"
-"itemlist.text"
-msgid "result"
-msgstr "Ergebnis"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_IFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The result of the function if test is TRUE.\n"
-"itemlist.text"
-msgid "The result of the function if test is TRUE."
-msgstr "Das Ergebnis der Funktion, wenn der Test WAHR ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SWITCH_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Checks 1 or more values and returns a result corresponding to the first value equal to the given expression.\n"
-"itemlist.text"
-msgid "Checks 1 or more values and returns a result corresponding to the first value equal to the given expression."
-msgstr "Prüft 1 oder mehrere Werte und ergibt den ersten Wert, der gleich dem gegebenen Ausdruck ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SWITCH_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"expression\n"
-"itemlist.text"
-msgid "expression"
-msgstr "Ausdruck"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SWITCH_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value that will be compared against value1-valueN.\n"
-"itemlist.text"
-msgid "Value that will be compared against value1-valueN."
-msgstr "Wert, der mit Wert 1-Wert N verglichen wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SWITCH_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value \n"
-"itemlist.text"
-msgid "value "
-msgstr "Wert "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SWITCH_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value that will be compared against expression.\n"
-"itemlist.text"
-msgid "Value that will be compared against expression."
-msgstr "Wert, der mit dem Ausdruck verglichen wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SWITCH_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"result\n"
-"itemlist.text"
-msgid "result"
-msgstr "Ergebnis"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SWITCH_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value to return when corresponding value argument matches expression.\n"
-"itemlist.text"
-msgid "Value to return when corresponding value argument matches expression."
-msgstr "Wert, der zurückgegeben wird, wenn das entsprechende Wertargument mit dem Ausdruck übereinstimmt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MINIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the minimum value in a range that meet multiple criteria in multiple ranges.\n"
-"itemlist.text"
-msgid "Returns the minimum value in a range that meet multiple criteria in multiple ranges."
-msgstr "Gibt den kleinsten Wert in einem Bereich zurück, der mehrere Bedingungen in mehreren Bereichen umfasst."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MINIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"min_range\n"
-"itemlist.text"
-msgid "min_range"
-msgstr "Min Bereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MINIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range from which the minimum will be determined.\n"
-"itemlist.text"
-msgid "The range from which the minimum will be determined."
-msgstr "Der Bereich, aus dem das Minimum bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MINIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"range\n"
-"itemlist.text"
-msgid "range"
-msgstr "Bereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MINIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Range 1, range 2,... are the ranges to be evaluated by the criteria given.\n"
-"itemlist.text"
-msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given."
-msgstr "Bereich 1, Bereich 2,... sind die Bereiche, die mittels der vorgegebenen Bedingungen beurteilt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MINIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"criteria\n"
-"itemlist.text"
-msgid "criteria"
-msgstr "Bedingung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MINIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.\n"
-"itemlist.text"
-msgid "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given."
-msgstr "Bedingung 1, Bedingung 2,... sind die Bedingungen, welche auf den angegebenen Bereich angewendet werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAXIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the maximum value in a range that meet multiple criteria in multiple ranges.\n"
-"itemlist.text"
-msgid "Returns the maximum value in a range that meet multiple criteria in multiple ranges."
-msgstr "Gibt den größten Wert in einem Bereich zurück, der mehrere Bedingungen in mehreren Bereichen umfasst."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAXIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"max_range\n"
-"itemlist.text"
-msgid "max_range"
-msgstr "Max Bereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAXIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The range from which the maximum will be determined.\n"
-"itemlist.text"
-msgid "The range from which the maximum will be determined."
-msgstr "Der Bereich, aus dem das Maximum bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAXIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"range\n"
-"itemlist.text"
-msgid "range"
-msgstr "Bereich"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAXIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Range 1, range 2,... are the ranges to be evaluated by the criteria given.\n"
-"itemlist.text"
-msgid "Range 1, range 2,... are the ranges to be evaluated by the criteria given."
-msgstr "Bereich 1, Bereich 2,... sind die Bereiche, die mittels der vorgegebenen Bedingungen beurteilt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAXIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"criteria\n"
-"itemlist.text"
-msgid "criteria"
-msgstr "Bedingung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MAXIFS_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.\n"
-"itemlist.text"
-msgid "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given."
-msgstr "Bedingung 1, Bedingung 2,... sind die Bedingungen, welche auf den angegebenen Bereich angewendet werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Specifies whether two texts are identical.\n"
-"itemlist.text"
-msgid "Specifies whether two texts are identical."
-msgstr "Gibt an, ob zwei Texte gleich sind."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text_1\n"
-"itemlist.text"
-msgid "text_1"
-msgstr "Text_1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The first text to be used for comparing texts.\n"
-"itemlist.text"
-msgid "The first text to be used for comparing texts."
-msgstr "Der erste Text für den Textvergleich."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text_2\n"
-"itemlist.text"
-msgid "text_2"
-msgstr "Text_2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EXACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The second text for comparing texts.\n"
-"itemlist.text"
-msgid "The second text for comparing texts."
-msgstr "Der zweite Text für den Textvergleich."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Looks for a string of text within another (case sensitive)\n"
-"itemlist.text"
-msgid "Looks for a string of text within another (case sensitive)"
-msgstr "Sucht ein Teilwort in einem Text unter Berücksichtigung von Groß- und Kleinschreibung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"find_text\n"
-"itemlist.text"
-msgid "find_text"
-msgstr "Suchtext"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text to be found.\n"
-"itemlist.text"
-msgid "The text to be found."
-msgstr "Der Text, der gesucht wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which a search is to be made.\n"
-"itemlist.text"
-msgid "The text in which a search is to be made."
-msgstr "Der Text, in dem gesucht wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"position\n"
-"itemlist.text"
-msgid "position"
-msgstr "Position"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The position in the text from which the search starts.\n"
-"itemlist.text"
-msgid "The position in the text from which the search starts."
-msgstr "Die Position im Text, ab der gesucht wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SEARCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Looks for one text value within another (not case-sensitive).\n"
-"itemlist.text"
-msgid "Looks for one text value within another (not case-sensitive)."
-msgstr "Sucht ein Teilwort in einem Text (ohne Berücksichtigung von Groß- und Kleinschreibung)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SEARCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"find_text\n"
-"itemlist.text"
-msgid "find_text"
-msgstr "Suchtext"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SEARCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text to be found.\n"
-"itemlist.text"
-msgid "The text to be found."
-msgstr "Der Text, der gesucht wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SEARCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SEARCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which a search is to be made.\n"
-"itemlist.text"
-msgid "The text in which a search is to be made."
-msgstr "Der Text, in dem gesucht wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SEARCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"position\n"
-"itemlist.text"
-msgid "position"
-msgstr "Position"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SEARCH+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The position in the text where the search is started.\n"
-"itemlist.text"
-msgid "The position in the text where the search is started."
-msgstr "Die Position im Text, ab der gesucht wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Removes extra spaces from text.\n"
-"itemlist.text"
-msgid "Removes extra spaces from text."
-msgstr "Löscht überflüssige Leerzeichen zwischen Worten."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TRIM+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which extra spaces between words are to be deleted.\n"
-"itemlist.text"
-msgid "The text in which extra spaces between words are to be deleted."
-msgstr "Der Text, in dem überflüssige Leerzeichen zwischen Worten gelöscht werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PROPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Capitalizes the first letter in all words.\n"
-"itemlist.text"
-msgid "Capitalizes the first letter in all words."
-msgstr "Wandelt alle Wortanfänge in Großbuchstaben um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PROPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_PROPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which the beginning of words are to be replaced by capital letters.\n"
-"itemlist.text"
-msgid "The text in which the beginning of words are to be replaced by capital letters."
-msgstr "Der Text, in dem Wortanfänge durch Großbuchstaben ersetzt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_UPPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts text to uppercase.\n"
-"itemlist.text"
-msgid "Converts text to uppercase."
-msgstr "Wandelt alle Buchstaben eines Textes in Großbuchstaben um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_UPPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_UPPER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which lower case letters are to be converted to capitals.\n"
-"itemlist.text"
-msgid "The text in which lower case letters are to be converted to capitals."
-msgstr "Der Text, in dem Kleinbuchstaben durch Großbuchstaben ersetzt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOWER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts text to lowercase.\n"
-"itemlist.text"
-msgid "Converts text to lowercase."
-msgstr "Wandelt alle Buchstaben eines Textes in Kleinbuchstaben um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOWER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LOWER+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which capitals are converted to lower case letters.\n"
-"itemlist.text"
-msgid "The text in which capitals are converted to lower case letters."
-msgstr "Der Text, in dem Großbuchstaben durch Kleinbuchstaben ersetzt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts text to a number.\n"
-"itemlist.text"
-msgid "Converts text to a number."
-msgstr "Wandelt einen Text in eine Zahl um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_VALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text to be converted to a number.\n"
-"itemlist.text"
-msgid "The text to be converted to a number."
-msgstr "Der Text, der in eine Zahl gewandelt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TEXT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts a number to text according to a given format.\n"
-"itemlist.text"
-msgid "Converts a number to text according to a given format."
-msgstr "Wandelt eine Zahl gemäß einer Formatangabe in einen Text um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TEXT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TEXT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The numeric value to be converted.\n"
-"itemlist.text"
-msgid "The numeric value to be converted."
-msgstr "Der Zahlenwert, der umgewandelt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TEXT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Format\n"
-"itemlist.text"
-msgid "Format"
-msgstr "Format"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_TEXT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text that describes the format.\n"
-"itemlist.text"
-msgid "The text that describes the format."
-msgstr "Der Text, der das Format beschreibt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a value if it is text, otherwise an empty string.\n"
-"itemlist.text"
-msgid "Returns a value if it is text, otherwise an empty string."
-msgstr "Liefert einen Wert, falls es Text ist, anderenfalls eine leere Zeichenkette."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_T+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be checked and returned if it is text.\n"
-"itemlist.text"
-msgid "The value to be checked and returned if it is text."
-msgstr "Der Wert, der geprüft und zurückgegeben werden soll, falls es Text ist."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPLACE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Replaces characters within a text string with a different text string.\n"
-"itemlist.text"
-msgid "Replaces characters within a text string with a different text string."
-msgstr "Ersetzt einen Teil eines Textes durch einen anderen Text."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPLACE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Text\n"
-"itemlist.text"
-msgid "Text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPLACE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which some characters are to be replaced.\n"
-"itemlist.text"
-msgid "The text in which some characters are to be replaced."
-msgstr "Der Text, in dem ein Teil ersetzt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPLACE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"position\n"
-"itemlist.text"
-msgid "position"
-msgstr "Position"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPLACE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The character position from which text is to be replaced.\n"
-"itemlist.text"
-msgid "The character position from which text is to be replaced."
-msgstr "Die Zeichenposition, ab der ersetzt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPLACE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"length\n"
-"itemlist.text"
-msgid "length"
-msgstr "Länge"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPLACE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of characters to be replaced.\n"
-"itemlist.text"
-msgid "The number of characters to be replaced."
-msgstr "Die Anzahl der Zeichen, die ersetzt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPLACE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"new text\n"
-"itemlist.text"
-msgid "new text"
-msgstr "Textersatz"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPLACE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text to be inserted.\n"
-"itemlist.text"
-msgid "The text to be inserted."
-msgstr "Der Text, der eingesetzt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIXED+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Formats a number with a fixed number of places after the decimal point and thousands separator.\n"
-"itemlist.text"
-msgid "Formats a number with a fixed number of places after the decimal point and thousands separator."
-msgstr "Formatiert eine Zahl mit einer festen Anzahl von Nachkommastellen und Tausenderpunkt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIXED+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIXED+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be formatted.\n"
-"itemlist.text"
-msgid "The number to be formatted."
-msgstr "Die Zahl, die formatiert wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIXED+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Decimals\n"
-"itemlist.text"
-msgid "Decimals"
-msgstr "Dezimalstellen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIXED+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Decimal places. The number of fixed decimal places that are to be displayed.\n"
-"itemlist.text"
-msgid "Decimal places. The number of fixed decimal places that are to be displayed."
-msgstr "Dezimalstellen. Anzahl des festen Dezimalstellen, die dargestellt werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIXED+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"No thousands separators\n"
-"itemlist.text"
-msgid "No thousands separators"
-msgstr "Keine Tausenderseparatoren"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FIXED+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Thousands separator. If 0 or omitted the locale group separator is used else the separator is suppressed.\n"
-"itemlist.text"
-msgid "Thousands separator. If 0 or omitted the locale group separator is used else the separator is suppressed."
-msgstr "Tausendertrenner. Falls 0 oder weggelassen, wird der lokale Gruppenseparator benutzt, ansonsten wird der Trenner unterdrückt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LEN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates length of a text string.\n"
-"itemlist.text"
-msgid "Calculates length of a text string."
-msgstr "Berechnet die Länge eines Textes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LEN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LEN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which the length is to be determined.\n"
-"itemlist.text"
-msgid "The text in which the length is to be determined."
-msgstr "Der Text, dessen Länge bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LEFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the first character or characters of a text.\n"
-"itemlist.text"
-msgid "Returns the first character or characters of a text."
-msgstr "Bestimmt das Anfangsteilwort eines Textes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LEFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LEFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text where the initial partial words are to be determined.\n"
-"itemlist.text"
-msgid "The text where the initial partial words are to be determined."
-msgstr "Der Text, dessen Anfangsteilwort bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LEFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LEFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of characters for the start text.\n"
-"itemlist.text"
-msgid "The number of characters for the start text."
-msgstr "Die Anzahl der Zeichen für das Anfangsteilwort."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RIGHT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the last character or characters of a text.\n"
-"itemlist.text"
-msgid "Returns the last character or characters of a text."
-msgstr "Bestimmt das Endteilwort eines Textes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RIGHT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RIGHT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which the end partial words are to be determined.\n"
-"itemlist.text"
-msgid "The text in which the end partial words are to be determined."
-msgstr "Der Text, dessen Endteilwort bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RIGHT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RIGHT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of characters for the end text.\n"
-"itemlist.text"
-msgid "The number of characters for the end text."
-msgstr "Die Anzahl der Zeichen für das Endteilwort."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MID+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a partial text string of a text.\n"
-"itemlist.text"
-msgid "Returns a partial text string of a text."
-msgstr "Bestimmt ein Teilwort eines Textes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MID+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MID+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which partial words are to be determined.\n"
-"itemlist.text"
-msgid "The text in which partial words are to be determined."
-msgstr "Der Text, dessen Teilwort bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MID+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"start\n"
-"itemlist.text"
-msgid "start"
-msgstr "Anfang"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MID+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The position from which the part word is to be determined.\n"
-"itemlist.text"
-msgid "The position from which the part word is to be determined."
-msgstr "Die Position, ab der das Teilwort bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MID+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MID+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of characters for the text.\n"
-"itemlist.text"
-msgid "The number of characters for the text."
-msgstr "Die Anzahl der Zeichen für das Teilwort."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Repeats text a given number of times.\n"
-"itemlist.text"
-msgid "Repeats text a given number of times."
-msgstr "Wiederholt einen Text so oft wie angegeben."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text to be repeated.\n"
-"itemlist.text"
-msgid "The text to be repeated."
-msgstr "Der Text, der wiederholt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_REPT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of times the text is to be repeated.\n"
-"itemlist.text"
-msgid "The number of times the text is to be repeated."
-msgstr "Die Anzahl, wie oft der Text wiederholt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUBSTITUTE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Substitutes new text for old text in a string.\n"
-"itemlist.text"
-msgid "Substitutes new text for old text in a string."
-msgstr "Ersetzt mehrfach Teilworte in einem Text."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUBSTITUTE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUBSTITUTE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which partial words are to be replaced.\n"
-"itemlist.text"
-msgid "The text in which partial words are to be replaced."
-msgstr "Der Text, in dem Teilworte ausgetauscht werden."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUBSTITUTE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"search_text\n"
-"itemlist.text"
-msgid "search_text"
-msgstr "Suchtext"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUBSTITUTE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The partial string to be (repeatedly) replaced.\n"
-"itemlist.text"
-msgid "The partial string to be (repeatedly) replaced."
-msgstr "Das Teilwort, das (mehrfach) ersetzt werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUBSTITUTE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"new text\n"
-"itemlist.text"
-msgid "new text"
-msgstr "Textersatz"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUBSTITUTE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text which is to replace the text string.\n"
-"itemlist.text"
-msgid "The text which is to replace the text string."
-msgstr "Der Text, der das Teilwort ersetzen soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUBSTITUTE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"occurrence\n"
-"itemlist.text"
-msgid "occurrence"
-msgstr "Auftreten"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_SUBSTITUTE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Which occurrence of the old text is to be replaced.\n"
-"itemlist.text"
-msgid "Which occurrence of the old text is to be replaced."
-msgstr "Das wievielte Auftreten des Teilwortes ersetzt werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BASE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts a positive integer to text from a number system to the base defined.\n"
-"itemlist.text"
-msgid "Converts a positive integer to text from a number system to the base defined."
-msgstr "Wandelt eine positive Ganzzahl in einen Text aus einem Zahlensystem zur angegebenen Basis."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BASE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BASE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be converted.\n"
-"itemlist.text"
-msgid "The number to be converted."
-msgstr "Die umzuwandelnde Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BASE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"radix\n"
-"itemlist.text"
-msgid "radix"
-msgstr "Radix"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BASE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The base number for conversion must be in the range 2 - 36.\n"
-"itemlist.text"
-msgid "The base number for conversion must be in the range 2 - 36."
-msgstr "Die Zahlenbasis, in die konvertiert wird, muss im Bereich 2 - 36 liegen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BASE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Minimum length\n"
-"itemlist.text"
-msgid "Minimum length"
-msgstr "Mindestlänge"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BASE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If the text is shorter than the specified length, zeros are added to the left of the string.\n"
-"itemlist.text"
-msgid "If the text is shorter than the specified length, zeros are added to the left of the string."
-msgstr "Wenn der Text kürzer ist, wird er links mit Nullen aufgefüllt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DECIMAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts a text of a specified number system to a positive integer in the base given.\n"
-"itemlist.text"
-msgid "Converts a text of a specified number system to a positive integer in the base given."
-msgstr "Wandelt einen Text aus einem Zahlensystem zur angegebenen Basis in eine positive Ganzzahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DECIMAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DECIMAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text to be converted.\n"
-"itemlist.text"
-msgid "The text to be converted."
-msgstr "Der umzuwandelnde Text."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DECIMAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"radix\n"
-"itemlist.text"
-msgid "radix"
-msgstr "Radix"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_DECIMAL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The base number for conversion must be in the range 2 - 36.\n"
-"itemlist.text"
-msgid "The base number for conversion must be in the range 2 - 36."
-msgstr "Die Zahlenbasis, in die konvertiert wird, muss im Bereich 2 - 36 liegen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONVERT_OOO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts a value according to a conversion table in the configuration (main.xcd).\n"
-"itemlist.text"
-msgid "Converts a value according to a conversion table in the configuration (main.xcd)."
-msgstr "Konvertiert einen Wert nach einer Umrechnungstabelle in der Konfiguration (main.xcd)."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONVERT_OOO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONVERT_OOO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be converted.\n"
-"itemlist.text"
-msgid "The value to be converted."
-msgstr "Der umzurechnende Wert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONVERT_OOO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONVERT_OOO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Unit from which something is converted, case-sensitive.\n"
-"itemlist.text"
-msgid "Unit from which something is converted, case-sensitive."
-msgstr "Einheit, aus der unter Berücksichtigung der Groß- und Kleinschreibung umgerechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_CONVERT_OOO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Unit into which something is converted, case-sensitive.\n"
-"itemlist.text"
-msgid "Unit into which something is converted, case-sensitive."
-msgstr "Einheit, in die unter Berücksichtigung der Groß- und Kleinschreibung umgerechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROMAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts a number to a Roman numeral.\n"
-"itemlist.text"
-msgid "Converts a number to a Roman numeral."
-msgstr "Wandelt eine Zahl in eine römische Zahl um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROMAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROMAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be converted to a Roman numeral must be in the 0 - 3999 range.\n"
-"itemlist.text"
-msgid "The number to be converted to a Roman numeral must be in the 0 - 3999 range."
-msgstr "Die Zahl, die in eine römische Zahl umgewandelt werden soll, muss im Bereich 0 - 3999 liegen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROMAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Mode\n"
-"itemlist.text"
-msgid "Mode"
-msgstr "Modus"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROMAN+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range.\n"
-"itemlist.text"
-msgid "The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range."
-msgstr "Je höher dieser Wert ist, desto mehr wird die römische Zahl vereinfacht. Der Wert muss im Bereich 0 - 4 liegen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARABIC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates the value of a Roman numeral.\n"
-"itemlist.text"
-msgid "Calculates the value of a Roman numeral."
-msgstr "Berechnet den Wert einer römischen Zahl."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARABIC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Text\n"
-"itemlist.text"
-msgid "Text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ARABIC+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text that represents a Roman numeral.\n"
-"itemlist.text"
-msgid "The text that represents a Roman numeral."
-msgstr "Der Text, der eine römische Zahl darstellt."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INFO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns information about the environment.\n"
-"itemlist.text"
-msgid "Returns information about the environment."
-msgstr "Liefert Informationen über die Arbeitsumgebung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INFO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Text\n"
-"itemlist.text"
-msgid "Text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_INFO+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\".\n"
-"itemlist.text"
-msgid "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\"."
-msgstr "Einer der Werte \"osversion\", \"system\", \"release\", \"numfile\" und \"recalc\"."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_UNICODE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the numeric code for the first Unicode character in a text string.\n"
-"itemlist.text"
-msgid "Returns the numeric code for the first Unicode character in a text string."
-msgstr "Liefert den numerischen Code des ersten Unicode-Zeichens eines Textes."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_UNICODE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_UNICODE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"This is the text for which the code of the first character is to be found.\n"
-"itemlist.text"
-msgid "This is the text for which the code of the first character is to be found."
-msgstr "Ist der Text, für den der Code des ersten Zeichens ermittelt werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_UNICHAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts a code number into a Unicode character or letter.\n"
-"itemlist.text"
-msgid "Converts a code number into a Unicode character or letter."
-msgstr "Wandelt eine Codezahl in ein Unicode-Zeichen oder Buchstaben um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_UNICHAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_UNICHAR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The code value for the character.\n"
-"itemlist.text"
-msgid "The code value for the character."
-msgstr "Der Codewert für das Zeichen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EUROCONVERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts a value from one to another Euro currency.\n"
-"itemlist.text"
-msgid "Converts a value from one to another Euro currency."
-msgstr "Rechnet einen Betrag aus einer EURO-Währung in eine andere um."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EUROCONVERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Wert"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EUROCONVERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be converted.\n"
-"itemlist.text"
-msgid "The value to be converted."
-msgstr "Der umzurechnende Wert."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EUROCONVERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"from_currency\n"
-"itemlist.text"
-msgid "from_currency"
-msgstr "Ausgangswährung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EUROCONVERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"ISO 4217 code of the currency from which is converted, case-sensitive.\n"
-"itemlist.text"
-msgid "ISO 4217 code of the currency from which is converted, case-sensitive."
-msgstr "ISO 4217 Code der Währung, aus der unter Berücksichtigung der Groß- und Kleinschreibung umgerechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EUROCONVERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"to_currency\n"
-"itemlist.text"
-msgid "to_currency"
-msgstr "Zielwährung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EUROCONVERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"ISO 4217 code of the currency into which is converted, case-sensitive.\n"
-"itemlist.text"
-msgid "ISO 4217 code of the currency into which is converted, case-sensitive."
-msgstr "ISO 4217 Code der Währung, in die unter Berücksichtigung der Groß- und Kleinschreibung umgerechnet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EUROCONVERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"full_precision\n"
-"itemlist.text"
-msgid "full_precision"
-msgstr "Volle_Genauigkeit"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EUROCONVERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If omitted or 0 or FALSE, the result is rounded to the decimals of to_currency. Else the result is not rounded.\n"
-"itemlist.text"
-msgid "If omitted or 0 or FALSE, the result is rounded to the decimals of to_currency. Else the result is not rounded."
-msgstr "Falls nicht angegeben oder 0 oder FALSCH, wird das Ergebnis auf die Anzahl Dezimalstellen der Zielwährung gerundet. Anderenfalls erfolgt keine Rundung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EUROCONVERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"triangulation_precision\n"
-"itemlist.text"
-msgid "triangulation_precision"
-msgstr "Zwischenergebnis-Genauigkeit"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_EUROCONVERT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"If given and >=3, the intermediate result of a triangular conversion is rounded to that precision. If omitted, the result is not rounded.\n"
-"itemlist.text"
-msgid "If given and >=3, the intermediate result of a triangular conversion is rounded to that precision. If omitted, the result is not rounded."
-msgstr "Wenn angegeben und >=3, werden die Zwischenergebnisse auf diese Genauigkeit gerundet. Anderenfalls erfolgt keine Rundung."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NUMBERVALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Converts text to a number, in a locale-independent way.\n"
-"itemlist.text"
-msgid "Converts text to a number, in a locale-independent way."
-msgstr "Wandelt Text in eine Zahl um, unabhängig vom Gebietsschema."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NUMBERVALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NUMBERVALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text to be converted to a number.\n"
-"itemlist.text"
-msgid "The text to be converted to a number."
-msgstr "Der Text, der in eine Zahl gewandelt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NUMBERVALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"decimal_separator\n"
-"itemlist.text"
-msgid "decimal_separator"
-msgstr "_Dezimaltrennzeichen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NUMBERVALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the character used as the decimal separator.\n"
-"itemlist.text"
-msgid "Defines the character used as the decimal separator."
-msgstr "Legt das Zeichen fest, welches als Dezimaltrenner verwendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NUMBERVALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"group_separator\n"
-"itemlist.text"
-msgid "group_separator"
-msgstr "_Tausendertrennzeichen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_NUMBERVALUE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Defines the character(s) used as the group separator.\n"
-"itemlist.text"
-msgid "Defines the character(s) used as the group separator."
-msgstr "Legt das/die Zeichen fest, welche(s) als Gruppentrenner verwendet wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITAND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Bitwise \"AND\" of two integers.\n"
-"itemlist.text"
-msgid "Bitwise \"AND\" of two integers."
-msgstr "Bitweises \"UND\" zweier ganzer Zahlen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITAND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number1\n"
-"itemlist.text"
-msgid "Number1"
-msgstr "Zahl1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITAND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Positive integer less than 2^48.\n"
-"itemlist.text"
-msgid "Positive integer less than 2^48."
-msgstr "Positive ganze Zahl kleiner als 2^48."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITAND+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number2\n"
-"itemlist.text"
-msgid "Number2"
-msgstr "Zahl2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Bitwise \"OR\" of two integers.\n"
-"itemlist.text"
-msgid "Bitwise \"OR\" of two integers."
-msgstr "Bitweises \"ODER\" zweier ganzer Zahlen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number1\n"
-"itemlist.text"
-msgid "Number1"
-msgstr "Zahl1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Positive integer less than 2^48.\n"
-"itemlist.text"
-msgid "Positive integer less than 2^48."
-msgstr "Positive ganze Zahl kleiner als 2^48."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number2\n"
-"itemlist.text"
-msgid "Number2"
-msgstr "Zahl2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITXOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Bitwise \"exclusive OR\" of two integers.\n"
-"itemlist.text"
-msgid "Bitwise \"exclusive OR\" of two integers."
-msgstr "Bitweises \"exklusives ODER\" zweier ganzer Zahlen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITXOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number1\n"
-"itemlist.text"
-msgid "Number1"
-msgstr "Zahl1"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITXOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Positive integer less than 2^48.\n"
-"itemlist.text"
-msgid "Positive integer less than 2^48."
-msgstr "Positive ganze Zahl kleiner als 2^48."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITXOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number2\n"
-"itemlist.text"
-msgid "Number2"
-msgstr "Zahl2"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITRSHIFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Bitwise right shift of an integer value.\n"
-"itemlist.text"
-msgid "Bitwise right shift of an integer value."
-msgstr "Bitweise Verschiebung um eine ganze Zahl nach rechts."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITRSHIFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITRSHIFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be shifted. Positive integer less than 2^48.\n"
-"itemlist.text"
-msgid "The value to be shifted. Positive integer less than 2^48."
-msgstr "Wert, um den verschoben werden soll. Positive ganze Zahl kleiner als 2^48."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITRSHIFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Shift\n"
-"itemlist.text"
-msgid "Shift"
-msgstr "Verschiebung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITRSHIFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The integer number of bits the value is to be shifted.\n"
-"itemlist.text"
-msgid "The integer number of bits the value is to be shifted."
-msgstr "Die Anzahl der Bits, um die der Wert verschoben werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITLSHIFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Bitwise left shift of an integer value.\n"
-"itemlist.text"
-msgid "Bitwise left shift of an integer value."
-msgstr "Bitweise Verschiebung um eine ganze Zahl nach links."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITLSHIFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITLSHIFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The value to be shifted. Positive integer less than 2^48.\n"
-"itemlist.text"
-msgid "The value to be shifted. Positive integer less than 2^48."
-msgstr "Wert, um den verschoben werden soll. Positive ganze Zahl kleiner als 2^48."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITLSHIFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Shift\n"
-"itemlist.text"
-msgid "Shift"
-msgstr "Verschiebung"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_BITLSHIFT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The integer number of bits the value is to be shifted.\n"
-"itemlist.text"
-msgid "The integer number of bits the value is to be shifted."
-msgstr "Die Anzahl der Bits, um die der Wert verschoben werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LENB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Calculates length of a text string, with DBCS\n"
-"itemlist.text"
-msgid "Calculates length of a text string, with DBCS"
-msgstr "Berechnet die Länge eines Textes mit DBCS"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LENB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LENB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which the length is to be determined.\n"
-"itemlist.text"
-msgid "The text in which the length is to be determined."
-msgstr "Der Text, dessen Länge bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RIGHTB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the last character or characters of a text,with DBCS\n"
-"itemlist.text"
-msgid "Returns the last character or characters of a text,with DBCS"
-msgstr "Bestimmt das Endteilwort eines Textes mit DBCS"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RIGHTB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RIGHTB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which the end partial words are to be determined.\n"
-"itemlist.text"
-msgid "The text in which the end partial words are to be determined."
-msgstr "Der Text, dessen Endteilwort bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RIGHTB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RIGHTB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of characters for the end text.\n"
-"itemlist.text"
-msgid "The number of characters for the end text."
-msgstr "Die Anzahl der Zeichen für das Endteilwort."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LEFTB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the first character or characters of a text,with DBCS\n"
-"itemlist.text"
-msgid "Returns the first character or characters of a text,with DBCS"
-msgstr "Bestimmt das Anfangsteilwort eines Textes mit DBCS"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LEFTB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LEFTB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text where the initial partial words are to be determined.\n"
-"itemlist.text"
-msgid "The text where the initial partial words are to be determined."
-msgstr "Der Text, dessen Anfangsteilwort bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LEFTB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_LEFTB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of characters for the start text.\n"
-"itemlist.text"
-msgid "The number of characters for the start text."
-msgstr "Die Anzahl der Zeichen für das Anfangsteilwort."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns a partial text string of a text, with DBCS\n"
-"itemlist.text"
-msgid "Returns a partial text string of a text, with DBCS"
-msgstr "Bestimmt ein Teilwort eines Textes mit DBCS"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"text\n"
-"itemlist.text"
-msgid "text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The text in which partial words are to be determined.\n"
-"itemlist.text"
-msgid "The text in which partial words are to be determined."
-msgstr "Der Text, dessen Teilwort bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"start\n"
-"itemlist.text"
-msgid "start"
-msgstr "Anfang"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The position from which the part word is to be determined.\n"
-"itemlist.text"
-msgid "The position from which the part word is to be determined."
-msgstr "Die Position, ab der das Teilwort bestimmt wird."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"number\n"
-"itemlist.text"
-msgid "number"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_MIDB+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of characters for the text.\n"
-"itemlist.text"
-msgid "The number of characters for the text."
-msgstr "Die Anzahl der Zeichen für das Teilwort."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FILTERXML+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Apply an XPath expression to an XML document\n"
-"itemlist.text"
-msgid "Apply an XPath expression to an XML document"
-msgstr "Wendet einen XPath-Ausdruck auf ein XML-Dokument an"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FILTERXML+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"XML Document\n"
-"itemlist.text"
-msgid "XML Document"
-msgstr "XML-Dokument"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FILTERXML+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"String containing a valid XML stream\n"
-"itemlist.text"
-msgid "String containing a valid XML stream"
-msgstr "Zeichenkette, die einen gültigen XML-Strom enthält"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FILTERXML+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"XPath expression\n"
-"itemlist.text"
-msgid "XPath expression"
-msgstr "XPath-Ausdruck"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_FILTERXML+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"String containing a valid XPath expression\n"
-"itemlist.text"
-msgid "String containing a valid XPath expression"
-msgstr "Zeichenkette, die einen gültigen XPath-Ausdruck enthält"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns an implementation defined value representing a RGBA color\n"
-"itemlist.text"
-msgid "Returns an implementation defined value representing a RGBA color"
-msgstr "Gibt eine Implementation definierter Werte zurück, die eine RGBA-Farbe repräsentieren"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Red\n"
-"itemlist.text"
-msgid "Red"
-msgstr "Rot"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value of red\n"
-"itemlist.text"
-msgid "Value of red"
-msgstr "Wert für rot"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Green\n"
-"itemlist.text"
-msgid "Green"
-msgstr "Grün"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value of green\n"
-"itemlist.text"
-msgid "Value of green"
-msgstr "Wert für grün"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Blue\n"
-"itemlist.text"
-msgid "Blue"
-msgstr "Blau"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value of blue\n"
-"itemlist.text"
-msgid "Value of blue"
-msgstr "Wert für blau"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Alpha\n"
-"itemlist.text"
-msgid "Alpha"
-msgstr "Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_COLOR+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Value of alpha\n"
-"itemlist.text"
-msgid "Value of alpha"
-msgstr "Wert für Alpha"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEBSERVICE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Get some webcontent from an URI.\n"
-"itemlist.text"
-msgid "Get some webcontent from an URI."
-msgstr "Inhalt teilweise von einer URI aus dem Internet beziehen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEBSERVICE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"URI\n"
-"itemlist.text"
-msgid "URI"
-msgstr "URI"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_WEBSERVICE+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"URI of the webservice\n"
-"itemlist.text"
-msgid "URI of the webservice"
-msgstr "URI des Webdienstes"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ENCODEURL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Return a URL-encoded string.\n"
-"itemlist.text"
-msgid "Return a URL-encoded string."
-msgstr "Gibt eine URL-codierte Zeichenkette zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ENCODEURL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Text\n"
-"itemlist.text"
-msgid "Text"
-msgstr "Text"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ENCODEURL+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"A string to be URL-encoded\n"
-"itemlist.text"
-msgid "A string to be URL-encoded"
-msgstr "Eine Zeichenkette, die URL-codiert ist"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ERF_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the error function.\n"
-"itemlist.text"
-msgid "Returns the error function."
-msgstr "Gibt die Fehlerfunktion zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ERF_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Lower Limit\n"
-"itemlist.text"
-msgid "Lower Limit"
-msgstr "Untergrenze"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ERF_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The lower limit for integration\n"
-"itemlist.text"
-msgid "The lower limit for integration"
-msgstr "Die Untergrenze für die Integration"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ERFC_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the complementary error function.\n"
-"itemlist.text"
-msgid "Returns the complementary error function."
-msgstr "Gibt die komplementäre Fehlerfunktion zurück."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ERFC_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Lower Limit\n"
-"itemlist.text"
-msgid "Lower Limit"
-msgstr "Untergrenze"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ERFC_MS+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The lower limit for integration\n"
-"itemlist.text"
-msgid "The lower limit for integration"
-msgstr "Die Untergrenze für die Integration"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RAWSUBTRACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Returns the subtraction of numbers. Like a-b-c but without eliminating small roundoff errors.\n"
-"itemlist.text"
-msgid "Returns the subtraction of numbers. Like a-b-c but without eliminating small roundoff errors."
-msgstr "Gibt die Differenz von Zahlen zurück. Beispielsweise a-b-c, aber ohne Rundungsfehler zu beseitigen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RAWSUBTRACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"minuend\n"
-"itemlist.text"
-msgid "minuend"
-msgstr "Minuend"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RAWSUBTRACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Number from which following arguments are subtracted.\n"
-"itemlist.text"
-msgid "Number from which following arguments are subtracted."
-msgstr "Zahl, von der die folgenden Argumente subtrahiert werden sollen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RAWSUBTRACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"subtrahend \n"
-"itemlist.text"
-msgid "subtrahend "
-msgstr "Subtrahend "
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_RAWSUBTRACT+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Subtrahend 1, subtrahend 2, ... are numerical arguments subtracted from the minuend.\n"
-"itemlist.text"
-msgid "Subtrahend 1, subtrahend 2, ... are numerical arguments subtracted from the minuend."
-msgstr "Subtrahend 1, Subtrahend 2, ... sind numerische Argumente, die vom Minuend subtrahiert werden sollen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUNDSIG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"Rounds a number to predefined significant digits.\n"
-"itemlist.text"
-msgid "Rounds a number to predefined significant digits."
-msgstr "Rundet eine Zahl auf eine vorgegebene Anzahl an Stellen."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUNDSIG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"value\n"
-"itemlist.text"
-msgid "value"
-msgstr "Zahl"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUNDSIG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number to be rounded.\n"
-"itemlist.text"
-msgid "The number to be rounded."
-msgstr "Die Zahl, die gerundet werden soll."
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUNDSIG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"digits\n"
-"itemlist.text"
-msgid "digits"
-msgstr "Stellen"
-
-#: scfuncs.src
-msgctxt ""
-"scfuncs.src\n"
-"SC_OPCODE_ROUNDSIG+RID_SC_FUNC_DESCRIPTIONS_START\n"
-"The number of significant digits to which value is to be rounded.\n"
-"itemlist.text"
-msgid "The number of significant digits to which value is to be rounded."
-msgstr "Die Anzahl an signifikanten Stellen, auf die die Zahl gerundet werden soll."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_LONG_SCDOC_NAME\n"
-"string.text"
-msgid "%PRODUCTNAME %PRODUCTVERSION Spreadsheet"
-msgstr "%PRODUCTNAME %PRODUCTVERSION Tabellendokument"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_SHORT_SCDOC_NAME\n"
-"string.text"
-msgid "Spreadsheet"
-msgstr "Tabellendokument"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNDEFINED\n"
-"string.text"
-msgid "- undefined -"
-msgstr "- undefiniert -"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_NONE\n"
-"string.text"
-msgid "- none -"
-msgstr "- keiner -"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_ALL\n"
-"string.text"
-msgid "- all -"
-msgstr "- alle -"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_MULTIPLE\n"
-"string.text"
-msgid "- multiple -"
-msgstr "- mehrfach -"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_STDFILTER\n"
-"string.text"
-msgid "Standard Filter..."
-msgstr "Standardfilter..."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_TOP10FILTER\n"
-"string.text"
-msgid "Top 10"
-msgstr "Top 10"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_FILTER_EMPTY\n"
-"string.text"
-msgid "Empty"
-msgstr "Leer"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_FILTER_NOTEMPTY\n"
-"string.text"
-msgid "Not Empty"
-msgstr "Nicht leer"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_NONAME\n"
-"string.text"
-msgid "unnamed"
-msgstr "unbenannt"
-
-#. %1 is replaced to column letter, such as 'Column A'
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_COLUMN\n"
-"string.text"
-msgid "Column %1"
-msgstr "Spalte %1"
-
-#. %1 is replaced to row number, such as 'Row 1'
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_ROW\n"
-"string.text"
-msgid "Row %1"
-msgstr "Zeile %1"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_TABLE\n"
-"string.text"
-msgid "Sheet"
-msgstr "Tabelle"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_NAME\n"
-"string.text"
-msgid "Name"
-msgstr "Name"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_APDTABLE\n"
-"string.text"
-msgid "Append Sheet"
-msgstr "Tabelle anhängen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_RENAMETAB\n"
-"string.text"
-msgid "Rename Sheet"
-msgstr "Tabelle umbenennen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_SET_TAB_BG_COLOR\n"
-"string.text"
-msgid "Tab Color"
-msgstr "Registerfarbe"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_NO_TAB_BG_COLOR\n"
-"string.text"
-msgid "Default"
-msgstr "Standard"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_RENAMEOBJECT\n"
-"string.text"
-msgid "Name Object"
-msgstr "Objekt benennen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_INSERTGRAPHIC\n"
-"string.text"
-msgid "Insert Image"
-msgstr "Bild einfügen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_PROTECTDOC\n"
-"string.text"
-msgid "Protect Document"
-msgstr "Dokument schützen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNPROTECTDOC\n"
-"string.text"
-msgid "Unprotect document"
-msgstr "Dokumentschutz aufheben"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNPROTECTTAB\n"
-"string.text"
-msgid "Unprotect sheet"
-msgstr "Tabellenschutz aufheben"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_CHG_PROTECT\n"
-"string.text"
-msgid "Protect Records"
-msgstr "Aufzeichnung schützen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_CHG_UNPROTECT\n"
-"string.text"
-msgid "Unprotect Records"
-msgstr "Aufzeichnungsschutz aufheben"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_PASSWORD\n"
-"string.text"
-msgid "Password:"
-msgstr "Kennwort:"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_PASSWORDOPT\n"
-"string.text"
-msgid "Password (optional):"
-msgstr "Kennwort (optional):"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_WRONGPASSWORD\n"
-"string.text"
-msgid "Incorrect Password"
-msgstr "Falsches Kennwort"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_END\n"
-"string.text"
-msgid "~End"
-msgstr "~Ende"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNKNOWN\n"
-"string.text"
-msgid "Unknown"
-msgstr "Unbekannt"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_VALID_MINIMUM\n"
-"string.text"
-msgid "~Minimum"
-msgstr "~Minimum"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_VALID_MAXIMUM\n"
-"string.text"
-msgid "~Maximum"
-msgstr "~Maximum"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_VALID_VALUE\n"
-"string.text"
-msgid "~Value"
-msgstr "~Wert"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_VALID_RANGE\n"
-"string.text"
-msgid "~Source"
-msgstr "~Quelle"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_VALID_LIST\n"
-"string.text"
-msgid "~Entries"
-msgstr "~Einträge"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_CHARSET_USER\n"
-"string.text"
-msgid "System"
-msgstr "System"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_COLUMN_USER\n"
-"string.text"
-msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
-msgstr "Standard;Text;Datum (TMJ);Datum (MTJ);Datum (JMT);US-Englisch;ausblenden"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_FIELDSEP_TAB\n"
-"string.text"
-msgid "Tab"
-msgstr "Tabulator"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_FIELDSEP_SPACE\n"
-"string.text"
-msgid "space"
-msgstr "Leerzeichen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_FORMULA_AUTOCORRECTION\n"
-"string.text"
-msgid ""
-"%PRODUCTNAME Calc found an error in the formula entered.\n"
-"Do you want to accept the correction proposed below?\n"
-"\n"
-msgstr ""
-"%PRODUCTNAME Calc hat einen Fehler in der eingegebenen Formel gefunden.\n"
-"Möchten Sie die unten vorgeschlagene Korrektur akzeptieren?\n"
-"\n"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNDO_GRAFFILTER\n"
-"string.text"
-msgid "Image Filter"
-msgstr "Grafikfilter"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_CAPTION_DEFAULT_TEXT\n"
-"string.text"
-msgid "Text"
-msgstr "Text"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_DLG_SELECTTABLES_TITLE\n"
-"string.text"
-msgid "Select Sheets"
-msgstr "Tabellen auswählen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_DLG_SELECTTABLES_LBNAME\n"
-"string.text"
-msgid "~Selected sheets"
-msgstr "~Ausgewählte Tabellen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_REPLCELLSWARN\n"
-"string.text"
-msgid ""
-"You are pasting data into cells that already contain data.\n"
-"Do you really want to overwrite the existing data?"
-msgstr ""
-"Die Zellen, in die Sie Daten einfügen möchten, enthalten bereits Daten.\n"
-"Möchten Sie die vorhandenen Daten wirklich überschreiben?"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_CSVRULER_NAME\n"
-"string.text"
-msgid "Ruler"
-msgstr "Lineal"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_CSVRULER_DESCR\n"
-"string.text"
-msgid "This ruler manages objects at fixed positions."
-msgstr "Dieses Lineal verwaltet Objekte an festen Positionen."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_CSVGRID_NAME\n"
-"string.text"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_CSVGRID_DESCR\n"
-"string.text"
-msgid "This sheet shows how the data will be arranged in the document."
-msgstr "Diese Tabelle zeigt die Anordnung der Daten, wie sie im Dokument erscheinen."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_DOC_NAME\n"
-"string.text"
-msgid "Document view"
-msgstr "Dokumentenansicht"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_TABLE_NAME\n"
-"string.text"
-msgid "Sheet %1"
-msgstr "Tabelle %1"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_CELL_NAME\n"
-"string.text"
-msgid "Cell %1"
-msgstr "Zelle %1"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_LEFTAREA_NAME\n"
-"string.text"
-msgid "Left area"
-msgstr "Linker Bereich"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_PREVIEWDOC_NAME\n"
-"string.text"
-msgid "Page preview"
-msgstr "Druckvorschau"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_CENTERAREA_NAME\n"
-"string.text"
-msgid "Center area"
-msgstr "Mittlerer Bereich"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_RIGHTAREA_NAME\n"
-"string.text"
-msgid "Right area"
-msgstr "Rechter Bereich"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_HEADER_NAME\n"
-"string.text"
-msgid "Header of page %1"
-msgstr "Kopfzeile Seite %1"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_FOOTER_NAME\n"
-"string.text"
-msgid "Footer of page %1"
-msgstr "Fußzeile Seite %1"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_EDITLINE_NAME\n"
-"string.text"
-msgid "Input line"
-msgstr "Eingabezeile"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_EDITLINE_DESCR\n"
-"string.text"
-msgid "This is where you enter or edit text, numbers and formulas."
-msgstr "Hier können Sie Text, Zahlen und Formeln eingeben und bearbeiten."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_MEDIASHELL\n"
-"string.text"
-msgid "Media Playback"
-msgstr "Medienwiedergabe"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"RID_SCSTR_ONCLICK\n"
-"string.text"
-msgid "Mouse button pressed"
-msgstr "Maustaste gedrückt"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_TOOLBAR_FORMULA\n"
-"string.text"
-msgid "Formula Tool Bar"
-msgstr "Rechenleiste"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_DOC_SPREADSHEET\n"
-"string.text"
-msgid "%PRODUCTNAME Spreadsheets"
-msgstr "%PRODUCTNAME Tabellendokument"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_DOC_SPREADSHEET_READONLY\n"
-"string.text"
-msgid "(read-only)"
-msgstr "(schreibgeschützt)"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ACC_DOC_PREVIEW_SUFFIX\n"
-"string.text"
-msgid "(Preview mode)"
-msgstr "(Vorschaumodus)"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_PRINTOPT_PAGES\n"
-"string.text"
-msgid "Pages"
-msgstr "Seiten"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_PRINTOPT_SUPPRESSEMPTY\n"
-"string.text"
-msgid "~Suppress output of empty pages"
-msgstr "Ausgabe ~leerer Seiten unterdrücken"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_PRINTOPT_PRNTCONTENT\n"
-"string.text"
-msgid "Print content"
-msgstr "Druckinhalt"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_PRINTOPT_ALLSHEETS\n"
-"string.text"
-msgid "~All sheets"
-msgstr "~Alle Tabellen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_PRINTOPT_SELECTEDSHEETS\n"
-"string.text"
-msgid "~Selected sheets"
-msgstr "~Ausgewählte Tabellen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_PRINTOPT_SELECTEDCELLS\n"
-"string.text"
-msgid "Selected cells"
-msgstr "Ausgewählte Zellen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_PRINTOPT_FROMWHICH\n"
-"string.text"
-msgid "From which print"
-msgstr "​​Druckbereich"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_PRINTOPT_ALLPAGES\n"
-"string.text"
-msgid "All ~pages"
-msgstr "Alle ~Seiten"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_PRINTOPT_PAGES_\n"
-"string.text"
-msgid "Pa~ges"
-msgstr "S~eiten"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_PRINTOPT_PRODNAME\n"
-"string.text"
-msgid "%PRODUCTNAME %s"
-msgstr "%PRODUCTNAME %s"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_WARN_ME_IN_FUTURE_CHECK\n"
-"string.text"
-msgid "Warn me about this in the future."
-msgstr "Diese Warnung auch in Zukunft anzeigen."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_DDEDOC_NOT_LOADED\n"
-"string.text"
-msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
-msgstr "Die folgende DDE-Quelle konnte nicht aktualisiert werden, da wahrscheinlich das Quelldokument nicht geöffnet wurde. Bitte starten Sie das Quelldokument und versuchen Sie es erneut."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_EXTDOC_NOT_LOADED\n"
-"string.text"
-msgid "The following external file could not be loaded. Data linked from this file did not get updated."
-msgstr "Die folgende externe Datei konnte nicht geladen werden. Die verknüpften Daten aus dieser Datei wurden nicht aktualisiert."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UPDATE_EXTDOCS\n"
-"string.text"
-msgid "Updating external links."
-msgstr "Aktualisiert externe Verknüpfungen."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_FORMULA_SYNTAX_CALC_A1\n"
-"string.text"
-msgid "Calc A1"
-msgstr "Calc A1"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_FORMULA_SYNTAX_XL_A1\n"
-"string.text"
-msgid "Excel A1"
-msgstr "Excel A1"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_FORMULA_SYNTAX_XL_R1C1\n"
-"string.text"
-msgid "Excel R1C1"
-msgstr "Excel R1C1"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_COL_LABEL\n"
-"string.text"
-msgid "Range contains column la~bels"
-msgstr "Bereich ~enthält Spaltenbeschriftungen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_ROW_LABEL\n"
-"string.text"
-msgid "Range contains ~row labels"
-msgstr "Bereich ~enthält Zeilenbeschriftungen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNIT\n"
-"Millimeter\n"
-"itemlist.text"
-msgid "Millimeter"
-msgstr "Millimeter"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNIT\n"
-"Centimeter\n"
-"itemlist.text"
-msgid "Centimeter"
-msgstr "Zentimeter"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNIT\n"
-"Meter\n"
-"itemlist.text"
-msgid "Meter"
-msgstr "Meter"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNIT\n"
-"Kilometer\n"
-"itemlist.text"
-msgid "Kilometer"
-msgstr "Kilometer"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNIT\n"
-"Inch\n"
-"itemlist.text"
-msgid "Inch"
-msgstr "Zoll"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNIT\n"
-"Foot\n"
-"itemlist.text"
-msgid "Foot"
-msgstr "Fuß"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNIT\n"
-"Miles\n"
-"itemlist.text"
-msgid "Miles"
-msgstr "Meilen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNIT\n"
-"Pica\n"
-"itemlist.text"
-msgid "Pica"
-msgstr "Pica"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNIT\n"
-"Point\n"
-"itemlist.text"
-msgid "Point"
-msgstr "Point"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_VALERR\n"
-"string.text"
-msgid "Invalid value"
-msgstr "Ungültiger Wert"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_NOFORMULASPECIFIED\n"
-"string.text"
-msgid "No formula specified."
-msgstr "Keine Formel angegeben."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_NOCOLROW\n"
-"string.text"
-msgid "Neither row or column specified."
-msgstr "Weder Zeile noch Spalte angegeben."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_WRONGFORMULA\n"
-"string.text"
-msgid "Undefined name or range."
-msgstr "Undefinierter Name oder Bereich."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_WRONGROWCOL\n"
-"string.text"
-msgid "Undefined name or wrong cell reference."
-msgstr "Nicht festgelegter Name oder falscher Zellbezug."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_NOCOLFORMULA\n"
-"string.text"
-msgid "Formulas don't form a column."
-msgstr "Formeln bilden keine Spalte."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_NOROWFORMULA\n"
-"string.text"
-msgid "Formulas don't form a row."
-msgstr "Formeln bilden keine Zeile."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ADD_AUTOFORMAT_TITLE\n"
-"string.text"
-msgid "Add AutoFormat"
-msgstr "AutoFormat hinzufügen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_RENAME_AUTOFORMAT_TITLE\n"
-"string.text"
-msgid "Rename AutoFormat"
-msgstr "AutoFormat umbenennen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_ADD_AUTOFORMAT_LABEL\n"
-"string.text"
-msgid "Name"
-msgstr "Name"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_DEL_AUTOFORMAT_TITLE\n"
-"string.text"
-msgid "Delete AutoFormat"
-msgstr "AutoFormat löschen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_DEL_AUTOFORMAT_MSG\n"
-"string.text"
-msgid "Do you really want to delete the # AutoFormat?"
-msgstr "Möchten Sie das AutoFormat # wirklich löschen?"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_BTN_AUTOFORMAT_CLOSE\n"
-"string.text"
-msgid "~Close"
-msgstr "Schlie~ßen"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_JAN\n"
-"string.text"
-msgid "Jan"
-msgstr "Jan."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_FEB\n"
-"string.text"
-msgid "Feb"
-msgstr "Feb."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_MAR\n"
-"string.text"
-msgid "Mar"
-msgstr "Mär."
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_NORTH\n"
-"string.text"
-msgid "North"
-msgstr "Nord"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_MID\n"
-"string.text"
-msgid "Mid"
-msgstr "Mitte"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_SOUTH\n"
-"string.text"
-msgid "South"
-msgstr "Süden"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_SUM\n"
-"string.text"
-msgid "Total"
-msgstr "Gesamt"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_SHEET\n"
-"string.text"
-msgid "Sheet"
-msgstr "Tabelle"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_CELL\n"
-"string.text"
-msgid "Cell"
-msgstr "Zelle"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"STR_CONTENT\n"
-"string.text"
-msgid "Content"
-msgstr "Inhalt"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNDO_PAGE_ANCHOR\n"
-"string.text"
-msgid "Page Anchor"
-msgstr "Seitenanker"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_UNDO_CELL_ANCHOR\n"
-"string.text"
-msgid "Cell Anchor"
-msgstr "Zellanker"
-
-#: scstring.src
-msgctxt ""
-"scstring.src\n"
-"SCSTR_CONDITION\n"
-"string.text"
-msgid "Condition "
-msgstr "Bedingung "
-
-#: toolbox.src
-msgctxt ""
-"toolbox.src\n"
-"SCSTR_QHELP_POSWND\n"
-"string.text"
-msgid "Name Box"
-msgstr "Namenfeld"
-
-#: toolbox.src
-msgctxt ""
-"toolbox.src\n"
-"SCSTR_QHELP_INPUTWND\n"
-"string.text"
-msgid "Input line"
-msgstr "Eingabezeile"
-
-#: toolbox.src
-msgctxt ""
-"toolbox.src\n"
-"SCSTR_QHELP_BTNCALC\n"
-"string.text"
-msgid "Function Wizard"
-msgstr "Funktions-Assistent"
-
-#: toolbox.src
-msgctxt ""
-"toolbox.src\n"
-"SCSTR_QHELP_BTNOK\n"
-"string.text"
-msgid "Accept"
-msgstr "Übernehmen"
-
-#: toolbox.src
-msgctxt ""
-"toolbox.src\n"
-"SCSTR_QHELP_BTNCANCEL\n"
-"string.text"
-msgid "Cancel"
-msgstr "Verwerfen"
-
-#: toolbox.src
-msgctxt ""
-"toolbox.src\n"
-"SCSTR_QHELP_BTNSUM\n"
-"string.text"
-msgid "Sum"
-msgstr "Summe"
-
-#: toolbox.src
-msgctxt ""
-"toolbox.src\n"
-"SCSTR_QHELP_BTNEQUAL\n"
-"string.text"
-msgid "Function"
-msgstr "Funktion"
-
-#: toolbox.src
-msgctxt ""
-"toolbox.src\n"
-"SCSTR_QHELP_EXPAND_FORMULA\n"
-"string.text"
-msgid "Expand Formula Bar"
-msgstr "Eingabezeile ausklappen"
-
-#: toolbox.src
-msgctxt ""
-"toolbox.src\n"
-"SCSTR_QHELP_COLLAPSE_FORMULA\n"
-"string.text"
-msgid "Collapse Formula Bar"
-msgstr "Eingabezeile einklappen"
diff --git a/source/de/sc/source/ui/styleui.po b/source/de/sc/source/ui/styleui.po
deleted file mode 100644
index 9a4920d5f96..00000000000
--- a/source/de/sc/source/ui/styleui.po
+++ /dev/null
@@ -1,80 +0,0 @@
-#. extracted from sc/source/ui/styleui
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-20 12:09+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479643746.000000\n"
-
-#: scstyles.src
-msgctxt ""
-"scstyles.src\n"
-"RID_CELLSTYLEFAMILY\n"
-"All Styles\n"
-"itemlist.text"
-msgid "All Styles"
-msgstr "Alle Vorlagen"
-
-#: scstyles.src
-msgctxt ""
-"scstyles.src\n"
-"RID_CELLSTYLEFAMILY\n"
-"Hidden Styles\n"
-"itemlist.text"
-msgid "Hidden Styles"
-msgstr "Verborgene Vorlagen"
-
-#: scstyles.src
-msgctxt ""
-"scstyles.src\n"
-"RID_CELLSTYLEFAMILY\n"
-"Applied Styles\n"
-"itemlist.text"
-msgid "Applied Styles"
-msgstr "Verwendete Vorlagen"
-
-#: scstyles.src
-msgctxt ""
-"scstyles.src\n"
-"RID_CELLSTYLEFAMILY\n"
-"Custom Styles\n"
-"itemlist.text"
-msgid "Custom Styles"
-msgstr "Benutzervorlagen"
-
-#: scstyles.src
-msgctxt ""
-"scstyles.src\n"
-"RID_PAGESTYLEFAMILY\n"
-"All Styles\n"
-"itemlist.text"
-msgid "All Styles"
-msgstr "Alle Vorlagen"
-
-#: scstyles.src
-msgctxt ""
-"scstyles.src\n"
-"RID_PAGESTYLEFAMILY\n"
-"Hidden Styles\n"
-"itemlist.text"
-msgid "Hidden Styles"
-msgstr "Verborgene Vorlagen"
-
-#: scstyles.src
-msgctxt ""
-"scstyles.src\n"
-"RID_PAGESTYLEFAMILY\n"
-"Custom Styles\n"
-"itemlist.text"
-msgid "Custom Styles"
-msgstr "Benutzervorlagen"
diff --git a/source/de/sc/uiconfig/scalc/ui.po b/source/de/sc/uiconfig/scalc/ui.po
deleted file mode 100644
index 34b552d9616..00000000000
--- a/source/de/sc/uiconfig/scalc/ui.po
+++ /dev/null
@@ -1,13145 +0,0 @@
-#. extracted from sc/uiconfig/scalc/ui
-msgid ""
-msgstr ""
-"Project-Id-Version: LibO 40l10n\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-17 15:41+0200\n"
-"PO-Revision-Date: 2017-06-23 19:32+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
-"Language-Team: none\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1498246332.000000\n"
-
-#: advancedfilterdialog.ui
-msgctxt ""
-"advancedfilterdialog.ui\n"
-"AdvancedFilterDialog\n"
-"title\n"
-"string.text"
-msgid "Advanced Filter"
-msgstr "Erweiterter Filter"
-
-#: advancedfilterdialog.ui
-msgctxt ""
-"advancedfilterdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Read _Filter Criteria From"
-msgstr "_Filterkriterien befinden sich in"
-
-#: advancedfilterdialog.ui
-msgctxt ""
-"advancedfilterdialog.ui\n"
-"case\n"
-"label\n"
-"string.text"
-msgid "_Case sensitive"
-msgstr "_Groß- und Kleinschreibung"
-
-#: advancedfilterdialog.ui
-msgctxt ""
-"advancedfilterdialog.ui\n"
-"header\n"
-"label\n"
-"string.text"
-msgid "Range c_ontains column labels"
-msgstr "Bereich enthält _Spaltenbeschriftungen"
-
-#: advancedfilterdialog.ui
-msgctxt ""
-"advancedfilterdialog.ui\n"
-"regexp\n"
-"label\n"
-"string.text"
-msgid "Regular _expressions"
-msgstr "_Reguläre Ausdrücke"
-
-#: advancedfilterdialog.ui
-msgctxt ""
-"advancedfilterdialog.ui\n"
-"unique\n"
-"label\n"
-"string.text"
-msgid "_No duplications"
-msgstr "Keine _Duplikate"
-
-#: advancedfilterdialog.ui
-msgctxt ""
-"advancedfilterdialog.ui\n"
-"copyresult\n"
-"label\n"
-"string.text"
-msgid "Co_py results to:"
-msgstr "Ko_piere Ergebnisse nach:"
-
-#: advancedfilterdialog.ui
-msgctxt ""
-"advancedfilterdialog.ui\n"
-"destpers\n"
-"label\n"
-"string.text"
-msgid "_Keep filter criteria"
-msgstr "Filterkriterien _beibehalten"
-
-#: advancedfilterdialog.ui
-msgctxt ""
-"advancedfilterdialog.ui\n"
-"lbcopyarea-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Copy results to:"
-msgstr "Ergebnisse kopieren nach:"
-
-#: advancedfilterdialog.ui
-msgctxt ""
-"advancedfilterdialog.ui\n"
-"edcopyarea-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Copy results to:"
-msgstr "Ergebnisse kopieren nach:"
-
-#: advancedfilterdialog.ui
-msgctxt ""
-"advancedfilterdialog.ui\n"
-"dbarealabel\n"
-"label\n"
-"string.text"
-msgid "Data range:"
-msgstr "Datenbereich:"
-
-#: advancedfilterdialog.ui
-msgctxt ""
-"advancedfilterdialog.ui\n"
-"dbarea\n"
-"label\n"
-"string.text"
-msgid "dummy"
-msgstr "Platzhalter"
-
-#: advancedfilterdialog.ui
-msgctxt ""
-"advancedfilterdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Op_tions"
-msgstr "O_ptionen"
-
-#: allheaderfooterdialog.ui
-msgctxt ""
-"allheaderfooterdialog.ui\n"
-"AllHeaderFooterDialog\n"
-"title\n"
-"string.text"
-msgid "Headers/Footers"
-msgstr "Kopf-/Fußzeilen"
-
-#: allheaderfooterdialog.ui
-msgctxt ""
-"allheaderfooterdialog.ui\n"
-"headerright\n"
-"label\n"
-"string.text"
-msgid "Header (right)"
-msgstr "Kopfzeile (rechts)"
-
-#: allheaderfooterdialog.ui
-msgctxt ""
-"allheaderfooterdialog.ui\n"
-"headerleft\n"
-"label\n"
-"string.text"
-msgid "Header (left)"
-msgstr "Kopfzeile (links)"
-
-#: allheaderfooterdialog.ui
-msgctxt ""
-"allheaderfooterdialog.ui\n"
-"footerright\n"
-"label\n"
-"string.text"
-msgid "Footer (right)"
-msgstr "Fußzeile (rechts)"
-
-#: allheaderfooterdialog.ui
-msgctxt ""
-"allheaderfooterdialog.ui\n"
-"footerleft\n"
-"label\n"
-"string.text"
-msgid "Footer (left)"
-msgstr "Fußzeile (links)"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"AnalysisOfVarianceDialog\n"
-"title\n"
-"string.text"
-msgid "Analysis of Variance (ANOVA)"
-msgstr "Varianzanalyse (ANOVA)"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"input-range-label\n"
-"label\n"
-"string.text"
-msgid "Input range:"
-msgstr "Eingabebereich:"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"output-range-label\n"
-"label\n"
-"string.text"
-msgid "Results to:"
-msgstr "Ergebnisse nach:"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"radio-single-factor\n"
-"label\n"
-"string.text"
-msgid "Single factor"
-msgstr "Einfaktoriell"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"radio-two-factor\n"
-"label\n"
-"string.text"
-msgid "Two factor"
-msgstr "Zweifaktoriell"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Type"
-msgstr "Typ"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"groupedby-columns-radio\n"
-"label\n"
-"string.text"
-msgid "Columns"
-msgstr "Spalten"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"groupedby-rows-radio\n"
-"label\n"
-"string.text"
-msgid "Rows"
-msgstr "Zeilen"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Grouped by"
-msgstr "Gruppiert nach"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"alpha-label\n"
-"label\n"
-"string.text"
-msgid "Alpha:"
-msgstr "Alpha:"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"alpha-spin\n"
-"text\n"
-"string.text"
-msgid "0,05"
-msgstr "0,05"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"rows-per-sample-label\n"
-"label\n"
-"string.text"
-msgid "Rows per sample:"
-msgstr "Zeilen pro Beispiel:"
-
-#: analysisofvariancedialog.ui
-msgctxt ""
-"analysisofvariancedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Parameters"
-msgstr "Parameter"
-
-#: autoformattable.ui
-msgctxt ""
-"autoformattable.ui\n"
-"AutoFormatTableDialog\n"
-"title\n"
-"string.text"
-msgid "AutoFormat"
-msgstr "AutoFormat"
-
-#: autoformattable.ui
-msgctxt ""
-"autoformattable.ui\n"
-"rename\n"
-"label\n"
-"string.text"
-msgid "Rename"
-msgstr "Umbenennen"
-
-#: autoformattable.ui
-msgctxt ""
-"autoformattable.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Format"
-msgstr "Format"
-
-#: autoformattable.ui
-msgctxt ""
-"autoformattable.ui\n"
-"numformatcb\n"
-"label\n"
-"string.text"
-msgid "_Number format"
-msgstr "_Zahlen"
-
-#: autoformattable.ui
-msgctxt ""
-"autoformattable.ui\n"
-"bordercb\n"
-"label\n"
-"string.text"
-msgid "_Borders"
-msgstr "_Umrandung"
-
-#: autoformattable.ui
-msgctxt ""
-"autoformattable.ui\n"
-"fontcb\n"
-"label\n"
-"string.text"
-msgid "F_ont"
-msgstr "_Schrift"
-
-#: autoformattable.ui
-msgctxt ""
-"autoformattable.ui\n"
-"patterncb\n"
-"label\n"
-"string.text"
-msgid "_Pattern"
-msgstr "_Muster"
-
-#: autoformattable.ui
-msgctxt ""
-"autoformattable.ui\n"
-"alignmentcb\n"
-"label\n"
-"string.text"
-msgid "Alignmen_t"
-msgstr "_Ausrichtung"
-
-#: autoformattable.ui
-msgctxt ""
-"autoformattable.ui\n"
-"autofitcb\n"
-"label\n"
-"string.text"
-msgid "A_utoFit width and height"
-msgstr "_Breite/Höhe automatisch anpassen"
-
-#: autoformattable.ui
-msgctxt ""
-"autoformattable.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Formatting"
-msgstr "Formatierung"
-
-#: cellprotectionpage.ui
-msgctxt ""
-"cellprotectionpage.ui\n"
-"checkProtected\n"
-"label\n"
-"string.text"
-msgid "_Protected"
-msgstr "_Gesperrt"
-
-#: cellprotectionpage.ui
-msgctxt ""
-"cellprotectionpage.ui\n"
-"checkHideFormula\n"
-"label\n"
-"string.text"
-msgid "Hide _formula"
-msgstr "_Formel ausblenden"
-
-#: cellprotectionpage.ui
-msgctxt ""
-"cellprotectionpage.ui\n"
-"checkHideAll\n"
-"label\n"
-"string.text"
-msgid "Hide _all"
-msgstr "_Alles ausblenden"
-
-#: cellprotectionpage.ui
-msgctxt ""
-"cellprotectionpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid ""
-"Cell protection is only effective after the current sheet has been protected.\n"
-"\n"
-"Select 'Protect Sheet' from the 'Tools' menu."
-msgstr ""
-"Der Zellschutz wird nur dann wirksam, wenn die aktuelle Tabelle geschützt ist.\n"
-"\n"
-"Wählen Sie im Menü 'Extras' - 'Tabelle schützen...'."
-
-#: cellprotectionpage.ui
-msgctxt ""
-"cellprotectionpage.ui\n"
-"LabelProtection\n"
-"label\n"
-"string.text"
-msgid "Protection"
-msgstr "Schutz"
-
-#: cellprotectionpage.ui
-msgctxt ""
-"cellprotectionpage.ui\n"
-"checkHidePrinting\n"
-"label\n"
-"string.text"
-msgid "Hide _when printing"
-msgstr "Für Aus_druck ausblenden"
-
-#: cellprotectionpage.ui
-msgctxt ""
-"cellprotectionpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "The cells selected will be omitted when printing."
-msgstr "Die Zellen der aktuellen Auswahl werden beim Ausdruck nicht ausgegeben."
-
-#: cellprotectionpage.ui
-msgctxt ""
-"cellprotectionpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Print"
-msgstr "Drucken"
-
-#: changesourcedialog.ui
-msgctxt ""
-"changesourcedialog.ui\n"
-"ChangeSourceDialog\n"
-"title\n"
-"string.text"
-msgid "Change Source Data Range"
-msgstr "Quelldatenbereich ändern"
-
-#: changesourcedialog.ui
-msgctxt ""
-"changesourcedialog.ui\n"
-"col\n"
-"label\n"
-"string.text"
-msgid "First _column as label"
-msgstr "Erste _Spalte als Beschriftung"
-
-#: changesourcedialog.ui
-msgctxt ""
-"changesourcedialog.ui\n"
-"row\n"
-"label\n"
-"string.text"
-msgid "First _row as label"
-msgstr "Erste _Zeile als Beschriftung"
-
-#: changesourcedialog.ui
-msgctxt ""
-"changesourcedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Labels"
-msgstr "Beschriftung"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"CharDialog\n"
-"title\n"
-"string.text"
-msgid "Character"
-msgstr "Zeichen"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"font\n"
-"label\n"
-"string.text"
-msgid "Font"
-msgstr "Schrift"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"fonteffects\n"
-"label\n"
-"string.text"
-msgid "Font Effects"
-msgstr "Schrifteffekt"
-
-#: chardialog.ui
-msgctxt ""
-"chardialog.ui\n"
-"position\n"
-"label\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: chisquaretestdialog.ui
-msgctxt ""
-"chisquaretestdialog.ui\n"
-"ChiSquareTestDialog\n"
-"title\n"
-"string.text"
-msgid "Chi Square Test"
-msgstr "Chi-Quadrat-Test"
-
-#: chisquaretestdialog.ui
-msgctxt ""
-"chisquaretestdialog.ui\n"
-"input-range-label\n"
-"label\n"
-"string.text"
-msgid "Input range:"
-msgstr "Eingabebereich:"
-
-#: chisquaretestdialog.ui
-msgctxt ""
-"chisquaretestdialog.ui\n"
-"output-range-label\n"
-"label\n"
-"string.text"
-msgid "Results to:"
-msgstr "Ergebnisse nach:"
-
-#: chisquaretestdialog.ui
-msgctxt ""
-"chisquaretestdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: chisquaretestdialog.ui
-msgctxt ""
-"chisquaretestdialog.ui\n"
-"groupedby-columns-radio\n"
-"label\n"
-"string.text"
-msgid "_Columns"
-msgstr "S_palten"
-
-#: chisquaretestdialog.ui
-msgctxt ""
-"chisquaretestdialog.ui\n"
-"groupedby-rows-radio\n"
-"label\n"
-"string.text"
-msgid "_Rows"
-msgstr "Z_eilen"
-
-#: chisquaretestdialog.ui
-msgctxt ""
-"chisquaretestdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Grouped by"
-msgstr "Gruppiert nach"
-
-#: colorrowdialog.ui
-msgctxt ""
-"colorrowdialog.ui\n"
-"ColOrRowDialog\n"
-"title\n"
-"string.text"
-msgid "Copy List"
-msgstr "Liste kopieren"
-
-#: colorrowdialog.ui
-msgctxt ""
-"colorrowdialog.ui\n"
-"columns\n"
-"label\n"
-"string.text"
-msgid "_Columns"
-msgstr "S_palten"
-
-#: colorrowdialog.ui
-msgctxt ""
-"colorrowdialog.ui\n"
-"rows\n"
-"label\n"
-"string.text"
-msgid "_Rows"
-msgstr "Z_eilen"
-
-#: colorrowdialog.ui
-msgctxt ""
-"colorrowdialog.ui\n"
-"label\n"
-"label\n"
-"string.text"
-msgid "List From"
-msgstr "Liste aus"
-
-#: colwidthdialog.ui
-msgctxt ""
-"colwidthdialog.ui\n"
-"ColWidthDialog\n"
-"title\n"
-"string.text"
-msgid "Column Width"
-msgstr "Spaltenbreite"
-
-#: colwidthdialog.ui
-msgctxt ""
-"colwidthdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Width"
-msgstr "Breite"
-
-#: colwidthdialog.ui
-msgctxt ""
-"colwidthdialog.ui\n"
-"default\n"
-"label\n"
-"string.text"
-msgid "_Default value"
-msgstr "_Standardwert"
-
-#: condformatmanager.ui
-msgctxt ""
-"condformatmanager.ui\n"
-"CondFormatManager\n"
-"title\n"
-"string.text"
-msgid "Manage Conditional Formatting"
-msgstr "Bedingte Formatierung verwalten"
-
-#: condformatmanager.ui
-msgctxt ""
-"condformatmanager.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "Add"
-msgstr "Hinzufügen..."
-
-#: condformatmanager.ui
-msgctxt ""
-"condformatmanager.ui\n"
-"edit\n"
-"label\n"
-"string.text"
-msgid "Edit..."
-msgstr "Bearbeiten..."
-
-#: condformatmanager.ui
-msgctxt ""
-"condformatmanager.ui\n"
-"remove\n"
-"label\n"
-"string.text"
-msgid "Remove"
-msgstr "Entfernen"
-
-#: condformatmanager.ui
-msgctxt ""
-"condformatmanager.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Conditional Formats"
-msgstr "Bedingte Formatierung"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"type\n"
-"0\n"
-"stringlist.text"
-msgid "All Cells"
-msgstr "Alle Zellen"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"type\n"
-"1\n"
-"stringlist.text"
-msgid "Cell value is"
-msgstr "Zellwert ist"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"type\n"
-"2\n"
-"stringlist.text"
-msgid "Formula is"
-msgstr "Formel ist"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"type\n"
-"3\n"
-"stringlist.text"
-msgid "Date is"
-msgstr "Datum ist"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"styleft\n"
-"label\n"
-"string.text"
-msgid "Apply Style:"
-msgstr "Vorlage anwenden:"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"style\n"
-"0\n"
-"stringlist.text"
-msgid "New Style..."
-msgstr "Neue Vorlage..."
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"valueft\n"
-"label\n"
-"string.text"
-msgid "Enter a value:"
-msgstr "Geben Sie einen Wert ein:"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"options\n"
-"label\n"
-"string.text"
-msgid "More Options..."
-msgstr "Weitere Optionen..."
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemin\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemin\n"
-"1\n"
-"stringlist.text"
-msgid "Min"
-msgstr "Min"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemin\n"
-"2\n"
-"stringlist.text"
-msgid "Max"
-msgstr "Max"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemin\n"
-"3\n"
-"stringlist.text"
-msgid "Percentile"
-msgstr "Prozentual"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemin\n"
-"4\n"
-"stringlist.text"
-msgid "Value"
-msgstr "Wert"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemin\n"
-"5\n"
-"stringlist.text"
-msgid "Percent"
-msgstr "Prozent"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemin\n"
-"6\n"
-"stringlist.text"
-msgid "Formula"
-msgstr "Formel"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemiddle\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemiddle\n"
-"1\n"
-"stringlist.text"
-msgid "Min"
-msgstr "Min"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemiddle\n"
-"2\n"
-"stringlist.text"
-msgid "Max"
-msgstr "Max"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemiddle\n"
-"3\n"
-"stringlist.text"
-msgid "Percentile"
-msgstr "Prozentual"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemiddle\n"
-"4\n"
-"stringlist.text"
-msgid "Value"
-msgstr "Wert"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemiddle\n"
-"5\n"
-"stringlist.text"
-msgid "Percent"
-msgstr "Prozent"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemiddle\n"
-"6\n"
-"stringlist.text"
-msgid "Formula"
-msgstr "Formel"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemax\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemax\n"
-"1\n"
-"stringlist.text"
-msgid "Min"
-msgstr "Min"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemax\n"
-"2\n"
-"stringlist.text"
-msgid "Max"
-msgstr "Max"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemax\n"
-"3\n"
-"stringlist.text"
-msgid "Percentile"
-msgstr "Prozentual"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemax\n"
-"4\n"
-"stringlist.text"
-msgid "Value"
-msgstr "Wert"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemax\n"
-"5\n"
-"stringlist.text"
-msgid "Percent"
-msgstr "Prozent"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colscalemax\n"
-"6\n"
-"stringlist.text"
-msgid "Formula"
-msgstr "Formel"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"preview\n"
-"tooltip_text\n"
-"string.text"
-msgid "Example"
-msgstr "Beispiel"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"0\n"
-"stringlist.text"
-msgid "equal to"
-msgstr "gleich"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"1\n"
-"stringlist.text"
-msgid "less than"
-msgstr "kleiner als"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"2\n"
-"stringlist.text"
-msgid "greater than"
-msgstr "größer als"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"3\n"
-"stringlist.text"
-msgid "less than or equal to"
-msgstr "kleiner oder gleich"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"4\n"
-"stringlist.text"
-msgid "greater than or equal to"
-msgstr "größer oder gleich"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"5\n"
-"stringlist.text"
-msgid "not equal to"
-msgstr "ungleich"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"6\n"
-"stringlist.text"
-msgid "between"
-msgstr "zwischen"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"7\n"
-"stringlist.text"
-msgid "not between"
-msgstr "nicht zwischen"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"8\n"
-"stringlist.text"
-msgid "duplicate"
-msgstr "mehrmals vorhanden"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"9\n"
-"stringlist.text"
-msgid "not duplicate"
-msgstr "nicht mehrmals vorhanden"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"10\n"
-"stringlist.text"
-msgid "top 10 elements"
-msgstr "unter den größten 10 Elementen"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"11\n"
-"stringlist.text"
-msgid "bottom 10 elements"
-msgstr "unter den kleinsten 10 Elementen"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"12\n"
-"stringlist.text"
-msgid "top 10 percent"
-msgstr "unter den oberen 10 Prozent"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"13\n"
-"stringlist.text"
-msgid "bottom 10 percent"
-msgstr "unter den unteren 10 Prozent"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"14\n"
-"stringlist.text"
-msgid "above average"
-msgstr "überdurchschnittlich"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"15\n"
-"stringlist.text"
-msgid "below average"
-msgstr "unterdurchschnittlich"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"16\n"
-"stringlist.text"
-msgid "above or equal average"
-msgstr "überdurchschnittlich oder gleich"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"17\n"
-"stringlist.text"
-msgid "below or equal average"
-msgstr "unterdurchschnittlich oder gleich"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"18\n"
-"stringlist.text"
-msgid "Error"
-msgstr "ein Fehler"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"19\n"
-"stringlist.text"
-msgid "No Error"
-msgstr "kein Fehler"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"20\n"
-"stringlist.text"
-msgid "Begins with"
-msgstr "beginnt mit"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"21\n"
-"stringlist.text"
-msgid "Ends with"
-msgstr "endet mit"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"22\n"
-"stringlist.text"
-msgid "Contains"
-msgstr "enthält"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"typeis\n"
-"23\n"
-"stringlist.text"
-msgid "Not Contains"
-msgstr "enthält nicht"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"datetype\n"
-"0\n"
-"stringlist.text"
-msgid "Today"
-msgstr "heute"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"datetype\n"
-"1\n"
-"stringlist.text"
-msgid "Yesterday"
-msgstr "gestern"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"datetype\n"
-"2\n"
-"stringlist.text"
-msgid "Tomorrow"
-msgstr "morgen"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"datetype\n"
-"3\n"
-"stringlist.text"
-msgid "Last 7 days"
-msgstr "letzte 7 Tage"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"datetype\n"
-"4\n"
-"stringlist.text"
-msgid "This week"
-msgstr "diese Woche"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"datetype\n"
-"5\n"
-"stringlist.text"
-msgid "Last week"
-msgstr "letzte Woche"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"datetype\n"
-"6\n"
-"stringlist.text"
-msgid "Next week"
-msgstr "nächste Woche"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"datetype\n"
-"7\n"
-"stringlist.text"
-msgid "This month"
-msgstr "diesen Monat"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"datetype\n"
-"8\n"
-"stringlist.text"
-msgid "Last month"
-msgstr "letzten Monat"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"datetype\n"
-"9\n"
-"stringlist.text"
-msgid "Next month"
-msgstr "nächsten Monat"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"datetype\n"
-"10\n"
-"stringlist.text"
-msgid "This year"
-msgstr "dieses Jahr"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"datetype\n"
-"11\n"
-"stringlist.text"
-msgid "Last year"
-msgstr "letztes Jahr"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"datetype\n"
-"12\n"
-"stringlist.text"
-msgid "Next year"
-msgstr "nächstes Jahr"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colorformat\n"
-"0\n"
-"stringlist.text"
-msgid "Color Scale (2 Entries)"
-msgstr "Farbskala (2 Einträge)"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colorformat\n"
-"1\n"
-"stringlist.text"
-msgid "Color Scale (3 Entries)"
-msgstr "Farbskala (3 Einträge)"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colorformat\n"
-"2\n"
-"stringlist.text"
-msgid "Data Bar"
-msgstr "Datenbalken"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"colorformat\n"
-"3\n"
-"stringlist.text"
-msgid "Icon Set"
-msgstr "Symbolsatz"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"0\n"
-"stringlist.text"
-msgid "3 Arrows"
-msgstr "3 Pfeile"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"1\n"
-"stringlist.text"
-msgid "3 Gray Arrows"
-msgstr "3 graue Pfeile"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"2\n"
-"stringlist.text"
-msgid "3 Flags"
-msgstr "3 Markierungen"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"3\n"
-"stringlist.text"
-msgid "3 Traffic Lights 1"
-msgstr "3 Ampeln 1"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"4\n"
-"stringlist.text"
-msgid "3 Traffic Lights 2"
-msgstr "3 Ampeln 2"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"5\n"
-"stringlist.text"
-msgid "3 Signs"
-msgstr "3 Zeichen"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"6\n"
-"stringlist.text"
-msgid "3 Symbols 1"
-msgstr "3 Symbole 1"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"7\n"
-"stringlist.text"
-msgid "3 Symbols 2"
-msgstr "3 Symbole 2"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"8\n"
-"stringlist.text"
-msgid "3 Smileys"
-msgstr "3 Smileys"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"9\n"
-"stringlist.text"
-msgid "3 Stars"
-msgstr "3 Sterne"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"10\n"
-"stringlist.text"
-msgid "3 Triangles"
-msgstr "3 Dreiecke"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"11\n"
-"stringlist.text"
-msgid "3 Colored Smileys"
-msgstr "3 farbige Smileys"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"12\n"
-"stringlist.text"
-msgid "4 Arrows"
-msgstr "4 Pfeile"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"13\n"
-"stringlist.text"
-msgid "4 Gray Arrows"
-msgstr "4 graue Pfeile"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"14\n"
-"stringlist.text"
-msgid "4 Circles Red to Black"
-msgstr "4 Kreise rot nach schwarz"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"15\n"
-"stringlist.text"
-msgid "4 Ratings"
-msgstr "4 Bewertungen"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"16\n"
-"stringlist.text"
-msgid "4 Traffic Lights"
-msgstr "4 Ampeln"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"17\n"
-"stringlist.text"
-msgid "5 Arrows"
-msgstr "5 Pfeile"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"18\n"
-"stringlist.text"
-msgid "5 Gray Arrows"
-msgstr "5 graue Pfeile"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"19\n"
-"stringlist.text"
-msgid "5 Ratings"
-msgstr "5 Bewertungen"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"20\n"
-"stringlist.text"
-msgid "5 Quarters"
-msgstr "5 Viertel"
-
-#: conditionalentry.ui
-msgctxt ""
-"conditionalentry.ui\n"
-"iconsettype\n"
-"21\n"
-"stringlist.text"
-msgid "5 Boxes"
-msgstr "5 Quadrate"
-
-#: conditionalformatdialog.ui
-msgctxt ""
-"conditionalformatdialog.ui\n"
-"ConditionalFormatDialog\n"
-"title\n"
-"string.text"
-msgid "Conditional Formatting for"
-msgstr "Bedingte Formatierung für"
-
-#: conditionalformatdialog.ui
-msgctxt ""
-"conditionalformatdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Conditions"
-msgstr "Bedingungen"
-
-#: conditionalformatdialog.ui
-msgctxt ""
-"conditionalformatdialog.ui\n"
-"ftassign\n"
-"label\n"
-"string.text"
-msgid "Range:"
-msgstr "Bereich:"
-
-#: conditionalformatdialog.ui
-msgctxt ""
-"conditionalformatdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Cell Range"
-msgstr "Zellbereich"
-
-#: conditionaliconset.ui
-msgctxt ""
-"conditionaliconset.ui\n"
-"label\n"
-"label\n"
-"string.text"
-msgid " >= "
-msgstr " >= "
-
-#: conditionaliconset.ui
-msgctxt ""
-"conditionaliconset.ui\n"
-"listbox\n"
-"0\n"
-"stringlist.text"
-msgid "Value"
-msgstr "Wert"
-
-#: conditionaliconset.ui
-msgctxt ""
-"conditionaliconset.ui\n"
-"listbox\n"
-"1\n"
-"stringlist.text"
-msgid "Percent"
-msgstr "Prozent"
-
-#: conditionaliconset.ui
-msgctxt ""
-"conditionaliconset.ui\n"
-"listbox\n"
-"2\n"
-"stringlist.text"
-msgid "Percentile"
-msgstr "Prozentual"
-
-#: conditionaliconset.ui
-msgctxt ""
-"conditionaliconset.ui\n"
-"listbox\n"
-"3\n"
-"stringlist.text"
-msgid "Formula"
-msgstr "Formel"
-
-#: conflictsdialog.ui
-msgctxt ""
-"conflictsdialog.ui\n"
-"ConflictsDialog\n"
-"title\n"
-"string.text"
-msgid "Resolve Conflicts"
-msgstr "Konflikte auflösen"
-
-#: conflictsdialog.ui
-msgctxt ""
-"conflictsdialog.ui\n"
-"keepallmine\n"
-"label\n"
-"string.text"
-msgid "_Keep All Mine"
-msgstr "_Alle eigenen übernehmen"
-
-#: conflictsdialog.ui
-msgctxt ""
-"conflictsdialog.ui\n"
-"keepallothers\n"
-"label\n"
-"string.text"
-msgid "Keep _All Others"
-msgstr "A_lle anderen übernehmen"
-
-#: conflictsdialog.ui
-msgctxt ""
-"conflictsdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "There are conflicting changes in this shared spreadsheet. Conflicts must be resolved before saving the spreadsheet. Keep either own or other changes."
-msgstr "Im freigegebenen Tabellendokument wurden Konflikte festgestellt. Diese müssen vor dem Speichern des Tabellendokuments aufgelöst werden. Übernehmen Sie entweder Ihre eigenen oder die Änderungen anderer Benutzer."
-
-#: conflictsdialog.ui
-msgctxt ""
-"conflictsdialog.ui\n"
-"keepmine\n"
-"label\n"
-"string.text"
-msgid "Keep _Mine"
-msgstr "_Eigene übernehmen"
-
-#: conflictsdialog.ui
-msgctxt ""
-"conflictsdialog.ui\n"
-"keepother\n"
-"label\n"
-"string.text"
-msgid "Keep _Other"
-msgstr "A_ndere übernehmen"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"ConsolidateDialog\n"
-"title\n"
-"string.text"
-msgid "Consolidate"
-msgstr "Konsolidieren"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Function:"
-msgstr "_Funktion:"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Consolidation ranges:"
-msgstr "_Konsolidierungsbereiche:"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"func\n"
-"0\n"
-"stringlist.text"
-msgid "Sum"
-msgstr "Summe"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"func\n"
-"1\n"
-"stringlist.text"
-msgid "Count"
-msgstr "Anzahl"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"func\n"
-"2\n"
-"stringlist.text"
-msgid "Average"
-msgstr "Bereich"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"func\n"
-"3\n"
-"stringlist.text"
-msgid "Max"
-msgstr "Max"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"func\n"
-"4\n"
-"stringlist.text"
-msgid "Min"
-msgstr "Min"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"func\n"
-"5\n"
-"stringlist.text"
-msgid "Product"
-msgstr "Produkt"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"func\n"
-"6\n"
-"stringlist.text"
-msgid "Count (numbers only)"
-msgstr "Anzahl (nur Zahlen)"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"func\n"
-"7\n"
-"stringlist.text"
-msgid "StDev (sample)"
-msgstr "StAbw (Probe)"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"func\n"
-"8\n"
-"stringlist.text"
-msgid "StDevP (population)"
-msgstr "StAbwN (Grundgesamtheit)"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"func\n"
-"9\n"
-"stringlist.text"
-msgid "Var (sample)"
-msgstr "Varianz (Stichprobe)"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"func\n"
-"10\n"
-"stringlist.text"
-msgid "VarP (population)"
-msgstr "Varianzen (Grundgesamtheit)"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"ftdataarea\n"
-"label\n"
-"string.text"
-msgid "_Source data ranges:"
-msgstr "Quelldaten_bereich:"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"ftdestarea\n"
-"label\n"
-"string.text"
-msgid "Copy results _to:"
-msgstr "_Ergebnisse ausgeben nach:"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"byrow\n"
-"label\n"
-"string.text"
-msgid "_Row labels"
-msgstr "Ze_ilenbeschriftungen"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"bycol\n"
-"label\n"
-"string.text"
-msgid "C_olumn labels"
-msgstr "_Spaltenbeschriftungen"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Consolidate by"
-msgstr "Konsolidieren nach"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"refs\n"
-"label\n"
-"string.text"
-msgid "_Link to source data"
-msgstr "Mit Quelldaten _verbinden"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: consolidatedialog.ui
-msgctxt ""
-"consolidatedialog.ui\n"
-"more_label\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: correlationdialog.ui
-msgctxt ""
-"correlationdialog.ui\n"
-"CorrelationDialog\n"
-"title\n"
-"string.text"
-msgid "Correlation"
-msgstr "Korrelation"
-
-#: correlationdialog.ui
-msgctxt ""
-"correlationdialog.ui\n"
-"input-range-label\n"
-"label\n"
-"string.text"
-msgid "Input range:"
-msgstr "Eingabebereich:"
-
-#: correlationdialog.ui
-msgctxt ""
-"correlationdialog.ui\n"
-"output-range-label\n"
-"label\n"
-"string.text"
-msgid "Results to:"
-msgstr "Ergebnisse nach:"
-
-#: correlationdialog.ui
-msgctxt ""
-"correlationdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: correlationdialog.ui
-msgctxt ""
-"correlationdialog.ui\n"
-"groupedby-columns-radio\n"
-"label\n"
-"string.text"
-msgid "Columns"
-msgstr "Spalten"
-
-#: correlationdialog.ui
-msgctxt ""
-"correlationdialog.ui\n"
-"groupedby-rows-radio\n"
-"label\n"
-"string.text"
-msgid "Rows"
-msgstr "Zeilen"
-
-#: correlationdialog.ui
-msgctxt ""
-"correlationdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Grouped by"
-msgstr "Gruppiert nach"
-
-#: covariancedialog.ui
-msgctxt ""
-"covariancedialog.ui\n"
-"CovarianceDialog\n"
-"title\n"
-"string.text"
-msgid "Covariance"
-msgstr "Kovarianz"
-
-#: covariancedialog.ui
-msgctxt ""
-"covariancedialog.ui\n"
-"input-range-label\n"
-"label\n"
-"string.text"
-msgid "Input range:"
-msgstr "Eingabebereich:"
-
-#: covariancedialog.ui
-msgctxt ""
-"covariancedialog.ui\n"
-"output-range-label\n"
-"label\n"
-"string.text"
-msgid "Results to:"
-msgstr "Ergebnisse nach:"
-
-#: covariancedialog.ui
-msgctxt ""
-"covariancedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: covariancedialog.ui
-msgctxt ""
-"covariancedialog.ui\n"
-"groupedby-columns-radio\n"
-"label\n"
-"string.text"
-msgid "Columns"
-msgstr "Spalten"
-
-#: covariancedialog.ui
-msgctxt ""
-"covariancedialog.ui\n"
-"groupedby-rows-radio\n"
-"label\n"
-"string.text"
-msgid "Rows"
-msgstr "Zeilen"
-
-#: covariancedialog.ui
-msgctxt ""
-"covariancedialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Grouped by"
-msgstr "Gruppiert nach"
-
-#: createnamesdialog.ui
-msgctxt ""
-"createnamesdialog.ui\n"
-"CreateNamesDialog\n"
-"title\n"
-"string.text"
-msgid "Create Names"
-msgstr "Namen erzeugen"
-
-#: createnamesdialog.ui
-msgctxt ""
-"createnamesdialog.ui\n"
-"top\n"
-"label\n"
-"string.text"
-msgid "_Top row"
-msgstr "_Oberer Zeile"
-
-#: createnamesdialog.ui
-msgctxt ""
-"createnamesdialog.ui\n"
-"left\n"
-"label\n"
-"string.text"
-msgid "_Left column"
-msgstr "_Linker Spalte"
-
-#: createnamesdialog.ui
-msgctxt ""
-"createnamesdialog.ui\n"
-"bottom\n"
-"label\n"
-"string.text"
-msgid "_Bottom row"
-msgstr "_Unterer Zeile"
-
-#: createnamesdialog.ui
-msgctxt ""
-"createnamesdialog.ui\n"
-"right\n"
-"label\n"
-"string.text"
-msgid "_Right column"
-msgstr "_Rechter Spalte"
-
-#: createnamesdialog.ui
-msgctxt ""
-"createnamesdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Create Names From"
-msgstr "Namen erzeugen aus"
-
-#: dapiservicedialog.ui
-msgctxt ""
-"dapiservicedialog.ui\n"
-"DapiserviceDialog\n"
-"title\n"
-"string.text"
-msgid "External Source"
-msgstr "Externe Datenquelle"
-
-#: dapiservicedialog.ui
-msgctxt ""
-"dapiservicedialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Service"
-msgstr "_Dienst"
-
-#: dapiservicedialog.ui
-msgctxt ""
-"dapiservicedialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "So_urce"
-msgstr "_Quelle"
-
-#: dapiservicedialog.ui
-msgctxt ""
-"dapiservicedialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Name"
-msgstr "_Name"
-
-#: dapiservicedialog.ui
-msgctxt ""
-"dapiservicedialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Us_er"
-msgstr "_Benutzer"
-
-#: dapiservicedialog.ui
-msgctxt ""
-"dapiservicedialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "_Password"
-msgstr "_Kennwort"
-
-#: dapiservicedialog.ui
-msgctxt ""
-"dapiservicedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"DataBarOptions\n"
-"title\n"
-"string.text"
-msgid "Data Bar"
-msgstr "Datenbalken"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Minimum:"
-msgstr "Minimum:"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Maximum:"
-msgstr "Maximum:"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"min\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"min\n"
-"1\n"
-"stringlist.text"
-msgid "Minimum"
-msgstr "Minimum"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"min\n"
-"2\n"
-"stringlist.text"
-msgid "Maximum"
-msgstr "Maximum"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"min\n"
-"3\n"
-"stringlist.text"
-msgid "Percentile"
-msgstr "Prozentual"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"min\n"
-"4\n"
-"stringlist.text"
-msgid "Value"
-msgstr "Wert"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"min\n"
-"5\n"
-"stringlist.text"
-msgid "Percent"
-msgstr "Prozent"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"min\n"
-"6\n"
-"stringlist.text"
-msgid "Formula"
-msgstr "Formel"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"max\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"max\n"
-"1\n"
-"stringlist.text"
-msgid "Minimum"
-msgstr "Minimum"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"max\n"
-"2\n"
-"stringlist.text"
-msgid "Maximum"
-msgstr "Maximum"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"max\n"
-"3\n"
-"stringlist.text"
-msgid "Percentile"
-msgstr "Prozentual"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"max\n"
-"4\n"
-"stringlist.text"
-msgid "Value"
-msgstr "Wert"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"max\n"
-"5\n"
-"stringlist.text"
-msgid "Percent"
-msgstr "Prozent"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"max\n"
-"6\n"
-"stringlist.text"
-msgid "Formula"
-msgstr "Formel"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Entry Values"
-msgstr "Eingabewerte"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Positive:"
-msgstr "Positiv:"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Negative:"
-msgstr "Negativ:"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "Fill:"
-msgstr "Füllung:"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"fill_type\n"
-"0\n"
-"stringlist.text"
-msgid "Color"
-msgstr "Farbe"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"fill_type\n"
-"1\n"
-"stringlist.text"
-msgid "Gradient"
-msgstr "Verlauf"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Bar Colors"
-msgstr "Balkenfarben"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Position of vertical axis:"
-msgstr "Position der Achse:"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "Color of vertical axis:"
-msgstr "Farbe der Achse:"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"axis_pos\n"
-"0\n"
-"stringlist.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"axis_pos\n"
-"1\n"
-"stringlist.text"
-msgid "Middle"
-msgstr "Mittelwert"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"axis_pos\n"
-"2\n"
-"stringlist.text"
-msgid "None"
-msgstr "Kein"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Axis"
-msgstr "Achse"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"label12\n"
-"label\n"
-"string.text"
-msgid "Minimum bar length (%):"
-msgstr "Minimale Balkenlänge (%):"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"label13\n"
-"label\n"
-"string.text"
-msgid "Maximum bar length (%):"
-msgstr "Maximale Balkenlänge (%):"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"label11\n"
-"label\n"
-"string.text"
-msgid "Bar Lengths"
-msgstr "Balkenlängen"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"only_bar\n"
-"label\n"
-"string.text"
-msgid "Display bar only"
-msgstr "Nur Balken anzeigen"
-
-#: databaroptions.ui
-msgctxt ""
-"databaroptions.ui\n"
-"str_same_value\n"
-"label\n"
-"string.text"
-msgid "The minimum value must be less than the maximum value."
-msgstr "Der Wert für Minimum muss kleiner als der Wert für Maximum sein."
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"DataFieldDialog\n"
-"title\n"
-"string.text"
-msgid "Data Field"
-msgstr "Datenfeld"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Function"
-msgstr "Funktion"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"checkbutton1\n"
-"label\n"
-"string.text"
-msgid "Show it_ems without data"
-msgstr "_Elemente ohne Daten anzeigen"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Name:"
-msgstr "Name:"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Type:"
-msgstr "_Typ:"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"basefieldft\n"
-"label\n"
-"string.text"
-msgid "_Base field:"
-msgstr "_Basisfeld:"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"baseitemft\n"
-"label\n"
-"string.text"
-msgid "Ba_se item:"
-msgstr "Ba_siselement:"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"type\n"
-"0\n"
-"stringlist.text"
-msgid "Normal"
-msgstr "Normal"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"type\n"
-"1\n"
-"stringlist.text"
-msgid "Difference from"
-msgstr "Differenz von"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"type\n"
-"2\n"
-"stringlist.text"
-msgid "% of"
-msgstr "% von"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"type\n"
-"3\n"
-"stringlist.text"
-msgid "% difference from"
-msgstr "% Differenz von"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"type\n"
-"4\n"
-"stringlist.text"
-msgid "Running total in"
-msgstr "Kumuliert über"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"type\n"
-"5\n"
-"stringlist.text"
-msgid "% of row"
-msgstr "% der Zeile"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"type\n"
-"6\n"
-"stringlist.text"
-msgid "% of column"
-msgstr "% der Spalte"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"type\n"
-"7\n"
-"stringlist.text"
-msgid "% of total"
-msgstr "% des Ergebnisses"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"type\n"
-"8\n"
-"stringlist.text"
-msgid "Index"
-msgstr "Index"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"baseitem\n"
-"0\n"
-"stringlist.text"
-msgid "- previous item -"
-msgstr "- vorhergehendes Element -"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"baseitem\n"
-"1\n"
-"stringlist.text"
-msgid "- next item -"
-msgstr "- nächstes Element -"
-
-#: datafielddialog.ui
-msgctxt ""
-"datafielddialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Displayed value"
-msgstr "Angezeigter Wert"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"DataFieldOptionsDialog\n"
-"title\n"
-"string.text"
-msgid "Data Field Options"
-msgstr "Datenfeld-Optionen"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"ascending\n"
-"label\n"
-"string.text"
-msgid "_Ascending"
-msgstr "_Aufsteigend"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"descending\n"
-"label\n"
-"string.text"
-msgid "_Descending"
-msgstr "_Absteigend"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"manual\n"
-"label\n"
-"string.text"
-msgid "_Manual"
-msgstr "_Manuell"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Sort by"
-msgstr "Sortieren nach"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"repeatitemlabels\n"
-"label\n"
-"string.text"
-msgid "_Repeat item labels"
-msgstr "Beschriftung _wiederholen"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"emptyline\n"
-"label\n"
-"string.text"
-msgid "_Empty line after each item"
-msgstr "L_eerzeile nach jedem Element"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Layout:"
-msgstr "_Layout:"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"layout\n"
-"0\n"
-"stringlist.text"
-msgid "Tabular layout"
-msgstr "Tabellarisches Layout"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"layout\n"
-"1\n"
-"stringlist.text"
-msgid "Outline layout with subtotals at the top"
-msgstr "Gliederungsansicht mit Teilergebnissen oben"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"layout\n"
-"2\n"
-"stringlist.text"
-msgid "Outline layout with subtotals at the bottom"
-msgstr "Gliederungsansicht mit Teilergebnissen unten"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Display Options"
-msgstr "Anzeigeoptionen"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"show\n"
-"label\n"
-"string.text"
-msgid "_Show:"
-msgstr "An_zeigen:"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"showfromft\n"
-"label\n"
-"string.text"
-msgid "_From:"
-msgstr "_Von:"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"usingft\n"
-"label\n"
-"string.text"
-msgid "_Using field:"
-msgstr "_Feld verwenden:"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"showft\n"
-"label\n"
-"string.text"
-msgid "items"
-msgstr "Elemente"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"from\n"
-"0\n"
-"stringlist.text"
-msgid "Top"
-msgstr "Oben"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"from\n"
-"1\n"
-"stringlist.text"
-msgid "Bottom"
-msgstr "Unten"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Show Automatically"
-msgstr "Automatisch anzeigen"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "Hide Items"
-msgstr "Elemente ausblenden"
-
-#: datafieldoptionsdialog.ui
-msgctxt ""
-"datafieldoptionsdialog.ui\n"
-"hierarchyft\n"
-"label\n"
-"string.text"
-msgid "Hierarch_y:"
-msgstr "H_ierarchie:"
-
-#: dataform.ui
-msgctxt ""
-"dataform.ui\n"
-"DataFormDialog\n"
-"title\n"
-"string.text"
-msgid "Data Form"
-msgstr "Datenformular"
-
-#: dataform.ui
-msgctxt ""
-"dataform.ui\n"
-"label\n"
-"label\n"
-"string.text"
-msgid "New Record"
-msgstr "Neuer Datensatz"
-
-#: dataform.ui
-msgctxt ""
-"dataform.ui\n"
-"new\n"
-"label\n"
-"string.text"
-msgid "_New"
-msgstr "_Neu"
-
-#: dataform.ui
-msgctxt ""
-"dataform.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete"
-msgstr "_Löschen"
-
-#: dataform.ui
-msgctxt ""
-"dataform.ui\n"
-"restore\n"
-"label\n"
-"string.text"
-msgid "_Restore"
-msgstr "_Wiederherstellen"
-
-#: dataform.ui
-msgctxt ""
-"dataform.ui\n"
-"prev\n"
-"label\n"
-"string.text"
-msgid "_Previous Record"
-msgstr "_Vorheriger Datensatz"
-
-#: dataform.ui
-msgctxt ""
-"dataform.ui\n"
-"next\n"
-"label\n"
-"string.text"
-msgid "Ne_xt Record"
-msgstr "Nächster _Datensatz"
-
-#: dataform.ui
-msgctxt ""
-"dataform.ui\n"
-"close\n"
-"label\n"
-"string.text"
-msgid "_Close"
-msgstr "_Schließen"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"DataStreamDialog\n"
-"title\n"
-"string.text"
-msgid "Live Data Streams"
-msgstr "Live-Datenströme"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "URL:"
-msgstr "URL:"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"url\n"
-"tooltip_text\n"
-"string.text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Geben Sie die URL des Quelldokuments im lokalen Dateisystem oder im Internet hier ein."
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "_Browse..."
-msgstr "Durch_suchen..."
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"directdata\n"
-"label\n"
-"string.text"
-msgid "Direct data feed"
-msgstr "Direkte Datenzuführung"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"scriptdata\n"
-"label\n"
-"string.text"
-msgid "Script to execute to obtain the data"
-msgstr "Auszuführendes Skript, um die Daten zu erhalten"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"valuesinline\n"
-"label\n"
-"string.text"
-msgid "value1,value2,...,valueN, and fill into range:"
-msgstr "Wert_1, Wert_2, ..., Wert_N und füllen in die Bereiche:"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"addressvalue\n"
-"label\n"
-"string.text"
-msgid "address,value"
-msgstr "Adresse,Wert"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Interpret stream data as"
-msgstr "Interpretiere Stromdaten als"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"refresh_ui\n"
-"label\n"
-"string.text"
-msgid "Empty lines trigger UI refresh"
-msgstr "Leere Zeilen lösen ein Auffrischen der Benutzeroberfläche aus"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"label\n"
-"label\n"
-"string.text"
-msgid "Source Stream"
-msgstr "Quelldatenstrom"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"datadown\n"
-"label\n"
-"string.text"
-msgid "Move existing data down"
-msgstr "Bestehende Daten nach unten verschieben"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"rangedown\n"
-"label\n"
-"string.text"
-msgid "Move the range down"
-msgstr "Diesen Bereich nach unten verschieben"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"nomove\n"
-"label\n"
-"string.text"
-msgid "Overwrite existing data"
-msgstr "Bestehende Daten überschreiben"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "When New Data Arrives"
-msgstr "Wenn neue Daten eintreffen"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"maxlimit\n"
-"label\n"
-"string.text"
-msgid "Limit to:"
-msgstr "Begrenzen auf:"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"unlimited\n"
-"label\n"
-"string.text"
-msgid "_Unlimited"
-msgstr "_Unbegrenzt"
-
-#: datastreams.ui
-msgctxt ""
-"datastreams.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Maximal Amount of Rows"
-msgstr "Maximale Anzahl an Zeilen"
-
-#: definedatabaserangedialog.ui
-msgctxt ""
-"definedatabaserangedialog.ui\n"
-"DefineDatabaseRangeDialog\n"
-"title\n"
-"string.text"
-msgid "Define Database Range"
-msgstr "Datenbankbereich festlegen"
-
-#: definedatabaserangedialog.ui
-msgctxt ""
-"definedatabaserangedialog.ui\n"
-"Name\n"
-"label\n"
-"string.text"
-msgid "Name"
-msgstr "Name"
-
-#: definedatabaserangedialog.ui
-msgctxt ""
-"definedatabaserangedialog.ui\n"
-"Range\n"
-"label\n"
-"string.text"
-msgid "Range"
-msgstr "Umfang"
-
-#: definedatabaserangedialog.ui
-msgctxt ""
-"definedatabaserangedialog.ui\n"
-"modify\n"
-"label\n"
-"string.text"
-msgid "M_odify"
-msgstr "Ä_ndern"
-
-#: definedatabaserangedialog.ui
-msgctxt ""
-"definedatabaserangedialog.ui\n"
-"ContainsColumnLabels\n"
-"label\n"
-"string.text"
-msgid "Co_ntains column labels"
-msgstr "Enthält _Spaltenbeschriftungen"
-
-#: definedatabaserangedialog.ui
-msgctxt ""
-"definedatabaserangedialog.ui\n"
-"ContainsTotalsRow\n"
-"label\n"
-"string.text"
-msgid "Contains _totals row"
-msgstr "Enthält _Ergebniszeile"
-
-#: definedatabaserangedialog.ui
-msgctxt ""
-"definedatabaserangedialog.ui\n"
-"InsertOrDeleteCells\n"
-"label\n"
-"string.text"
-msgid "Insert or delete _cells"
-msgstr "Zellen _einfügen/löschen"
-
-#: definedatabaserangedialog.ui
-msgctxt ""
-"definedatabaserangedialog.ui\n"
-"KeepFormatting\n"
-"label\n"
-"string.text"
-msgid "Keep _formatting"
-msgstr "_Formatierung beibehalten"
-
-#: definedatabaserangedialog.ui
-msgctxt ""
-"definedatabaserangedialog.ui\n"
-"DontSaveImportedData\n"
-"label\n"
-"string.text"
-msgid "Don't save _imported data"
-msgstr "_Importierte Daten nicht speichern"
-
-#: definedatabaserangedialog.ui
-msgctxt ""
-"definedatabaserangedialog.ui\n"
-"Source\n"
-"label\n"
-"string.text"
-msgid "Source:"
-msgstr "Quelle:"
-
-#: definedatabaserangedialog.ui
-msgctxt ""
-"definedatabaserangedialog.ui\n"
-"Operations\n"
-"label\n"
-"string.text"
-msgid "Operations:"
-msgstr "Operationen:"
-
-#: definedatabaserangedialog.ui
-msgctxt ""
-"definedatabaserangedialog.ui\n"
-"invalid\n"
-"label\n"
-"string.text"
-msgid "Invalid range"
-msgstr "Ungültiger Bereich"
-
-#: definedatabaserangedialog.ui
-msgctxt ""
-"definedatabaserangedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: definename.ui
-msgctxt ""
-"definename.ui\n"
-"DefineNameDialog\n"
-"title\n"
-"string.text"
-msgid "Define Name"
-msgstr "Namen festlegen"
-
-#: definename.ui
-msgctxt ""
-"definename.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Name:"
-msgstr "Name:"
-
-#: definename.ui
-msgctxt ""
-"definename.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Range or formula expression:"
-msgstr "Bereich oder Formelausdruck:"
-
-#: definename.ui
-msgctxt ""
-"definename.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Scope:"
-msgstr "Geltungsbereich:"
-
-#: definename.ui
-msgctxt ""
-"definename.ui\n"
-"label\n"
-"label\n"
-"string.text"
-msgid "Define the name and range or formula expression."
-msgstr "Legen Sie den Namen und den Bereich oder Formelausdruck fest."
-
-#: definename.ui
-msgctxt ""
-"definename.ui\n"
-"printarea\n"
-"label\n"
-"string.text"
-msgid "_Print range"
-msgstr "Druc_kbereich"
-
-#: definename.ui
-msgctxt ""
-"definename.ui\n"
-"filter\n"
-"label\n"
-"string.text"
-msgid "_Filter"
-msgstr "_Filter"
-
-#: definename.ui
-msgctxt ""
-"definename.ui\n"
-"colheader\n"
-"label\n"
-"string.text"
-msgid "Repeat _column"
-msgstr "_Wiederholungsspalte"
-
-#: definename.ui
-msgctxt ""
-"definename.ui\n"
-"rowheader\n"
-"label\n"
-"string.text"
-msgid "Repeat _row"
-msgstr "W_iederholungszeile"
-
-#: definename.ui
-msgctxt ""
-"definename.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Range _Options"
-msgstr "Bereichs_optionen"
-
-#: deletecells.ui
-msgctxt ""
-"deletecells.ui\n"
-"DeleteCellsDialog\n"
-"title\n"
-"string.text"
-msgid "Delete Cells"
-msgstr "Zellen löschen"
-
-#: deletecells.ui
-msgctxt ""
-"deletecells.ui\n"
-"up\n"
-"label\n"
-"string.text"
-msgid "Shift cells _up"
-msgstr "Zellen nach _oben verschieben"
-
-#: deletecells.ui
-msgctxt ""
-"deletecells.ui\n"
-"left\n"
-"label\n"
-"string.text"
-msgid "Shift cells _left"
-msgstr "Zellen nach _links verschieben"
-
-#: deletecells.ui
-msgctxt ""
-"deletecells.ui\n"
-"rows\n"
-"label\n"
-"string.text"
-msgid "Delete entire _row(s)"
-msgstr "Ganze _Zeile(n) löschen"
-
-#: deletecells.ui
-msgctxt ""
-"deletecells.ui\n"
-"cols\n"
-"label\n"
-"string.text"
-msgid "Delete entire _column(s)"
-msgstr "Ganze _Spalte(n) löschen"
-
-#: deletecells.ui
-msgctxt ""
-"deletecells.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: deletecontents.ui
-msgctxt ""
-"deletecontents.ui\n"
-"DeleteContentsDialog\n"
-"title\n"
-"string.text"
-msgid "Delete Contents"
-msgstr "Inhalte löschen"
-
-#: deletecontents.ui
-msgctxt ""
-"deletecontents.ui\n"
-"deleteall\n"
-"label\n"
-"string.text"
-msgid "Delete _all"
-msgstr "_Alles löschen"
-
-#: deletecontents.ui
-msgctxt ""
-"deletecontents.ui\n"
-"text\n"
-"label\n"
-"string.text"
-msgid "_Text"
-msgstr "Initialen_text"
-
-#: deletecontents.ui
-msgctxt ""
-"deletecontents.ui\n"
-"numbers\n"
-"label\n"
-"string.text"
-msgid "_Numbers"
-msgstr "_Zahlen"
-
-#: deletecontents.ui
-msgctxt ""
-"deletecontents.ui\n"
-"datetime\n"
-"label\n"
-"string.text"
-msgid "_Date & time"
-msgstr "_Datum & Zeit"
-
-#: deletecontents.ui
-msgctxt ""
-"deletecontents.ui\n"
-"formulas\n"
-"label\n"
-"string.text"
-msgid "_Formulas"
-msgstr "_Formeln"
-
-#: deletecontents.ui
-msgctxt ""
-"deletecontents.ui\n"
-"comments\n"
-"label\n"
-"string.text"
-msgid "_Comments"
-msgstr "_Kommentare"
-
-#: deletecontents.ui
-msgctxt ""
-"deletecontents.ui\n"
-"formats\n"
-"label\n"
-"string.text"
-msgid "For_mats"
-msgstr "Formatieru_ngen"
-
-#: deletecontents.ui
-msgctxt ""
-"deletecontents.ui\n"
-"objects\n"
-"label\n"
-"string.text"
-msgid "_Objects"
-msgstr "_Objekte"
-
-#: deletecontents.ui
-msgctxt ""
-"deletecontents.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: descriptivestatisticsdialog.ui
-msgctxt ""
-"descriptivestatisticsdialog.ui\n"
-"DescriptiveStatisticsDialog\n"
-"title\n"
-"string.text"
-msgid "Descriptive Statistics"
-msgstr "Beschreibende Statistik"
-
-#: descriptivestatisticsdialog.ui
-msgctxt ""
-"descriptivestatisticsdialog.ui\n"
-"input-range-label\n"
-"label\n"
-"string.text"
-msgid "Input range:"
-msgstr "Eingabebereich:"
-
-#: descriptivestatisticsdialog.ui
-msgctxt ""
-"descriptivestatisticsdialog.ui\n"
-"output-range-label\n"
-"label\n"
-"string.text"
-msgid "Results to:"
-msgstr "Ergebnisse nach:"
-
-#: descriptivestatisticsdialog.ui
-msgctxt ""
-"descriptivestatisticsdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: descriptivestatisticsdialog.ui
-msgctxt ""
-"descriptivestatisticsdialog.ui\n"
-"groupedby-columns-radio\n"
-"label\n"
-"string.text"
-msgid "_Columns"
-msgstr "S_palten"
-
-#: descriptivestatisticsdialog.ui
-msgctxt ""
-"descriptivestatisticsdialog.ui\n"
-"groupedby-rows-radio\n"
-"label\n"
-"string.text"
-msgid "_Rows"
-msgstr "Z_eilen"
-
-#: descriptivestatisticsdialog.ui
-msgctxt ""
-"descriptivestatisticsdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Grouped by"
-msgstr "Gruppiert nach"
-
-#: doubledialog.ui
-msgctxt ""
-"doubledialog.ui\n"
-"DoubleDialog\n"
-"title\n"
-"string.text"
-msgid "Edit Setting"
-msgstr "Einstellung bearbeiten"
-
-#: dropmenu.ui
-msgctxt ""
-"dropmenu.ui\n"
-"hyperlink\n"
-"label\n"
-"string.text"
-msgid "Insert as Hyperlink"
-msgstr "Als Hyperlink einfügen"
-
-#: dropmenu.ui
-msgctxt ""
-"dropmenu.ui\n"
-"link\n"
-"label\n"
-"string.text"
-msgid "Insert as Link"
-msgstr "Als Verknüpfung einfügen"
-
-#: dropmenu.ui
-msgctxt ""
-"dropmenu.ui\n"
-"copy\n"
-"label\n"
-"string.text"
-msgid "Insert as Copy"
-msgstr "Als Kopie einfügen"
-
-#: erroralerttabpage.ui
-msgctxt ""
-"erroralerttabpage.ui\n"
-"tsbshow\n"
-"label\n"
-"string.text"
-msgid "Show error _message when invalid values are entered"
-msgstr "Bei Eingabe ungültiger Werte Fehler_meldung anzeigen"
-
-#: erroralerttabpage.ui
-msgctxt ""
-"erroralerttabpage.ui\n"
-"action_label\n"
-"label\n"
-"string.text"
-msgid "_Action:"
-msgstr "_Aktion:"
-
-#: erroralerttabpage.ui
-msgctxt ""
-"erroralerttabpage.ui\n"
-"title_label\n"
-"label\n"
-"string.text"
-msgid "_Title:"
-msgstr "_Titel:"
-
-#: erroralerttabpage.ui
-msgctxt ""
-"erroralerttabpage.ui\n"
-"errormsg_label\n"
-"label\n"
-"string.text"
-msgid "_Error message:"
-msgstr "_Fehlermeldung:"
-
-#: erroralerttabpage.ui
-msgctxt ""
-"erroralerttabpage.ui\n"
-"browseBtn\n"
-"label\n"
-"string.text"
-msgid "_Browse..."
-msgstr "Durch_suchen..."
-
-#: erroralerttabpage.ui
-msgctxt ""
-"erroralerttabpage.ui\n"
-"actionCB\n"
-"0\n"
-"stringlist.text"
-msgid "Stop"
-msgstr "Anhalten"
-
-#: erroralerttabpage.ui
-msgctxt ""
-"erroralerttabpage.ui\n"
-"actionCB\n"
-"1\n"
-"stringlist.text"
-msgid "Warning"
-msgstr "Warnung"
-
-#: erroralerttabpage.ui
-msgctxt ""
-"erroralerttabpage.ui\n"
-"actionCB\n"
-"2\n"
-"stringlist.text"
-msgid "Information"
-msgstr "Information"
-
-#: erroralerttabpage.ui
-msgctxt ""
-"erroralerttabpage.ui\n"
-"actionCB\n"
-"3\n"
-"stringlist.text"
-msgid "Macro"
-msgstr "Makro"
-
-#: erroralerttabpage.ui
-msgctxt ""
-"erroralerttabpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Contents"
-msgstr "Inhalte"
-
-#: exponentialsmoothingdialog.ui
-msgctxt ""
-"exponentialsmoothingdialog.ui\n"
-"ExponentialSmoothingDialog\n"
-"title\n"
-"string.text"
-msgid "Exponential Smoothing"
-msgstr "Exponentielle Glättung"
-
-#: exponentialsmoothingdialog.ui
-msgctxt ""
-"exponentialsmoothingdialog.ui\n"
-"input-range-label\n"
-"label\n"
-"string.text"
-msgid "Input range:"
-msgstr "Eingabebereich:"
-
-#: exponentialsmoothingdialog.ui
-msgctxt ""
-"exponentialsmoothingdialog.ui\n"
-"output-range-label\n"
-"label\n"
-"string.text"
-msgid "Results to:"
-msgstr "Ergebnisse nach:"
-
-#: exponentialsmoothingdialog.ui
-msgctxt ""
-"exponentialsmoothingdialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: exponentialsmoothingdialog.ui
-msgctxt ""
-"exponentialsmoothingdialog.ui\n"
-"groupedby-columns-radio\n"
-"label\n"
-"string.text"
-msgid "Columns"
-msgstr "Spalten"
-
-#: exponentialsmoothingdialog.ui
-msgctxt ""
-"exponentialsmoothingdialog.ui\n"
-"groupedby-rows-radio\n"
-"label\n"
-"string.text"
-msgid "Rows"
-msgstr "Zeilen"
-
-#: exponentialsmoothingdialog.ui
-msgctxt ""
-"exponentialsmoothingdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Grouped by"
-msgstr "Gruppiert nach"
-
-#: exponentialsmoothingdialog.ui
-msgctxt ""
-"exponentialsmoothingdialog.ui\n"
-"smoothing-factor-label\n"
-"label\n"
-"string.text"
-msgid "Smoothing factor:"
-msgstr "Glättungsfaktor:"
-
-#: exponentialsmoothingdialog.ui
-msgctxt ""
-"exponentialsmoothingdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Parameters"
-msgstr "Parameter"
-
-#: externaldata.ui
-msgctxt ""
-"externaldata.ui\n"
-"ExternalDataDialog\n"
-"title\n"
-"string.text"
-msgid "External Data"
-msgstr "Externe Daten"
-
-#: externaldata.ui
-msgctxt ""
-"externaldata.ui\n"
-"url\n"
-"tooltip_text\n"
-"string.text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Geben Sie die URL des Quelldokuments im lokalen Dateisystem oder Im Internet hier ein."
-
-#: externaldata.ui
-msgctxt ""
-"externaldata.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "_Browse..."
-msgstr "Durch_suchen..."
-
-#: externaldata.ui
-msgctxt ""
-"externaldata.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "URL of _External Data Source"
-msgstr "_URL der externen Datenquelle"
-
-#: externaldata.ui
-msgctxt ""
-"externaldata.ui\n"
-"reload\n"
-"label\n"
-"string.text"
-msgid "_Update every:"
-msgstr "_Aktualisierung alle:"
-
-#: externaldata.ui
-msgctxt ""
-"externaldata.ui\n"
-"secondsft\n"
-"label\n"
-"string.text"
-msgid "_seconds"
-msgstr "_Sekunden"
-
-#: externaldata.ui
-msgctxt ""
-"externaldata.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Available Tables/Ranges"
-msgstr "_Verfügbare Tabellen/Bereiche"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"FillSeriesDialog\n"
-"title\n"
-"string.text"
-msgid "Fill Series"
-msgstr "Reihen füllen"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"down\n"
-"label\n"
-"string.text"
-msgid "_Down"
-msgstr "_Unten"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"right\n"
-"label\n"
-"string.text"
-msgid "_Right"
-msgstr "_Rechts"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"up\n"
-"label\n"
-"string.text"
-msgid "_Up"
-msgstr "_Oben"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"left\n"
-"label\n"
-"string.text"
-msgid "_Left"
-msgstr "_Links"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Direction"
-msgstr "Richtung"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"linear\n"
-"label\n"
-"string.text"
-msgid "Li_near"
-msgstr "Li_near"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"growth\n"
-"label\n"
-"string.text"
-msgid "_Growth"
-msgstr "_Wachstum"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"date\n"
-"label\n"
-"string.text"
-msgid "Da_te"
-msgstr "_Datum"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"autofill\n"
-"label\n"
-"string.text"
-msgid "_AutoFill"
-msgstr "Automatisch _füllen"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Series Type"
-msgstr "Reihentyp"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"day\n"
-"label\n"
-"string.text"
-msgid "Da_y"
-msgstr "_Tag"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"week\n"
-"label\n"
-"string.text"
-msgid "_Weekday"
-msgstr "_Wochentag"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"month\n"
-"label\n"
-"string.text"
-msgid "_Month"
-msgstr "_Monat"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"year\n"
-"label\n"
-"string.text"
-msgid "Y_ear"
-msgstr "_Jahr"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"tuL\n"
-"label\n"
-"string.text"
-msgid "Time Unit"
-msgstr "Zeiteinheit"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"startL\n"
-"label\n"
-"string.text"
-msgid "_Start value:"
-msgstr "Anfangs_wert:"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"endL\n"
-"label\n"
-"string.text"
-msgid "End _value:"
-msgstr "_Endwert:"
-
-#: filldlg.ui
-msgctxt ""
-"filldlg.ui\n"
-"incrementL\n"
-"label\n"
-"string.text"
-msgid "In_crement:"
-msgstr "Z_unahme:"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"none\n"
-"tooltip_text\n"
-"string.text"
-msgid "No Border"
-msgstr "Keine Umrandung"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"all\n"
-"tooltip_text\n"
-"string.text"
-msgid "All Borders"
-msgstr "Alle Umrandungen"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"outside\n"
-"tooltip_text\n"
-"string.text"
-msgid "Outside Borders"
-msgstr "Äußere Umrandungen"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"thickbox\n"
-"tooltip_text\n"
-"string.text"
-msgid "Thick Box Border"
-msgstr "Dicke äußere Umrandung"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"thickbottom\n"
-"tooltip_text\n"
-"string.text"
-msgid "Thick Bottom Border"
-msgstr "Dicke untere Umrandung"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"doublebottom\n"
-"tooltip_text\n"
-"string.text"
-msgid "Double Bottom Border"
-msgstr "Doppelte untere Umrandung"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"topthickbottom\n"
-"tooltip_text\n"
-"string.text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Obere und doppelte untere Umrandung"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"topdoublebottom\n"
-"tooltip_text\n"
-"string.text"
-msgid "Top and Double Bottom Borders"
-msgstr "Obere und doppelte untere Umrandung"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"left\n"
-"tooltip_text\n"
-"string.text"
-msgid "Left Border"
-msgstr "Linke Umrandung"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"right\n"
-"tooltip_text\n"
-"string.text"
-msgid "Right Border"
-msgstr "Rechte Umrandung"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"top\n"
-"tooltip_text\n"
-"string.text"
-msgid "Top Border"
-msgstr "Obere Umrandung"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"bottom\n"
-"tooltip_text\n"
-"string.text"
-msgid "Bottom Border"
-msgstr "Untere Umrandung"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"diagup\n"
-"tooltip_text\n"
-"string.text"
-msgid "Diagonal Up Border"
-msgstr "Diagonal nach oben laufende Umrandung"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"diagdown\n"
-"tooltip_text\n"
-"string.text"
-msgid "Diagonal Down Border"
-msgstr "Diagonal nach unten laufende Umrandung"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"topbottom\n"
-"tooltip_text\n"
-"string.text"
-msgid "Top and Bottom Borders"
-msgstr "Obere und untere Umrandung"
-
-#: floatingborderstyle.ui
-msgctxt ""
-"floatingborderstyle.ui\n"
-"leftright\n"
-"tooltip_text\n"
-"string.text"
-msgid "Left and Right Borders"
-msgstr "Linke und rechte Umrandung"
-
-#: floatinglinestyle.ui
-msgctxt ""
-"floatinglinestyle.ui\n"
-"more\n"
-"label\n"
-"string.text"
-msgid "_More Options..."
-msgstr "_Weitere Optionen..."
-
-#: footerdialog.ui
-msgctxt ""
-"footerdialog.ui\n"
-"FooterDialog\n"
-"title\n"
-"string.text"
-msgid "Footers"
-msgstr "Fußzeilen"
-
-#: footerdialog.ui
-msgctxt ""
-"footerdialog.ui\n"
-"footerright\n"
-"label\n"
-"string.text"
-msgid "Footer (right)"
-msgstr "Fußzeile (rechts)"
-
-#: footerdialog.ui
-msgctxt ""
-"footerdialog.ui\n"
-"footerleft\n"
-"label\n"
-"string.text"
-msgid "Footer (left)"
-msgstr "Fußzeile (links)"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"FormatCellsDialog\n"
-"title\n"
-"string.text"
-msgid "Format Cells"
-msgstr "Zellen formatieren"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"numbers\n"
-"label\n"
-"string.text"
-msgid "Numbers"
-msgstr "Zahlen"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"font\n"
-"label\n"
-"string.text"
-msgid "Font"
-msgstr "Schrift"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"fonteffects\n"
-"label\n"
-"string.text"
-msgid "Font Effects"
-msgstr "Schrifteffekt"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"alignment\n"
-"label\n"
-"string.text"
-msgid "Alignment"
-msgstr "Ausrichtung"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"asiantypography\n"
-"label\n"
-"string.text"
-msgid "Asian Typography"
-msgstr "Asiatische Typografie"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"borders\n"
-"label\n"
-"string.text"
-msgid "Borders"
-msgstr "Umrandung"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"background\n"
-"label\n"
-"string.text"
-msgid "Background"
-msgstr "Hintergrund"
-
-#: formatcellsdialog.ui
-msgctxt ""
-"formatcellsdialog.ui\n"
-"cellprotection\n"
-"label\n"
-"string.text"
-msgid "Cell Protection"
-msgstr "Zellschutz"
-
-#: formulacalculationoptions.ui
-msgctxt ""
-"formulacalculationoptions.ui\n"
-"FormulaCalculationOptions\n"
-"title\n"
-"string.text"
-msgid "Detailed Calculation Settings"
-msgstr "Detaillierte Einstellungen für Berechnungen"
-
-#: formulacalculationoptions.ui
-msgctxt ""
-"formulacalculationoptions.ui\n"
-"labelConvT2N\n"
-"label\n"
-"string.text"
-msgid "Conversion from text to number:"
-msgstr "Konvertiertierung von Text in eine Zahl:"
-
-#: formulacalculationoptions.ui
-msgctxt ""
-"formulacalculationoptions.ui\n"
-"checkEmptyAsZero\n"
-"label\n"
-"string.text"
-msgid "Treat _empty string as zero"
-msgstr "_Leere Zeichenketten als Null behandeln"
-
-#: formulacalculationoptions.ui
-msgctxt ""
-"formulacalculationoptions.ui\n"
-"labelSyntaxRef\n"
-"label\n"
-"string.text"
-msgid "Reference syntax for string reference:"
-msgstr "Bezügesyntax für Zeichenkettenbezug:"
-
-#: formulacalculationoptions.ui
-msgctxt ""
-"formulacalculationoptions.ui\n"
-"comboSyntaxRef\n"
-"0\n"
-"stringlist.text"
-msgid "Use formula syntax"
-msgstr "Formel-Syntax benutzen"
-
-#: formulacalculationoptions.ui
-msgctxt ""
-"formulacalculationoptions.ui\n"
-"comboConversion\n"
-"0\n"
-"stringlist.text"
-msgid "Generate #VALUE! error"
-msgstr "Fehler #WERT! generieren"
-
-#: formulacalculationoptions.ui
-msgctxt ""
-"formulacalculationoptions.ui\n"
-"comboConversion\n"
-"1\n"
-"stringlist.text"
-msgid "Treat as zero"
-msgstr "Als Null behandeln"
-
-#: formulacalculationoptions.ui
-msgctxt ""
-"formulacalculationoptions.ui\n"
-"comboConversion\n"
-"2\n"
-"stringlist.text"
-msgid "Convert only if unambiguous"
-msgstr "Nur Eindeutige umwandeln"
-
-#: formulacalculationoptions.ui
-msgctxt ""
-"formulacalculationoptions.ui\n"
-"comboConversion\n"
-"3\n"
-"stringlist.text"
-msgid "Convert also locale dependent"
-msgstr "Auch Sprachabhängige umwandeln"
-
-#: formulacalculationoptions.ui
-msgctxt ""
-"formulacalculationoptions.ui\n"
-"current_doc\n"
-"label\n"
-"string.text"
-msgid "Apply those settings to current document only"
-msgstr "Einstellungen nur auf das aktuelle Dokument anwenden"
-
-#: formulacalculationoptions.ui
-msgctxt ""
-"formulacalculationoptions.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Contents to Numbers"
-msgstr "Inhalt in Zahlen"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"insert\n"
-"tooltip_text\n"
-"string.text"
-msgid "Insert Function into calculation sheet"
-msgstr "Funktion in Tabelle einfügen"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"category\n"
-"0\n"
-"stringlist.text"
-msgid "Last Used"
-msgstr "Zuletzt verwendet"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"category\n"
-"1\n"
-"stringlist.text"
-msgid "All"
-msgstr "Alle"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"category\n"
-"2\n"
-"stringlist.text"
-msgid "Database"
-msgstr "Datenbank"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"category\n"
-"3\n"
-"stringlist.text"
-msgid "Date&Time"
-msgstr "Datum&Zeit"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"category\n"
-"4\n"
-"stringlist.text"
-msgid "Financial"
-msgstr "Finanzen"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"category\n"
-"5\n"
-"stringlist.text"
-msgid "Information"
-msgstr "Information"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"category\n"
-"6\n"
-"stringlist.text"
-msgid "Logical"
-msgstr "Logisch"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"category\n"
-"7\n"
-"stringlist.text"
-msgid "Mathematical"
-msgstr "Mathematik"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"category\n"
-"8\n"
-"stringlist.text"
-msgid "Array"
-msgstr "Matrix"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"category\n"
-"9\n"
-"stringlist.text"
-msgid "Statistical"
-msgstr "Statistik"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"category\n"
-"10\n"
-"stringlist.text"
-msgid "Spreadsheet"
-msgstr "Tabelle"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"category\n"
-"11\n"
-"stringlist.text"
-msgid "Text"
-msgstr "Text"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"category\n"
-"12\n"
-"stringlist.text"
-msgid "Add-in"
-msgstr "Add-in"
-
-#: functionpanel.ui
-msgctxt ""
-"functionpanel.ui\n"
-"funcdesc\n"
-"label\n"
-"string.text"
-msgid "label"
-msgstr "Bezeichnung"
-
-#: goalseekdlg.ui
-msgctxt ""
-"goalseekdlg.ui\n"
-"GoalSeekDialog\n"
-"title\n"
-"string.text"
-msgid "Goal Seek"
-msgstr "Zielwertsuche"
-
-#: goalseekdlg.ui
-msgctxt ""
-"goalseekdlg.ui\n"
-"formulatext\n"
-"label\n"
-"string.text"
-msgid "_Formula cell:"
-msgstr "_Formelzelle:"
-
-#: goalseekdlg.ui
-msgctxt ""
-"goalseekdlg.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Target _value:"
-msgstr "_Zielwert:"
-
-#: goalseekdlg.ui
-msgctxt ""
-"goalseekdlg.ui\n"
-"vartext\n"
-"label\n"
-"string.text"
-msgid "Variable _cell:"
-msgstr "_Variable Zelle:"
-
-#: goalseekdlg.ui
-msgctxt ""
-"goalseekdlg.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Default Settings"
-msgstr "Vorgaben"
-
-#: groupbydate.ui
-msgctxt ""
-"groupbydate.ui\n"
-"PivotTableGroupByDate\n"
-"title\n"
-"string.text"
-msgid "Grouping"
-msgstr "Gruppierung"
-
-#: groupbydate.ui
-msgctxt ""
-"groupbydate.ui\n"
-"auto_start\n"
-"label\n"
-"string.text"
-msgid "_Automatically"
-msgstr "_Automatisch"
-
-#: groupbydate.ui
-msgctxt ""
-"groupbydate.ui\n"
-"manual_start\n"
-"label\n"
-"string.text"
-msgid "_Manually at:"
-msgstr "_Manuell bei:"
-
-#: groupbydate.ui
-msgctxt ""
-"groupbydate.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Start"
-msgstr "Anfang"
-
-#: groupbydate.ui
-msgctxt ""
-"groupbydate.ui\n"
-"auto_end\n"
-"label\n"
-"string.text"
-msgid "A_utomatically"
-msgstr "_Automatisch"
-
-#: groupbydate.ui
-msgctxt ""
-"groupbydate.ui\n"
-"manual_end\n"
-"label\n"
-"string.text"
-msgid "Ma_nually at:"
-msgstr "_Manuell bei:"
-
-#: groupbydate.ui
-msgctxt ""
-"groupbydate.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "End"
-msgstr "Ende"
-
-#: groupbydate.ui
-msgctxt ""
-"groupbydate.ui\n"
-"days\n"
-"label\n"
-"string.text"
-msgid "Number of _days:"
-msgstr "Anzahl von _Tagen:"
-
-#: groupbydate.ui
-msgctxt ""
-"groupbydate.ui\n"
-"intervals\n"
-"label\n"
-"string.text"
-msgid "_Intervals:"
-msgstr "_Intervallen:"
-
-#: groupbydate.ui
-msgctxt ""
-"groupbydate.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Group by"
-msgstr "Gruppieren nach"
-
-#: groupbynumber.ui
-msgctxt ""
-"groupbynumber.ui\n"
-"PivotTableGroupByNumber\n"
-"title\n"
-"string.text"
-msgid "Grouping"
-msgstr "Gruppierung"
-
-#: groupbynumber.ui
-msgctxt ""
-"groupbynumber.ui\n"
-"auto_start\n"
-"label\n"
-"string.text"
-msgid "_Automatically"
-msgstr "_Automatisch"
-
-#: groupbynumber.ui
-msgctxt ""
-"groupbynumber.ui\n"
-"manual_start\n"
-"label\n"
-"string.text"
-msgid "_Manually at:"
-msgstr "_Manuell bei:"
-
-#: groupbynumber.ui
-msgctxt ""
-"groupbynumber.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Start"
-msgstr "Anfang"
-
-#: groupbynumber.ui
-msgctxt ""
-"groupbynumber.ui\n"
-"auto_end\n"
-"label\n"
-"string.text"
-msgid "A_utomatically"
-msgstr "A_utomatisch"
-
-#: groupbynumber.ui
-msgctxt ""
-"groupbynumber.ui\n"
-"manual_end\n"
-"label\n"
-"string.text"
-msgid "Ma_nually at:"
-msgstr "Ma_nuell bei:"
-
-#: groupbynumber.ui
-msgctxt ""
-"groupbynumber.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "End"
-msgstr "Ende"
-
-#: groupbynumber.ui
-msgctxt ""
-"groupbynumber.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Group by"
-msgstr "Gruppieren nach"
-
-#: groupdialog.ui
-msgctxt ""
-"groupdialog.ui\n"
-"GroupDialog\n"
-"title\n"
-"string.text"
-msgid "Group"
-msgstr "Gruppe"
-
-#: groupdialog.ui
-msgctxt ""
-"groupdialog.ui\n"
-"rows\n"
-"label\n"
-"string.text"
-msgid "_Rows"
-msgstr "Z_eilen"
-
-#: groupdialog.ui
-msgctxt ""
-"groupdialog.ui\n"
-"cols\n"
-"label\n"
-"string.text"
-msgid "_Columns"
-msgstr "S_palten"
-
-#: groupdialog.ui
-msgctxt ""
-"groupdialog.ui\n"
-"includeLabel\n"
-"label\n"
-"string.text"
-msgid "Include"
-msgstr "Einschließen"
-
-#: headerdialog.ui
-msgctxt ""
-"headerdialog.ui\n"
-"HeaderDialog\n"
-"title\n"
-"string.text"
-msgid "Headers"
-msgstr "Kopfzeilen"
-
-#: headerdialog.ui
-msgctxt ""
-"headerdialog.ui\n"
-"headerright\n"
-"label\n"
-"string.text"
-msgid "Header (right)"
-msgstr "Kopfzeile (rechts)"
-
-#: headerdialog.ui
-msgctxt ""
-"headerdialog.ui\n"
-"headerleft\n"
-"label\n"
-"string.text"
-msgid "Header (left)"
-msgstr "Kopfzeile (links)"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelFT_LEFT\n"
-"label\n"
-"string.text"
-msgid "_Left area"
-msgstr "_Linker Bereich"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelFT_CENTER\n"
-"label\n"
-"string.text"
-msgid "_Center area"
-msgstr "_Mittlerer Bereich"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelFT_RIGHT\n"
-"label\n"
-"string.text"
-msgid "R_ight area"
-msgstr "_Rechter Bereich"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelFT_H_DEFINED\n"
-"label\n"
-"string.text"
-msgid "_Header"
-msgstr "_Kopfzeile"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelFT_F_DEFINED\n"
-"label\n"
-"string.text"
-msgid "_Footer"
-msgstr "F_ußzeile"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelFT_H_CUSTOM\n"
-"label\n"
-"string.text"
-msgid "Custom header"
-msgstr "Benutzerdefiniert"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelFT_F_CUSTOM\n"
-"label\n"
-"string.text"
-msgid "Custom footer"
-msgstr "Benutzerdefiniert"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"buttonBTN_TEXT\n"
-"tooltip_text\n"
-"string.text"
-msgid "Text Attributes"
-msgstr "Textattribute..."
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"buttonBTN_FILE\n"
-"tooltip_text\n"
-"string.text"
-msgid "Title"
-msgstr "Titel"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"buttonBTN_TABLE\n"
-"tooltip_text\n"
-"string.text"
-msgid "Sheet Name"
-msgstr "Tabellenname"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"buttonBTN_PAGE\n"
-"tooltip_text\n"
-"string.text"
-msgid "Page"
-msgstr "Seite"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"buttonBTN_PAGES\n"
-"tooltip_text\n"
-"string.text"
-msgid "Pages"
-msgstr "Seiten"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"buttonBTN_DATE\n"
-"tooltip_text\n"
-"string.text"
-msgid "Date"
-msgstr "Datum"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"buttonBTN_TIME\n"
-"tooltip_text\n"
-"string.text"
-msgid "Time"
-msgstr "Uhrzeit"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Use the buttons to change the font or insert field commands such as date, time, etc."
-msgstr "Benutzen Sie die Schaltflächen, um die Schriftart zu verändern oder Feldbefehle wie Datum, Uhrzeit usw. einzufügen."
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Note"
-msgstr "Notiz"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelSTR_HF_NONE_IN_BRACKETS\n"
-"label\n"
-"string.text"
-msgid "(none)"
-msgstr "(keins)"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelSTR_PAGE\n"
-"label\n"
-"string.text"
-msgid "Page"
-msgstr "Seite"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelSTR_HF_OF_QUESTION\n"
-"label\n"
-"string.text"
-msgid "of ?"
-msgstr "von ?"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelSTR_HF_CONFIDENTIAL\n"
-"label\n"
-"string.text"
-msgid "Confidential"
-msgstr "Vertraulich"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelSTR_HF_CREATED_BY\n"
-"label\n"
-"string.text"
-msgid "Created by"
-msgstr "Angelegt von"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelSTR_HF_CUSTOMIZED\n"
-"label\n"
-"string.text"
-msgid "Customized"
-msgstr "Benutzerdefiniert"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"labelSTR_HF_OF\n"
-"label\n"
-"string.text"
-msgid "of"
-msgstr "von"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"title\n"
-"label\n"
-"string.text"
-msgid "Title"
-msgstr "Titel"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"filename\n"
-"label\n"
-"string.text"
-msgid "File Name"
-msgstr "Dateiname"
-
-#: headerfootercontent.ui
-msgctxt ""
-"headerfootercontent.ui\n"
-"pathname\n"
-"label\n"
-"string.text"
-msgid "Path/File Name"
-msgstr "Pfad/Dateiname"
-
-#: headerfooterdialog.ui
-msgctxt ""
-"headerfooterdialog.ui\n"
-"HeaderFooterDialog\n"
-"title\n"
-"string.text"
-msgid "Headers/Footers"
-msgstr "Kopf-/Fußzeilen"
-
-#: headerfooterdialog.ui
-msgctxt ""
-"headerfooterdialog.ui\n"
-"header\n"
-"label\n"
-"string.text"
-msgid "Header"
-msgstr "Kopfzeile"
-
-#: headerfooterdialog.ui
-msgctxt ""
-"headerfooterdialog.ui\n"
-"footer\n"
-"label\n"
-"string.text"
-msgid "Footer"
-msgstr "Fußzeile"
-
-#: imoptdialog.ui
-msgctxt ""
-"imoptdialog.ui\n"
-"ImOptDialog\n"
-"title\n"
-"string.text"
-msgid "Import File"
-msgstr "Datei Importieren"
-
-#: imoptdialog.ui
-msgctxt ""
-"imoptdialog.ui\n"
-"charsetft\n"
-"label\n"
-"string.text"
-msgid "_Character set:"
-msgstr "_Zeichensatz:"
-
-#: imoptdialog.ui
-msgctxt ""
-"imoptdialog.ui\n"
-"fieldft\n"
-"label\n"
-"string.text"
-msgid "_Field delimiter:"
-msgstr "_Feldtrenner:"
-
-#: imoptdialog.ui
-msgctxt ""
-"imoptdialog.ui\n"
-"textft\n"
-"label\n"
-"string.text"
-msgid "_Text delimiter:"
-msgstr "_Texttrenner:"
-
-#: imoptdialog.ui
-msgctxt ""
-"imoptdialog.ui\n"
-"asshown\n"
-"label\n"
-"string.text"
-msgid "Save cell content as _shown"
-msgstr "Zellinhalt _wie angezeigt speichern"
-
-#: imoptdialog.ui
-msgctxt ""
-"imoptdialog.ui\n"
-"formulas\n"
-"label\n"
-"string.text"
-msgid "Save cell fo_rmulas instead of calculated values"
-msgstr "Fo_rmeln anstatt berechneter Werten speichern"
-
-#: imoptdialog.ui
-msgctxt ""
-"imoptdialog.ui\n"
-"quoteall\n"
-"label\n"
-"string.text"
-msgid "_Quote all text cells"
-msgstr "Text zwischen Hoch_kommas ausgeben"
-
-#: imoptdialog.ui
-msgctxt ""
-"imoptdialog.ui\n"
-"fixedwidth\n"
-"label\n"
-"string.text"
-msgid "Fixed column _width"
-msgstr "Feste Spalten_breite"
-
-#: imoptdialog.ui
-msgctxt ""
-"imoptdialog.ui\n"
-"label\n"
-"label\n"
-"string.text"
-msgid "Field Options"
-msgstr "Feldoptionen"
-
-#: insertcells.ui
-msgctxt ""
-"insertcells.ui\n"
-"InsertCellsDialog\n"
-"title\n"
-"string.text"
-msgid "Insert Cells"
-msgstr "Zellen einfügen"
-
-#: insertcells.ui
-msgctxt ""
-"insertcells.ui\n"
-"down\n"
-"label\n"
-"string.text"
-msgid "Shift cells _down"
-msgstr "Zellen nach _unten verschieben"
-
-#: insertcells.ui
-msgctxt ""
-"insertcells.ui\n"
-"right\n"
-"label\n"
-"string.text"
-msgid "Shift cells _right"
-msgstr "Zellen nach _rechts verschieben"
-
-#: insertcells.ui
-msgctxt ""
-"insertcells.ui\n"
-"rows\n"
-"label\n"
-"string.text"
-msgid "Entire ro_w"
-msgstr "_Ganze Zeile einfügen"
-
-#: insertcells.ui
-msgctxt ""
-"insertcells.ui\n"
-"cols\n"
-"label\n"
-"string.text"
-msgid "Entire _column"
-msgstr "Ganze _Spalte einfügen"
-
-#: insertcells.ui
-msgctxt ""
-"insertcells.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: insertname.ui
-msgctxt ""
-"insertname.ui\n"
-"InsertNameDialog\n"
-"title\n"
-"string.text"
-msgid "Paste Names"
-msgstr "Namen einfügen"
-
-#: insertname.ui
-msgctxt ""
-"insertname.ui\n"
-"pasteall\n"
-"label\n"
-"string.text"
-msgid "_Paste All"
-msgstr "_Alles einfügen"
-
-#: insertsheet.ui
-msgctxt ""
-"insertsheet.ui\n"
-"InsertSheetDialog\n"
-"title\n"
-"string.text"
-msgid "Insert Sheet"
-msgstr "Tabelle einfügen"
-
-#: insertsheet.ui
-msgctxt ""
-"insertsheet.ui\n"
-"before\n"
-"label\n"
-"string.text"
-msgid "B_efore current sheet"
-msgstr "_Vor aktueller Tabelle"
-
-#: insertsheet.ui
-msgctxt ""
-"insertsheet.ui\n"
-"after\n"
-"label\n"
-"string.text"
-msgid "_After current sheet"
-msgstr "_Nach aktueller Tabelle"
-
-#: insertsheet.ui
-msgctxt ""
-"insertsheet.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Position"
-msgstr "Position"
-
-#: insertsheet.ui
-msgctxt ""
-"insertsheet.ui\n"
-"new\n"
-"label\n"
-"string.text"
-msgid "_New sheet"
-msgstr "Neue _Tabelle"
-
-#: insertsheet.ui
-msgctxt ""
-"insertsheet.ui\n"
-"countft\n"
-"label\n"
-"string.text"
-msgid "N_o. of sheets:"
-msgstr "Tabellen_anzahl:"
-
-#: insertsheet.ui
-msgctxt ""
-"insertsheet.ui\n"
-"nameft\n"
-"label\n"
-"string.text"
-msgid "Na_me:"
-msgstr "_Name:"
-
-#: insertsheet.ui
-msgctxt ""
-"insertsheet.ui\n"
-"nameed\n"
-"text\n"
-"string.text"
-msgid "Sheet..."
-msgstr "Tabelle..."
-
-#: insertsheet.ui
-msgctxt ""
-"insertsheet.ui\n"
-"fromfile\n"
-"label\n"
-"string.text"
-msgid "_From file"
-msgstr "_Aus Datei erstellen"
-
-#: insertsheet.ui
-msgctxt ""
-"insertsheet.ui\n"
-"tables\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Tables in file"
-msgstr "Tabellen in Datei"
-
-#: insertsheet.ui
-msgctxt ""
-"insertsheet.ui\n"
-"browse\n"
-"label\n"
-"string.text"
-msgid "_Browse..."
-msgstr "Durch_suchen..."
-
-#: insertsheet.ui
-msgctxt ""
-"insertsheet.ui\n"
-"link\n"
-"label\n"
-"string.text"
-msgid "Lin_k"
-msgstr "Ver_knüpfen"
-
-#: insertsheet.ui
-msgctxt ""
-"insertsheet.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Sheet"
-msgstr "Tabelle"
-
-#: integerdialog.ui
-msgctxt ""
-"integerdialog.ui\n"
-"IntegerDialog\n"
-"title\n"
-"string.text"
-msgid "Edit Setting"
-msgstr "Einstellung bearbeiten"
-
-#: leftfooterdialog.ui
-msgctxt ""
-"leftfooterdialog.ui\n"
-"LeftFooterDialog\n"
-"title\n"
-"string.text"
-msgid "Footer (left)"
-msgstr "Fußzeile (links)"
-
-#: leftfooterdialog.ui
-msgctxt ""
-"leftfooterdialog.ui\n"
-"footerleft\n"
-"label\n"
-"string.text"
-msgid "Footer (left)"
-msgstr "Fußzeile (links)"
-
-#: leftheaderdialog.ui
-msgctxt ""
-"leftheaderdialog.ui\n"
-"Left Header\n"
-"title\n"
-"string.text"
-msgid "Header (left)"
-msgstr "Kopfzeile (links)"
-
-#: leftheaderdialog.ui
-msgctxt ""
-"leftheaderdialog.ui\n"
-"headerleft\n"
-"label\n"
-"string.text"
-msgid "Header (left)"
-msgstr "Kopfzeile (links)"
-
-#: managenamesdialog.ui
-msgctxt ""
-"managenamesdialog.ui\n"
-"ManageNamesDialog\n"
-"title\n"
-"string.text"
-msgid "Manage Names"
-msgstr "Namen verwalten"
-
-#: managenamesdialog.ui
-msgctxt ""
-"managenamesdialog.ui\n"
-"info\n"
-"label\n"
-"string.text"
-msgid "Select cells in the document to update the range."
-msgstr "Wählen Sie Zellen im Dokument aus, um den Bereich zu aktualisieren."
-
-#: managenamesdialog.ui
-msgctxt ""
-"managenamesdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Name:"
-msgstr "Name:"
-
-#: managenamesdialog.ui
-msgctxt ""
-"managenamesdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Scope:"
-msgstr "Geltungsbereich:"
-
-#: managenamesdialog.ui
-msgctxt ""
-"managenamesdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Range or formula expression:"
-msgstr "Bereich oder Formelausdruck:"
-
-#: managenamesdialog.ui
-msgctxt ""
-"managenamesdialog.ui\n"
-"printrange\n"
-"label\n"
-"string.text"
-msgid "_Print range"
-msgstr "Druc_kbereich"
-
-#: managenamesdialog.ui
-msgctxt ""
-"managenamesdialog.ui\n"
-"filter\n"
-"label\n"
-"string.text"
-msgid "_Filter"
-msgstr "_Filter"
-
-#: managenamesdialog.ui
-msgctxt ""
-"managenamesdialog.ui\n"
-"colheader\n"
-"label\n"
-"string.text"
-msgid "Repeat _column"
-msgstr "_Wiederholungsspalte"
-
-#: managenamesdialog.ui
-msgctxt ""
-"managenamesdialog.ui\n"
-"rowheader\n"
-"label\n"
-"string.text"
-msgid "Repeat _row"
-msgstr "W_iederholungszeile"
-
-#: managenamesdialog.ui
-msgctxt ""
-"managenamesdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Range _Options"
-msgstr "Bereichs_optionen"
-
-#: managenamesdialog.ui
-msgctxt ""
-"managenamesdialog.ui\n"
-"treeviewcolumn1\n"
-"title\n"
-"string.text"
-msgid "column"
-msgstr "Spalte"
-
-#: mergecellsdialog.ui
-msgctxt ""
-"mergecellsdialog.ui\n"
-"MergeCellsDialog\n"
-"title\n"
-"string.text"
-msgid "Merge Cells"
-msgstr "Zellen verbinden"
-
-#: mergecellsdialog.ui
-msgctxt ""
-"mergecellsdialog.ui\n"
-"label\n"
-"label\n"
-"string.text"
-msgid "Some cells are not empty."
-msgstr "Einige Zellen sind nicht leer."
-
-#: mergecellsdialog.ui
-msgctxt ""
-"mergecellsdialog.ui\n"
-"move-cells-radio\n"
-"label\n"
-"string.text"
-msgid "Move the contents of the hidden cells into the first cell"
-msgstr "Inhalte der versteckten Zellen in die erste Zelle verschieben"
-
-#: mergecellsdialog.ui
-msgctxt ""
-"mergecellsdialog.ui\n"
-"keep-content-radio\n"
-"label\n"
-"string.text"
-msgid "Keep the contents of the hidden cells"
-msgstr "Inhalte der versteckten Zellen erhalten"
-
-#: mergecellsdialog.ui
-msgctxt ""
-"mergecellsdialog.ui\n"
-"empty-cells-radio\n"
-"label\n"
-"string.text"
-msgid "Empty the contents of the hidden cells"
-msgstr "Inhalte der versteckten Zellen löschen"
-
-#: movecopysheet.ui
-msgctxt ""
-"movecopysheet.ui\n"
-"MoveCopySheetDialog\n"
-"title\n"
-"string.text"
-msgid "Move/Copy Sheet"
-msgstr "Tabelle verschieben/kopieren"
-
-#: movecopysheet.ui
-msgctxt ""
-"movecopysheet.ui\n"
-"move\n"
-"label\n"
-"string.text"
-msgid "_Move"
-msgstr "_Verschieben"
-
-#: movecopysheet.ui
-msgctxt ""
-"movecopysheet.ui\n"
-"copy\n"
-"label\n"
-"string.text"
-msgid "C_opy"
-msgstr "_Kopieren"
-
-#: movecopysheet.ui
-msgctxt ""
-"movecopysheet.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Action"
-msgstr "Aktion"
-
-#: movecopysheet.ui
-msgctxt ""
-"movecopysheet.ui\n"
-"toDocumentLabel\n"
-"label\n"
-"string.text"
-msgid "To _document"
-msgstr "_Ins Dokument"
-
-#: movecopysheet.ui
-msgctxt ""
-"movecopysheet.ui\n"
-"toDocument\n"
-"0\n"
-"stringlist.text"
-msgid "(current document)"
-msgstr "(aktuelles Dokument)"
-
-#: movecopysheet.ui
-msgctxt ""
-"movecopysheet.ui\n"
-"toDocument\n"
-"1\n"
-"stringlist.text"
-msgid "- new document -"
-msgstr "- neues Dokument -"
-
-#: movecopysheet.ui
-msgctxt ""
-"movecopysheet.ui\n"
-"insertBeforeLabel\n"
-"label\n"
-"string.text"
-msgid "_Insert before"
-msgstr "Ei_nfügen vor"
-
-#: movecopysheet.ui
-msgctxt ""
-"movecopysheet.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Location"
-msgstr "Ort"
-
-#: movecopysheet.ui
-msgctxt ""
-"movecopysheet.ui\n"
-"warnunused\n"
-"label\n"
-"string.text"
-msgid "This name is already used."
-msgstr "Dieser Name wird bereits verwendet."
-
-#: movecopysheet.ui
-msgctxt ""
-"movecopysheet.ui\n"
-"warnempty\n"
-"label\n"
-"string.text"
-msgid "Name is empty."
-msgstr "Der Name ist leer."
-
-#: movecopysheet.ui
-msgctxt ""
-"movecopysheet.ui\n"
-"warninvalid\n"
-"label\n"
-"string.text"
-msgid "Name contains one or more invalid characters."
-msgstr "Der Name enthält unzulässige Zeichen."
-
-#: movecopysheet.ui
-msgctxt ""
-"movecopysheet.ui\n"
-"newNameLabel\n"
-"label\n"
-"string.text"
-msgid "New _name"
-msgstr "Neuer _Name"
-
-#: movingaveragedialog.ui
-msgctxt ""
-"movingaveragedialog.ui\n"
-"MovingAverageDialog\n"
-"title\n"
-"string.text"
-msgid "Moving Average"
-msgstr "Gleitender Mittelwert"
-
-#: movingaveragedialog.ui
-msgctxt ""
-"movingaveragedialog.ui\n"
-"input-range-label\n"
-"label\n"
-"string.text"
-msgid "Input range:"
-msgstr "Eingabebereich:"
-
-#: movingaveragedialog.ui
-msgctxt ""
-"movingaveragedialog.ui\n"
-"output-range-label\n"
-"label\n"
-"string.text"
-msgid "Results to:"
-msgstr "Ergebnisse nach:"
-
-#: movingaveragedialog.ui
-msgctxt ""
-"movingaveragedialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: movingaveragedialog.ui
-msgctxt ""
-"movingaveragedialog.ui\n"
-"groupedby-columns-radio\n"
-"label\n"
-"string.text"
-msgid "Columns"
-msgstr "Spalten"
-
-#: movingaveragedialog.ui
-msgctxt ""
-"movingaveragedialog.ui\n"
-"groupedby-rows-radio\n"
-"label\n"
-"string.text"
-msgid "Rows"
-msgstr "Zeilen"
-
-#: movingaveragedialog.ui
-msgctxt ""
-"movingaveragedialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Grouped by"
-msgstr "Gruppiert nach"
-
-#: movingaveragedialog.ui
-msgctxt ""
-"movingaveragedialog.ui\n"
-"interval-label\n"
-"label\n"
-"string.text"
-msgid "Interval:"
-msgstr "Intervall:"
-
-#: movingaveragedialog.ui
-msgctxt ""
-"movingaveragedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Parameters"
-msgstr "Parameter"
-
-#: multipleoperationsdialog.ui
-msgctxt ""
-"multipleoperationsdialog.ui\n"
-"MultipleOperationsDialog\n"
-"title\n"
-"string.text"
-msgid "Multiple operations"
-msgstr "Mehrfachoperationen"
-
-#: multipleoperationsdialog.ui
-msgctxt ""
-"multipleoperationsdialog.ui\n"
-"formulasft\n"
-"label\n"
-"string.text"
-msgid "_Formulas:"
-msgstr "_Formeln:"
-
-#: multipleoperationsdialog.ui
-msgctxt ""
-"multipleoperationsdialog.ui\n"
-"rowft\n"
-"label\n"
-"string.text"
-msgid "_Row input cell:"
-msgstr "_Zeile:"
-
-#: multipleoperationsdialog.ui
-msgctxt ""
-"multipleoperationsdialog.ui\n"
-"colft\n"
-"label\n"
-"string.text"
-msgid "_Column input cell:"
-msgstr "_Spalte:"
-
-#: multipleoperationsdialog.ui
-msgctxt ""
-"multipleoperationsdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Default Settings"
-msgstr "Vorgaben"
-
-#: namerangesdialog.ui
-msgctxt ""
-"namerangesdialog.ui\n"
-"NameRangesDialog\n"
-"title\n"
-"string.text"
-msgid "Define Label Range"
-msgstr "Beschriftungsbereich festlegen"
-
-#: namerangesdialog.ui
-msgctxt ""
-"namerangesdialog.ui\n"
-"colhead\n"
-"label\n"
-"string.text"
-msgid "Contains _column labels"
-msgstr "Enthält _Spaltenbeschriftungen"
-
-#: namerangesdialog.ui
-msgctxt ""
-"namerangesdialog.ui\n"
-"rowhead\n"
-"label\n"
-"string.text"
-msgid "Contains _row labels"
-msgstr "enthält _Zeilenbeschriftungen"
-
-#: namerangesdialog.ui
-msgctxt ""
-"namerangesdialog.ui\n"
-"datarange\n"
-"label\n"
-"string.text"
-msgid "For _data range"
-msgstr "für _Datenbereich"
-
-#: namerangesdialog.ui
-msgctxt ""
-"namerangesdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Range"
-msgstr "Umfang"
-
-#: navigatorpanel.ui
-msgctxt ""
-"navigatorpanel.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Column:"
-msgstr "Spalte:"
-
-#: navigatorpanel.ui
-msgctxt ""
-"navigatorpanel.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Row:"
-msgstr "Zeile:"
-
-#: navigatorpanel.ui
-msgctxt ""
-"navigatorpanel.ui\n"
-"column\n"
-"tooltip_text\n"
-"string.text"
-msgid "Column"
-msgstr "Spalte"
-
-#: navigatorpanel.ui
-msgctxt ""
-"navigatorpanel.ui\n"
-"row\n"
-"tooltip_text\n"
-"string.text"
-msgid "Row"
-msgstr "Zeile"
-
-#: navigatorpanel.ui
-msgctxt ""
-"navigatorpanel.ui\n"
-"datarange\n"
-"tooltip_text\n"
-"string.text"
-msgid "Data Range"
-msgstr "Datenbereich"
-
-#: navigatorpanel.ui
-msgctxt ""
-"navigatorpanel.ui\n"
-"start\n"
-"tooltip_text\n"
-"string.text"
-msgid "Start"
-msgstr "Anfang"
-
-#: navigatorpanel.ui
-msgctxt ""
-"navigatorpanel.ui\n"
-"end\n"
-"tooltip_text\n"
-"string.text"
-msgid "End"
-msgstr "Ende"
-
-#: navigatorpanel.ui
-msgctxt ""
-"navigatorpanel.ui\n"
-"contents\n"
-"tooltip_text\n"
-"string.text"
-msgid "Contents"
-msgstr "Inhalt"
-
-#: navigatorpanel.ui
-msgctxt ""
-"navigatorpanel.ui\n"
-"toggle\n"
-"tooltip_text\n"
-"string.text"
-msgid "Toggle"
-msgstr "Umschalten"
-
-#: navigatorpanel.ui
-msgctxt ""
-"navigatorpanel.ui\n"
-"scenarios\n"
-"tooltip_text\n"
-"string.text"
-msgid "Scenarios"
-msgstr "Szenarien"
-
-#: navigatorpanel.ui
-msgctxt ""
-"navigatorpanel.ui\n"
-"dragmode\n"
-"tooltip_text\n"
-"string.text"
-msgid "Drag Mode"
-msgstr "Ziehmodus"
-
-#: navigatorpanel.ui
-msgctxt ""
-"navigatorpanel.ui\n"
-"documents\n"
-"tooltip_text\n"
-"string.text"
-msgid "Document"
-msgstr "Dokument"
-
-#: navigatorpanel.ui
-msgctxt ""
-"navigatorpanel.ui\n"
-"documents-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Active Window"
-msgstr "Aktuelles Fenster"
-
-#: nosolutiondialog.ui
-msgctxt ""
-"nosolutiondialog.ui\n"
-"NoSolutionDialog\n"
-"title\n"
-"string.text"
-msgid "No Solution"
-msgstr "Keine Lösung"
-
-#: nosolutiondialog.ui
-msgctxt ""
-"nosolutiondialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "No solution was found."
-msgstr "Es wurde keine Lösung gefunden."
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"FileLabel\n"
-"label\n"
-"string.text"
-msgid "File"
-msgstr "Datei"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"FormatPaintbrush\n"
-"label\n"
-"string.text"
-msgid "Clone"
-msgstr "Übertragen"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"bordertype\n"
-"tooltip_text\n"
-"string.text"
-msgid "Specify the borders of the selected cells."
-msgstr "Hiermit legen Sie die Umrandung der ausgewählten Zellen fest."
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"verticalalignment\n"
-"tooltip_text\n"
-"string.text"
-msgid "Vertical Alignment"
-msgstr "Vertikale Ausrichtung"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"horizontalalignment\n"
-"tooltip_text\n"
-"string.text"
-msgid "Horizontal Alignment"
-msgstr "Horizontale Ausrichtung"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"indent\n"
-"tooltip_text\n"
-"string.text"
-msgid "Indent"
-msgstr "Einzug"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"increaseindent1\n"
-"tooltip_text\n"
-"string.text"
-msgid "Increase Indent"
-msgstr "Einzug vergrößern"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"decreaseindent1\n"
-"tooltip_text\n"
-"string.text"
-msgid "Decrease Indent"
-msgstr "Einzug verkleinern"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"CalcLabel\n"
-"label\n"
-"string.text"
-msgid "Home"
-msgstr "Start"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"InsertAVMedia\n"
-"tooltip_text\n"
-"string.text"
-msgid "Insert Audio or Video"
-msgstr "Audio/Video einfügen"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"InsertSymbol\n"
-"label\n"
-"string.text"
-msgid "Symbol"
-msgstr "Symbol"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"InsertLabel\n"
-"label\n"
-"string.text"
-msgid "Insert"
-msgstr "Einfügen"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"ToggleSheetGrid\n"
-"label\n"
-"string.text"
-msgid "Toggle Grid Lines"
-msgstr "Gitterlinien umschalten"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"PageLayoutLabel\n"
-"label\n"
-"string.text"
-msgid "Page Layout"
-msgstr "Seitenlayout"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"DataLabel\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"SpellOnline\n"
-"label\n"
-"string.text"
-msgid "Auto Spellcheck"
-msgstr "Automatische Rechtschreibprüfung"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"ReviewLabel\n"
-"label\n"
-"string.text"
-msgid "Review"
-msgstr "Überprüfen"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"ToggleSheetGrid2\n"
-"label\n"
-"string.text"
-msgid "Toggle Grid Lines"
-msgstr "Gitterlinien umschalten"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"ViewLabel\n"
-"label\n"
-"string.text"
-msgid "View"
-msgstr "Ansicht"
-
-#: notebookbar.ui
-msgctxt ""
-"notebookbar.ui\n"
-"ImageLabel\n"
-"label\n"
-"string.text"
-msgid "Image"
-msgstr "Bild"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"hyperlink\n"
-"label\n"
-"string.text"
-msgid "Hyperlink"
-msgstr "Hyperlink"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"footnote\n"
-"label\n"
-"string.text"
-msgid "Footnote"
-msgstr "Fußnote"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"endnote\n"
-"label\n"
-"string.text"
-msgid "Endnote"
-msgstr "Endnote"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"bookmark\n"
-"label\n"
-"string.text"
-msgid "Bookmark"
-msgstr "Lesezeichen"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"crossreference\n"
-"label\n"
-"string.text"
-msgid "Cross-Reference"
-msgstr "Querverweis"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"stylemenudefault\n"
-"label\n"
-"string.text"
-msgid "Default"
-msgstr "Standard"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"stylemenuacc1\n"
-"label\n"
-"string.text"
-msgid "Accent 1"
-msgstr "Betont 1"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"stylemenuacc2\n"
-"label\n"
-"string.text"
-msgid "Accent 2"
-msgstr "Betont 2"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"stylemenuacc3\n"
-"label\n"
-"string.text"
-msgid "Accent 3"
-msgstr "Betont 3"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"stylemenuhed1\n"
-"label\n"
-"string.text"
-msgid "Heading 1"
-msgstr "Überschrift 1"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"stylemenuhed2\n"
-"label\n"
-"string.text"
-msgid "Heading 2"
-msgstr "Überschrift 2"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"stylemenustatg\n"
-"label\n"
-"string.text"
-msgid "Good"
-msgstr "Gut"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"stylemenustatn\n"
-"label\n"
-"string.text"
-msgid "Neutral"
-msgstr "Neutral"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"stylemenustatb\n"
-"label\n"
-"string.text"
-msgid "Bad"
-msgstr "Schlecht"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"stylemenustatw\n"
-"label\n"
-"string.text"
-msgid "Warning"
-msgstr "Warnung"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"stylemenustate\n"
-"label\n"
-"string.text"
-msgid "Error"
-msgstr "Fehler"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"stylemenutxtn\n"
-"label\n"
-"string.text"
-msgid "Note"
-msgstr "Anmerkung"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"stylemenutxtf\n"
-"label\n"
-"string.text"
-msgid "Footnote"
-msgstr "Fußnote"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"tablestylenone\n"
-"label\n"
-"string.text"
-msgid "None"
-msgstr "Keine"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"tablestyledefault\n"
-"label\n"
-"string.text"
-msgid "Default"
-msgstr "Standard"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"tablestyle1\n"
-"label\n"
-"string.text"
-msgid "Style 1"
-msgstr "Vorlage 1"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"tablestyle2\n"
-"label\n"
-"string.text"
-msgid "Style 2"
-msgstr "Vorlage 2"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"tablestyle3\n"
-"label\n"
-"string.text"
-msgid "Style 3"
-msgstr "Vorlage 3"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"tablestyle4\n"
-"label\n"
-"string.text"
-msgid "Style 4"
-msgstr "Vorlage 4"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"filegrouplabel\n"
-"label\n"
-"string.text"
-msgid "File"
-msgstr "Datei"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"clipboardgrouplabel\n"
-"label\n"
-"string.text"
-msgid "Clipboard"
-msgstr "Zwischenablage"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"paragraphstyleb\n"
-"label\n"
-"string.text"
-msgid "Style"
-msgstr "Vorlage"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"leftb\n"
-"label\n"
-"string.text"
-msgid "Left"
-msgstr "Links"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"centerb\n"
-"label\n"
-"string.text"
-msgid "Center"
-msgstr "Zentriert"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"rightb\n"
-"label\n"
-"string.text"
-msgid "Right"
-msgstr "Rechts"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"formatgrouplabel\n"
-"label\n"
-"string.text"
-msgid "Text"
-msgstr "Text"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"mergeb\n"
-"label\n"
-"string.text"
-msgid "Merge"
-msgstr "Verbinden"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"splitb\n"
-"label\n"
-"string.text"
-msgid "Split"
-msgstr "Teilen"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"conditionalb\n"
-"label\n"
-"string.text"
-msgid "Conditional"
-msgstr "Bedingt"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"topb\n"
-"label\n"
-"string.text"
-msgid "Top"
-msgstr "Oben"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"vcenterb\n"
-"label\n"
-"string.text"
-msgid "Center"
-msgstr "Mitte"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"bottomb\n"
-"label\n"
-"string.text"
-msgid "Bottom"
-msgstr "Unten"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"tablegrouplabel\n"
-"label\n"
-"string.text"
-msgid "Spreadsheet"
-msgstr "Tabellendokument"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shapesb\n"
-"label\n"
-"string.text"
-msgid "Shapes"
-msgstr "Formen"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"linksb\n"
-"label\n"
-"string.text"
-msgid "Links"
-msgstr "Verknüpfungen"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"insertgrouplabel\n"
-"label\n"
-"string.text"
-msgid "Insert"
-msgstr "Einfügen"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"imagestyleb\n"
-"label\n"
-"string.text"
-msgid "Style"
-msgstr "Vorlage"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"resetb\n"
-"label\n"
-"string.text"
-msgid "Reset"
-msgstr "Zurücksetzen"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"wrapb\n"
-"label\n"
-"string.text"
-msgid "Wrap"
-msgstr "Umlauf"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"lockb\n"
-"label\n"
-"string.text"
-msgid "Lock"
-msgstr "Sperre"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"imagegrouplabel\n"
-"label\n"
-"string.text"
-msgid "Image"
-msgstr "Bild"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"wrapoff\n"
-"label\n"
-"string.text"
-msgid "None"
-msgstr "Kein"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"wrapideal\n"
-"label\n"
-"string.text"
-msgid "Optimal"
-msgstr "Optimal"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"wrapon\n"
-"label\n"
-"string.text"
-msgid "Parallel"
-msgstr "Parallel"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"wrapleft\n"
-"label\n"
-"string.text"
-msgid "Before"
-msgstr "Vor"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"wrapright\n"
-"label\n"
-"string.text"
-msgid "After"
-msgstr "Nach"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"wrapthrough\n"
-"label\n"
-"string.text"
-msgid "Through"
-msgstr "Durchlauf"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"wrapcontour\n"
-"label\n"
-"string.text"
-msgid "Contour"
-msgstr "Kontur"
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"contourdialog\n"
-"label\n"
-"string.text"
-msgid "Edit Contour"
-msgstr "Kontur bearbeiten"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"case\n"
-"label\n"
-"string.text"
-msgid "Case se_nsitive"
-msgstr "_Groß- und Kleinschreibung"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"case\n"
-"tooltip_text\n"
-"string.text"
-msgid "Disable case sensitivity for interoperability with Microsoft Excel"
-msgstr "Groß- und Kleinschreibung für die Kompatibilität mit Microsoft Excel deaktivieren"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"calc\n"
-"label\n"
-"string.text"
-msgid "_Precision as shown"
-msgstr "Gena_uigkeit wie angezeigt"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"match\n"
-"label\n"
-"string.text"
-msgid "Search criteria = and <> must apply to _whole cells"
-msgstr "Suchkri_terien = und <> müssen auf ganze Zellen zutreffen"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"match\n"
-"tooltip_text\n"
-"string.text"
-msgid "Enable this for interoperability with Microsoft Excel"
-msgstr "Aktivieren Sie diese Option für die Kompatibilität mit Microsoft Excel"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"formulawildcards\n"
-"label\n"
-"string.text"
-msgid "Enable w_ildcards in formulas"
-msgstr "_Platzhalter in Formeln ermöglichen"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"formulawildcards\n"
-"tooltip_text\n"
-"string.text"
-msgid "Enable wildcards for interoperability with Microsoft Excel"
-msgstr "Platzhalter für die Kompatibilität mit Microsoft Excel aktivieren"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"formularegex\n"
-"label\n"
-"string.text"
-msgid "Enable r_egular expressions in formulas"
-msgstr "Reguläre Ausdrücke in _Formeln ermöglichen"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"formulaliteral\n"
-"label\n"
-"string.text"
-msgid "No wildcards or regular expressions in formulas"
-msgstr "Keine Platzhalter oder regulären Ausdrücke in Formeln"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"lookup\n"
-"label\n"
-"string.text"
-msgid "_Automatically find column and row labels"
-msgstr "Spalten-/_Zeilenbeschriftungen automatisch erkennen"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"generalprec\n"
-"label\n"
-"string.text"
-msgid "_Limit decimals for general number format"
-msgstr "_Stellen für Standardformat begrenzen"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"precft\n"
-"label\n"
-"string.text"
-msgid "_Decimal places:"
-msgstr "N_achkommastellen:"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "General Calculations"
-msgstr "Allgemeine Berechnungen"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"iterate\n"
-"label\n"
-"string.text"
-msgid "_Iterations"
-msgstr "_Iterationen"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"stepsft\n"
-"label\n"
-"string.text"
-msgid "_Steps:"
-msgstr "Sch_ritte:"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"minchangeft\n"
-"label\n"
-"string.text"
-msgid "_Minimum change:"
-msgstr "Minimaler Änderungs_wert:"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Iterative References"
-msgstr "Zirkuläre Bezüge"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"datestd\n"
-"label\n"
-"string.text"
-msgid "12/30/1899 (defa_ult)"
-msgstr "30.12.1899 (_Standard)"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"datestd\n"
-"tooltip_text\n"
-"string.text"
-msgid "Value 0 corresponds to 12/30/1899"
-msgstr "Wert 0 entspricht dem 30.12.1899"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"datesc10\n"
-"label\n"
-"string.text"
-msgid "01/01/1900 (Star_Calc 1.0)"
-msgstr "01.01.1900 (Star_Calc 1.0)"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"datesc10\n"
-"tooltip_text\n"
-"string.text"
-msgid "Value 0 corresponds to 01/01/1900"
-msgstr "Wert 0 entspricht dem 01.01.1900"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"date1904\n"
-"label\n"
-"string.text"
-msgid "_01/01/1904"
-msgstr "_01.01.1904"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"date1904\n"
-"tooltip_text\n"
-"string.text"
-msgid "0 corresponds to 01/01/1904"
-msgstr "Wert 0 entspricht dem 01.01.1904"
-
-#: optcalculatepage.ui
-msgctxt ""
-"optcalculatepage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Date"
-msgstr "Datum"
-
-#: optchangespage.ui
-msgctxt ""
-"optchangespage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Chan_ges:"
-msgstr "Ä_nderungen:"
-
-#: optchangespage.ui
-msgctxt ""
-"optchangespage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "_Deletions:"
-msgstr "_Löschungen:"
-
-#: optchangespage.ui
-msgctxt ""
-"optchangespage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Insertions:"
-msgstr "_Einfügungen:"
-
-#: optchangespage.ui
-msgctxt ""
-"optchangespage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "_Moved entries:"
-msgstr "_Verschiebungen:"
-
-#: optchangespage.ui
-msgctxt ""
-"optchangespage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Colors for Changes"
-msgstr "Farben für Änderungen"
-
-#: optcompatibilitypage.ui
-msgctxt ""
-"optcompatibilitypage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Select desired _key binding type. Changing the key binding type may overwrite some of the existing key bindings."
-msgstr "Wählen Sie die gewünschten _Tastenkombinationen aus. Durch das Ändern der Tastenkombinationen können einige vorhandene Tastenzuordnungen gelöscht werden."
-
-#: optcompatibilitypage.ui
-msgctxt ""
-"optcompatibilitypage.ui\n"
-"keybindings\n"
-"0\n"
-"stringlist.text"
-msgid "Default"
-msgstr "Standard"
-
-#: optcompatibilitypage.ui
-msgctxt ""
-"optcompatibilitypage.ui\n"
-"keybindings\n"
-"1\n"
-"stringlist.text"
-msgid "OpenOffice.org legacy"
-msgstr "OpenOffice.org-Vorgabe"
-
-#: optcompatibilitypage.ui
-msgctxt ""
-"optcompatibilitypage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Key Bindings"
-msgstr "Tastenkombinationen"
-
-#: optdefaultpage.ui
-msgctxt ""
-"optdefaultpage.ui\n"
-"textsheetsnumber\n"
-"label\n"
-"string.text"
-msgid "_Number of worksheets in new document:"
-msgstr "Anzahl an _Tabellen in einem neuem Dokument:"
-
-#: optdefaultpage.ui
-msgctxt ""
-"optdefaultpage.ui\n"
-"textsheetprefix\n"
-"label\n"
-"string.text"
-msgid "_Prefix name for new worksheet:"
-msgstr "_Name neuer Tabellen:"
-
-#: optdefaultpage.ui
-msgctxt ""
-"optdefaultpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "New Spreadsheet"
-msgstr "Neues Tabellendokument"
-
-#: optdlg.ui
-msgctxt ""
-"optdlg.ui\n"
-"suppressCB\n"
-"label\n"
-"string.text"
-msgid "_Suppress output of empty pages"
-msgstr "Ausgabe _leerer Seiten unterdrücken"
-
-#: optdlg.ui
-msgctxt ""
-"optdlg.ui\n"
-"forceBreaksCB\n"
-"label\n"
-"string.text"
-msgid "_Always apply manual breaks"
-msgstr "_Immer manuelle Umbrüche anwenden"
-
-#: optdlg.ui
-msgctxt ""
-"optdlg.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Pages"
-msgstr "Seiten"
-
-#: optdlg.ui
-msgctxt ""
-"optdlg.ui\n"
-"printCB\n"
-"label\n"
-"string.text"
-msgid "_Print only selected sheets"
-msgstr "_Nur ausgewählte Tabellen drucken"
-
-#: optdlg.ui
-msgctxt ""
-"optdlg.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Sheets"
-msgstr "Tabellen"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"englishfuncname\n"
-"label\n"
-"string.text"
-msgid "Use English function names"
-msgstr "Englische Funktionsnamen verwenden"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"formulasyntaxlabel\n"
-"label\n"
-"string.text"
-msgid "Formula _syntax:"
-msgstr "Formel-_Syntax:"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Formula Options"
-msgstr "Formel-Optionen"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "Excel 2007 and newer:"
-msgstr "Excel 2007 und neuer:"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"label10\n"
-"label\n"
-"string.text"
-msgid "ODF spreadsheet (not saved by %PRODUCTNAME):"
-msgstr "ODF Tabellendokumente (nicht mit %PRODUCTNAME gespeichert):"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"ooxmlrecalc\n"
-"0\n"
-"stringlist.text"
-msgid "Always recalculate"
-msgstr "Immer neuberechnen"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"ooxmlrecalc\n"
-"1\n"
-"stringlist.text"
-msgid "Never recalculate"
-msgstr "Nie neuberechnen"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"ooxmlrecalc\n"
-"2\n"
-"stringlist.text"
-msgid "Prompt user"
-msgstr "Benutzer fragen"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"odfrecalc\n"
-"0\n"
-"stringlist.text"
-msgid "Always recalculate"
-msgstr "Immer neuberechnen"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"odfrecalc\n"
-"1\n"
-"stringlist.text"
-msgid "Never recalculate"
-msgstr "Nie neuberechnen"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"odfrecalc\n"
-"2\n"
-"stringlist.text"
-msgid "Prompt user"
-msgstr "Benutzer fragen"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Recalculation on File Load"
-msgstr "Neuberechnung beim Laden der Datei"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"calcdefault\n"
-"label\n"
-"string.text"
-msgid "Default settings"
-msgstr "Vorgaben"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"calccustom\n"
-"label\n"
-"string.text"
-msgid "Custom (conversion of text to numbers and more):"
-msgstr "Angepasst (Text in Zahlen umwandeln und mehr):"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"details\n"
-"label\n"
-"string.text"
-msgid "Details…"
-msgstr "Details..."
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Detailed Calculation Settings"
-msgstr "Detaillierte Einstellungen für Berechnungen"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "_Function:"
-msgstr "_Funktion:"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Array co_lumn:"
-msgstr "_Matrix Spalte:"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Array _row:"
-msgstr "Matrix _Zeile:"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"reset\n"
-"label\n"
-"string.text"
-msgid "Rese_t Separators Settings"
-msgstr "_Trennzeichen-Einstellungen zurücksetzen"
-
-#: optformula.ui
-msgctxt ""
-"optformula.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Separators"
-msgstr "Trennzeichen"
-
-#: optimalcolwidthdialog.ui
-msgctxt ""
-"optimalcolwidthdialog.ui\n"
-"OptimalColWidthDialog\n"
-"title\n"
-"string.text"
-msgid "Optimal Column Width"
-msgstr "Optimale Spaltenbreite"
-
-#: optimalcolwidthdialog.ui
-msgctxt ""
-"optimalcolwidthdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Add:"
-msgstr "Extra:"
-
-#: optimalcolwidthdialog.ui
-msgctxt ""
-"optimalcolwidthdialog.ui\n"
-"default\n"
-"label\n"
-"string.text"
-msgid "_Default value"
-msgstr "_Standardwert"
-
-#: optimalrowheightdialog.ui
-msgctxt ""
-"optimalrowheightdialog.ui\n"
-"OptimalRowHeightDialog\n"
-"title\n"
-"string.text"
-msgid "Optimal Row Height"
-msgstr "Optimale Zeilenhöhe"
-
-#: optimalrowheightdialog.ui
-msgctxt ""
-"optimalrowheightdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Add:"
-msgstr "Extra:"
-
-#: optimalrowheightdialog.ui
-msgctxt ""
-"optimalrowheightdialog.ui\n"
-"default\n"
-"label\n"
-"string.text"
-msgid "_Default value"
-msgstr "_Standardwert"
-
-#: optsortlists.ui
-msgctxt ""
-"optsortlists.ui\n"
-"copy\n"
-"label\n"
-"string.text"
-msgid "_Copy"
-msgstr "_Kopieren"
-
-#: optsortlists.ui
-msgctxt ""
-"optsortlists.ui\n"
-"copyfromlabel\n"
-"label\n"
-"string.text"
-msgid "Copy list _from:"
-msgstr "Liste ko_pieren aus:"
-
-#: optsortlists.ui
-msgctxt ""
-"optsortlists.ui\n"
-"listslabel\n"
-"label\n"
-"string.text"
-msgid "_Lists"
-msgstr "_Listen"
-
-#: optsortlists.ui
-msgctxt ""
-"optsortlists.ui\n"
-"entrieslabel\n"
-"label\n"
-"string.text"
-msgid "_Entries"
-msgstr "_Einträge"
-
-#: optsortlists.ui
-msgctxt ""
-"optsortlists.ui\n"
-"new\n"
-"label\n"
-"string.text"
-msgid "_New"
-msgstr "_Neu"
-
-#: optsortlists.ui
-msgctxt ""
-"optsortlists.ui\n"
-"discard\n"
-"label\n"
-"string.text"
-msgid "_Discard"
-msgstr "_Verwerfen"
-
-#: optsortlists.ui
-msgctxt ""
-"optsortlists.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "_Add"
-msgstr "_Hinzufügen"
-
-#: optsortlists.ui
-msgctxt ""
-"optsortlists.ui\n"
-"modify\n"
-"label\n"
-"string.text"
-msgid "Modif_y"
-msgstr "Ä_ndern"
-
-#: optsortlists.ui
-msgctxt ""
-"optsortlists.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "_Delete"
-msgstr "_Löschen"
-
-#: pagetemplatedialog.ui
-msgctxt ""
-"pagetemplatedialog.ui\n"
-"PageTemplateDialog\n"
-"title\n"
-"string.text"
-msgid "Page Style"
-msgstr "Seitenvorlage"
-
-#: pagetemplatedialog.ui
-msgctxt ""
-"pagetemplatedialog.ui\n"
-"organizer\n"
-"label\n"
-"string.text"
-msgid "Organizer"
-msgstr "Verwalten"
-
-#: pagetemplatedialog.ui
-msgctxt ""
-"pagetemplatedialog.ui\n"
-"page\n"
-"label\n"
-"string.text"
-msgid "Page"
-msgstr "Seite"
-
-#: pagetemplatedialog.ui
-msgctxt ""
-"pagetemplatedialog.ui\n"
-"borders\n"
-"label\n"
-"string.text"
-msgid "Borders"
-msgstr "Umrandung"
-
-#: pagetemplatedialog.ui
-msgctxt ""
-"pagetemplatedialog.ui\n"
-"background\n"
-"label\n"
-"string.text"
-msgid "Background"
-msgstr "Hintergrund"
-
-#: pagetemplatedialog.ui
-msgctxt ""
-"pagetemplatedialog.ui\n"
-"header\n"
-"label\n"
-"string.text"
-msgid "Header"
-msgstr "Kopfzeile"
-
-#: pagetemplatedialog.ui
-msgctxt ""
-"pagetemplatedialog.ui\n"
-"footer\n"
-"label\n"
-"string.text"
-msgid "Footer"
-msgstr "Fußzeile"
-
-#: pagetemplatedialog.ui
-msgctxt ""
-"pagetemplatedialog.ui\n"
-"sheet\n"
-"label\n"
-"string.text"
-msgid "Sheet"
-msgstr "Tabelle"
-
-#: paradialog.ui
-msgctxt ""
-"paradialog.ui\n"
-"ParagraphDialog\n"
-"title\n"
-"string.text"
-msgid "Paragraph"
-msgstr "Absatz"
-
-#: paradialog.ui
-msgctxt ""
-"paradialog.ui\n"
-"labelTP_PARA_STD\n"
-"label\n"
-"string.text"
-msgid "Indents & Spacing"
-msgstr "Einzüge & Abstände"
-
-#: paradialog.ui
-msgctxt ""
-"paradialog.ui\n"
-"labelTP_PARA_ALIGN\n"
-"label\n"
-"string.text"
-msgid "Alignment"
-msgstr "Ausrichtung"
-
-#: paradialog.ui
-msgctxt ""
-"paradialog.ui\n"
-"labelTP_PARA_ASIAN\n"
-"label\n"
-"string.text"
-msgid "Asian Typography"
-msgstr "Asiatische Typografie"
-
-#: paradialog.ui
-msgctxt ""
-"paradialog.ui\n"
-"labelTP_TABULATOR\n"
-"label\n"
-"string.text"
-msgid "Tabs"
-msgstr "Tabulatoren"
-
-#: paratemplatedialog.ui
-msgctxt ""
-"paratemplatedialog.ui\n"
-"ParaTemplateDialog\n"
-"title\n"
-"string.text"
-msgid "Cell Style"
-msgstr "Zellenvorlage"
-
-#: paratemplatedialog.ui
-msgctxt ""
-"paratemplatedialog.ui\n"
-"standard\n"
-"label\n"
-"string.text"
-msgid "_Standard"
-msgstr "_Standard"
-
-#: paratemplatedialog.ui
-msgctxt ""
-"paratemplatedialog.ui\n"
-"organizer\n"
-"label\n"
-"string.text"
-msgid "Organizer"
-msgstr "Verwalten"
-
-#: paratemplatedialog.ui
-msgctxt ""
-"paratemplatedialog.ui\n"
-"numbers\n"
-"label\n"
-"string.text"
-msgid "Numbers"
-msgstr "Zahlen"
-
-#: paratemplatedialog.ui
-msgctxt ""
-"paratemplatedialog.ui\n"
-"font\n"
-"label\n"
-"string.text"
-msgid "Font"
-msgstr "Schrift"
-
-#: paratemplatedialog.ui
-msgctxt ""
-"paratemplatedialog.ui\n"
-"fonteffects\n"
-"label\n"
-"string.text"
-msgid "Font Effects"
-msgstr "Schrifteffekt"
-
-#: paratemplatedialog.ui
-msgctxt ""
-"paratemplatedialog.ui\n"
-"alignment\n"
-"label\n"
-"string.text"
-msgid "Alignment"
-msgstr "Ausrichtung"
-
-#: paratemplatedialog.ui
-msgctxt ""
-"paratemplatedialog.ui\n"
-"asiantypo\n"
-"label\n"
-"string.text"
-msgid "Asian Typography"
-msgstr "Asiatische Typografie"
-
-#: paratemplatedialog.ui
-msgctxt ""
-"paratemplatedialog.ui\n"
-"borders\n"
-"label\n"
-"string.text"
-msgid "Borders"
-msgstr "Umrandung"
-
-#: paratemplatedialog.ui
-msgctxt ""
-"paratemplatedialog.ui\n"
-"background\n"
-"label\n"
-"string.text"
-msgid "Background"
-msgstr "Hintergrund"
-
-#: paratemplatedialog.ui
-msgctxt ""
-"paratemplatedialog.ui\n"
-"protection\n"
-"label\n"
-"string.text"
-msgid "Cell Protection"
-msgstr "Zellschutz"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"PasteSpecial\n"
-"title\n"
-"string.text"
-msgid "Paste Special"
-msgstr "Inhalte einfügen"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"paste_values_only\n"
-"tooltip_text\n"
-"string.text"
-msgid "Values Only"
-msgstr "Nur Werte"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"paste_values_formats\n"
-"tooltip_text\n"
-"string.text"
-msgid "Values & Formats"
-msgstr "Werte & Formatierungen"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"paste_transpose\n"
-"tooltip_text\n"
-"string.text"
-msgid "Transpose"
-msgstr "Transponieren"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"paste_all\n"
-"label\n"
-"string.text"
-msgid "_Paste all"
-msgstr "Alles einfü_gen"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"text\n"
-"label\n"
-"string.text"
-msgid "Te_xt"
-msgstr "Te_xt"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"numbers\n"
-"label\n"
-"string.text"
-msgid "_Numbers"
-msgstr "_Zahlen"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"datetime\n"
-"label\n"
-"string.text"
-msgid "_Date & time"
-msgstr "_Datum & Zeit"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"formulas\n"
-"label\n"
-"string.text"
-msgid "_Formulas"
-msgstr "_Formeln"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"comments\n"
-"label\n"
-"string.text"
-msgid "_Comments"
-msgstr "_Kommentare"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"formats\n"
-"label\n"
-"string.text"
-msgid "For_mats"
-msgstr "Formatieru_ngen"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"objects\n"
-"label\n"
-"string.text"
-msgid "_Objects"
-msgstr "Ob_jekte"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"none\n"
-"label\n"
-"string.text"
-msgid "Non_e"
-msgstr "K_eine"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"add\n"
-"label\n"
-"string.text"
-msgid "_Add"
-msgstr "Addie_ren"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"subtract\n"
-"label\n"
-"string.text"
-msgid "_Subtract"
-msgstr "_Subtrahieren"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"multiply\n"
-"label\n"
-"string.text"
-msgid "Multipl_y"
-msgstr "_Multiplizieren"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"divide\n"
-"label\n"
-"string.text"
-msgid "Di_vide"
-msgstr "D_ividieren"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Operations"
-msgstr "Rechenoperationen"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"skip_empty\n"
-"label\n"
-"string.text"
-msgid "S_kip empty cells"
-msgstr "_Leerzellen überspringen"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"transpose\n"
-"label\n"
-"string.text"
-msgid "_Transpose"
-msgstr "_Transponieren"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"link\n"
-"label\n"
-"string.text"
-msgid "_Link"
-msgstr "Verknü_pfen"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"no_shift\n"
-"label\n"
-"string.text"
-msgid "Don't sh_ift"
-msgstr "Nicht _verschieben"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"move_down\n"
-"label\n"
-"string.text"
-msgid "Do_wn"
-msgstr "Nach _unten"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"move_right\n"
-"label\n"
-"string.text"
-msgid "_Right"
-msgstr "Re_chts"
-
-#: pastespecial.ui
-msgctxt ""
-"pastespecial.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Shift Cells"
-msgstr "Zellen verschieben"
-
-#: pivotfielddialog.ui
-msgctxt ""
-"pivotfielddialog.ui\n"
-"PivotFieldDialog\n"
-"title\n"
-"string.text"
-msgid "Data Field"
-msgstr "Datenfeld"
-
-#: pivotfielddialog.ui
-msgctxt ""
-"pivotfielddialog.ui\n"
-"options\n"
-"label\n"
-"string.text"
-msgid "_Options..."
-msgstr "_Optionen..."
-
-#: pivotfielddialog.ui
-msgctxt ""
-"pivotfielddialog.ui\n"
-"none\n"
-"label\n"
-"string.text"
-msgid "_None"
-msgstr "_Keine"
-
-#: pivotfielddialog.ui
-msgctxt ""
-"pivotfielddialog.ui\n"
-"auto\n"
-"label\n"
-"string.text"
-msgid "_Automatic"
-msgstr "_Automatisch"
-
-#: pivotfielddialog.ui
-msgctxt ""
-"pivotfielddialog.ui\n"
-"user\n"
-"label\n"
-"string.text"
-msgid "_User-defined"
-msgstr "_Benutzerdefiniert"
-
-#: pivotfielddialog.ui
-msgctxt ""
-"pivotfielddialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Subtotals"
-msgstr "Teilergebnisse"
-
-#: pivotfielddialog.ui
-msgctxt ""
-"pivotfielddialog.ui\n"
-"showall\n"
-"label\n"
-"string.text"
-msgid "Show it_ems without data"
-msgstr "_Elemente ohne Daten anzeigen"
-
-#: pivotfielddialog.ui
-msgctxt ""
-"pivotfielddialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Name:"
-msgstr "Name:"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"PivotFilterDialog\n"
-"title\n"
-"string.text"
-msgid "Filter"
-msgstr "Filter"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"connect1\n"
-"0\n"
-"stringlist.text"
-msgid "AND"
-msgstr "UND"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"connect1\n"
-"1\n"
-"stringlist.text"
-msgid "OR"
-msgstr "ODER"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"connect2\n"
-"0\n"
-"stringlist.text"
-msgid "AND"
-msgstr "UND"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"connect2\n"
-"1\n"
-"stringlist.text"
-msgid "OR"
-msgstr "ODER"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Operator"
-msgstr "Operator"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Field name"
-msgstr "Feldname"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Condition"
-msgstr "Bedingung"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Value"
-msgstr "Wert"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Filter Criteria"
-msgstr "Filterkriterien"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"case\n"
-"label\n"
-"string.text"
-msgid "_Case sensitive"
-msgstr "_Groß- und Kleinschreibung"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"regexp\n"
-"label\n"
-"string.text"
-msgid "Regular _expressions"
-msgstr "_Reguläre Ausdrücke"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"unique\n"
-"label\n"
-"string.text"
-msgid "_No duplications"
-msgstr "Keine _Duplikate"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"dbarealabel\n"
-"label\n"
-"string.text"
-msgid "Data range:"
-msgstr "Datenbereich:"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"dbarea\n"
-"label\n"
-"string.text"
-msgid "dummy"
-msgstr "Platzhalter"
-
-#: pivotfilterdialog.ui
-msgctxt ""
-"pivotfilterdialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Op_tions"
-msgstr "E_instellungen"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"PivotTableLayout\n"
-"title\n"
-"string.text"
-msgid "Pivot Table Layout"
-msgstr "Pivot-Tabellen Layout"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Column Fields:"
-msgstr "Spaltenfelder:"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Data Fields:"
-msgstr "Datenfelder:"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Row Fields:"
-msgstr "Zeilenfelder:"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Page Fields:"
-msgstr "Seitenfelder:"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Available Fields:"
-msgstr "Verfügbare Felder:"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Drag the Items into the Desired Position"
-msgstr "Ziehen Sie die Elemente in die gewünschte Position"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"check-ignore-empty-rows\n"
-"label\n"
-"string.text"
-msgid "Ignore empty rows"
-msgstr "Leerzeilen ignorieren"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"check-identify-categories\n"
-"label\n"
-"string.text"
-msgid "Identify categories"
-msgstr "Kategorien erkennen"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"check-total-rows\n"
-"label\n"
-"string.text"
-msgid "Total rows"
-msgstr "Gesamtergebnis-Zeilen"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"check-total-columns\n"
-"label\n"
-"string.text"
-msgid "Total columns"
-msgstr "Gesamtergebnis-Spalten"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"check-add-filter\n"
-"label\n"
-"string.text"
-msgid "Add filter"
-msgstr "Filter hinzufügen"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"check-drill-to-details\n"
-"label\n"
-"string.text"
-msgid "Enable drill to details"
-msgstr "Drilldown zu Details zulassen"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"label11\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"destination-radio-new-sheet\n"
-"label\n"
-"string.text"
-msgid "New sheet"
-msgstr "Neue Tabelle"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"destination-radio-selection\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"destination-radio-named-range\n"
-"label\n"
-"string.text"
-msgid "Named range"
-msgstr "Benannter Bereich"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"label8\n"
-"label\n"
-"string.text"
-msgid "Destination"
-msgstr "Zielbereich"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"source-radio-selection\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"source-radio-named-range\n"
-"label\n"
-"string.text"
-msgid "Named range"
-msgstr "Benannter Bereich"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"label9\n"
-"label\n"
-"string.text"
-msgid "Source"
-msgstr "Quelle"
-
-#: pivottablelayoutdialog.ui
-msgctxt ""
-"pivottablelayoutdialog.ui\n"
-"label7\n"
-"label\n"
-"string.text"
-msgid "Source and Destination"
-msgstr "Quelle und Zielbereich"
-
-#: printareasdialog.ui
-msgctxt ""
-"printareasdialog.ui\n"
-"PrintAreasDialog\n"
-"title\n"
-"string.text"
-msgid "Edit Print Ranges"
-msgstr "Druckbereiche bearbeiten"
-
-#: printareasdialog.ui
-msgctxt ""
-"printareasdialog.ui\n"
-"lbprintarea\n"
-"0\n"
-"stringlist.text"
-msgid "- none -"
-msgstr "- keine -"
-
-#: printareasdialog.ui
-msgctxt ""
-"printareasdialog.ui\n"
-"lbprintarea\n"
-"1\n"
-"stringlist.text"
-msgid "- entire sheet -"
-msgstr "- ganze Tabelle -"
-
-#: printareasdialog.ui
-msgctxt ""
-"printareasdialog.ui\n"
-"lbprintarea\n"
-"2\n"
-"stringlist.text"
-msgid "- user defined -"
-msgstr "- benutzerdefiniert -"
-
-#: printareasdialog.ui
-msgctxt ""
-"printareasdialog.ui\n"
-"lbprintarea\n"
-"3\n"
-"stringlist.text"
-msgid "- selection -"
-msgstr "- Auswahl -"
-
-#: printareasdialog.ui
-msgctxt ""
-"printareasdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Print Range"
-msgstr "Druckbereich"
-
-#: printareasdialog.ui
-msgctxt ""
-"printareasdialog.ui\n"
-"lbrepeatrow\n"
-"0\n"
-"stringlist.text"
-msgid "- none -"
-msgstr "- keiner -"
-
-#: printareasdialog.ui
-msgctxt ""
-"printareasdialog.ui\n"
-"lbrepeatrow\n"
-"1\n"
-"stringlist.text"
-msgid "- user defined -"
-msgstr "- benutzerdefiniert -"
-
-#: printareasdialog.ui
-msgctxt ""
-"printareasdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Rows to Repeat"
-msgstr "Wiederholungszeilen"
-
-#: printareasdialog.ui
-msgctxt ""
-"printareasdialog.ui\n"
-"lbrepeatcol\n"
-"0\n"
-"stringlist.text"
-msgid "- none -"
-msgstr "- keine -"
-
-#: printareasdialog.ui
-msgctxt ""
-"printareasdialog.ui\n"
-"lbrepeatcol\n"
-"1\n"
-"stringlist.text"
-msgid "- user defined -"
-msgstr "- benutzerdefiniert -"
-
-#: printareasdialog.ui
-msgctxt ""
-"printareasdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Columns to Repeat"
-msgstr "Wiederholungsspalten"
-
-#: printeroptions.ui
-msgctxt ""
-"printeroptions.ui\n"
-"suppressemptypages\n"
-"label\n"
-"string.text"
-msgid "Suppress output of empty pages"
-msgstr "Ausgabe leerer Seiten unterdrücken"
-
-#: printeroptions.ui
-msgctxt ""
-"printeroptions.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Pages"
-msgstr "Seiten"
-
-#: protectsheetdlg.ui
-msgctxt ""
-"protectsheetdlg.ui\n"
-"ProtectSheetDialog\n"
-"title\n"
-"string.text"
-msgid "Protect Sheet"
-msgstr "Tabelle schützen"
-
-#: protectsheetdlg.ui
-msgctxt ""
-"protectsheetdlg.ui\n"
-"protect\n"
-"label\n"
-"string.text"
-msgid "P_rotect this sheet and the contents of protected cells"
-msgstr "Diese Tabelle und die Inhalte gesperrter Zellen _schützen"
-
-#: protectsheetdlg.ui
-msgctxt ""
-"protectsheetdlg.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Password:"
-msgstr "_Kennwort:"
-
-#: protectsheetdlg.ui
-msgctxt ""
-"protectsheetdlg.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Confirm:"
-msgstr "_Bestätigen:"
-
-#: protectsheetdlg.ui
-msgctxt ""
-"protectsheetdlg.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Allow all users of this sheet to:"
-msgstr "Alle Nutzer dieser Tabelle dürfen:"
-
-#: protectsheetdlg.ui
-msgctxt ""
-"protectsheetdlg.ui\n"
-"protected\n"
-"label\n"
-"string.text"
-msgid "Select protected cells"
-msgstr "Gesperrte Zellen auswählen"
-
-#: protectsheetdlg.ui
-msgctxt ""
-"protectsheetdlg.ui\n"
-"unprotected\n"
-"label\n"
-"string.text"
-msgid "Select unprotected cells"
-msgstr "Nicht gesperrte Zellen auswählen"
-
-#: protectsheetdlg.ui
-msgctxt ""
-"protectsheetdlg.ui\n"
-"insert-columns\n"
-"label\n"
-"string.text"
-msgid "Insert columns"
-msgstr "Spalten einfügen"
-
-#: protectsheetdlg.ui
-msgctxt ""
-"protectsheetdlg.ui\n"
-"insert-rows\n"
-"label\n"
-"string.text"
-msgid "Insert rows"
-msgstr "Zeilen einfügen"
-
-#: protectsheetdlg.ui
-msgctxt ""
-"protectsheetdlg.ui\n"
-"delete-columns\n"
-"label\n"
-"string.text"
-msgid "Delete columns"
-msgstr "Spalten löschen"
-
-#: protectsheetdlg.ui
-msgctxt ""
-"protectsheetdlg.ui\n"
-"delete-rows\n"
-"label\n"
-"string.text"
-msgid "Delete rows"
-msgstr "Zeilen löschen"
-
-#: queryrunstreamscriptdialog.ui
-msgctxt ""
-"queryrunstreamscriptdialog.ui\n"
-"QueryRunStreamScriptDialog\n"
-"text\n"
-"string.text"
-msgid "This data stream is generated by a script. Do you want to execute %URL?"
-msgstr "Dieser Datenstrom wurde von einem Skript erzeugt. Möchten Sie %URL ausführen?"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"RandomNumberGeneratorDialog\n"
-"title\n"
-"string.text"
-msgid "Random Number Generator"
-msgstr "Zufallszahlengenerator"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"cell-range-label\n"
-"label\n"
-"string.text"
-msgid "Cell range:"
-msgstr "Zellbereich:"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"distribution-label\n"
-"label\n"
-"string.text"
-msgid "Distribution:"
-msgstr "Verteilung:"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"parameter1-label\n"
-"label\n"
-"string.text"
-msgid "..."
-msgstr "..."
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"parameter2-label\n"
-"label\n"
-"string.text"
-msgid "..."
-msgstr "..."
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Random Number Generator"
-msgstr "Zufallszahlengenerator"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"enable-seed-check\n"
-"label\n"
-"string.text"
-msgid "Enable custom seed"
-msgstr "Eigenen Anfangswert verwenden"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"seed-label\n"
-"label\n"
-"string.text"
-msgid "Seed:"
-msgstr "Anfangswert:"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"enable-rounding-check\n"
-"label\n"
-"string.text"
-msgid "Enable rounding"
-msgstr "Rundung aktivieren"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"decimal-places-label\n"
-"label\n"
-"string.text"
-msgid "Decimal places:"
-msgstr "Nachkommastellen:"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"distribution-liststore\n"
-"0\n"
-"stringlist.text"
-msgid "Uniform"
-msgstr "Gleichverteilt"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"distribution-liststore\n"
-"1\n"
-"stringlist.text"
-msgid "Uniform Integer"
-msgstr "Gleichverteilte ganze Zahl"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"distribution-liststore\n"
-"2\n"
-"stringlist.text"
-msgid "Normal"
-msgstr "Normalverteilt"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"distribution-liststore\n"
-"3\n"
-"stringlist.text"
-msgid "Cauchy"
-msgstr "Cauchy-verteilt"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"distribution-liststore\n"
-"4\n"
-"stringlist.text"
-msgid "Bernoulli"
-msgstr "Bernoulli-verteilt"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"distribution-liststore\n"
-"5\n"
-"stringlist.text"
-msgid "Binomial"
-msgstr "Binomialverteilt"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"distribution-liststore\n"
-"6\n"
-"stringlist.text"
-msgid "Chi Squared"
-msgstr "Chi-Quadrat-verteilt"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"distribution-liststore\n"
-"7\n"
-"stringlist.text"
-msgid "Geometric"
-msgstr "Geometrisch-verteilt"
-
-#: randomnumbergenerator.ui
-msgctxt ""
-"randomnumbergenerator.ui\n"
-"distribution-liststore\n"
-"8\n"
-"stringlist.text"
-msgid "Negative Binomial"
-msgstr "Negativ binomialverteilt"
-
-#: regressiondialog.ui
-msgctxt ""
-"regressiondialog.ui\n"
-"RegressionDialog\n"
-"title\n"
-"string.text"
-msgid "Regression"
-msgstr "Regression"
-
-#: regressiondialog.ui
-msgctxt ""
-"regressiondialog.ui\n"
-"variable1-range-label\n"
-"label\n"
-"string.text"
-msgid "Variable 1 range:"
-msgstr "Bereich der Variablen 1:"
-
-#: regressiondialog.ui
-msgctxt ""
-"regressiondialog.ui\n"
-"variable2-range-label\n"
-"label\n"
-"string.text"
-msgid "Variable 2 range:"
-msgstr "Bereich der Variablen 2:"
-
-#: regressiondialog.ui
-msgctxt ""
-"regressiondialog.ui\n"
-"output-range-label\n"
-"label\n"
-"string.text"
-msgid "Results to:"
-msgstr "Ergebnisse nach:"
-
-#: regressiondialog.ui
-msgctxt ""
-"regressiondialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: regressiondialog.ui
-msgctxt ""
-"regressiondialog.ui\n"
-"groupedby-columns-radio\n"
-"label\n"
-"string.text"
-msgid "Columns"
-msgstr "Spalten"
-
-#: regressiondialog.ui
-msgctxt ""
-"regressiondialog.ui\n"
-"groupedby-rows-radio\n"
-"label\n"
-"string.text"
-msgid "Rows"
-msgstr "Zeilen"
-
-#: regressiondialog.ui
-msgctxt ""
-"regressiondialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Grouped by"
-msgstr "Gruppiert nach"
-
-#: regressiondialog.ui
-msgctxt ""
-"regressiondialog.ui\n"
-"linear-check\n"
-"label\n"
-"string.text"
-msgid "Linear Regression"
-msgstr "Lineare Regression"
-
-#: regressiondialog.ui
-msgctxt ""
-"regressiondialog.ui\n"
-"logarithmic-check\n"
-"label\n"
-"string.text"
-msgid "Logarithmic Regression"
-msgstr "Logarithmische Regression"
-
-#: regressiondialog.ui
-msgctxt ""
-"regressiondialog.ui\n"
-"power-check\n"
-"label\n"
-"string.text"
-msgid "Power Regression"
-msgstr "Potenzielle Regression"
-
-#: regressiondialog.ui
-msgctxt ""
-"regressiondialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Output Regression Types"
-msgstr "Regressionstypen festlegen"
-
-#: retypepassdialog.ui
-msgctxt ""
-"retypepassdialog.ui\n"
-"RetypePass\n"
-"title\n"
-"string.text"
-msgid "Re-type Password"
-msgstr "Kennwort wiederholen"
-
-#: retypepassdialog.ui
-msgctxt ""
-"retypepassdialog.ui\n"
-"descLabel\n"
-"label\n"
-"string.text"
-msgid "The document you are about to export has one or more protected items with password that cannot be exported. Please re-type your password to be able to export your document."
-msgstr "Das Dokument, das Sie exportieren möchten, hat ein oder mehrere mit Kennwort geschützte Objekte, die nicht exportiert werden können. Bitte geben Sie Ihr Kennwort erneut ein, um Ihr Dokument exportieren zu können."
-
-#: retypepassdialog.ui
-msgctxt ""
-"retypepassdialog.ui\n"
-"docStatusLabel\n"
-"label\n"
-"string.text"
-msgid "Status unknown"
-msgstr "Status unbekannt"
-
-#: retypepassdialog.ui
-msgctxt ""
-"retypepassdialog.ui\n"
-"retypeDocButton\n"
-"label\n"
-"string.text"
-msgid "_Re-type"
-msgstr "_Wiederholen"
-
-#: retypepassdialog.ui
-msgctxt ""
-"retypepassdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Document protection"
-msgstr "Dokumentschutz"
-
-#: retypepassdialog.ui
-msgctxt ""
-"retypepassdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Sheet protection"
-msgstr "Tabellenschutz"
-
-#: retypepassworddialog.ui
-msgctxt ""
-"retypepassworddialog.ui\n"
-"RetypePasswordDialog\n"
-"title\n"
-"string.text"
-msgid "Re-type Password"
-msgstr "Kennwort wiederholen"
-
-#: retypepassworddialog.ui
-msgctxt ""
-"retypepassworddialog.ui\n"
-"retypepassword\n"
-"label\n"
-"string.text"
-msgid "Re-type password"
-msgstr "Kennwort wiederholen"
-
-#: retypepassworddialog.ui
-msgctxt ""
-"retypepassworddialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Pa_ssword:"
-msgstr "_Kennwort:"
-
-#: retypepassworddialog.ui
-msgctxt ""
-"retypepassworddialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Confi_rm:"
-msgstr "_Bestätigen:"
-
-#: retypepassworddialog.ui
-msgctxt ""
-"retypepassworddialog.ui\n"
-"mustmatch\n"
-"label\n"
-"string.text"
-msgid "New password must match the original password"
-msgstr "Neues Kennwort muss dem Originalkennwort entsprechen"
-
-#: retypepassworddialog.ui
-msgctxt ""
-"retypepassworddialog.ui\n"
-"removepassword\n"
-"label\n"
-"string.text"
-msgid "Remove password from this protected item"
-msgstr "Kennwort von geschütztem Element entfernen"
-
-#: rightfooterdialog.ui
-msgctxt ""
-"rightfooterdialog.ui\n"
-"RightFooterDialog\n"
-"title\n"
-"string.text"
-msgid "Footer (right)"
-msgstr "Fußzeile (rechts)"
-
-#: rightfooterdialog.ui
-msgctxt ""
-"rightfooterdialog.ui\n"
-"footerright\n"
-"label\n"
-"string.text"
-msgid "Footer (right)"
-msgstr "Fußzeile (rechts)"
-
-#: rightheaderdialog.ui
-msgctxt ""
-"rightheaderdialog.ui\n"
-"RightHeaderDialog\n"
-"title\n"
-"string.text"
-msgid "Header (right)"
-msgstr "Kopfzeile (rechts)"
-
-#: rightheaderdialog.ui
-msgctxt ""
-"rightheaderdialog.ui\n"
-"headerright\n"
-"label\n"
-"string.text"
-msgid "Header (right)"
-msgstr "Kopfzeile (rechts)"
-
-#: rowheightdialog.ui
-msgctxt ""
-"rowheightdialog.ui\n"
-"RowHeightDialog\n"
-"title\n"
-"string.text"
-msgid "Row Height"
-msgstr "Zeilenhöhe"
-
-#: rowheightdialog.ui
-msgctxt ""
-"rowheightdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Height:"
-msgstr "Höhe:"
-
-#: rowheightdialog.ui
-msgctxt ""
-"rowheightdialog.ui\n"
-"default\n"
-"label\n"
-"string.text"
-msgid "_Default value"
-msgstr "_Standardwert"
-
-#: samplingdialog.ui
-msgctxt ""
-"samplingdialog.ui\n"
-"SamplingDialog\n"
-"title\n"
-"string.text"
-msgid "Sampling"
-msgstr "Stichproben"
-
-#: samplingdialog.ui
-msgctxt ""
-"samplingdialog.ui\n"
-"input-range-label\n"
-"label\n"
-"string.text"
-msgid "Input range:"
-msgstr "Eingabebereich:"
-
-#: samplingdialog.ui
-msgctxt ""
-"samplingdialog.ui\n"
-"output-range-label\n"
-"label\n"
-"string.text"
-msgid "Results to:"
-msgstr "Ergebnisse nach:"
-
-#: samplingdialog.ui
-msgctxt ""
-"samplingdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: samplingdialog.ui
-msgctxt ""
-"samplingdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Sample size:"
-msgstr "Messwertgröße:"
-
-#: samplingdialog.ui
-msgctxt ""
-"samplingdialog.ui\n"
-"random-method-radio\n"
-"label\n"
-"string.text"
-msgid "Random"
-msgstr "Zufällig"
-
-#: samplingdialog.ui
-msgctxt ""
-"samplingdialog.ui\n"
-"periodic-method-radio\n"
-"label\n"
-"string.text"
-msgid "Periodic"
-msgstr "Periodisch"
-
-#: samplingdialog.ui
-msgctxt ""
-"samplingdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Period:"
-msgstr "Periode:"
-
-#: samplingdialog.ui
-msgctxt ""
-"samplingdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Sampling Method"
-msgstr "Stichprobenmethode"
-
-#: scenariodialog.ui
-msgctxt ""
-"scenariodialog.ui\n"
-"ScenarioDialog\n"
-"title\n"
-"string.text"
-msgid "Create Scenario"
-msgstr "Szenario anlegen"
-
-#: scenariodialog.ui
-msgctxt ""
-"scenariodialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Name of Scenario"
-msgstr "Name des Szenarios"
-
-#: scenariodialog.ui
-msgctxt ""
-"scenariodialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Comment"
-msgstr "Kommentar"
-
-#: scenariodialog.ui
-msgctxt ""
-"scenariodialog.ui\n"
-"copyback\n"
-"label\n"
-"string.text"
-msgid "Copy _back"
-msgstr "_Zurückkopieren"
-
-#: scenariodialog.ui
-msgctxt ""
-"scenariodialog.ui\n"
-"copysheet\n"
-"label\n"
-"string.text"
-msgid "Copy _entire sheet"
-msgstr "Ganze _Tabelle kopieren"
-
-#: scenariodialog.ui
-msgctxt ""
-"scenariodialog.ui\n"
-"preventchanges\n"
-"label\n"
-"string.text"
-msgid "_Prevent changes"
-msgstr "Änderungen _verhindern"
-
-#: scenariodialog.ui
-msgctxt ""
-"scenariodialog.ui\n"
-"showframe\n"
-"label\n"
-"string.text"
-msgid "_Display border"
-msgstr "_Rahmen anzeigen"
-
-#: scenariodialog.ui
-msgctxt ""
-"scenariodialog.ui\n"
-"bordercolor-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Display border in"
-msgstr "Rahmen anzeigen in"
-
-#: scenariodialog.ui
-msgctxt ""
-"scenariodialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: scenariodialog.ui
-msgctxt ""
-"scenariodialog.ui\n"
-"alttitle\n"
-"label\n"
-"string.text"
-msgid "Edit Scenario"
-msgstr "Szenario bearbeiten"
-
-#: scenariodialog.ui
-msgctxt ""
-"scenariodialog.ui\n"
-"createdft\n"
-"label\n"
-"string.text"
-msgid "Created by"
-msgstr "Angelegt von"
-
-#: scenariodialog.ui
-msgctxt ""
-"scenariodialog.ui\n"
-"onft\n"
-"label\n"
-"string.text"
-msgid "on"
-msgstr "am"
-
-#: scenariomenu.ui
-msgctxt ""
-"scenariomenu.ui\n"
-"delete\n"
-"label\n"
-"string.text"
-msgid "Delete"
-msgstr "Löschen"
-
-#: scenariomenu.ui
-msgctxt ""
-"scenariomenu.ui\n"
-"edit\n"
-"label\n"
-"string.text"
-msgid "Properties..."
-msgstr "Eigenschaften..."
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Measurement _unit:"
-msgstr "_Maßeinheit:"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "_Tab stops:"
-msgstr "_Tabulatoren:"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Metrics"
-msgstr "Metrisch"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Update links when opening"
-msgstr "Verknüpfungen beim Laden aktualisieren"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"alwaysrb\n"
-"label\n"
-"string.text"
-msgid "_Always"
-msgstr "_Immer"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"requestrb\n"
-"label\n"
-"string.text"
-msgid "_On request"
-msgstr "Auf Nach_frage"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"neverrb\n"
-"label\n"
-"string.text"
-msgid "_Never"
-msgstr "_Nie"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Updating"
-msgstr "Aktualisieren"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"editmodecb\n"
-"label\n"
-"string.text"
-msgid "Press Enter to switch to _edit mode"
-msgstr "Eingabetaste schaltet in den _Bearbeitungsmodus"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"formatcb\n"
-"label\n"
-"string.text"
-msgid "Expand _formatting"
-msgstr "Formatier_ung ausdehnen"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"exprefcb\n"
-"label\n"
-"string.text"
-msgid "Expand _references when new columns/rows are inserted"
-msgstr "_Bezüge beim Einfügen von Spalten/Zeilen an deren Rändern ausdehnen"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"alignlb\n"
-"0\n"
-"stringlist.text"
-msgid "Down"
-msgstr "unten"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"alignlb\n"
-"1\n"
-"stringlist.text"
-msgid "Right"
-msgstr "rechts"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"alignlb\n"
-"2\n"
-"stringlist.text"
-msgid "Up"
-msgstr "oben"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"alignlb\n"
-"3\n"
-"stringlist.text"
-msgid "Left"
-msgstr "links"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"aligncb\n"
-"label\n"
-"string.text"
-msgid "Press Enter to _move selection"
-msgstr "Die Eingabetaste bewegt die _Auswahl nach"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"legacy_cell_selection_cb\n"
-"label\n"
-"string.text"
-msgid "Use legacy cursor movement behavior when selecting"
-msgstr "Bisheriges Verhalten der Cursor-Bewegung beim Auswählen benutzen"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"replwarncb\n"
-"label\n"
-"string.text"
-msgid "Show overwrite _warning when pasting data"
-msgstr "Ü_berschreibwarnung beim Einfügen von Daten anzeigen"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"textfmtcb\n"
-"label\n"
-"string.text"
-msgid "Use printer metrics for text formatting"
-msgstr "Druckermaße für Textformatierung verwenden"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"markhdrcb\n"
-"label\n"
-"string.text"
-msgid "Highlight sele_ction in column/row headers"
-msgstr "Auswah_l in Spalten-/Zeilenköpfen hervorheben"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"sortrefupdatecb\n"
-"label\n"
-"string.text"
-msgid "Update references when sorting range of cells"
-msgstr "Bezüge aktualisieren, wenn Zellbereiche sortiert werden"
-
-#: scgeneralpage.ui
-msgctxt ""
-"scgeneralpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Input Settings"
-msgstr "Eingabeeinstellungen"
-
-#: searchresults.ui
-msgctxt ""
-"searchresults.ui\n"
-"SearchResultsDialog\n"
-"title\n"
-"string.text"
-msgid "Search Results"
-msgstr "Suchergebnisse"
-
-#: searchresults.ui
-msgctxt ""
-"searchresults.ui\n"
-"skipped\n"
-"label\n"
-"string.text"
-msgid "skipped $1 ..."
-msgstr "$1 übersprungen..."
-
-#: selectdatasource.ui
-msgctxt ""
-"selectdatasource.ui\n"
-"SelectDataSourceDialog\n"
-"title\n"
-"string.text"
-msgid "Select Data Source"
-msgstr "Datenquelle auswählen"
-
-#: selectdatasource.ui
-msgctxt ""
-"selectdatasource.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "_Database:"
-msgstr "_Datenbank:"
-
-#: selectdatasource.ui
-msgctxt ""
-"selectdatasource.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "_Type:"
-msgstr "_Typ:"
-
-#: selectdatasource.ui
-msgctxt ""
-"selectdatasource.ui\n"
-"type\n"
-"0\n"
-"stringlist.text"
-msgid "Table"
-msgstr "Tabelle"
-
-#: selectdatasource.ui
-msgctxt ""
-"selectdatasource.ui\n"
-"type\n"
-"1\n"
-"stringlist.text"
-msgid "Query"
-msgstr "Abfrage"
-
-#: selectdatasource.ui
-msgctxt ""
-"selectdatasource.ui\n"
-"type\n"
-"2\n"
-"stringlist.text"
-msgid "Sql"
-msgstr "SQL"
-
-#: selectdatasource.ui
-msgctxt ""
-"selectdatasource.ui\n"
-"type\n"
-"3\n"
-"stringlist.text"
-msgid "Sql [Native]"
-msgstr "SQL [Native]"
-
-#: selectdatasource.ui
-msgctxt ""
-"selectdatasource.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Data so_urce:"
-msgstr "Daten_quelle:"
-
-#: selectdatasource.ui
-msgctxt ""
-"selectdatasource.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: selectrange.ui
-msgctxt ""
-"selectrange.ui\n"
-"SelectRangeDialog\n"
-"title\n"
-"string.text"
-msgid "Select Database Range"
-msgstr "Datenbankbereich auswählen"
-
-#: selectrange.ui
-msgctxt ""
-"selectrange.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Ranges"
-msgstr "Bereiche"
-
-#: selectsource.ui
-msgctxt ""
-"selectsource.ui\n"
-"SelectSourceDialog\n"
-"title\n"
-"string.text"
-msgid "Select Source"
-msgstr "Quelle auswählen"
-
-#: selectsource.ui
-msgctxt ""
-"selectsource.ui\n"
-"selection\n"
-"label\n"
-"string.text"
-msgid "_Current selection"
-msgstr "_Aktuelle Auswahl"
-
-#: selectsource.ui
-msgctxt ""
-"selectsource.ui\n"
-"namedrange\n"
-"label\n"
-"string.text"
-msgid "_Named range:"
-msgstr "_Benannter Bereich:"
-
-#: selectsource.ui
-msgctxt ""
-"selectsource.ui\n"
-"database\n"
-"label\n"
-"string.text"
-msgid "_Data source registered in %PRODUCTNAME"
-msgstr "_In %PRODUCTNAME angemeldete Datenquelle"
-
-#: selectsource.ui
-msgctxt ""
-"selectsource.ui\n"
-"external\n"
-"label\n"
-"string.text"
-msgid "_External source/interface"
-msgstr "_Externe Quelle/Schnittstelle"
-
-#: selectsource.ui
-msgctxt ""
-"selectsource.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Selection"
-msgstr "Auswahl"
-
-#: sharedfooterdialog.ui
-msgctxt ""
-"sharedfooterdialog.ui\n"
-"SharedFooterDialog\n"
-"title\n"
-"string.text"
-msgid "Headers/Footers"
-msgstr "Kopf-/Fußzeilen"
-
-#: sharedfooterdialog.ui
-msgctxt ""
-"sharedfooterdialog.ui\n"
-"headerright\n"
-"label\n"
-"string.text"
-msgid "Header (right)"
-msgstr "Kopfzeile (rechts)"
-
-#: sharedfooterdialog.ui
-msgctxt ""
-"sharedfooterdialog.ui\n"
-"headerleft\n"
-"label\n"
-"string.text"
-msgid "Header (left)"
-msgstr "Kopfzeile (links)"
-
-#: sharedfooterdialog.ui
-msgctxt ""
-"sharedfooterdialog.ui\n"
-"footer\n"
-"label\n"
-"string.text"
-msgid "Footer"
-msgstr "Fußzeile"
-
-#: sharedheaderdialog.ui
-msgctxt ""
-"sharedheaderdialog.ui\n"
-"SharedHeaderDialog\n"
-"title\n"
-"string.text"
-msgid "Headers/Footers"
-msgstr "Kopf-/Fußzeilen"
-
-#: sharedheaderdialog.ui
-msgctxt ""
-"sharedheaderdialog.ui\n"
-"header\n"
-"label\n"
-"string.text"
-msgid "Header"
-msgstr "Kopfzeile"
-
-#: sharedheaderdialog.ui
-msgctxt ""
-"sharedheaderdialog.ui\n"
-"footerright\n"
-"label\n"
-"string.text"
-msgid "Footer (right)"
-msgstr "Fußzeile (rechts)"
-
-#: sharedheaderdialog.ui
-msgctxt ""
-"sharedheaderdialog.ui\n"
-"footerleft\n"
-"label\n"
-"string.text"
-msgid "Footer (left)"
-msgstr "Fußzeile (links)"
-
-#: sharedocumentdlg.ui
-msgctxt ""
-"sharedocumentdlg.ui\n"
-"ShareDocumentDialog\n"
-"title\n"
-"string.text"
-msgid "Share Document"
-msgstr "Dokument freigeben"
-
-#: sharedocumentdlg.ui
-msgctxt ""
-"sharedocumentdlg.ui\n"
-"share\n"
-"label\n"
-"string.text"
-msgid "_Share this spreadsheet with other users"
-msgstr "_Dieses Tabellendokument für andere Benutzer freigeben"
-
-#: sharedocumentdlg.ui
-msgctxt ""
-"sharedocumentdlg.ui\n"
-"warning\n"
-"label\n"
-"string.text"
-msgid "Note: Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities."
-msgstr "Hinweis: Änderungen von Formatierungen, wie Schriftart, Farbe, Zahlenformat werden im freigegebenen Modus nicht gespeichert und einige Funktionen, wie das Bearbeiten von Diagrammen und Zeichnungsobjekten, stehen nicht zur Verfügung. Heben Sie die Freigabe auf, um Exklusivzugriff zu erhalten, wenn Sie entsprechende Änderungen vornehmen möchten."
-
-#: sharedocumentdlg.ui
-msgctxt ""
-"sharedocumentdlg.ui\n"
-"name\n"
-"label\n"
-"string.text"
-msgid "Name"
-msgstr "Name"
-
-#: sharedocumentdlg.ui
-msgctxt ""
-"sharedocumentdlg.ui\n"
-"accessed\n"
-"label\n"
-"string.text"
-msgid "Accessed"
-msgstr "Zugegriffen"
-
-#: sharedocumentdlg.ui
-msgctxt ""
-"sharedocumentdlg.ui\n"
-"nouserdata\n"
-"label\n"
-"string.text"
-msgid "No user data available."
-msgstr "Keine Benutzerdaten verfügbar."
-
-#: sharedocumentdlg.ui
-msgctxt ""
-"sharedocumentdlg.ui\n"
-"unknownuser\n"
-"label\n"
-"string.text"
-msgid "Unknown User"
-msgstr "Unbekannter Anwender"
-
-#: sharedocumentdlg.ui
-msgctxt ""
-"sharedocumentdlg.ui\n"
-"exclusive\n"
-"label\n"
-"string.text"
-msgid "(exclusive access)"
-msgstr "(Exklusivzugriff)"
-
-#: sharedocumentdlg.ui
-msgctxt ""
-"sharedocumentdlg.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Users Currently Accessing This Spreadsheet"
-msgstr "Benutzer, die zur Zeit auf dieses Tabellendokument zugreifen"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"radioBTN_TOPDOWN\n"
-"label\n"
-"string.text"
-msgid "_Top to bottom, then right"
-msgstr "Von o_ben nach unten, dann nach rechts"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"radioBTN_LEFTRIGHT\n"
-"label\n"
-"string.text"
-msgid "_Left to right, then down"
-msgstr "Von _links nach rechts, dann nach unten"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"checkBTN_PAGENO\n"
-"label\n"
-"string.text"
-msgid "First _page number:"
-msgstr "Erste _Seitennummer:"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"labelPageOrder\n"
-"label\n"
-"string.text"
-msgid "Page Order"
-msgstr "Seitenreihenfolge"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"checkBTN_HEADER\n"
-"label\n"
-"string.text"
-msgid "_Column and row headers"
-msgstr "Zeilen- & Spalten_köpfe"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"checkBTN_GRID\n"
-"label\n"
-"string.text"
-msgid "_Grid"
-msgstr "_Gitter"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"checkBTN_NOTES\n"
-"label\n"
-"string.text"
-msgid "_Comments"
-msgstr "_Kommentare"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"checkBTN_OBJECTS\n"
-"label\n"
-"string.text"
-msgid "_Objects/Images"
-msgstr "_Objekte/Bilder"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"checkBTN_CHARTS\n"
-"label\n"
-"string.text"
-msgid "Charts"
-msgstr "Diagramme"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"checkBTN_DRAWINGS\n"
-"label\n"
-"string.text"
-msgid "_Drawing objects"
-msgstr "Zei_chnungsobjekte"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"checkBTN_FORMULAS\n"
-"label\n"
-"string.text"
-msgid "_Formulas"
-msgstr "_Formeln"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"checkBTN_NULLVALS\n"
-"label\n"
-"string.text"
-msgid "_Zero values"
-msgstr "Null_werte"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"labelPrint\n"
-"label\n"
-"string.text"
-msgid "Print"
-msgstr "Drucken"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"labelScalingMode\n"
-"label\n"
-"string.text"
-msgid "Scaling _mode:"
-msgstr "Skalierungs_modus:"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"labelSF\n"
-"label\n"
-"string.text"
-msgid "_Scaling factor:"
-msgstr "_Skalierungsfaktor:"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"labelWP\n"
-"label\n"
-"string.text"
-msgid "_Width in pages:"
-msgstr "Br_eite in Seiten:"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"labelHP\n"
-"label\n"
-"string.text"
-msgid "_Height in pages:"
-msgstr "Höh_e in Seiten:"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"labelNP\n"
-"label\n"
-"string.text"
-msgid "N_umber of pages:"
-msgstr "Seiten_anzahl:"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"comboLB_SCALEMODE\n"
-"0\n"
-"stringlist.text"
-msgid "Reduce/enlarge printout"
-msgstr "Ausdruck verkleinern/vergrößern"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"comboLB_SCALEMODE\n"
-"1\n"
-"stringlist.text"
-msgid "Fit print range(s) to width/height"
-msgstr "Druckbereich(e) auf Breite/Höhe anpassen"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"comboLB_SCALEMODE\n"
-"2\n"
-"stringlist.text"
-msgid "Fit print range(s) on number of pages"
-msgstr "Druckbereich(e) auf Seitenanzahl anpassen"
-
-#: sheetprintpage.ui
-msgctxt ""
-"sheetprintpage.ui\n"
-"labelScale\n"
-"label\n"
-"string.text"
-msgid "Scale"
-msgstr "Maßstab"
-
-#: showchangesdialog.ui
-msgctxt ""
-"showchangesdialog.ui\n"
-"ShowChangesDialog\n"
-"title\n"
-"string.text"
-msgid "Show Changes"
-msgstr "Änderungen anzeigen"
-
-#: showchangesdialog.ui
-msgctxt ""
-"showchangesdialog.ui\n"
-"showchanges\n"
-"label\n"
-"string.text"
-msgid "_Show changes in spreadsheet"
-msgstr "Änderungen im Tabellendokument an_zeigen"
-
-#: showchangesdialog.ui
-msgctxt ""
-"showchangesdialog.ui\n"
-"showaccepted\n"
-"label\n"
-"string.text"
-msgid "Show _accepted changes"
-msgstr "A_kzeptierte Änderungen anzeigen"
-
-#: showchangesdialog.ui
-msgctxt ""
-"showchangesdialog.ui\n"
-"showrejected\n"
-"label\n"
-"string.text"
-msgid "Show _rejected changes"
-msgstr "Ver_worfene Änderungen anzeigen"
-
-#: showchangesdialog.ui
-msgctxt ""
-"showchangesdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Filter Settings"
-msgstr "Filtereinstellungen"
-
-#: showdetaildialog.ui
-msgctxt ""
-"showdetaildialog.ui\n"
-"ShowDetail\n"
-"title\n"
-"string.text"
-msgid "Show Detail"
-msgstr "Detail anzeigen"
-
-#: showdetaildialog.ui
-msgctxt ""
-"showdetaildialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Choose the field containing the detail you want to show"
-msgstr "_Wählen Sie das Feld, dessen Detail Sie hinzufügen möchten"
-
-#: showsheetdialog.ui
-msgctxt ""
-"showsheetdialog.ui\n"
-"ShowSheetDialog\n"
-"title\n"
-"string.text"
-msgid "Show Sheet"
-msgstr "Tabelle einblenden"
-
-#: showsheetdialog.ui
-msgctxt ""
-"showsheetdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Hidden Sheets"
-msgstr "Ausgeblendete Tabellen"
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"horizontalalignment\n"
-"tooltip_text\n"
-"string.text"
-msgid "Horizontal Alignment"
-msgstr "Horizontale Ausrichtung"
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"verticalalignment\n"
-"tooltip_text\n"
-"string.text"
-msgid "Vertical Alignment"
-msgstr "Vertikale Ausrichtung"
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"leftindentlabel\n"
-"label\n"
-"string.text"
-msgid "_Indent:"
-msgstr "_Einzug:"
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"leftindent\n"
-"tooltip_text\n"
-"string.text"
-msgid "Indents from the left edge."
-msgstr "Einzug vom linken Rand."
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"leftindent\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Left Indent"
-msgstr "Linker Einzug"
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"mergecells\n"
-"label\n"
-"string.text"
-msgid "Merge cells"
-msgstr "Zellen verbinden"
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"mergecells\n"
-"tooltip_text\n"
-"string.text"
-msgid "Joins the selected cells into one."
-msgstr "Verbindet die ausgewählten Zellen zu einer Zelle."
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"wraptext\n"
-"label\n"
-"string.text"
-msgid "Wrap text"
-msgstr "Zeilenumbruch"
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"wraptext\n"
-"tooltip_text\n"
-"string.text"
-msgid "Wrap texts automatically."
-msgstr "Automatischer Zeilenumbruch."
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"orientationlabel\n"
-"label\n"
-"string.text"
-msgid "Text _orientation:"
-msgstr "_Textausrichtung:"
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"orientationdegrees\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select the angle for rotation."
-msgstr "Wählen Sie den Drehwinkel."
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"orientationdegrees\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Text Orientation"
-msgstr "Textausrichtung"
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"bottom\n"
-"tooltip_text\n"
-"string.text"
-msgid "Text Extension From Lower Cell Border"
-msgstr "Textausdehnung von unterer Zellkante aus"
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"top\n"
-"tooltip_text\n"
-"string.text"
-msgid "Text Extension From Upper Cell Border"
-msgstr "Textausdehnung von oberer Zellkante aus"
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"standard\n"
-"tooltip_text\n"
-"string.text"
-msgid "Text Extension Inside Cell"
-msgstr "Textausdehnung nur innerhalb der Zelle"
-
-#: sidebaralignment.ui
-msgctxt ""
-"sidebaralignment.ui\n"
-"stacked\n"
-"label\n"
-"string.text"
-msgid "Vertically stacked"
-msgstr "Senkrecht gestapelt"
-
-#: sidebarcellappearance.ui
-msgctxt ""
-"sidebarcellappearance.ui\n"
-"cellbackgroundlabel\n"
-"label\n"
-"string.text"
-msgid "_Background:"
-msgstr "_Hintergrund:"
-
-#: sidebarcellappearance.ui
-msgctxt ""
-"sidebarcellappearance.ui\n"
-"cellbackgroundcolor\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select the background color of the selected cells."
-msgstr "Hiermit legen Sie die Hintergrundfarbe der ausgewählten Zellen fest."
-
-#: sidebarcellappearance.ui
-msgctxt ""
-"sidebarcellappearance.ui\n"
-"cellbackground\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select the background color of the selected cells."
-msgstr "Hiermit legen Sie die Hintergrundfarbe der ausgewählten Zellen fest."
-
-#: sidebarcellappearance.ui
-msgctxt ""
-"sidebarcellappearance.ui\n"
-"bordertype\n"
-"tooltip_text\n"
-"string.text"
-msgid "Specify the borders of the selected cells."
-msgstr "Hiermit legen Sie die Umrandung der ausgewählten Zellen fest."
-
-#: sidebarcellappearance.ui
-msgctxt ""
-"sidebarcellappearance.ui\n"
-"linestyle\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select the line style of the borders."
-msgstr "Wählen Sie den Linienstil der Umrandungen aus."
-
-#: sidebarcellappearance.ui
-msgctxt ""
-"sidebarcellappearance.ui\n"
-"borderlinestyle-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Border Line Style"
-msgstr "Linienstil der Umrandung"
-
-#: sidebarcellappearance.ui
-msgctxt ""
-"sidebarcellappearance.ui\n"
-"borderlinecolor\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select the line color of the borders."
-msgstr "Wählen Sie die Linienfarbe der Umrandungen aus."
-
-#: sidebarcellappearance.ui
-msgctxt ""
-"sidebarcellappearance.ui\n"
-"linecolor\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select the line color of the borders."
-msgstr "Wählen Sie die Linienfarbe der Umrandungen aus."
-
-#: sidebarcellappearance.ui
-msgctxt ""
-"sidebarcellappearance.ui\n"
-"borderlinecolor-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Border Line Color"
-msgstr "Linienfarbe der Umrandung"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"category\n"
-"tooltip_text\n"
-"string.text"
-msgid "Select a category of contents."
-msgstr "Wählten Sie eine Inhaltskategorie aus."
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"category\n"
-"0\n"
-"stringlist.text"
-msgid "General"
-msgstr "Standard"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"category\n"
-"1\n"
-"stringlist.text"
-msgid "Number"
-msgstr "Dezimalzahl"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"category\n"
-"2\n"
-"stringlist.text"
-msgid "Percent"
-msgstr "Prozent"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"category\n"
-"3\n"
-"stringlist.text"
-msgid "Currency"
-msgstr "Währung"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"category\n"
-"4\n"
-"stringlist.text"
-msgid "Date "
-msgstr "Datum"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"category\n"
-"5\n"
-"stringlist.text"
-msgid "Time"
-msgstr "Uhrzeit"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"category\n"
-"6\n"
-"stringlist.text"
-msgid "Scientific"
-msgstr "Wissenschaftlich"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"category\n"
-"7\n"
-"stringlist.text"
-msgid "Fraction"
-msgstr "Bruch"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"category\n"
-"8\n"
-"stringlist.text"
-msgid "Boolean Value"
-msgstr "Wahrheitswert"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"category\n"
-"9\n"
-"stringlist.text"
-msgid "Text"
-msgstr "Text"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"category-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Category"
-msgstr "Kategorie"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"decimalplaceslabel\n"
-"label\n"
-"string.text"
-msgid "_Decimal places:"
-msgstr "N_achkommastellen:"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"decimalplaces\n"
-"tooltip_text\n"
-"string.text"
-msgid "Enter the number of decimal places that you want to display."
-msgstr "Geben Sie die Nachkommastellen ein, die Sie angezeigt bekommen möchten."
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"decimalplaces-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Decimal Places"
-msgstr "Nachkommastellen"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"denominatorplaceslabel\n"
-"label\n"
-"string.text"
-msgid "Den_ominator places:"
-msgstr "Stellen für Nen_ner:"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"denominatorplaces\n"
-"tooltip_text\n"
-"string.text"
-msgid "Enter the number of places for the denominator that you want to display."
-msgstr "Geben Sie die Anzahl der Stellen für den Nenner ein, die angezeigt werden sollen."
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"denominatorplaces-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Denominator Places"
-msgstr "Stellen für Nenner"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"leadingzeroeslabel\n"
-"label\n"
-"string.text"
-msgid "Leading _zeroes:"
-msgstr "Führende _Nullen:"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"leadingzeroes\n"
-"tooltip_text\n"
-"string.text"
-msgid "Enter the maximum number of zeroes to display before the decimal point."
-msgstr "Geben Sie die maximale Anzahl von Nullen ein, die Sie vor dem Dezimaltrennzeichen angezeigt bekommen möchten."
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"leadingzeroes-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Leading Zeroes"
-msgstr "Führende Nullen"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"negativenumbersred\n"
-"label\n"
-"string.text"
-msgid "_Negative numbers in red"
-msgstr "_Negative Zahlen in rot"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"negativenumbersred\n"
-"tooltip_text\n"
-"string.text"
-msgid "Changes the font color of negative numbers to red."
-msgstr "Stellt negative Zahlen rot dar."
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"thousandseparator\n"
-"label\n"
-"string.text"
-msgid "_Thousands separator"
-msgstr "_Tausendertrennzeichen"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"thousandseparator\n"
-"tooltip_text\n"
-"string.text"
-msgid "Inserts a separator between thousands."
-msgstr "Fügt einen Trenner zwischen Tausend ein."
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"engineeringnotation\n"
-"label\n"
-"string.text"
-msgid "_Engineering notation"
-msgstr "T_echnische Schreibweise"
-
-#: sidebarnumberformat.ui
-msgctxt ""
-"sidebarnumberformat.ui\n"
-"engineeringnotation\n"
-"tooltip_text\n"
-"string.text"
-msgid "Ensures that exponent is a multiple of 3."
-msgstr "Stellt sicher, dass der Exponent ein Vielfaches von 3 ist."
-
-#: simplerefdialog.ui
-msgctxt ""
-"simplerefdialog.ui\n"
-"SimpleRefDialog\n"
-"title\n"
-"string.text"
-msgid "Set range"
-msgstr "Bereich festlegen"
-
-#: simplerefdialog.ui
-msgctxt ""
-"simplerefdialog.ui\n"
-"area\n"
-"label\n"
-"string.text"
-msgid "Area:"
-msgstr "Bereich:"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"SolverDialog\n"
-"title\n"
-"string.text"
-msgid "Solver"
-msgstr "Solver"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"options\n"
-"label\n"
-"string.text"
-msgid "O_ptions..."
-msgstr "O_ptionen..."
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"solve\n"
-"label\n"
-"string.text"
-msgid "_Solve"
-msgstr "Lö_sen"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"targetlabel\n"
-"label\n"
-"string.text"
-msgid "_Target cell"
-msgstr "_Zielzelle"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"result\n"
-"label\n"
-"string.text"
-msgid "Optimize result to"
-msgstr "Zielwert"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"changelabel\n"
-"label\n"
-"string.text"
-msgid "_By changing cells"
-msgstr "Veränder_bare Zellen"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"min\n"
-"label\n"
-"string.text"
-msgid "Minim_um"
-msgstr "Minim_um"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"max\n"
-"label\n"
-"string.text"
-msgid "_Maximum"
-msgstr "_Maximum"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"value\n"
-"label\n"
-"string.text"
-msgid "_Value of"
-msgstr "_Wert von"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"cellreflabel\n"
-"label\n"
-"string.text"
-msgid "_Cell reference"
-msgstr "Zellbezu_g"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"oplabel\n"
-"label\n"
-"string.text"
-msgid "_Operator"
-msgstr "_Operator"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"constraintlabel\n"
-"label\n"
-"string.text"
-msgid "V_alue"
-msgstr "_Wert"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"ref1edit-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Cell reference"
-msgstr "Zellbezug"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"ref2edit-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Cell reference"
-msgstr "Zellbezug"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"ref3edit-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Cell reference"
-msgstr "Zellbezug"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"ref4edit-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Cell reference"
-msgstr "Zellbezug"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op1list\n"
-"0\n"
-"stringlist.text"
-msgid "<="
-msgstr "<="
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op1list\n"
-"1\n"
-"stringlist.text"
-msgid "="
-msgstr "="
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op1list\n"
-"2\n"
-"stringlist.text"
-msgid "=>"
-msgstr "=>"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op1list\n"
-"3\n"
-"stringlist.text"
-msgid "Integer"
-msgstr "Ganzzahl"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op1list\n"
-"4\n"
-"stringlist.text"
-msgid "Binary"
-msgstr "Binär"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op1list-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Operator"
-msgstr "Operator"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op2list\n"
-"0\n"
-"stringlist.text"
-msgid "<="
-msgstr "<="
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op2list\n"
-"1\n"
-"stringlist.text"
-msgid "="
-msgstr "="
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op2list\n"
-"2\n"
-"stringlist.text"
-msgid "=>"
-msgstr "=>"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op2list\n"
-"3\n"
-"stringlist.text"
-msgid "Integer"
-msgstr "Ganzzahl"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op2list\n"
-"4\n"
-"stringlist.text"
-msgid "Binary"
-msgstr "Binär"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op2list-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Operator"
-msgstr "Operator"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op3list\n"
-"0\n"
-"stringlist.text"
-msgid "<="
-msgstr "<="
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op3list\n"
-"1\n"
-"stringlist.text"
-msgid "="
-msgstr "="
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op3list\n"
-"2\n"
-"stringlist.text"
-msgid "=>"
-msgstr "=>"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op3list\n"
-"3\n"
-"stringlist.text"
-msgid "Integer"
-msgstr "Ganzzahl"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op3list\n"
-"4\n"
-"stringlist.text"
-msgid "Binary"
-msgstr "Binär"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op3list-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Operator"
-msgstr "Operator"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op4list\n"
-"0\n"
-"stringlist.text"
-msgid "<="
-msgstr "<="
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op4list\n"
-"1\n"
-"stringlist.text"
-msgid "="
-msgstr "="
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op4list\n"
-"2\n"
-"stringlist.text"
-msgid "=>"
-msgstr "=>"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op4list\n"
-"3\n"
-"stringlist.text"
-msgid "Integer"
-msgstr "Ganzzahl"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op4list\n"
-"4\n"
-"stringlist.text"
-msgid "Binary"
-msgstr "Binär"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"op4list-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Operator"
-msgstr "Operator"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"val1edit-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Value"
-msgstr "Wert"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"val2edit-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Value"
-msgstr "Wert"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"val3edit-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Value"
-msgstr "Wert"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"val4edit-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Value"
-msgstr "Wert"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"del2\n"
-"tooltip_text\n"
-"string.text"
-msgid "Remove"
-msgstr "Entfernen"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"del1\n"
-"tooltip_text\n"
-"string.text"
-msgid "Remove"
-msgstr "Entfernen"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"del3\n"
-"tooltip_text\n"
-"string.text"
-msgid "Remove"
-msgstr "Entfernen"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"del4\n"
-"tooltip_text\n"
-"string.text"
-msgid "Remove"
-msgstr "Entfernen"
-
-#: solverdlg.ui
-msgctxt ""
-"solverdlg.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Limiting Conditions"
-msgstr "Nebenbedingungen"
-
-#: solveroptionsdialog.ui
-msgctxt ""
-"solveroptionsdialog.ui\n"
-"SolverOptionsDialog\n"
-"title\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: solveroptionsdialog.ui
-msgctxt ""
-"solveroptionsdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Solver engine:"
-msgstr "Solver-Maschine:"
-
-#: solveroptionsdialog.ui
-msgctxt ""
-"solveroptionsdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Settings:"
-msgstr "Einstellungen:"
-
-#: solveroptionsdialog.ui
-msgctxt ""
-"solveroptionsdialog.ui\n"
-"edit\n"
-"label\n"
-"string.text"
-msgid "Edit..."
-msgstr "Bearbeiten..."
-
-#: solverprogressdialog.ui
-msgctxt ""
-"solverprogressdialog.ui\n"
-"SolverProgressDialog\n"
-"title\n"
-"string.text"
-msgid "Solving..."
-msgstr "Löse..."
-
-#: solverprogressdialog.ui
-msgctxt ""
-"solverprogressdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Solving in progress..."
-msgstr "Optimierung läuft..."
-
-#: solverprogressdialog.ui
-msgctxt ""
-"solverprogressdialog.ui\n"
-"progress\n"
-"label\n"
-"string.text"
-msgid "(time limit # seconds)"
-msgstr "(Zeitlimit # Sekunden)"
-
-#: solversuccessdialog.ui
-msgctxt ""
-"solversuccessdialog.ui\n"
-"SolverSuccessDialog\n"
-"title\n"
-"string.text"
-msgid "Solving Result"
-msgstr "Ergebnis der Optimierung"
-
-#: solversuccessdialog.ui
-msgctxt ""
-"solversuccessdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Do you want to keep the result or do you want to restore previous values?"
-msgstr "Möchten Sie das Ergebnis übernehmen oder die Ausgangswerte wiederherstellen?"
-
-#: solversuccessdialog.ui
-msgctxt ""
-"solversuccessdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Solving successfully finished."
-msgstr "Optimierung erfolgreich abgeschlossen."
-
-#: solversuccessdialog.ui
-msgctxt ""
-"solversuccessdialog.ui\n"
-"result\n"
-"label\n"
-"string.text"
-msgid "Result:"
-msgstr "Ergebnis:"
-
-#: solversuccessdialog.ui
-msgctxt ""
-"solversuccessdialog.ui\n"
-"ok\n"
-"label\n"
-"string.text"
-msgid "Keep Result"
-msgstr "Übernehmen"
-
-#: solversuccessdialog.ui
-msgctxt ""
-"solversuccessdialog.ui\n"
-"cancel\n"
-"label\n"
-"string.text"
-msgid "Restore Previous"
-msgstr "Wiederherstellen"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"SortDialog\n"
-"title\n"
-"string.text"
-msgid "Sort"
-msgstr "Sortierung"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"criteria\n"
-"label\n"
-"string.text"
-msgid "Sort Criteria"
-msgstr "Sortierkriterien"
-
-#: sortdialog.ui
-msgctxt ""
-"sortdialog.ui\n"
-"options\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: sortkey.ui
-msgctxt ""
-"sortkey.ui\n"
-"up\n"
-"label\n"
-"string.text"
-msgid "_Ascending"
-msgstr "_Aufsteigend"
-
-#: sortkey.ui
-msgctxt ""
-"sortkey.ui\n"
-"down\n"
-"label\n"
-"string.text"
-msgid "_Descending"
-msgstr "_Absteigend"
-
-#: sortkey.ui
-msgctxt ""
-"sortkey.ui\n"
-"sortft\n"
-"label\n"
-"string.text"
-msgid "Sort Key "
-msgstr "Sortierschlüssel "
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"case\n"
-"label\n"
-"string.text"
-msgid "Case _sensitive"
-msgstr "Groß- und Kleinschrei_bung"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"header\n"
-"label\n"
-"string.text"
-msgid "Range contains..."
-msgstr "Bereich enthält..."
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"formats\n"
-"label\n"
-"string.text"
-msgid "Include formats"
-msgstr "Formate einschließen"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"naturalsort\n"
-"label\n"
-"string.text"
-msgid "Enable natural sort"
-msgstr "Natürliche Sortierung aktivieren"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"includenotes\n"
-"label\n"
-"string.text"
-msgid "Include comments-only boundary column(s)"
-msgstr "Kommentare einschließen - nur benachbarte Spalte(n)"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"copyresult\n"
-"label\n"
-"string.text"
-msgid "Copy sort results to:"
-msgstr "Sortierergebnis ausgeben nach:"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"outarealb-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Copy sort results to:"
-msgstr "Sortierergebnis ausgeben nach:"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"outareaed-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Copy sort results to:"
-msgstr "Sortierergebnis ausgeben nach:"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"sortuser\n"
-"label\n"
-"string.text"
-msgid "Custom sort order"
-msgstr "Benutzerdefinierte Sortierreihenfolge"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"sortuserlb-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Custom sort order"
-msgstr "Benutzerdefinierte Sortierreihenfolge"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Language"
-msgstr "Sprache"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"algorithmft\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Sort Options"
-msgstr "Sortieroptionen"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"topdown\n"
-"label\n"
-"string.text"
-msgid "_Top to bottom (sort rows)"
-msgstr "Von oben nach _unten (Zeilen sortieren)"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"leftright\n"
-"label\n"
-"string.text"
-msgid "L_eft to right (sort columns)"
-msgstr "Von _links nach rechts (Spalten sortieren)"
-
-#: sortoptionspage.ui
-msgctxt ""
-"sortoptionspage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Direction"
-msgstr "Richtung"
-
-#: sortwarning.ui
-msgctxt ""
-"sortwarning.ui\n"
-"SortWarning\n"
-"title\n"
-"string.text"
-msgid "Sort Range"
-msgstr "Sortierbereich"
-
-#: sortwarning.ui
-msgctxt ""
-"sortwarning.ui\n"
-"sorttext\n"
-"label\n"
-"string.text"
-msgid "The cells next to the current selection also contain data. Do you want to extend the sort range to %1, or sort the currently selected range, %2?"
-msgstr "Die benachbarten Zellen der Auswahl enthalten ebenfalls Daten. Möchten Sie den Sortierbereich auf %1 erweitern oder nur den aktuell ausgewählten Bereich %2 sortieren?"
-
-#: sortwarning.ui
-msgctxt ""
-"sortwarning.ui\n"
-"extend\n"
-"label\n"
-"string.text"
-msgid "_Extend selection"
-msgstr "_Erweiterte Auswahl"
-
-#: sortwarning.ui
-msgctxt ""
-"sortwarning.ui\n"
-"current\n"
-"label\n"
-"string.text"
-msgid "Current selection"
-msgstr "Aktuelle Auswahl"
-
-#: sortwarning.ui
-msgctxt ""
-"sortwarning.ui\n"
-"sorttip\n"
-"label\n"
-"string.text"
-msgid "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted."
-msgstr "Tipp: Der Sortierbereich kann automatisch erkannt werden. Platzieren Sie den Cursor innerhalb einer Liste und führen Sie eine Sortierung durch. Der gesamte Bereich benachbarter nicht-leerer Zellen wird sortiert."
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"StandardFilterDialog\n"
-"title\n"
-"string.text"
-msgid "Standard Filter"
-msgstr "Standardfilter"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"connect1\n"
-"0\n"
-"stringlist.text"
-msgid "AND"
-msgstr "UND"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"connect1\n"
-"1\n"
-"stringlist.text"
-msgid "OR"
-msgstr "ODER"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"connect1-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Operator 1"
-msgstr "Operator 1"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"connect2\n"
-"0\n"
-"stringlist.text"
-msgid "AND"
-msgstr "UND"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"connect2\n"
-"1\n"
-"stringlist.text"
-msgid "OR"
-msgstr "ODER"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"connect2-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Operator 2"
-msgstr "Operator 2"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"connect3\n"
-"0\n"
-"stringlist.text"
-msgid "AND"
-msgstr "UND"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"connect3\n"
-"1\n"
-"stringlist.text"
-msgid "OR"
-msgstr "ODER"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"connect3-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Operator 3"
-msgstr "Operator 3"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"connect4\n"
-"0\n"
-"stringlist.text"
-msgid "AND"
-msgstr "UND"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"connect4\n"
-"1\n"
-"stringlist.text"
-msgid "OR"
-msgstr "ODER"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"connect4-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Operator 4"
-msgstr "Operator 4"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Operator"
-msgstr "Operator"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Field name"
-msgstr "Feldname"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Condition"
-msgstr "Bedingung"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Value"
-msgstr "Wert"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"field1-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Field Name 1"
-msgstr "Feldname 1"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"field2-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Field Name 2"
-msgstr "Feldname 2"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"field3-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Field Name 3"
-msgstr "Feldname 3"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"field4-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Field Name 4"
-msgstr "Feldname 4"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond1\n"
-"6\n"
-"stringlist.text"
-msgid "Largest"
-msgstr "Größte"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond1\n"
-"7\n"
-"stringlist.text"
-msgid "Smallest"
-msgstr "Kleinste"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond1\n"
-"8\n"
-"stringlist.text"
-msgid "Largest %"
-msgstr "Größte %"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond1\n"
-"9\n"
-"stringlist.text"
-msgid "Smallest %"
-msgstr "Kleinste %"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond1\n"
-"10\n"
-"stringlist.text"
-msgid "Contains"
-msgstr "Enthält"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond1\n"
-"11\n"
-"stringlist.text"
-msgid "Does not contain"
-msgstr "Enthält nicht"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond1\n"
-"12\n"
-"stringlist.text"
-msgid "Begins with"
-msgstr "Beginnt mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond1\n"
-"13\n"
-"stringlist.text"
-msgid "Does not begin with"
-msgstr "Beginnt nicht mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond1\n"
-"14\n"
-"stringlist.text"
-msgid "Ends with"
-msgstr "Endet mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond1\n"
-"15\n"
-"stringlist.text"
-msgid "Does not end with"
-msgstr "Endet nicht mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond1-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Condition 1"
-msgstr "Bedingung 1"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond2\n"
-"6\n"
-"stringlist.text"
-msgid "Largest"
-msgstr "Größte"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond2\n"
-"7\n"
-"stringlist.text"
-msgid "Smallest"
-msgstr "Kleinste"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond2\n"
-"8\n"
-"stringlist.text"
-msgid "Largest %"
-msgstr "Größte %"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond2\n"
-"9\n"
-"stringlist.text"
-msgid "Smallest %"
-msgstr "Kleinste %"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond2\n"
-"10\n"
-"stringlist.text"
-msgid "Contains"
-msgstr "Enthält"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond2\n"
-"11\n"
-"stringlist.text"
-msgid "Does not contain"
-msgstr "Enthält nicht"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond2\n"
-"12\n"
-"stringlist.text"
-msgid "Begins with"
-msgstr "Beginnt mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond2\n"
-"13\n"
-"stringlist.text"
-msgid "Does not begin with"
-msgstr "Beginnt nicht mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond2\n"
-"14\n"
-"stringlist.text"
-msgid "Ends with"
-msgstr "Endet mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond2\n"
-"15\n"
-"stringlist.text"
-msgid "Does not end with"
-msgstr "Endet nicht mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond2-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Condition 2"
-msgstr "Bedingung 2"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond3\n"
-"6\n"
-"stringlist.text"
-msgid "Largest"
-msgstr "Größte"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond3\n"
-"7\n"
-"stringlist.text"
-msgid "Smallest"
-msgstr "Kleinste"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond3\n"
-"8\n"
-"stringlist.text"
-msgid "Largest %"
-msgstr "Größte %"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond3\n"
-"9\n"
-"stringlist.text"
-msgid "Smallest %"
-msgstr "Kleinste %"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond3\n"
-"10\n"
-"stringlist.text"
-msgid "Contains"
-msgstr "Enthält"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond3\n"
-"11\n"
-"stringlist.text"
-msgid "Does not contain"
-msgstr "Enthält nicht"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond3\n"
-"12\n"
-"stringlist.text"
-msgid "Begins with"
-msgstr "Beginnt mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond3\n"
-"13\n"
-"stringlist.text"
-msgid "Does not begin with"
-msgstr "Beginnt nicht mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond3\n"
-"14\n"
-"stringlist.text"
-msgid "Ends with"
-msgstr "Endet mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond3\n"
-"15\n"
-"stringlist.text"
-msgid "Does not end with"
-msgstr "Endet nicht mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond3-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Condition 3"
-msgstr "Bedingung 3"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond4\n"
-"6\n"
-"stringlist.text"
-msgid "Largest"
-msgstr "Größte"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond4\n"
-"7\n"
-"stringlist.text"
-msgid "Smallest"
-msgstr "Kleinste"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond4\n"
-"8\n"
-"stringlist.text"
-msgid "Largest %"
-msgstr "Größte %"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond4\n"
-"9\n"
-"stringlist.text"
-msgid "Smallest %"
-msgstr "Kleinste %"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond4\n"
-"10\n"
-"stringlist.text"
-msgid "Contains"
-msgstr "Enthält"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond4\n"
-"11\n"
-"stringlist.text"
-msgid "Does not contain"
-msgstr "Enthält nicht"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond4\n"
-"12\n"
-"stringlist.text"
-msgid "Begins with"
-msgstr "Beginnt mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond4\n"
-"13\n"
-"stringlist.text"
-msgid "Does not begin with"
-msgstr "Beginnt nicht mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond4\n"
-"14\n"
-"stringlist.text"
-msgid "Ends with"
-msgstr "Endet mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond4\n"
-"15\n"
-"stringlist.text"
-msgid "Does not end with"
-msgstr "Endet nicht mit"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"cond4-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Condition 4"
-msgstr "Bedingung 4"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"val1-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Value 1"
-msgstr "Wert 1"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"val2-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Value 2"
-msgstr "Wert 2"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"val3-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Value 3"
-msgstr "Wert 3"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"val4-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Value 4"
-msgstr "Wert 4"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Filter Criteria"
-msgstr "Filterkriterien"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"case\n"
-"label\n"
-"string.text"
-msgid "_Case sensitive"
-msgstr "_Groß- und Kleinschreibung"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"header\n"
-"label\n"
-"string.text"
-msgid "Range c_ontains column labels"
-msgstr "Bereich enthält _Spaltenbeschriftungen"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"regexp\n"
-"label\n"
-"string.text"
-msgid "Regular _expressions"
-msgstr "_Reguläre Ausdrücke"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"unique\n"
-"label\n"
-"string.text"
-msgid "_No duplications"
-msgstr "Keine _Duplikate"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"copyresult\n"
-"label\n"
-"string.text"
-msgid "Co_py results to:"
-msgstr "_Kopiere Ergebnisse nach:"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"destpers\n"
-"label\n"
-"string.text"
-msgid "_Keep filter criteria"
-msgstr "Filter_kriterien beibehalten"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"lbcopyarea-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Copy results to"
-msgstr "Ergebnisse ausgeben nach"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"edcopyarea-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Copy results to"
-msgstr "Ergebnisse ausgeben nach"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"dbarealabel\n"
-"label\n"
-"string.text"
-msgid "Data range:"
-msgstr "Datenbereich:"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"dbarea\n"
-"label\n"
-"string.text"
-msgid "dummy"
-msgstr "Platzhalter"
-
-#: standardfilterdialog.ui
-msgctxt ""
-"standardfilterdialog.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Op_tions"
-msgstr "_Optionen"
-
-#: statisticsinfopage.ui
-msgctxt ""
-"statisticsinfopage.ui\n"
-"label6\n"
-"label\n"
-"string.text"
-msgid "Pages:"
-msgstr "Seiten:"
-
-#: statisticsinfopage.ui
-msgctxt ""
-"statisticsinfopage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Cells:"
-msgstr "Zellen:"
-
-#: statisticsinfopage.ui
-msgctxt ""
-"statisticsinfopage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Sheets:"
-msgstr "Tabellen:"
-
-#: statisticsinfopage.ui
-msgctxt ""
-"statisticsinfopage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Formula groups:"
-msgstr "Formelgruppen:"
-
-#: statisticsinfopage.ui
-msgctxt ""
-"statisticsinfopage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Document: "
-msgstr "Dokument: "
-
-#: subtotaldialog.ui
-msgctxt ""
-"subtotaldialog.ui\n"
-"SubTotalDialog\n"
-"title\n"
-"string.text"
-msgid "Subtotals"
-msgstr "Teilergebnisse"
-
-#: subtotaldialog.ui
-msgctxt ""
-"subtotaldialog.ui\n"
-"1stgroup\n"
-"label\n"
-"string.text"
-msgid "1st Group"
-msgstr "1. Gruppe"
-
-#: subtotaldialog.ui
-msgctxt ""
-"subtotaldialog.ui\n"
-"2ndgroup\n"
-"label\n"
-"string.text"
-msgid "2nd Group"
-msgstr "2. Gruppe"
-
-#: subtotaldialog.ui
-msgctxt ""
-"subtotaldialog.ui\n"
-"3rdgroup\n"
-"label\n"
-"string.text"
-msgid "3rd Group"
-msgstr "3. Gruppe"
-
-#: subtotaldialog.ui
-msgctxt ""
-"subtotaldialog.ui\n"
-"options\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Group by:"
-msgstr "Gruppieren nach:"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Calculate subtotals for:"
-msgstr "Teilergebnisse berechnen für:"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Use function:"
-msgstr "Berechnungsvorschrift:"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"liststore1\n"
-"0\n"
-"stringlist.text"
-msgid "Sum"
-msgstr "Summe"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"liststore1\n"
-"1\n"
-"stringlist.text"
-msgid "Count"
-msgstr "Anzahl"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"liststore1\n"
-"2\n"
-"stringlist.text"
-msgid "Average"
-msgstr "Bereich"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"liststore1\n"
-"3\n"
-"stringlist.text"
-msgid "Max"
-msgstr "Max"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"liststore1\n"
-"4\n"
-"stringlist.text"
-msgid "Min"
-msgstr "Min"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"liststore1\n"
-"5\n"
-"stringlist.text"
-msgid "Product"
-msgstr "Produkt"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"liststore1\n"
-"6\n"
-"stringlist.text"
-msgid "Count (numbers only)"
-msgstr "Anzahl (nur Zahlen)"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"liststore1\n"
-"7\n"
-"stringlist.text"
-msgid "StDev (Sample)"
-msgstr "StAbw (Stichprobe)"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"liststore1\n"
-"8\n"
-"stringlist.text"
-msgid "StDevP (Population)"
-msgstr "StAbwN (Grundgesamtheit)"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"liststore1\n"
-"9\n"
-"stringlist.text"
-msgid "Var (Sample)"
-msgstr "Varianz (Stichprobe)"
-
-#: subtotalgrppage.ui
-msgctxt ""
-"subtotalgrppage.ui\n"
-"liststore1\n"
-"10\n"
-"stringlist.text"
-msgid "VarP (Population)"
-msgstr "Varianzen (Grundgesamtheit)"
-
-#: subtotaloptionspage.ui
-msgctxt ""
-"subtotaloptionspage.ui\n"
-"pagebreak\n"
-"label\n"
-"string.text"
-msgid "_Page break between groups"
-msgstr "Neue Seite bei Gru_ppenwechsel"
-
-#: subtotaloptionspage.ui
-msgctxt ""
-"subtotaloptionspage.ui\n"
-"case\n"
-"label\n"
-"string.text"
-msgid "_Case sensitive"
-msgstr "_Groß- und Kleinschreibung"
-
-#: subtotaloptionspage.ui
-msgctxt ""
-"subtotaloptionspage.ui\n"
-"sort\n"
-"label\n"
-"string.text"
-msgid "Pre-_sort area according to groups"
-msgstr "Bereich vorher nach Gruppen _sortieren"
-
-#: subtotaloptionspage.ui
-msgctxt ""
-"subtotaloptionspage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Groups"
-msgstr "Gruppen"
-
-#: subtotaloptionspage.ui
-msgctxt ""
-"subtotaloptionspage.ui\n"
-"ascending\n"
-"label\n"
-"string.text"
-msgid "_Ascending"
-msgstr "_Aufsteigend"
-
-#: subtotaloptionspage.ui
-msgctxt ""
-"subtotaloptionspage.ui\n"
-"descending\n"
-"label\n"
-"string.text"
-msgid "D_escending"
-msgstr "Abs_teigend"
-
-#: subtotaloptionspage.ui
-msgctxt ""
-"subtotaloptionspage.ui\n"
-"formats\n"
-"label\n"
-"string.text"
-msgid "I_nclude formats"
-msgstr "_Formate einschließen"
-
-#: subtotaloptionspage.ui
-msgctxt ""
-"subtotaloptionspage.ui\n"
-"btnuserdef\n"
-"label\n"
-"string.text"
-msgid "C_ustom sort order"
-msgstr "_Benutzerdefinierte Sortierreihenfolge"
-
-#: subtotaloptionspage.ui
-msgctxt ""
-"subtotaloptionspage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Sort"
-msgstr "Sortierung"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"TextImportCsvDialog\n"
-"title\n"
-"string.text"
-msgid "Text Import"
-msgstr "Textimport"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"textcharset\n"
-"label\n"
-"string.text"
-msgid "Ch_aracter set:"
-msgstr "Z_eichensatz:"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"textlanguage\n"
-"label\n"
-"string.text"
-msgid "_Language:"
-msgstr "_Sprache:"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"textfromrow\n"
-"label\n"
-"string.text"
-msgid "From ro_w:"
-msgstr "Ab _Zeile:"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Import"
-msgstr "Importieren"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"tofixedwidth\n"
-"label\n"
-"string.text"
-msgid "_Fixed width"
-msgstr "_Feste Breite"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"toseparatedby\n"
-"label\n"
-"string.text"
-msgid "_Separated by"
-msgstr "_Getrennt"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"tab\n"
-"label\n"
-"string.text"
-msgid "_Tab"
-msgstr "_Tabulator"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"mergedelimiters\n"
-"label\n"
-"string.text"
-msgid "Merge _delimiters"
-msgstr "Fel_dtrenner zusammenfassen"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"comma\n"
-"label\n"
-"string.text"
-msgid "_Comma"
-msgstr "_Komma"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"semicolon\n"
-"label\n"
-"string.text"
-msgid "S_emicolon"
-msgstr "_Semikolon"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"space\n"
-"label\n"
-"string.text"
-msgid "S_pace"
-msgstr "_Leerzeichen"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"other\n"
-"label\n"
-"string.text"
-msgid "Othe_r"
-msgstr "_Andere"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"inputother-atkobject\n"
-"AtkObject::accessible-name\n"
-"string.text"
-msgid "Other"
-msgstr "Andere"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"texttextdelimiter\n"
-"label\n"
-"string.text"
-msgid "Te_xt delimiter:"
-msgstr "Te_xttrenner:"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"separatoroptions\n"
-"label\n"
-"string.text"
-msgid "Separator Options"
-msgstr "Trennoptionen"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"quotedfieldastext\n"
-"label\n"
-"string.text"
-msgid "_Quoted field as text"
-msgstr "Werte in H_ochkomma als Text"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"detectspecialnumbers\n"
-"label\n"
-"string.text"
-msgid "Detect special _numbers"
-msgstr "Erweiterte Zahlenerkenn_ung"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Other Options"
-msgstr "Weitere Optionen"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"textcolumntype\n"
-"label\n"
-"string.text"
-msgid "Column t_ype:"
-msgstr "Spaltent_yp:"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"textalttitle\n"
-"label\n"
-"string.text"
-msgid "Text to Columns"
-msgstr "Text in Spalten"
-
-#: textimportcsv.ui
-msgctxt ""
-"textimportcsv.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Fields"
-msgstr "Feldbefehle"
-
-#: textimportoptions.ui
-msgctxt ""
-"textimportoptions.ui\n"
-"TextImportOptionsDialog\n"
-"title\n"
-"string.text"
-msgid "Import Options"
-msgstr "Importoptionen"
-
-#: textimportoptions.ui
-msgctxt ""
-"textimportoptions.ui\n"
-"custom\n"
-"label\n"
-"string.text"
-msgid "Custom:"
-msgstr "Benutzerdefiniert:"
-
-#: textimportoptions.ui
-msgctxt ""
-"textimportoptions.ui\n"
-"automatic\n"
-"label\n"
-"string.text"
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: textimportoptions.ui
-msgctxt ""
-"textimportoptions.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Select the Language to Use for Import"
-msgstr "Beim Import zu verwendende Sprache auswählen"
-
-#: textimportoptions.ui
-msgctxt ""
-"textimportoptions.ui\n"
-"convertdata\n"
-"label\n"
-"string.text"
-msgid "Detect special numbers (such as dates)"
-msgstr "Erkennt weitere Zahlen (wie beispielsweise Datumswerte)"
-
-#: textimportoptions.ui
-msgctxt ""
-"textimportoptions.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Options"
-msgstr "Optionen"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"formula\n"
-"label\n"
-"string.text"
-msgid "_Formulas"
-msgstr "_Formeln"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"nil\n"
-"label\n"
-"string.text"
-msgid "Zero val_ues"
-msgstr "Null_werte"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"annot\n"
-"label\n"
-"string.text"
-msgid "_Comment indicator"
-msgstr "Ko_mmentarmarkierung"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"value\n"
-"label\n"
-"string.text"
-msgid "Value h_ighlighting"
-msgstr "_Werthervorhebung"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"anchor\n"
-"label\n"
-"string.text"
-msgid "_Anchor"
-msgstr "A_nker"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"clipmark\n"
-"label\n"
-"string.text"
-msgid "Te_xt overflow"
-msgstr "Te_xtüberlauf"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"rangefind\n"
-"label\n"
-"string.text"
-msgid "_Show references in color"
-msgstr "_Bezüge farbig anzeigen"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Display"
-msgstr "Anzeige"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"rowcolheader\n"
-"label\n"
-"string.text"
-msgid "Colu_mn/row headers"
-msgstr "_Spalten-/Zeilenbeschriftung"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"hscroll\n"
-"label\n"
-"string.text"
-msgid "Hori_zontal scroll bar"
-msgstr "Horizontale Bildlauflei_ste"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"vscroll\n"
-"label\n"
-"string.text"
-msgid "_Vertical scroll bar"
-msgstr "_Vertikale Bildlaufleiste"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"tblreg\n"
-"label\n"
-"string.text"
-msgid "Sh_eet tabs"
-msgstr "_Tabellenregister"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"outline\n"
-"label\n"
-"string.text"
-msgid "_Outline symbols"
-msgstr "Glieder_ungssymbole"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Window"
-msgstr "Fenster"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"grid_label\n"
-"label\n"
-"string.text"
-msgid "_Grid lines:"
-msgstr "_Gitterlinien:"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"color_label\n"
-"label\n"
-"string.text"
-msgid "_Color:"
-msgstr "_Farbe:"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"grid\n"
-"0\n"
-"stringlist.text"
-msgid "Show"
-msgstr "Anzeigen"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"grid\n"
-"1\n"
-"stringlist.text"
-msgid "Show on colored cells"
-msgstr "Vor Zellhintergrund"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"grid\n"
-"2\n"
-"stringlist.text"
-msgid "Hide"
-msgstr "Verbergen"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"break\n"
-"label\n"
-"string.text"
-msgid "_Page breaks"
-msgstr "_Seitenumbrüche"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"guideline\n"
-"label\n"
-"string.text"
-msgid "Helplines _while moving"
-msgstr "H_ilfslinien beim Bewegen"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Visual Aids"
-msgstr "Optische Hilfen"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"objgrf_label\n"
-"label\n"
-"string.text"
-msgid "Ob_jects/Images:"
-msgstr "_Objekte/Bilder:"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"diagram_label\n"
-"label\n"
-"string.text"
-msgid "Cha_rts:"
-msgstr "_Diagramme:"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"draw_label\n"
-"label\n"
-"string.text"
-msgid "_Drawing objects:"
-msgstr "Zei_chnungsobjekte:"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"objgrf\n"
-"0\n"
-"stringlist.text"
-msgid "Show"
-msgstr "Anzeigen"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"objgrf\n"
-"1\n"
-"stringlist.text"
-msgid "Hide"
-msgstr "Verbergen"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"diagram\n"
-"0\n"
-"stringlist.text"
-msgid "Show"
-msgstr "Anzeigen"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"diagram\n"
-"1\n"
-"stringlist.text"
-msgid "Hide"
-msgstr "Verbergen"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"draw\n"
-"0\n"
-"stringlist.text"
-msgid "Show"
-msgstr "Anzeigen"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"draw\n"
-"1\n"
-"stringlist.text"
-msgid "Hide"
-msgstr "Ausblenden"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Objects"
-msgstr "Objekte"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"synczoom\n"
-"label\n"
-"string.text"
-msgid "S_ynchronize sheets"
-msgstr "Tabellen s_ynchronisieren"
-
-#: tpviewpage.ui
-msgctxt ""
-"tpviewpage.ui\n"
-"label3\n"
-"label\n"
-"string.text"
-msgid "Zoom"
-msgstr "Maßstab"
-
-#: ttestdialog.ui
-msgctxt ""
-"ttestdialog.ui\n"
-"variable1-range-label\n"
-"label\n"
-"string.text"
-msgid "Variable 1 range:"
-msgstr "Bereich der Variablen 1:"
-
-#: ttestdialog.ui
-msgctxt ""
-"ttestdialog.ui\n"
-"variable2-range-label\n"
-"label\n"
-"string.text"
-msgid "Variable 2 range:"
-msgstr "Bereich der Variablen 2:"
-
-#: ttestdialog.ui
-msgctxt ""
-"ttestdialog.ui\n"
-"output-range-label\n"
-"label\n"
-"string.text"
-msgid "Results to:"
-msgstr "Ergebnisse nach:"
-
-#: ttestdialog.ui
-msgctxt ""
-"ttestdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: ttestdialog.ui
-msgctxt ""
-"ttestdialog.ui\n"
-"groupedby-columns-radio\n"
-"label\n"
-"string.text"
-msgid "Columns"
-msgstr "Spalten"
-
-#: ttestdialog.ui
-msgctxt ""
-"ttestdialog.ui\n"
-"groupedby-rows-radio\n"
-"label\n"
-"string.text"
-msgid "Rows"
-msgstr "Zeilen"
-
-#: ttestdialog.ui
-msgctxt ""
-"ttestdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Grouped by"
-msgstr "Gruppiert nach"
-
-#: ungroupdialog.ui
-msgctxt ""
-"ungroupdialog.ui\n"
-"UngroupDialog\n"
-"title\n"
-"string.text"
-msgid "Ungroup"
-msgstr "Gruppierung aufheben"
-
-#: ungroupdialog.ui
-msgctxt ""
-"ungroupdialog.ui\n"
-"rows\n"
-"label\n"
-"string.text"
-msgid "_Rows"
-msgstr "Z_eilen"
-
-#: ungroupdialog.ui
-msgctxt ""
-"ungroupdialog.ui\n"
-"cols\n"
-"label\n"
-"string.text"
-msgid "_Columns"
-msgstr "S_palten"
-
-#: ungroupdialog.ui
-msgctxt ""
-"ungroupdialog.ui\n"
-"includeLabel\n"
-"label\n"
-"string.text"
-msgid "Deactivate for"
-msgstr "Aufheben für"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "_Allow:"
-msgstr "Z_ulassen:"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"valueft\n"
-"label\n"
-"string.text"
-msgid "_Data:"
-msgstr "_Daten:"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"minft\n"
-"label\n"
-"string.text"
-msgid "_Minimum:"
-msgstr "_Minimum:"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"maxft\n"
-"label\n"
-"string.text"
-msgid "Ma_ximum:"
-msgstr "Ma_ximum:"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"allowempty\n"
-"label\n"
-"string.text"
-msgid "Allow _empty cells"
-msgstr "_Leerzellen zulassen"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"showlist\n"
-"label\n"
-"string.text"
-msgid "Show selection _list"
-msgstr "_Auswahlliste anzeigen"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"sortascend\n"
-"label\n"
-"string.text"
-msgid "Sor_t entries ascending"
-msgstr "Ein_träge aufsteigend sortieren"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"hintft\n"
-"label\n"
-"string.text"
-msgid "A valid source can only consist of a contiguous selection of rows and columns, or a formula that results in an area or array."
-msgstr "Als Quelle ist nur eine zusammenhängende Auswahl von Spalten und Zeilen oder eine Formel, welche einen Bereich oder eine Matrix liefert, zulässig."
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore1\n"
-"0\n"
-"stringlist.text"
-msgid "All values"
-msgstr "Jeden Wert"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore1\n"
-"1\n"
-"stringlist.text"
-msgid "Whole Numbers"
-msgstr "Ganze Zahl"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore1\n"
-"2\n"
-"stringlist.text"
-msgid "Decimal"
-msgstr "Dezimal"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore1\n"
-"3\n"
-"stringlist.text"
-msgid "Date"
-msgstr "Datum"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore1\n"
-"4\n"
-"stringlist.text"
-msgid "Time"
-msgstr "Uhrzeit"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore1\n"
-"5\n"
-"stringlist.text"
-msgid "Cell range"
-msgstr "Zellbereich"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore1\n"
-"6\n"
-"stringlist.text"
-msgid "List"
-msgstr "Liste"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore1\n"
-"7\n"
-"stringlist.text"
-msgid "Text length"
-msgstr "Textlänge"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore2\n"
-"0\n"
-"stringlist.text"
-msgid "equal"
-msgstr "gleich"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore2\n"
-"1\n"
-"stringlist.text"
-msgid "less than"
-msgstr "kleiner als"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore2\n"
-"2\n"
-"stringlist.text"
-msgid "greater than"
-msgstr "größer als"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore2\n"
-"3\n"
-"stringlist.text"
-msgid "less than or equal"
-msgstr "kleiner oder gleich"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore2\n"
-"4\n"
-"stringlist.text"
-msgid "greater than or equal to"
-msgstr "größer oder gleich"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore2\n"
-"5\n"
-"stringlist.text"
-msgid "not equal"
-msgstr "ungleich"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore2\n"
-"6\n"
-"stringlist.text"
-msgid "valid range"
-msgstr "Gültiger Bereich"
-
-#: validationcriteriapage.ui
-msgctxt ""
-"validationcriteriapage.ui\n"
-"liststore2\n"
-"7\n"
-"stringlist.text"
-msgid "invalid range"
-msgstr "Ungültiger Bereich"
-
-#: validationdialog.ui
-msgctxt ""
-"validationdialog.ui\n"
-"ValidationDialog\n"
-"title\n"
-"string.text"
-msgid "Validity"
-msgstr "Gültigkeit"
-
-#: validationdialog.ui
-msgctxt ""
-"validationdialog.ui\n"
-"criteria\n"
-"label\n"
-"string.text"
-msgid "Criteria"
-msgstr "Kriterien"
-
-#: validationdialog.ui
-msgctxt ""
-"validationdialog.ui\n"
-"inputhelp\n"
-"label\n"
-"string.text"
-msgid "Input Help"
-msgstr "Eingabehilfe"
-
-#: validationdialog.ui
-msgctxt ""
-"validationdialog.ui\n"
-"erroralert\n"
-"label\n"
-"string.text"
-msgid "Error Alert"
-msgstr "Fehlermeldung"
-
-#: validationhelptabpage.ui
-msgctxt ""
-"validationhelptabpage.ui\n"
-"tsbhelp\n"
-"label\n"
-"string.text"
-msgid "_Show input help when cell is selected"
-msgstr "E_ingabehilfe anzeigen, wenn die Zelle ausgewählt ist"
-
-#: validationhelptabpage.ui
-msgctxt ""
-"validationhelptabpage.ui\n"
-"title_label\n"
-"label\n"
-"string.text"
-msgid "_Title:"
-msgstr "_Titel:"
-
-#: validationhelptabpage.ui
-msgctxt ""
-"validationhelptabpage.ui\n"
-"inputhelp_label\n"
-"label\n"
-"string.text"
-msgid "_Input help:"
-msgstr "_Eingabehilfe:"
-
-#: validationhelptabpage.ui
-msgctxt ""
-"validationhelptabpage.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Contents"
-msgstr "Inhalte"
-
-#: xmlsourcedialog.ui
-msgctxt ""
-"xmlsourcedialog.ui\n"
-"XMLSourceDialog\n"
-"title\n"
-"string.text"
-msgid "XML Source"
-msgstr "XML-Quelle"
-
-#: xmlsourcedialog.ui
-msgctxt ""
-"xmlsourcedialog.ui\n"
-"selectsource\n"
-"tooltip_text\n"
-"string.text"
-msgid "Browse to set source file."
-msgstr "Durchsuchen, um Quelldatei festzulegen."
-
-#: xmlsourcedialog.ui
-msgctxt ""
-"xmlsourcedialog.ui\n"
-"sourcefile\n"
-"label\n"
-"string.text"
-msgid "- not set -"
-msgstr "- nicht festgelegt -"
-
-#: xmlsourcedialog.ui
-msgctxt ""
-"xmlsourcedialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Source File"
-msgstr "Quelldatei"
-
-#: xmlsourcedialog.ui
-msgctxt ""
-"xmlsourcedialog.ui\n"
-"label5\n"
-"label\n"
-"string.text"
-msgid "Mapped cell:"
-msgstr "Zugewiesene Zellen:"
-
-#: xmlsourcedialog.ui
-msgctxt ""
-"xmlsourcedialog.ui\n"
-"label4\n"
-"label\n"
-"string.text"
-msgid "Map to Document"
-msgstr "Dokument zuweisen"
-
-#: xmlsourcedialog.ui
-msgctxt ""
-"xmlsourcedialog.ui\n"
-"ok\n"
-"label\n"
-"string.text"
-msgid "_Import"
-msgstr "_Importieren"
-
-#: ztestdialog.ui
-msgctxt ""
-"ztestdialog.ui\n"
-"variable1-range-label\n"
-"label\n"
-"string.text"
-msgid "Variable 1 range:"
-msgstr "Bereich der Variablen 1:"
-
-#: ztestdialog.ui
-msgctxt ""
-"ztestdialog.ui\n"
-"variable2-range-label\n"
-"label\n"
-"string.text"
-msgid "Variable 2 range:"
-msgstr "Bereich der Variablen 2:"
-
-#: ztestdialog.ui
-msgctxt ""
-"ztestdialog.ui\n"
-"output-range-label\n"
-"label\n"
-"string.text"
-msgid "Results to:"
-msgstr "Ergebnisse nach:"
-
-#: ztestdialog.ui
-msgctxt ""
-"ztestdialog.ui\n"
-"label1\n"
-"label\n"
-"string.text"
-msgid "Data"
-msgstr "Daten"
-
-#: ztestdialog.ui
-msgctxt ""
-"ztestdialog.ui\n"
-"groupedby-columns-radio\n"
-"label\n"
-"string.text"
-msgid "Columns"
-msgstr "Spalten"
-
-#: ztestdialog.ui
-msgctxt ""
-"ztestdialog.ui\n"
-"groupedby-rows-radio\n"
-"label\n"
-"string.text"
-msgid "Rows"
-msgstr "Zeilen"
-
-#: ztestdialog.ui
-msgctxt ""
-"ztestdialog.ui\n"
-"label2\n"
-"label\n"
-"string.text"
-msgid "Grouped by"
-msgstr "Gruppiert nach"
diff --git a/source/de/scaddins/messages.po b/source/de/scaddins/messages.po
new file mode 100644
index 00000000000..e60daa3d33b
--- /dev/null
+++ b/source/de/scaddins/messages.po
@@ -0,0 +1,5677 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-04-12 14:13+0200\n"
+"PO-Revision-Date: 2017-04-20 13:14+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1492694079.000000\n"
+
+#. i8Y7Z
+#: analysis.src
+msgctxt "ANALYSIS_Workday"
+msgid ""
+"Returns the serial number of the date before or after a specified number of "
+"workdays"
+msgstr ""
+"Liefert die fortlaufende Zahl des Datums, das vor oder nach einer bestimmten"
+" Anzahl von Arbeitstagen liegt."
+
+#. 752Ac
+#: analysis.src
+msgctxt "ANALYSIS_Workday"
+msgid "Start date"
+msgstr "Startdatum"
+
+#. VQvrc
+#: analysis.src
+msgctxt "ANALYSIS_Workday"
+msgid "The start date"
+msgstr "Das Startdatum"
+
+#. yAENf
+#: analysis.src
+msgctxt "ANALYSIS_Workday"
+msgid "Days"
+msgstr "Tage"
+
+#. EPJV2
+#: analysis.src
+msgctxt "ANALYSIS_Workday"
+msgid "The number of workdays before or after the start date"
+msgstr "Anzahl der Arbeitstage vor oder nach dem Startdatum."
+
+#. tDjjf
+#: analysis.src
+msgctxt "ANALYSIS_Workday"
+msgid "Holidays"
+msgstr "Freie Tage"
+
+#. BeUFA
+#: analysis.src
+msgctxt "ANALYSIS_Workday"
+msgid "List of date values of days off (vacation, holidays, etc.)"
+msgstr "Liste mit Datumswerten freier Tage (Urlaub, Feiertage, usw.)"
+
+#. BMD2C
+#: analysis.src
+msgctxt "ANALYSIS_Yearfrac"
+msgid ""
+"Returns the number of years (including fractional part) between two dates"
+msgstr ""
+"Gibt die Anzahl der Jahre (einschließlich Bruchteil) zwischen zwei Daten "
+"zurück"
+
+#. HhQYz
+#: analysis.src
+msgctxt "ANALYSIS_Yearfrac"
+msgid "Start date"
+msgstr "Startdatum"
+
+#. 7GV4n
+#: analysis.src
+msgctxt "ANALYSIS_Yearfrac"
+msgid "The start date"
+msgstr "Das Startdatum"
+
+#. mEZVs
+#: analysis.src
+msgctxt "ANALYSIS_Yearfrac"
+msgid "End date"
+msgstr "Enddatum"
+
+#. 3uuGg
+#: analysis.src
+msgctxt "ANALYSIS_Yearfrac"
+msgid "The end date"
+msgstr "Das Enddatum"
+
+#. rZ6jE
+#: analysis.src
+msgctxt "ANALYSIS_Yearfrac"
+msgid "Basis"
+msgstr "Basis"
+
+#. FYuwA
+#: analysis.src
+msgctxt "ANALYSIS_Yearfrac"
+msgid "Basis indicates the day-count convention to use in the calculation"
+msgstr ""
+"Die Basis gibt die Tageszählungs-Konvention an, die für die Berechnung "
+"verwendet wird."
+
+#. HzGC3
+#: analysis.src
+msgctxt "ANALYSIS_Edate"
+msgid ""
+"Returns the serial number of the date that is a specified number of months "
+"before or after the start date"
+msgstr ""
+"Liefert die fortlaufende Zahl des Datums, das eine bestimmte Anzahl Monate "
+"vor bzw. nach dem Startdatum liegt"
+
+#. 3ceHw
+#: analysis.src
+msgctxt "ANALYSIS_Edate"
+msgid "Start date"
+msgstr "Startdatum"
+
+#. 7e2EC
+#: analysis.src
+msgctxt "ANALYSIS_Edate"
+msgid "The start date"
+msgstr "Das Startdatum"
+
+#. uYXaX
+#: analysis.src
+msgctxt "ANALYSIS_Edate"
+msgid "Months"
+msgstr "Monate"
+
+#. J7uDY
+#: analysis.src
+msgctxt "ANALYSIS_Edate"
+msgid "Number of months before or after the start date"
+msgstr "Anzahl der Monate vor oder nach dem Startdatum"
+
+#. hxh8D
+#: analysis.src
+msgctxt "ANALYSIS_Weeknum"
+msgid ""
+"Returns the number of the calendar week in which the specified date occurs.\n"
+"This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead."
+msgstr ""
+"Gibt die Zahl der Kalenderwoche zurück, in der das angegebene Datum liegt.\n"
+"Diese Funktion existiert für die Kompatibilität zu älteren Microsoft Excel-Dokumenten, für neue Dokumente verwenden Sie stattdessen KALENDERWOCHE."
+
+#. FRcij
+#: analysis.src
+msgctxt "ANALYSIS_Weeknum"
+msgid "Date"
+msgstr "Datum"
+
+#. T6HMt
+#: analysis.src
+msgctxt "ANALYSIS_Weeknum"
+msgid "The date or date serial number"
+msgstr "Das Datum oder die Datumszahl"
+
+#. FNGFy
+#: analysis.src
+msgctxt "ANALYSIS_Weeknum"
+msgid "Return type"
+msgstr "Rückgabetyp"
+
+#. EFAsX
+#: analysis.src
+msgctxt "ANALYSIS_Weeknum"
+msgid "Indicates the first day of the week (1 = Sunday, 2 = Monday)"
+msgstr "Legt den ersten Tag der Woche fest (1 = Sonntag, 2 = Montag)"
+
+#. TALPy
+#: analysis.src
+msgctxt "ANALYSIS_Eomonth"
+msgid ""
+"Returns the serial number of the last day of the month that comes a certain "
+"number of months before or after the start date"
+msgstr ""
+"Liefert die fortlaufende Zahl des Datums, das den letzten Tag des Monats "
+"repräsentiert, der eine bestimmte Anzahl von Monaten vor oder nach dem "
+"Ausgangsdatum liegt"
+
+#. uk8iG
+#: analysis.src
+msgctxt "ANALYSIS_Eomonth"
+msgid "Start date"
+msgstr "Startdatum"
+
+#. FqaAT
+#: analysis.src
+msgctxt "ANALYSIS_Eomonth"
+msgid "The start date"
+msgstr "Das Startdatum"
+
+#. h3ArQ
+#: analysis.src
+msgctxt "ANALYSIS_Eomonth"
+msgid "Months"
+msgstr "Monate"
+
+#. 8H8JR
+#: analysis.src
+msgctxt "ANALYSIS_Eomonth"
+msgid "Number of months before or after the start date"
+msgstr "Anzahl der Monate vor oder nach dem Startdatum"
+
+#. EEad9
+#: analysis.src
+msgctxt "ANALYSIS_Networkdays"
+msgid ""
+"Returns the number of workdays between two dates.\n"
+"This function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead."
+msgstr ""
+"Gibt eine Anzahl an Werktagen zwischen zwei Daten zurück.\n"
+"Diese Funktion existiert für die Kompatibilität zu älteren Microsoft Excel-Dokumenten, für neue Dokumente verwenden Sie stattdessen NETTOARBEITSTAGE."
+
+#. t7PBi
+#: analysis.src
+msgctxt "ANALYSIS_Networkdays"
+msgid "Start date"
+msgstr "Startdatum"
+
+#. Czzcp
+#: analysis.src
+msgctxt "ANALYSIS_Networkdays"
+msgid "The start date"
+msgstr "Das Startdatum"
+
+#. GRYzo
+#: analysis.src
+msgctxt "ANALYSIS_Networkdays"
+msgid "End date"
+msgstr "Enddatum"
+
+#. cacTJ
+#: analysis.src
+msgctxt "ANALYSIS_Networkdays"
+msgid "The end date"
+msgstr "Das Enddatum"
+
+#. tCSgi
+#: analysis.src
+msgctxt "ANALYSIS_Networkdays"
+msgid "Holidays"
+msgstr "Freie Tage"
+
+#. DGoVo
+#: analysis.src
+msgctxt "ANALYSIS_Networkdays"
+msgid "List of date values representing days off (vacation, holidays, etc.)"
+msgstr ""
+"Liste mit Datumswerten, welche die freien Tage (Urlaub, Feiertage, usw.) "
+"darstellt"
+
+#. VSGPy
+#: analysis.src
+msgctxt "ANALYSIS_Iseven"
+msgid "Returns the value 'true' if the number is even"
+msgstr "Gibt den Wert 'WAHR' zurück, wenn die Zahl gerade ist."
+
+#. CrmYv
+#: analysis.src
+msgctxt "ANALYSIS_Iseven"
+msgid "Number"
+msgstr "Zahl"
+
+#. 5Leuj
+#: analysis.src
+msgctxt "ANALYSIS_Iseven"
+msgid "The number"
+msgstr "Die Zahl"
+
+#. itBzA
+#: analysis.src
+msgctxt "ANALYSIS_Isodd"
+msgid "Returns the value 'true' if the number is odd"
+msgstr "Gibt den Wert 'WAHR' zurück, wenn die Zahl ungerade ist."
+
+#. EjqfP
+#: analysis.src
+msgctxt "ANALYSIS_Isodd"
+msgid "Number"
+msgstr "Zahl"
+
+#. iA6wW
+#: analysis.src
+msgctxt "ANALYSIS_Isodd"
+msgid "The number"
+msgstr "Die Zahl"
+
+#. d3oiC
+#: analysis.src
+msgctxt "ANALYSIS_Multinomial"
+msgid "Returns the multinomial coefficient of a set of numbers"
+msgstr "Berechnet den Polynomialkoeffizienten einer Gruppe von Zahlen"
+
+#. vix4j
+#: analysis.src
+msgctxt "ANALYSIS_Multinomial"
+msgid "Number"
+msgstr "Zahl"
+
+#. GEFvU
+#: analysis.src
+msgctxt "ANALYSIS_Multinomial"
+msgid ""
+"Number or list of numbers for which you want the multinomial coefficient"
+msgstr ""
+"Zahl oder Liste von Zahlen, deren Polynomialkoeffizienten bestimmt werden "
+"soll"
+
+#. V9LAZ
+#: analysis.src
+msgctxt "ANALYSIS_Seriessum"
+msgid "Returns the sum of a power series"
+msgstr "Berechnet die Summe von Potenzen"
+
+#. Euc2V
+#: analysis.src
+msgctxt "ANALYSIS_Seriessum"
+msgid "X"
+msgstr "X"
+
+#. cGF2w
+#: analysis.src
+msgctxt "ANALYSIS_Seriessum"
+msgid "The independent variable of the power series"
+msgstr "Unabhängige Variable der Potenzreihe"
+
+#. XFTEq
+#: analysis.src
+msgctxt "ANALYSIS_Seriessum"
+msgid "N"
+msgstr "N"
+
+#. URANx
+#: analysis.src
+msgctxt "ANALYSIS_Seriessum"
+msgid "The initial power to which x is to be raised"
+msgstr "Anfangspotenz, in die X erhoben werden soll"
+
+#. y9EGF
+#: analysis.src
+msgctxt "ANALYSIS_Seriessum"
+msgid "M"
+msgstr "M"
+
+#. P549Z
+#: analysis.src
+msgctxt "ANALYSIS_Seriessum"
+msgid "The increment by which to increase n for each term in the series"
+msgstr "Erhöhung, um die N in jedem Glied der Reihe zunehmen soll"
+
+#. hF7aX
+#: analysis.src
+msgctxt "ANALYSIS_Seriessum"
+msgid "Coefficients"
+msgstr "Koeffizienten"
+
+#. QdPXG
+#: analysis.src
+msgctxt "ANALYSIS_Seriessum"
+msgid ""
+"Set of coefficients by which each successive power of the variable x is "
+"multiplied"
+msgstr ""
+"Gruppe von Koeffizienten, mit denen aufeinander folgende Potenzen der "
+"Variablen x multipliziert werden"
+
+#. tfE6w
+#: analysis.src
+msgctxt "ANALYSIS_Quotient"
+msgid "Returns the integer portion of a division"
+msgstr "Berechnet den ganzzahligen Anteil einer Division"
+
+#. GyGzc
+#: analysis.src
+msgctxt "ANALYSIS_Quotient"
+msgid "Numerator"
+msgstr "Zähler"
+
+#. WgEXb
+#: analysis.src
+msgctxt "ANALYSIS_Quotient"
+msgid "The dividend"
+msgstr "Der Dividend"
+
+#. voRgL
+#: analysis.src
+msgctxt "ANALYSIS_Quotient"
+msgid "Denominator"
+msgstr "Nenner"
+
+#. 2E6cp
+#: analysis.src
+msgctxt "ANALYSIS_Quotient"
+msgid "The divisor"
+msgstr "Der Divisor"
+
+#. vzdob
+#: analysis.src
+msgctxt "ANALYSIS_Mround"
+msgid "Returns a number rounded to a specified multiple"
+msgstr "Liefert eine auf das Vielfache gerundete Zahl"
+
+#. S68Uw
+#: analysis.src
+msgctxt "ANALYSIS_Mround"
+msgid "Number"
+msgstr "Zahl"
+
+#. sDrGj
+#: analysis.src
+msgctxt "ANALYSIS_Mround"
+msgid "The number to round off"
+msgstr "Die zu rundende Zahl"
+
+#. yQDbC
+#: analysis.src
+msgctxt "ANALYSIS_Mround"
+msgid "Multiple"
+msgstr "Mehrfach"
+
+#. ZEA49
+#: analysis.src
+msgctxt "ANALYSIS_Mround"
+msgid "The multiple to which you want to round number"
+msgstr "Der Wert, auf dessen Vielfaches gerundet werden soll"
+
+#. TAxqA
+#: analysis.src
+msgctxt "ANALYSIS_Sqrtpi"
+msgid "Returns the square root of a number which has been multiplied by pi"
+msgstr "Berechnet die Quadratwurzel aus einer mit Pi multiplizierten Zahl"
+
+#. Lv7nj
+#: analysis.src
+msgctxt "ANALYSIS_Sqrtpi"
+msgid "Number"
+msgstr "Zahl"
+
+#. CeYwQ
+#: analysis.src
+msgctxt "ANALYSIS_Sqrtpi"
+msgid "The number by which pi is multiplied"
+msgstr "Die Zahl, mit der Pi multipliziert wird"
+
+#. G3e4h
+#: analysis.src
+msgctxt "ANALYSIS_Randbetween"
+msgid "Returns a random integer between the numbers you specify"
+msgstr "Liefert eine zufällige ganze Zahl aus dem angegebenen Bereich"
+
+#. F9bnf
+#: analysis.src
+msgctxt "ANALYSIS_Randbetween"
+msgid "Bottom"
+msgstr "Kleinste Zahl"
+
+#. YnrHL
+#: analysis.src
+msgctxt "ANALYSIS_Randbetween"
+msgid "The smallest integer returned"
+msgstr "Die kleinste ganze Zahl, die zurück gegeben werden soll"
+
+#. WaokD
+#: analysis.src
+msgctxt "ANALYSIS_Randbetween"
+msgid "Top"
+msgstr "Größte Zahl"
+
+#. Bm3ys
+#: analysis.src
+msgctxt "ANALYSIS_Randbetween"
+msgid "The largest integer returned"
+msgstr "Die größte ganze Zahl, die zurück gegeben werden soll"
+
+#. 8CDCk
+#: analysis.src
+msgctxt "ANALYSIS_Gcd"
+msgid ""
+"Returns the greatest common divisor.\n"
+"This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead."
+msgstr ""
+"Gibt den größten gemeinsamen Teiler zurück.\n"
+"Diese Funktion existiert für die Kompatibilität zu älteren Microsoft Excel-Dokumenten, für neue Dokumente verwenden Sie stattdessen GGT."
+
+#. UX77R
+#: analysis.src
+msgctxt "ANALYSIS_Gcd"
+msgid "Number"
+msgstr "Zahl"
+
+#. dmCjF
+#: analysis.src
+msgctxt "ANALYSIS_Gcd"
+msgid "Number or list of numbers"
+msgstr "Zahl oder Liste von Zahlen"
+
+#. Tj85e
+#: analysis.src
+msgctxt "ANALYSIS_Lcm"
+msgid ""
+"Returns the least common multiple.\n"
+"This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead."
+msgstr ""
+"Gibt das kleinste gemeinsame Vielfache zurück.\n"
+"Diese Funktion existiert für die Kompatibilität zu älteren Microsoft Excel-Dokumenten, für neue Dokumente verwenden Sie stattdessen KGV."
+
+#. QYJfr
+#: analysis.src
+msgctxt "ANALYSIS_Lcm"
+msgid "Number"
+msgstr "Zahl"
+
+#. gyfZk
+#: analysis.src
+msgctxt "ANALYSIS_Lcm"
+msgid "Number or list of numbers"
+msgstr "Zahl oder Liste von Zahlen"
+
+#. Z2dmk
+#: analysis.src
+msgctxt "ANALYSIS_Besseli"
+msgid "Returns the modified Bessel function In(x)"
+msgstr "Berechnet die modifizierte Besselfunktion In(x)"
+
+#. wrVdj
+#: analysis.src
+msgctxt "ANALYSIS_Besseli"
+msgid "X"
+msgstr "X"
+
+#. UVbkA
+#: analysis.src
+msgctxt "ANALYSIS_Besseli"
+msgid "The value at which the function is to be evaluated"
+msgstr "Der Wert, für den die Funktion berechnet werden soll"
+
+#. DEaxX
+#: analysis.src
+msgctxt "ANALYSIS_Besseli"
+msgid "N"
+msgstr "N"
+
+#. gZBCC
+#: analysis.src
+msgctxt "ANALYSIS_Besseli"
+msgid "The order of the Bessel function"
+msgstr "Ordnung der Besselfunktion"
+
+#. xnyXW
+#: analysis.src
+msgctxt "ANALYSIS_Besselj"
+msgid "Returns the Bessel function Jn(x)"
+msgstr "Berechnet die Besselfunktion Jn(x)"
+
+#. 5T9Lm
+#: analysis.src
+msgctxt "ANALYSIS_Besselj"
+msgid "X"
+msgstr "X"
+
+#. FDK8B
+#: analysis.src
+msgctxt "ANALYSIS_Besselj"
+msgid "The value at which the function is to be evaluated"
+msgstr "Der Wert, für den die Funktion berechnet werden soll"
+
+#. oE4GZ
+#: analysis.src
+msgctxt "ANALYSIS_Besselj"
+msgid "N"
+msgstr "N"
+
+#. EcxmY
+#: analysis.src
+msgctxt "ANALYSIS_Besselj"
+msgid "The order of the Bessel function"
+msgstr "Ordnung der Besselfunktion"
+
+#. YfNtp
+#: analysis.src
+msgctxt "ANALYSIS_Besselk"
+msgid "Returns the Bessel function Kn(x)"
+msgstr "Berechnet die modifizierte Besselfunktion Kn(x)"
+
+#. DAgBk
+#: analysis.src
+msgctxt "ANALYSIS_Besselk"
+msgid "X"
+msgstr "X"
+
+#. J4GEV
+#: analysis.src
+msgctxt "ANALYSIS_Besselk"
+msgid "The value at which the function is to be evaluated"
+msgstr "Der Wert, für den die Funktion berechnet werden soll"
+
+#. UvXRY
+#: analysis.src
+msgctxt "ANALYSIS_Besselk"
+msgid "N"
+msgstr "N"
+
+#. 3gMD3
+#: analysis.src
+msgctxt "ANALYSIS_Besselk"
+msgid "The order of the Bessel function"
+msgstr "Ordnung der Besselfunktion"
+
+#. x97R8
+#: analysis.src
+msgctxt "ANALYSIS_Bessely"
+msgid "Returns the Bessel function Yn(x)"
+msgstr "Berechnet die Besselfunktion Yn(x)"
+
+#. foAUE
+#: analysis.src
+msgctxt "ANALYSIS_Bessely"
+msgid "X"
+msgstr "X"
+
+#. Hw5Dt
+#: analysis.src
+msgctxt "ANALYSIS_Bessely"
+msgid "The value at which the function is to be evaluated"
+msgstr "Der Wert, für den die Funktion berechnet werden soll"
+
+#. Nz3qK
+#: analysis.src
+msgctxt "ANALYSIS_Bessely"
+msgid "N"
+msgstr "N"
+
+#. E2iyg
+#: analysis.src
+msgctxt "ANALYSIS_Bessely"
+msgid "The order of the Bessel function"
+msgstr "Ordnung der Besselfunktion"
+
+#. MAteU
+#: analysis.src
+msgctxt "ANALYSIS_Bin2Oct"
+msgid "Converts a binary number to an octal number"
+msgstr "Wandelt eine Binärzahl in eine Oktalzahl um"
+
+#. bvibr
+#: analysis.src
+msgctxt "ANALYSIS_Bin2Oct"
+msgid "Number"
+msgstr "Zahl"
+
+#. 7VHBt
+#: analysis.src
+msgctxt "ANALYSIS_Bin2Oct"
+msgid "The binary number to be converted (as text)"
+msgstr "Die zu konvertierende Binärzahl (als Text)"
+
+#. aiZYA
+#: analysis.src
+msgctxt "ANALYSIS_Bin2Oct"
+msgid "Places"
+msgstr "Stellen"
+
+#. LiNBV
+#: analysis.src
+msgctxt "ANALYSIS_Bin2Oct"
+msgid "Number of places used"
+msgstr "Anzahl der verwendeten Stellen"
+
+#. tCfLU
+#: analysis.src
+msgctxt "ANALYSIS_Bin2Dec"
+msgid "Converts a binary number to a decimal number"
+msgstr "Wandelt eine Binärzahl in eine Dezimalzahl um"
+
+#. YFu9X
+#: analysis.src
+msgctxt "ANALYSIS_Bin2Dec"
+msgid "Number"
+msgstr "Zahl"
+
+#. zhTSU
+#: analysis.src
+msgctxt "ANALYSIS_Bin2Dec"
+msgid "The binary number to be converted (as text)"
+msgstr "Die zu konvertierende Binärzahl (als Text)"
+
+#. XcDzV
+#: analysis.src
+msgctxt "ANALYSIS_Bin2Hex"
+msgid "Converts a binary number to a hexadecimal number"
+msgstr "Wandelt eine Binärzahl in eine Hexadezimalzahl um."
+
+#. o38Dx
+#: analysis.src
+msgctxt "ANALYSIS_Bin2Hex"
+msgid "Number"
+msgstr "Zahl"
+
+#. 4hFHM
+#: analysis.src
+msgctxt "ANALYSIS_Bin2Hex"
+msgid "The binary number to be converted (as text)"
+msgstr "Die zu konvertierende Binärzahl (als Text)"
+
+#. nFANG
+#: analysis.src
+msgctxt "ANALYSIS_Bin2Hex"
+msgid "Places"
+msgstr "Stellen"
+
+#. 6udAp
+#: analysis.src
+msgctxt "ANALYSIS_Bin2Hex"
+msgid "Number of places used."
+msgstr "Anzahl der verwendeten Stellen"
+
+#. EtCmv
+#: analysis.src
+msgctxt "ANALYSIS_Oct2Bin"
+msgid "Converts an octal number to a binary number"
+msgstr "Wandelt eine Oktalzahl in eine Binärzahl um"
+
+#. 5S4TQ
+#: analysis.src
+msgctxt "ANALYSIS_Oct2Bin"
+msgid "Number"
+msgstr "Zahl"
+
+#. 5w4EQ
+#: analysis.src
+msgctxt "ANALYSIS_Oct2Bin"
+msgid "The octal number to be converted (as text)"
+msgstr "Die zu konvertierende Oktalzahl (als Text)"
+
+#. 6eEgp
+#: analysis.src
+msgctxt "ANALYSIS_Oct2Bin"
+msgid "Places"
+msgstr "Stellen"
+
+#. kCW4V
+#: analysis.src
+msgctxt "ANALYSIS_Oct2Bin"
+msgid "Number of places used"
+msgstr "Anzahl der verwendeten Stellen"
+
+#. R3opZ
+#: analysis.src
+msgctxt "ANALYSIS_Oct2Dec"
+msgid "Converts an octal number to a decimal number"
+msgstr "Wandelt eine Oktalzahl in eine Dezimalzahl um"
+
+#. 7LLcF
+#: analysis.src
+msgctxt "ANALYSIS_Oct2Dec"
+msgid "Number"
+msgstr "Zahl"
+
+#. zLrSk
+#: analysis.src
+msgctxt "ANALYSIS_Oct2Dec"
+msgid "The octal number to be converted (as text)"
+msgstr "Die zu konvertierende Oktalzahl (als Text)"
+
+#. QWNdb
+#: analysis.src
+msgctxt "ANALYSIS_Oct2Hex"
+msgid "Converts an octal number to a hexadecimal number"
+msgstr "Wandelt eine Oktalzahl in eine Hexadezimalzahl um"
+
+#. FEYjF
+#: analysis.src
+msgctxt "ANALYSIS_Oct2Hex"
+msgid "Number"
+msgstr "Zahl"
+
+#. 4x496
+#: analysis.src
+msgctxt "ANALYSIS_Oct2Hex"
+msgid "The octal number to be converted (as text)"
+msgstr "Die zu konvertierende Oktalzahl (als Text)"
+
+#. E2jxw
+#: analysis.src
+msgctxt "ANALYSIS_Oct2Hex"
+msgid "Places"
+msgstr "Stellen"
+
+#. hQBE9
+#: analysis.src
+msgctxt "ANALYSIS_Oct2Hex"
+msgid "Number of places used"
+msgstr "Anzahl der verwendeten Stellen."
+
+#. FfLh5
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Bin"
+msgid "Converts a decimal number to a binary number"
+msgstr "Wandelt eine Dezimalzahl in eine Binärzahl um"
+
+#. 8TwGb
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Bin"
+msgid "Number"
+msgstr "Zahl"
+
+#. P2TDB
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Bin"
+msgid "The decimal integer to be converted"
+msgstr "Die zu konvertierende ganze Dezimalzahl"
+
+#. 7fcK2
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Bin"
+msgid "Places"
+msgstr "Stellen"
+
+#. 28ABT
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Bin"
+msgid "Number of places used"
+msgstr "Anzahl der verwendeten Stellen."
+
+#. ShBEB
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Hex"
+msgid "Converts a decimal number to a hexadecimal number"
+msgstr "Wandelt eine Dezimalzahl in eine Hexadezimalzahl um"
+
+#. GDJ7U
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Hex"
+msgid "Number"
+msgstr "Zahl"
+
+#. 5n8FE
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Hex"
+msgid "The decimal integer to be converted"
+msgstr "Die zu konvertierende ganze Dezimalzahl"
+
+#. HzGAB
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Hex"
+msgid "Places"
+msgstr "Stellen"
+
+#. NCx7B
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Hex"
+msgid "Number of places used"
+msgstr "Anzahl der verwendeten Stellen."
+
+#. XN2PP
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Oct"
+msgid "Converts a decimal number into an octal number"
+msgstr "Wandelt eine Dezimalzahl in eine Oktalzahl um"
+
+#. BkhvW
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Oct"
+msgid "Number"
+msgstr "Zahl"
+
+#. mkJD7
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Oct"
+msgid "The decimal number"
+msgstr "Die Dezimalzahl"
+
+#. CxrmD
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Oct"
+msgid "Places"
+msgstr "Stellen"
+
+#. BLtWE
+#: analysis.src
+msgctxt "ANALYSIS_Dec2Oct"
+msgid "Number of places used"
+msgstr "Anzahl der verwendeten Stellen."
+
+#. EJqJe
+#: analysis.src
+msgctxt "ANALYSIS_Hex2Bin"
+msgid "Converts a hexadecimal number to a binary number"
+msgstr "Wandelt eine Hexadezimalzahl in eine Binärzahl um"
+
+#. r3SbQ
+#: analysis.src
+msgctxt "ANALYSIS_Hex2Bin"
+msgid "Number"
+msgstr "Zahl"
+
+#. bma9X
+#: analysis.src
+msgctxt "ANALYSIS_Hex2Bin"
+msgid "The hexadecimal number to be converted (as text)"
+msgstr "Die zu konvertierende Hexadezimalzahl (als Text)"
+
+#. sFqYp
+#: analysis.src
+msgctxt "ANALYSIS_Hex2Bin"
+msgid "Places"
+msgstr "Stellen"
+
+#. gtR6H
+#: analysis.src
+msgctxt "ANALYSIS_Hex2Bin"
+msgid "Number of places used"
+msgstr "Anzahl der verwendeten Stellen"
+
+#. evWFP
+#: analysis.src
+msgctxt "ANALYSIS_Hex2Dec"
+msgid "Converts a hexadecimal number to a decimal number"
+msgstr "Wandelt eine Hexadezimalzahl in eine Dezimalzahl um"
+
+#. trsUF
+#: analysis.src
+msgctxt "ANALYSIS_Hex2Dec"
+msgid "Number"
+msgstr "Zahl"
+
+#. foYtA
+#: analysis.src
+msgctxt "ANALYSIS_Hex2Dec"
+msgid "The hexadecimal number to be converted (as text)"
+msgstr "Die zu konvertierende Hexadezimalzahl (als Text)"
+
+#. ECeRP
+#: analysis.src
+msgctxt "ANALYSIS_Hex2Oct"
+msgid "Converts a hexadecimal number to an octal number"
+msgstr "Wandelt eine Hexadezimalzahl in eine Oktalzahl um"
+
+#. oBk4D
+#: analysis.src
+msgctxt "ANALYSIS_Hex2Oct"
+msgid "Number"
+msgstr "Zahl"
+
+#. BEXPZ
+#: analysis.src
+msgctxt "ANALYSIS_Hex2Oct"
+msgid "The hexadecimal number to be converted (as text)"
+msgstr "Die zu konvertierende Hexadezimalzahl (als Text)"
+
+#. nPXDu
+#: analysis.src
+msgctxt "ANALYSIS_Hex2Oct"
+msgid "Places"
+msgstr "Stellen"
+
+#. xZoiU
+#: analysis.src
+msgctxt "ANALYSIS_Hex2Oct"
+msgid "Number of places used"
+msgstr "Anzahl der verwendeten Stellen"
+
+#. 3du2b
+#: analysis.src
+msgctxt "ANALYSIS_Delta"
+msgid "Tests whether two values are equal"
+msgstr "Überprüft, ob zwei Werte gleich sind"
+
+#. EzTEV
+#: analysis.src
+msgctxt "ANALYSIS_Delta"
+msgid "Number 1"
+msgstr "1. Zahl"
+
+#. o2jAx
+#: analysis.src
+msgctxt "ANALYSIS_Delta"
+msgid "The first number"
+msgstr "Die erste Zahl"
+
+#. H7EGL
+#: analysis.src
+msgctxt "ANALYSIS_Delta"
+msgid "Number 2"
+msgstr "2. Zahl"
+
+#. 24Q6Q
+#: analysis.src
+msgctxt "ANALYSIS_Delta"
+msgid "The second number"
+msgstr "Die zweite Zahl"
+
+#. JgDaH
+#: analysis.src
+msgctxt "ANALYSIS_Erf"
+msgid "Returns the error function"
+msgstr "Liefert die Gauß'sche Fehlerfunktion"
+
+#. AqPn8
+#: analysis.src
+msgctxt "ANALYSIS_Erf"
+msgid "Lower limit"
+msgstr "Untergrenze"
+
+#. 7ZXpf
+#: analysis.src
+msgctxt "ANALYSIS_Erf"
+msgid "The lower limit for integration"
+msgstr "Untergrenze zur Integration"
+
+#. kSACS
+#: analysis.src
+msgctxt "ANALYSIS_Erf"
+msgid "Upper limit"
+msgstr "Obergrenze"
+
+#. kJDCG
+#: analysis.src
+msgctxt "ANALYSIS_Erf"
+msgid "The upper limit for integration"
+msgstr "Obergrenze zur Integration."
+
+#. Hm6dS
+#: analysis.src
+msgctxt "ANALYSIS_Erfc"
+msgid "Returns the complementary error function"
+msgstr "Gibt das Komplement zur Gauß'schen Fehlerfunktion zurück"
+
+#. MoEZ6
+#: analysis.src
+msgctxt "ANALYSIS_Erfc"
+msgid "Lower limit"
+msgstr "Untergrenze"
+
+#. anWFy
+#: analysis.src
+msgctxt "ANALYSIS_Erfc"
+msgid "The lower limit for integration"
+msgstr "Untergrenze zur Integration"
+
+#. kPBDD
+#: analysis.src
+msgctxt "ANALYSIS_Gestep"
+msgid "Tests whether a number is greater than a threshold value"
+msgstr "Überprüft, ob eine Zahl größer als ein Schwellenwert ist"
+
+#. CNrHg
+#: analysis.src
+msgctxt "ANALYSIS_Gestep"
+msgid "Number"
+msgstr "Zahl"
+
+#. TDJRQ
+#: analysis.src
+msgctxt "ANALYSIS_Gestep"
+msgid "The value to test against step"
+msgstr "An Schwellenwert zu überprüfender Wert"
+
+#. 5GLDB
+#: analysis.src
+msgctxt "ANALYSIS_Gestep"
+msgid "Step"
+msgstr "Schwellenwert"
+
+#. ckg2G
+#: analysis.src
+msgctxt "ANALYSIS_Gestep"
+msgid "The threshold value"
+msgstr "Der Schwellenwert"
+
+#. pe6EW
+#: analysis.src
+msgctxt "ANALYSIS_Factdouble"
+msgid "Returns the double factorial of Number"
+msgstr "Liefert die Fakultät zu Zahl mit der Schrittlänge 2"
+
+#. tSqpm
+#: analysis.src
+msgctxt "ANALYSIS_Factdouble"
+msgid "Number"
+msgstr "Zahl"
+
+#. djbUr
+#: analysis.src
+msgctxt "ANALYSIS_Factdouble"
+msgid "The number"
+msgstr "Die Zahl"
+
+#. 5GCGm
+#: analysis.src
+msgctxt "ANALYSIS_Imabs"
+msgid "Returns the absolute value (modulus) of a complex number"
+msgstr "Gibt den Betrag (Modulo) einer komplexen Zahl zurück"
+
+#. t7bWP
+#: analysis.src
+msgctxt "ANALYSIS_Imabs"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. 7FEET
+#: analysis.src
+msgctxt "ANALYSIS_Imabs"
+msgid "The complex number"
+msgstr "Die Komplexe Zahl"
+
+#. FoFmC
+#: analysis.src
+msgctxt "ANALYSIS_Imaginary"
+msgid "Returns the imaginary coefficient of a complex number"
+msgstr "Liefert den Imaginärteil einer komplexen Zahl"
+
+#. AvgqA
+#: analysis.src
+msgctxt "ANALYSIS_Imaginary"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. 3LSzF
+#: analysis.src
+msgctxt "ANALYSIS_Imaginary"
+msgid "The complex number"
+msgstr "Die komplexe Zahl"
+
+#. LwSGN
+#: analysis.src
+msgctxt "ANALYSIS_Impower"
+msgid "Returns a complex number raised to a real power"
+msgstr "Potenziert eine komplexe Zahl mit einer ganzen Zahl"
+
+#. vH6oX
+#: analysis.src
+msgctxt "ANALYSIS_Impower"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. wEvDA
+#: analysis.src
+msgctxt "ANALYSIS_Impower"
+msgid "The complex number"
+msgstr "Die komplexe Zahl"
+
+#. kbWwG
+#: analysis.src
+msgctxt "ANALYSIS_Impower"
+msgid "Number"
+msgstr "Zahl"
+
+#. DKopE
+#: analysis.src
+msgctxt "ANALYSIS_Impower"
+msgid "Power to which the complex number is raised"
+msgstr "Exponent, mit dem die komplexe Zahl potenziert wird"
+
+#. vUGR8
+#: analysis.src
+msgctxt "ANALYSIS_Imargument"
+msgid "Returns the argument theta, an angle expressed in radians"
+msgstr ""
+"Liefert den Winkel im Bogenmaß zur Darstellung der komplexen Zahl in "
+"trigonometrischer Schreibweise"
+
+#. 2EAYh
+#: analysis.src
+msgctxt "ANALYSIS_Imargument"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. CDHUJ
+#: analysis.src
+msgctxt "ANALYSIS_Imargument"
+msgid "A complex number"
+msgstr "Eine komplexe Zahl"
+
+#. fXVKF
+#: analysis.src
+msgctxt "ANALYSIS_Imcos"
+msgid "Returns the cosine of a complex number"
+msgstr "Liefert den Kosinus einer komplexen Zahl"
+
+#. CW6Qc
+#: analysis.src
+msgctxt "ANALYSIS_Imcos"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. BpCdA
+#: analysis.src
+msgctxt "ANALYSIS_Imcos"
+msgid "A complex number"
+msgstr "Eine komplexe Zahl"
+
+#. 2oYBg
+#: analysis.src
+msgctxt "ANALYSIS_Imdiv"
+msgid "Returns the quotient of two complex numbers"
+msgstr "Liefert den Quotient zweier komplexer Zahlen"
+
+#. zXFg7
+#: analysis.src
+msgctxt "ANALYSIS_Imdiv"
+msgid "Numerator"
+msgstr "Zähler"
+
+#. GwcS8
+#: analysis.src
+msgctxt "ANALYSIS_Imdiv"
+msgid "The dividend"
+msgstr "Der Dividend"
+
+#. C4vA8
+#: analysis.src
+msgctxt "ANALYSIS_Imdiv"
+msgid "Denominator"
+msgstr "Nenner"
+
+#. puYEd
+#: analysis.src
+msgctxt "ANALYSIS_Imdiv"
+msgid "The divisor"
+msgstr "Die Zahl, durch die geteilt werden soll"
+
+#. c8BXn
+#: analysis.src
+msgctxt "ANALYSIS_Imexp"
+msgid "Returns the algebraic form of the exponential of a complex number"
+msgstr ""
+"Liefert die algebraische Form einer in exponentieller Darstellung "
+"vorliegenden komplexen Zahl"
+
+#. BjMVL
+#: analysis.src
+msgctxt "ANALYSIS_Imexp"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. dXrMr
+#: analysis.src
+msgctxt "ANALYSIS_Imexp"
+msgid "The complex number"
+msgstr "Die komplexe Zahl"
+
+#. zpS4y
+#: analysis.src
+msgctxt "ANALYSIS_Imconjugate"
+msgid "Returns the complex conjugate of a complex number"
+msgstr "Liefert das konjugiert Komplexe zu einer komplexen Zahl"
+
+#. Rhfrg
+#: analysis.src
+msgctxt "ANALYSIS_Imconjugate"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. C33bu
+#: analysis.src
+msgctxt "ANALYSIS_Imconjugate"
+msgid "The complex number"
+msgstr "Die komplexe Zahl"
+
+#. 76HWX
+#: analysis.src
+msgctxt "ANALYSIS_Imln"
+msgid "Returns the natural logarithm of a complex number"
+msgstr "Liefert den natürlichen Logarithmus einer komplexen Zahl"
+
+#. v5omm
+#: analysis.src
+msgctxt "ANALYSIS_Imln"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. Fj3gK
+#: analysis.src
+msgctxt "ANALYSIS_Imln"
+msgid "The complex number"
+msgstr "Die komplexe Zahl"
+
+#. CCnei
+#: analysis.src
+msgctxt "ANALYSIS_Imlog10"
+msgid "Returns the base-10 logarithm of a complex number"
+msgstr "Liefert den Logarithmus zur Basis 10 einer komplexen Zahl"
+
+#. oRbBa
+#: analysis.src
+msgctxt "ANALYSIS_Imlog10"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. NxEuG
+#: analysis.src
+msgctxt "ANALYSIS_Imlog10"
+msgid "The complex number"
+msgstr "Die komplexe Zahl"
+
+#. y7ZvT
+#: analysis.src
+msgctxt "ANALYSIS_Imlog2"
+msgid "Returns the base-2 logarithm of a complex number"
+msgstr "Liefert den Logarithmus zur Basis 2 einer komplexen Zahl"
+
+#. JZEGR
+#: analysis.src
+msgctxt "ANALYSIS_Imlog2"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. GBNLB
+#: analysis.src
+msgctxt "ANALYSIS_Imlog2"
+msgid "The complex number"
+msgstr "Die komplexe Zahl"
+
+#. HtXJg
+#: analysis.src
+msgctxt "ANALYSIS_Improduct"
+msgid "Returns the product of several complex numbers"
+msgstr "Liefert das Produkt mehrerer komplexer Zahlen"
+
+#. S7WBE
+#: analysis.src
+msgctxt "ANALYSIS_Improduct"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. Mz6JE
+#: analysis.src
+msgctxt "ANALYSIS_Improduct"
+msgid "The first complex number"
+msgstr "Die erste komplexe Zahl"
+
+#. bCw5M
+#: analysis.src
+msgctxt "ANALYSIS_Improduct"
+msgid "Another complex number"
+msgstr "Weitere komplexe Zahl"
+
+#. k6ACv
+#: analysis.src
+msgctxt "ANALYSIS_Imreal"
+msgid "Returns the real coefficient of a complex number"
+msgstr "Liefert den Realteil einer komplexen Zahl"
+
+#. eSUVX
+#: analysis.src
+msgctxt "ANALYSIS_Imreal"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. EQfzC
+#: analysis.src
+msgctxt "ANALYSIS_Imreal"
+msgid "The complex number"
+msgstr "Die komplexe Zahl"
+
+#. PtH6G
+#: analysis.src
+msgctxt "ANALYSIS_Imsin"
+msgid "Returns the sine of a complex number"
+msgstr "Liefert den Sinus einer komplexen Zahl"
+
+#. vMezD
+#: analysis.src
+msgctxt "ANALYSIS_Imsin"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. tUQLg
+#: analysis.src
+msgctxt "ANALYSIS_Imsin"
+msgid "The complex number"
+msgstr "Die komplexe Zahl"
+
+#. KZGXx
+#: analysis.src
+msgctxt "ANALYSIS_Imsub"
+msgid "Returns the difference of two complex numbers"
+msgstr "Liefert die Differenz zweier komplexer Zahlen"
+
+#. EgNWw
+#: analysis.src
+msgctxt "ANALYSIS_Imsub"
+msgid "Complex number 1"
+msgstr "Komplexe Zahl 1"
+
+#. HabY5
+#: analysis.src
+msgctxt "ANALYSIS_Imsub"
+msgid "Complex number 2"
+msgstr "Komplexe Zahl 2"
+
+#. DPs4S
+#: analysis.src
+msgctxt "ANALYSIS_Imsqrt"
+msgid "Returns the square root of a complex number"
+msgstr "Liefert die Quadratwurzel einer komplexen Zahl"
+
+#. 325Y7
+#: analysis.src
+msgctxt "ANALYSIS_Imsqrt"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. K7zAa
+#: analysis.src
+msgctxt "ANALYSIS_Imsqrt"
+msgid "The complex number"
+msgstr "Die komplexe Zahl"
+
+#. iQuss
+#: analysis.src
+msgctxt "ANALYSIS_Imsum"
+msgid "Returns the sum of complex numbers"
+msgstr "Liefert die Summe komplexer Zahlen"
+
+#. 3eJSZ
+#: analysis.src
+msgctxt "ANALYSIS_Imsum"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. BbudP
+#: analysis.src
+msgctxt "ANALYSIS_Imsum"
+msgid "The complex number"
+msgstr "Die komplexe Zahl"
+
+#. FeLCW
+#: analysis.src
+msgctxt "ANALYSIS_Imtan"
+msgid "Returns the tangent of a complex number"
+msgstr "Liefert den Tangens einer komplexen Zahl"
+
+#. Ye9GC
+#: analysis.src
+msgctxt "ANALYSIS_Imtan"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. sFDp2
+#: analysis.src
+msgctxt "ANALYSIS_Imtan"
+msgid "A complex number"
+msgstr "Eine komplexe Zahl"
+
+#. AecAA
+#: analysis.src
+msgctxt "ANALYSIS_Imsec"
+msgid "Returns the secant of a complex number"
+msgstr "Liefert den Sekans einer komplexen Zahl"
+
+#. nmFni
+#: analysis.src
+msgctxt "ANALYSIS_Imsec"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. 4Z6HL
+#: analysis.src
+msgctxt "ANALYSIS_Imsec"
+msgid "A complex number"
+msgstr "Eine komplexe Zahl"
+
+#. X2WPM
+#: analysis.src
+msgctxt "ANALYSIS_Imcsc"
+msgid "Returns the cosecant of a complex number"
+msgstr "Liefert den Kosekans einer komplexen Zahl"
+
+#. KtbXF
+#: analysis.src
+msgctxt "ANALYSIS_Imcsc"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. RCDTn
+#: analysis.src
+msgctxt "ANALYSIS_Imcsc"
+msgid "A complex number"
+msgstr "Eine komplexe Zahl"
+
+#. BfVSw
+#: analysis.src
+msgctxt "ANALYSIS_Imcot"
+msgid "Returns the cotangent of a complex number"
+msgstr "Liefert den Kotangens einer komplexen Zahl"
+
+#. Q6tzq
+#: analysis.src
+msgctxt "ANALYSIS_Imcot"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. gRdSa
+#: analysis.src
+msgctxt "ANALYSIS_Imcot"
+msgid "A complex number"
+msgstr "Eine komplexe Zahl"
+
+#. gq4MA
+#: analysis.src
+msgctxt "ANALYSIS_Imsinh"
+msgid "Returns the hyperbolic sine of a complex number"
+msgstr "Liefert den Sinus Hyperbolicus einer komplexen Zahl."
+
+#. eJcAN
+#: analysis.src
+msgctxt "ANALYSIS_Imsinh"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. Ft4eA
+#: analysis.src
+msgctxt "ANALYSIS_Imsinh"
+msgid "A complex number"
+msgstr "Eine komplexe Zahl"
+
+#. KwmcE
+#: analysis.src
+msgctxt "ANALYSIS_Imcosh"
+msgid "Returns the hyperbolic cosine of a complex number"
+msgstr "Liefert den Kosinus Hyperbolicus einer komplexen Zahl"
+
+#. DGBPW
+#: analysis.src
+msgctxt "ANALYSIS_Imcosh"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. 3BT8u
+#: analysis.src
+msgctxt "ANALYSIS_Imcosh"
+msgid "A complex number"
+msgstr "Eine komplexe Zahl"
+
+#. RKED5
+#: analysis.src
+msgctxt "ANALYSIS_Imsech"
+msgid "Returns the hyperbolic secant of a complex number"
+msgstr "Liefert den Sekans Hyperbolicus einer komplexen Zahl"
+
+#. EiqrC
+#: analysis.src
+msgctxt "ANALYSIS_Imsech"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. tfsdn
+#: analysis.src
+msgctxt "ANALYSIS_Imsech"
+msgid "A complex number"
+msgstr "Eine komplexe Zahl"
+
+#. EcuuE
+#: analysis.src
+msgctxt "ANALYSIS_Imcsch"
+msgid "Returns the hyperbolic cosecant of a complex number"
+msgstr "Liefert den Kosekans Hyperbolicus einer komplexen Zahl"
+
+#. VQBR2
+#: analysis.src
+msgctxt "ANALYSIS_Imcsch"
+msgid "Complex number"
+msgstr "Komplexe Zahl"
+
+#. 7PCdM
+#: analysis.src
+msgctxt "ANALYSIS_Imcsch"
+msgid "A complex number"
+msgstr "Eine komplexe Zahl"
+
+#. JeHgP
+#: analysis.src
+msgctxt "ANALYSIS_Complex"
+msgid "Converts real and imaginary coefficients into a complex number"
+msgstr "Wandelt den Real- und Imaginärteil in eine komplexe Zahl um"
+
+#. sorkj
+#: analysis.src
+msgctxt "ANALYSIS_Complex"
+msgid "Real num"
+msgstr "Realteil"
+
+#. DQTvR
+#: analysis.src
+msgctxt "ANALYSIS_Complex"
+msgid "The real coefficient"
+msgstr "Der Realteil"
+
+#. EbZiq
+#: analysis.src
+msgctxt "ANALYSIS_Complex"
+msgid "I num"
+msgstr "Imaginärteil"
+
+#. inbAf
+#: analysis.src
+msgctxt "ANALYSIS_Complex"
+msgid "The imaginary coefficient"
+msgstr "Der Imaginärteil"
+
+#. zyS3R
+#: analysis.src
+msgctxt "ANALYSIS_Complex"
+msgid "Suffix"
+msgstr "Suffix"
+
+#. C2DAm
+#: analysis.src
+msgctxt "ANALYSIS_Complex"
+msgid "The suffix"
+msgstr "Der Suffix"
+
+#. Q8Dfa
+#: analysis.src
+msgctxt "ANALYSIS_Convert"
+msgid "Converts a number from one measurement system to another"
+msgstr "Wandelt eine Zahl von einem Maßsystem in ein anderes um"
+
+#. 5ub7S
+#: analysis.src
+msgctxt "ANALYSIS_Convert"
+msgid "Number"
+msgstr "Zahl"
+
+#. McwQs
+#: analysis.src
+msgctxt "ANALYSIS_Convert"
+msgid "The number"
+msgstr "Die Zahl"
+
+#. 3C7JC
+#: analysis.src
+msgctxt "ANALYSIS_Convert"
+msgid "From unit"
+msgstr "Von-Maßeinheit"
+
+#. CmzfS
+#: analysis.src
+msgctxt "ANALYSIS_Convert"
+msgid "Unit of measure for number"
+msgstr "Maßeinheit der Zahl"
+
+#. yD9BY
+#: analysis.src
+msgctxt "ANALYSIS_Convert"
+msgid "To unit"
+msgstr "In-Maßeinheit"
+
+#. JK6n8
+#: analysis.src
+msgctxt "ANALYSIS_Convert"
+msgid "Unit of measure for the result"
+msgstr "Maßeinheit des Ergebnisses"
+
+#. nwrei
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid ""
+"Returns the prorated linear depreciation of an asset for each accounting "
+"period"
+msgstr ""
+"Liefert den für eine Abrechnungsperiode anzusetzenden Abschreibungsbetrag "
+"auf Basis des französischen Buchführungssystems"
+
+#. KMGE5
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "Cost"
+msgstr "Kosten"
+
+#. TSz5q
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "Cost of the asset"
+msgstr "Anschaffungskosten des Anlageguts"
+
+#. K4iBE
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "Date purchased"
+msgstr "Anschaffungsdatum"
+
+#. hVLrr
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "Purchase date of the asset"
+msgstr "Anschaffungsdatum des Anlagegutes"
+
+#. dTETC
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "First period"
+msgstr "Erste Periode"
+
+#. n2TqV
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "Date the first period ends"
+msgstr "Datum des Endes der ersten Periode"
+
+#. Qs5FJ
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "Salvage"
+msgstr "Restwert"
+
+#. 6E8rp
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "Salvage value of an asset at the end of its life"
+msgstr "Restwert des Anlagegutes am Ende der Nutzungsdauer"
+
+#. iSMYD
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "Period"
+msgstr "Periode"
+
+#. kAhDP
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "The period"
+msgstr "Die Periode"
+
+#. NnX74
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "Rate"
+msgstr "Rate"
+
+#. oBich
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "The rate of depreciation"
+msgstr "Der Abschreibungssatz"
+
+#. 3Tb5d
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "Basis"
+msgstr "Basis"
+
+#. xrJmg
+#: analysis.src
+msgctxt "ANALYSIS_Amordegrc"
+msgid "The year basis to be used"
+msgstr "Zu verwendende Jahresbasis"
+
+#. RPk6n
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid ""
+"Returns the prorated linear depreciation of an asset for each accounting "
+"period"
+msgstr ""
+"Liefert den für eine Abrechnungsperiode anzusetzenden Abschreibungsbetrag "
+"auf Basis des französischen Buchführungssystems"
+
+#. LM4Go
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "Cost"
+msgstr "Kosten"
+
+#. AwpGy
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "Cost of the asset"
+msgstr "Anschaffungskosten des Anlageguts"
+
+#. YRBJC
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "Date purchased"
+msgstr "Anschaffungsdatum"
+
+#. FEgBE
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "Purchase date of the asset"
+msgstr "Anschaffungsdatum des Anlagegutes"
+
+#. 9q35F
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "First period"
+msgstr "Erste Periode"
+
+#. 2WbBi
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "The date the first period ends"
+msgstr "Datum des Endes der ersten Periode"
+
+#. d59Fr
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "Salvage"
+msgstr "Restwert"
+
+#. YquuG
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "The salvage value of an asset at the end of its life"
+msgstr "Der Restwert des Anlagegutes am Ende der Nutzungsdauer"
+
+#. GUVE4
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "Period"
+msgstr "Periode"
+
+#. SRXzm
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "The period"
+msgstr "Die Periode"
+
+#. RnbPk
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "Rate"
+msgstr "Rate"
+
+#. 3MHfk
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "The rate of depreciation"
+msgstr "Der Abschreibungssatz"
+
+#. JnU3C
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "Basis"
+msgstr "Basis"
+
+#. FAoRu
+#: analysis.src
+msgctxt "ANALYSIS_Amorlinc"
+msgid "The year basis to be used"
+msgstr "Die zu verwendende Jahresbasis"
+
+#. GZ5N8
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid ""
+"Returns the accrued interest for a security that pays periodic interest"
+msgstr ""
+"Berechnet die aufgelaufenen Zinsen (Stückzinsen) eines Wertpapieres mit "
+"periodischer Zinszahlung"
+
+#. DBFoH
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "Issue"
+msgstr "Ausgabe"
+
+#. NTS7t
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "Issue date of the security"
+msgstr "Ausgabedatum des Wertpapiers"
+
+#. BGxp9
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "First interest"
+msgstr "Erster Zinstermin"
+
+#. ra6A6
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "First interest date of the security"
+msgstr "Erster Zinstermin des Wertpapiers"
+
+#. kCCar
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. CCpX2
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. 2G47b
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "Rate"
+msgstr "Zins"
+
+#. BQFF6
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "The rate"
+msgstr "Der Nominalzins"
+
+#. nfFmP
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "Par"
+msgstr "Nennwert"
+
+#. rbCba
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "The par value"
+msgstr "Der Nennwert des Wertpapiers"
+
+#. ThEA4
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. 9JTGV
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. 6k2Ea
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "Basis"
+msgstr "Basis"
+
+#. odtHJ
+#: analysis.src
+msgctxt "ANALYSIS_Accrint"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. koDEa
+#: analysis.src
+msgctxt "ANALYSIS_Accrintm"
+msgid ""
+"Returns the accrued interest for a security that pays interest at maturity"
+msgstr ""
+"Berechnet die aufgelaufenen Zinsen eines Wertpapieres, die bei Fälligkeit "
+"ausgezahlt werden"
+
+#. D9wUf
+#: analysis.src
+msgctxt "ANALYSIS_Accrintm"
+msgid "Issue"
+msgstr "Ausgabe"
+
+#. sVV6p
+#: analysis.src
+msgctxt "ANALYSIS_Accrintm"
+msgid "The issue date"
+msgstr "Das Ausgabedatum des Wertpapiers"
+
+#. 7R8Fd
+#: analysis.src
+msgctxt "ANALYSIS_Accrintm"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. Secv3
+#: analysis.src
+msgctxt "ANALYSIS_Accrintm"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. zbDB9
+#: analysis.src
+msgctxt "ANALYSIS_Accrintm"
+msgid "Rate"
+msgstr "Zins"
+
+#. x7rGj
+#: analysis.src
+msgctxt "ANALYSIS_Accrintm"
+msgid "The rate"
+msgstr "Der Nominalzins"
+
+#. BYdgX
+#: analysis.src
+msgctxt "ANALYSIS_Accrintm"
+msgid "Par"
+msgstr "Nennwert"
+
+#. GsfKv
+#: analysis.src
+msgctxt "ANALYSIS_Accrintm"
+msgid "The par value"
+msgstr "Der Nennwert des Wertpapiers"
+
+#. LibLC
+#: analysis.src
+msgctxt "ANALYSIS_Accrintm"
+msgid "Basis"
+msgstr "Basis"
+
+#. kF8Ym
+#: analysis.src
+msgctxt "ANALYSIS_Accrintm"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. SBxKB
+#: analysis.src
+msgctxt "ANALYSIS_Received"
+msgid "Returns the amount paid out at maturity for a fully invested security"
+msgstr ""
+"Liefert den Auszahlungsbetrag eines voll investierten Wertpapiers am "
+"Fälligkeitstermin"
+
+#. yQweh
+#: analysis.src
+msgctxt "ANALYSIS_Received"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. mGFLC
+#: analysis.src
+msgctxt "ANALYSIS_Received"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. Ejgs9
+#: analysis.src
+msgctxt "ANALYSIS_Received"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. V8hKG
+#: analysis.src
+msgctxt "ANALYSIS_Received"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. rJDKB
+#: analysis.src
+msgctxt "ANALYSIS_Received"
+msgid "Investment"
+msgstr "Anlage"
+
+#. nAyhe
+#: analysis.src
+msgctxt "ANALYSIS_Received"
+msgid "The investment"
+msgstr "Die Anlage"
+
+#. d3Ceh
+#: analysis.src
+msgctxt "ANALYSIS_Received"
+msgid "Discount"
+msgstr "Disagio"
+
+#. 6nBDa
+#: analysis.src
+msgctxt "ANALYSIS_Received"
+msgid "The discount"
+msgstr "Das Disagio"
+
+#. qv2SP
+#: analysis.src
+msgctxt "ANALYSIS_Received"
+msgid "Basis"
+msgstr "Basis"
+
+#. n8V8f
+#: analysis.src
+msgctxt "ANALYSIS_Received"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. JrFCf
+#: analysis.src
+msgctxt "ANALYSIS_Disc"
+msgid "Returns the discount rate for a security"
+msgstr "Liefert den prozentualen Abschlag eines Wertpapiers"
+
+#. 26fuA
+#: analysis.src
+msgctxt "ANALYSIS_Disc"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. 7gsU4
+#: analysis.src
+msgctxt "ANALYSIS_Disc"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. YEz3g
+#: analysis.src
+msgctxt "ANALYSIS_Disc"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. cgpKH
+#: analysis.src
+msgctxt "ANALYSIS_Disc"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. j2zHH
+#: analysis.src
+msgctxt "ANALYSIS_Disc"
+msgid "Price"
+msgstr "Kurs"
+
+#. 4zcZA
+#: analysis.src
+msgctxt "ANALYSIS_Disc"
+msgid "The price"
+msgstr "Der Kurs"
+
+#. DJGW2
+#: analysis.src
+msgctxt "ANALYSIS_Disc"
+msgid "Redemption"
+msgstr "Rückzahlung"
+
+#. rUAFp
+#: analysis.src
+msgctxt "ANALYSIS_Disc"
+msgid "The redemption value"
+msgstr "Der Rückzahlungswert"
+
+#. RxWGA
+#: analysis.src
+msgctxt "ANALYSIS_Disc"
+msgid "Basis"
+msgstr "Basis"
+
+#. fyFYH
+#: analysis.src
+msgctxt "ANALYSIS_Disc"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. qPWFW
+#: analysis.src
+msgctxt "ANALYSIS_Duration"
+msgid ""
+"Returns the annual Macaulay duration of a security with periodic interest "
+"payments"
+msgstr ""
+"Liefert die jährliche Macaulay Laufzeit eines Wertpapiers mit periodischer "
+"Zinszahlung"
+
+#. Kt5tm
+#: analysis.src
+msgctxt "ANALYSIS_Duration"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. RRTqq
+#: analysis.src
+msgctxt "ANALYSIS_Duration"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. QEEF3
+#: analysis.src
+msgctxt "ANALYSIS_Duration"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. QqQL6
+#: analysis.src
+msgctxt "ANALYSIS_Duration"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. YSFqn
+#: analysis.src
+msgctxt "ANALYSIS_Duration"
+msgid "Coupon"
+msgstr "Nominalzins"
+
+#. xjUZ4
+#: analysis.src
+msgctxt "ANALYSIS_Duration"
+msgid "The coupon rate"
+msgstr "Der Nominalzins"
+
+#. 52ySi
+#: analysis.src
+msgctxt "ANALYSIS_Duration"
+msgid "Yield"
+msgstr "Rendite"
+
+#. sFCVY
+#: analysis.src
+msgctxt "ANALYSIS_Duration"
+msgid "The yield"
+msgstr "Die Rendite"
+
+#. jBqRb
+#: analysis.src
+msgctxt "ANALYSIS_Duration"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. qRUS5
+#: analysis.src
+msgctxt "ANALYSIS_Duration"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. J2f3W
+#: analysis.src
+msgctxt "ANALYSIS_Duration"
+msgid "Basis"
+msgstr "Basis"
+
+#. XFz2k
+#: analysis.src
+msgctxt "ANALYSIS_Duration"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. bmGm3
+#: analysis.src
+msgctxt "ANALYSIS_Effect"
+msgid "Returns the effective annual interest rate"
+msgstr "Liefert die jährliche Effektivverzinsung"
+
+#. Lygto
+#: analysis.src
+msgctxt "ANALYSIS_Effect"
+msgid "Nominal rate"
+msgstr "Nominalzins"
+
+#. hfb8Z
+#: analysis.src
+msgctxt "ANALYSIS_Effect"
+msgid "The nominal rate"
+msgstr "Der Nominalzins"
+
+#. VADwy
+#: analysis.src
+msgctxt "ANALYSIS_Effect"
+msgid "Npery"
+msgstr "Perioden"
+
+#. 3Fa93
+#: analysis.src
+msgctxt "ANALYSIS_Effect"
+msgid "The periods"
+msgstr "Die Perioden"
+
+#. FwHAA
+#: analysis.src
+msgctxt "ANALYSIS_Cumprinc"
+msgid ""
+"Returns the cumulative principal on a loan to be paid between two periods"
+msgstr ""
+"Liefert die aufgelaufene Tilgung eines Darlehens, die zwischen zwei Perioden"
+" zu zahlen ist"
+
+#. bfnAz
+#: analysis.src
+msgctxt "ANALYSIS_Cumprinc"
+msgid "Rate"
+msgstr "Zins"
+
+#. BuDuA
+#: analysis.src
+msgctxt "ANALYSIS_Cumprinc"
+msgid "The rate"
+msgstr "Der Nominalzins"
+
+#. xDD2q
+#: analysis.src
+msgctxt "ANALYSIS_Cumprinc"
+msgid "Nper"
+msgstr "Perioden"
+
+#. xBgxt
+#: analysis.src
+msgctxt "ANALYSIS_Cumprinc"
+msgid "Number of payment periods"
+msgstr "Anzahl der Zahlungsperioden"
+
+#. vFVKh
+#: analysis.src
+msgctxt "ANALYSIS_Cumprinc"
+msgid "Pv"
+msgstr "Barwert"
+
+#. gWQHA
+#: analysis.src
+msgctxt "ANALYSIS_Cumprinc"
+msgid "The present value"
+msgstr "Der Gegenstandswert"
+
+#. DSGKT
+#: analysis.src
+msgctxt "ANALYSIS_Cumprinc"
+msgid "Start period"
+msgstr "Startperiode"
+
+#. ip82j
+#: analysis.src
+msgctxt "ANALYSIS_Cumprinc"
+msgid "The start period"
+msgstr "Die Startperiode"
+
+#. sbi6m
+#: analysis.src
+msgctxt "ANALYSIS_Cumprinc"
+msgid "End period"
+msgstr "Endperiode"
+
+#. esNY3
+#: analysis.src
+msgctxt "ANALYSIS_Cumprinc"
+msgid "The end period"
+msgstr "Die Endperiode"
+
+#. KEC6m
+#: analysis.src
+msgctxt "ANALYSIS_Cumprinc"
+msgid "Type"
+msgstr "Art"
+
+#. XSN2Q
+#: analysis.src
+msgctxt "ANALYSIS_Cumprinc"
+msgid "The type of maturity"
+msgstr "Die Art der Fälligkeit"
+
+#. tSmGu
+#: analysis.src
+msgctxt "ANALYSIS_Cumipmt"
+msgid "Returns the cumulative interest to be paid between two periods"
+msgstr ""
+"Liefert die kumulierten Zinsen, die zwischen zwei Perioden zu zahlen sind"
+
+#. nP89T
+#: analysis.src
+msgctxt "ANALYSIS_Cumipmt"
+msgid "Rate"
+msgstr "Zins"
+
+#. LDvLE
+#: analysis.src
+msgctxt "ANALYSIS_Cumipmt"
+msgid "The rate"
+msgstr "Der Nominalzins"
+
+#. VVyzG
+#: analysis.src
+msgctxt "ANALYSIS_Cumipmt"
+msgid "Nper"
+msgstr "Perioden"
+
+#. W3kbJ
+#: analysis.src
+msgctxt "ANALYSIS_Cumipmt"
+msgid "Number of payment periods"
+msgstr "Anzahl der Zahlungsperioden"
+
+#. R4qXD
+#: analysis.src
+msgctxt "ANALYSIS_Cumipmt"
+msgid "Pv"
+msgstr "Barwert"
+
+#. bkBtb
+#: analysis.src
+msgctxt "ANALYSIS_Cumipmt"
+msgid "The present value"
+msgstr "Der Gegenstandswert"
+
+#. CTrUQ
+#: analysis.src
+msgctxt "ANALYSIS_Cumipmt"
+msgid "Start period"
+msgstr "Startperiode"
+
+#. GvCBp
+#: analysis.src
+msgctxt "ANALYSIS_Cumipmt"
+msgid "The start period"
+msgstr "Die Startperiode"
+
+#. AvDEi
+#: analysis.src
+msgctxt "ANALYSIS_Cumipmt"
+msgid "End period"
+msgstr "Endperiode"
+
+#. 5UJw6
+#: analysis.src
+msgctxt "ANALYSIS_Cumipmt"
+msgid "The end period"
+msgstr "Die Endperiode"
+
+#. 5wT5C
+#: analysis.src
+msgctxt "ANALYSIS_Cumipmt"
+msgid "Type"
+msgstr "Art"
+
+#. Z9PdB
+#: analysis.src
+msgctxt "ANALYSIS_Cumipmt"
+msgid "The type of maturity"
+msgstr "Die Art der Fälligkeit"
+
+#. fRjMA
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid ""
+"Returns the price per 100 currency units face value of a security that pays "
+"periodic interest"
+msgstr ""
+"Liefert den Kurs pro 100 Währungseinheiten Nennwert eines Wertpapiers, das "
+"periodische Zinsen auszahlt"
+
+#. EdQCg
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. aHUcW
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. S2Pom
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. Cr9qy
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. BhmGj
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "Rate"
+msgstr "Zins"
+
+#. 2G3n8
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "The rate"
+msgstr "Der Nominalzins"
+
+#. KSvXC
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "Yield"
+msgstr "Rendite"
+
+#. bCqEv
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "The yield"
+msgstr "Die Rendite"
+
+#. 7pvEy
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "Redemption"
+msgstr "Rückzahlung"
+
+#. Dsfq5
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "The redemption value"
+msgstr "Der Rückzahlungswert"
+
+#. TGCam
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. hrTCp
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. 6Sg8R
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "Basis"
+msgstr "Basis"
+
+#. oCXpa
+#: analysis.src
+msgctxt "ANALYSIS_Price"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. 9r4fb
+#: analysis.src
+msgctxt "ANALYSIS_Pricedisc"
+msgid ""
+"Returns the price per 100 currency units face value of a discounted security"
+msgstr ""
+"Liefert den Kurs pro 100 Währungseinheiten Nennwert eines unverzinslichen "
+"Wertpapiers"
+
+#. XbMsC
+#: analysis.src
+msgctxt "ANALYSIS_Pricedisc"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. uDBkT
+#: analysis.src
+msgctxt "ANALYSIS_Pricedisc"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. mxC2p
+#: analysis.src
+msgctxt "ANALYSIS_Pricedisc"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. o4quv
+#: analysis.src
+msgctxt "ANALYSIS_Pricedisc"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. FEqEB
+#: analysis.src
+msgctxt "ANALYSIS_Pricedisc"
+msgid "Discount"
+msgstr "Disagio"
+
+#. DiCgM
+#: analysis.src
+msgctxt "ANALYSIS_Pricedisc"
+msgid "The discount"
+msgstr "Das Disagio"
+
+#. qnsY4
+#: analysis.src
+msgctxt "ANALYSIS_Pricedisc"
+msgid "Redemption"
+msgstr "Rückzahlung"
+
+#. AeFr3
+#: analysis.src
+msgctxt "ANALYSIS_Pricedisc"
+msgid "The redemption value"
+msgstr "Der Rückzahlungswert"
+
+#. 4qnEM
+#: analysis.src
+msgctxt "ANALYSIS_Pricedisc"
+msgid "Basis"
+msgstr "Basis"
+
+#. 5RLtD
+#: analysis.src
+msgctxt "ANALYSIS_Pricedisc"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. pChTS
+#: analysis.src
+msgctxt "ANALYSIS_Pricemat"
+msgid ""
+"Returns the price per 100 currency units face value of a security that pays "
+"interest at maturity"
+msgstr ""
+"Liefert den Kurs pro 100 Währungseinheiten Nennwert eines Wertpapiers, das "
+"Zinsen am Fälligkeitsdatum auszahlt"
+
+#. S3BLo
+#: analysis.src
+msgctxt "ANALYSIS_Pricemat"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. XZRFA
+#: analysis.src
+msgctxt "ANALYSIS_Pricemat"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. Uta4a
+#: analysis.src
+msgctxt "ANALYSIS_Pricemat"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. WLHJv
+#: analysis.src
+msgctxt "ANALYSIS_Pricemat"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. 6Wdjy
+#: analysis.src
+msgctxt "ANALYSIS_Pricemat"
+msgid "Issue"
+msgstr "Ausgabe"
+
+#. vaGeW
+#: analysis.src
+msgctxt "ANALYSIS_Pricemat"
+msgid "The issue date"
+msgstr "Das Ausgabedatum des Wertpapiers"
+
+#. m95iX
+#: analysis.src
+msgctxt "ANALYSIS_Pricemat"
+msgid "Rate"
+msgstr "Zins"
+
+#. 4nq3N
+#: analysis.src
+msgctxt "ANALYSIS_Pricemat"
+msgid "The rate"
+msgstr "Der Nominalzins"
+
+#. ANfdE
+#: analysis.src
+msgctxt "ANALYSIS_Pricemat"
+msgid "Yield"
+msgstr "Rendite"
+
+#. Vs9zb
+#: analysis.src
+msgctxt "ANALYSIS_Pricemat"
+msgid "The yield"
+msgstr "Die Rendite"
+
+#. DNyAz
+#: analysis.src
+msgctxt "ANALYSIS_Pricemat"
+msgid "Basis"
+msgstr "Basis"
+
+#. ysLUw
+#: analysis.src
+msgctxt "ANALYSIS_Pricemat"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. A64aD
+#: analysis.src
+msgctxt "ANALYSIS_Mduration"
+msgid ""
+"Returns the Macaulay modified duration for a security with an assumed par "
+"value of 100 currency units"
+msgstr ""
+"Liefert die modifizierte Macaulay-Duration eines Wertpapiers mit 100 "
+"Währungseinheiten Nennwert"
+
+#. yHbSa
+#: analysis.src
+msgctxt "ANALYSIS_Mduration"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. 4EoD7
+#: analysis.src
+msgctxt "ANALYSIS_Mduration"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. sxNmM
+#: analysis.src
+msgctxt "ANALYSIS_Mduration"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. bXwmZ
+#: analysis.src
+msgctxt "ANALYSIS_Mduration"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. myoEr
+#: analysis.src
+msgctxt "ANALYSIS_Mduration"
+msgid "Coupon"
+msgstr "Nominalzins"
+
+#. dnGTH
+#: analysis.src
+msgctxt "ANALYSIS_Mduration"
+msgid "The coupon rate"
+msgstr "Der Nominalzins"
+
+#. trhNE
+#: analysis.src
+msgctxt "ANALYSIS_Mduration"
+msgid "Yield"
+msgstr "Rendite"
+
+#. 7J37r
+#: analysis.src
+msgctxt "ANALYSIS_Mduration"
+msgid "The yield"
+msgstr "Die Rendite"
+
+#. FNZtq
+#: analysis.src
+msgctxt "ANALYSIS_Mduration"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. DNJCc
+#: analysis.src
+msgctxt "ANALYSIS_Mduration"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. YrwxK
+#: analysis.src
+msgctxt "ANALYSIS_Mduration"
+msgid "Basis"
+msgstr "Basis"
+
+#. LJAWe
+#: analysis.src
+msgctxt "ANALYSIS_Mduration"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. i2GCb
+#: analysis.src
+msgctxt "ANALYSIS_Nominal"
+msgid "Returns the annual nominal interest rate"
+msgstr "Liefert die jährliche Nominalverzinsung"
+
+#. nExDZ
+#: analysis.src
+msgctxt "ANALYSIS_Nominal"
+msgid "Effective rate"
+msgstr "Effektiver Zins"
+
+#. gBj7Q
+#: analysis.src
+msgctxt "ANALYSIS_Nominal"
+msgid "The effective interest rate"
+msgstr "Die effektive Zinsrate"
+
+#. s2F7k
+#: analysis.src
+msgctxt "ANALYSIS_Nominal"
+msgid "Npery"
+msgstr "Perioden"
+
+#. RZBYZ
+#: analysis.src
+msgctxt "ANALYSIS_Nominal"
+msgid "The periods"
+msgstr "Die Perioden"
+
+#. 8zZCF
+#: analysis.src
+msgctxt "ANALYSIS_Dollarfr"
+msgid ""
+"Converts a price expressed as a decimal into a price expressed as a fraction"
+msgstr ""
+"Konvertiert eine Notierung in dezimaler Schreibweise in eine gemischten "
+"Dezimalbruch"
+
+#. dkRns
+#: analysis.src
+msgctxt "ANALYSIS_Dollarfr"
+msgid "Decimal dollar"
+msgstr "Zahl"
+
+#. EPxfe
+#: analysis.src
+msgctxt "ANALYSIS_Dollarfr"
+msgid "The decimal number"
+msgstr "Die Dezimalzahl"
+
+#. MZ5nW
+#: analysis.src
+msgctxt "ANALYSIS_Dollarfr"
+msgid "Fraction"
+msgstr "Bruch"
+
+#. FFDgq
+#: analysis.src
+msgctxt "ANALYSIS_Dollarfr"
+msgid "The divisor"
+msgstr "Die Zahl, durch die geteilt werden soll"
+
+#. 3coz6
+#: analysis.src
+msgctxt "ANALYSIS_Dollarde"
+msgid ""
+"Converts a price expressed as a fraction into a price expressed as a decimal"
+msgstr ""
+"Konvertiert eine Notierung, die als Dezimalbruch angegeben ist, in eine "
+"Dezimalzahl"
+
+#. fGVwR
+#: analysis.src
+msgctxt "ANALYSIS_Dollarde"
+msgid "Fractional dollar"
+msgstr "Zahl"
+
+#. do6jV
+#: analysis.src
+msgctxt "ANALYSIS_Dollarde"
+msgid "The number as a fraction"
+msgstr "Die Zahl als Bruch"
+
+#. dcYmK
+#: analysis.src
+msgctxt "ANALYSIS_Dollarde"
+msgid "Fraction"
+msgstr "Bruch"
+
+#. tXcaR
+#: analysis.src
+msgctxt "ANALYSIS_Dollarde"
+msgid "The divisor"
+msgstr "Die Zahl, durch die geteilt werden soll"
+
+#. v2tUE
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "Returns the yield on a security that pays periodic interest"
+msgstr "Liefert die Rendite eines Wertpapiers, das periodisch Zinsen auszahlt"
+
+#. eqfJR
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. EfCej
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. SiQRq
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. uBx9d
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. hcZ2b
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "Rate"
+msgstr "Zins"
+
+#. 2x2Q4
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "The rate"
+msgstr "Der Nominalzins"
+
+#. P6zx6
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "Price"
+msgstr "Kurs"
+
+#. yCG2s
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "The price"
+msgstr "Der Kurs"
+
+#. xcG8F
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "Redemption"
+msgstr "Rückzahlung"
+
+#. MA5gf
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "The redemption value"
+msgstr "Der Rückzahlungswert"
+
+#. 6iNQX
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. 8z8PK
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. mtWy3
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "Basis"
+msgstr "Basis"
+
+#. Bndzx
+#: analysis.src
+msgctxt "ANALYSIS_Yield"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. gh6Ef
+#: analysis.src
+msgctxt "ANALYSIS_Yielddisc"
+msgid "Returns the annual yield for a discounted security"
+msgstr "Liefert die jährliche Rendite eines diskontierten Wertpapiers"
+
+#. KDky8
+#: analysis.src
+msgctxt "ANALYSIS_Yielddisc"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. PTuHA
+#: analysis.src
+msgctxt "ANALYSIS_Yielddisc"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. LDWxU
+#: analysis.src
+msgctxt "ANALYSIS_Yielddisc"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. atuPr
+#: analysis.src
+msgctxt "ANALYSIS_Yielddisc"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. AgQVB
+#: analysis.src
+msgctxt "ANALYSIS_Yielddisc"
+msgid "Price"
+msgstr "Kurs"
+
+#. 3JJnW
+#: analysis.src
+msgctxt "ANALYSIS_Yielddisc"
+msgid "The price"
+msgstr "Der Kurs"
+
+#. CFASG
+#: analysis.src
+msgctxt "ANALYSIS_Yielddisc"
+msgid "Redemption"
+msgstr "Rückzahlung"
+
+#. FRLpH
+#: analysis.src
+msgctxt "ANALYSIS_Yielddisc"
+msgid "The redemption value"
+msgstr "Der Rückzahlungswert"
+
+#. ZBtUE
+#: analysis.src
+msgctxt "ANALYSIS_Yielddisc"
+msgid "Basis"
+msgstr "Basis"
+
+#. eZvoV
+#: analysis.src
+msgctxt "ANALYSIS_Yielddisc"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. HH8bA
+#: analysis.src
+msgctxt "ANALYSIS_Yieldmat"
+msgid "Returns the annual yield of a security that pays interest at maturity"
+msgstr ""
+"Liefert die jährliche Rendite eines Wertpapiers, das Zinsen am "
+"Fälligkeitsdatum auszahlt"
+
+#. 9tqFL
+#: analysis.src
+msgctxt "ANALYSIS_Yieldmat"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. UCGbx
+#: analysis.src
+msgctxt "ANALYSIS_Yieldmat"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. CGPeM
+#: analysis.src
+msgctxt "ANALYSIS_Yieldmat"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. wfMuX
+#: analysis.src
+msgctxt "ANALYSIS_Yieldmat"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. 6FaMu
+#: analysis.src
+msgctxt "ANALYSIS_Yieldmat"
+msgid "Issue"
+msgstr "Ausgabe"
+
+#. uPRAB
+#: analysis.src
+msgctxt "ANALYSIS_Yieldmat"
+msgid "The issue date"
+msgstr "Das Ausgabedatum des Wertpapiers"
+
+#. zAwED
+#: analysis.src
+msgctxt "ANALYSIS_Yieldmat"
+msgid "Rate"
+msgstr "Zins"
+
+#. c23fh
+#: analysis.src
+msgctxt "ANALYSIS_Yieldmat"
+msgid "The rate"
+msgstr "Der Nominalzins"
+
+#. UCJU4
+#: analysis.src
+msgctxt "ANALYSIS_Yieldmat"
+msgid "Price"
+msgstr "Kurs"
+
+#. rn9Ng
+#: analysis.src
+msgctxt "ANALYSIS_Yieldmat"
+msgid "The price"
+msgstr "Der Kurs"
+
+#. DfvV5
+#: analysis.src
+msgctxt "ANALYSIS_Yieldmat"
+msgid "Basis"
+msgstr "Basis"
+
+#. GCePb
+#: analysis.src
+msgctxt "ANALYSIS_Yieldmat"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. AYWCF
+#: analysis.src
+msgctxt "ANALYSIS_Tbilleq"
+msgid "Returns the bond-equivalent yield for a treasury bill"
+msgstr ""
+"Rechnet die Verzinsung eines Schatzwechsels in die für Anleihen übliche "
+"einfache jährliche Verzinsung um"
+
+#. Y8EED
+#: analysis.src
+msgctxt "ANALYSIS_Tbilleq"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. wyZD8
+#: analysis.src
+msgctxt "ANALYSIS_Tbilleq"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. jQEBF
+#: analysis.src
+msgctxt "ANALYSIS_Tbilleq"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. s72dY
+#: analysis.src
+msgctxt "ANALYSIS_Tbilleq"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. HfaRk
+#: analysis.src
+msgctxt "ANALYSIS_Tbilleq"
+msgid "Discount"
+msgstr "Disagio"
+
+#. C57ZA
+#: analysis.src
+msgctxt "ANALYSIS_Tbilleq"
+msgid "The discount rate"
+msgstr "Das Disagio"
+
+#. F62mg
+#: analysis.src
+msgctxt "ANALYSIS_Tbillprice"
+msgid "Returns the price of 100 currency units face value for a treasury bill"
+msgstr ""
+"Liefert den Kurs pro 100 Währungseinheiten Nennwert eines Schatzwechsels"
+
+#. XT9YH
+#: analysis.src
+msgctxt "ANALYSIS_Tbillprice"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. 9oYEm
+#: analysis.src
+msgctxt "ANALYSIS_Tbillprice"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. YZMPq
+#: analysis.src
+msgctxt "ANALYSIS_Tbillprice"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. ckYgn
+#: analysis.src
+msgctxt "ANALYSIS_Tbillprice"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. zEx9A
+#: analysis.src
+msgctxt "ANALYSIS_Tbillprice"
+msgid "Discount"
+msgstr "Disagio"
+
+#. FNtHE
+#: analysis.src
+msgctxt "ANALYSIS_Tbillprice"
+msgid "The discount rate"
+msgstr "Das Disagio"
+
+#. 77jzy
+#: analysis.src
+msgctxt "ANALYSIS_Tbillyield"
+msgid "Returns the yield for a treasury bill"
+msgstr "Liefert die Rendite eines Schatzwechsels"
+
+#. PwuoY
+#: analysis.src
+msgctxt "ANALYSIS_Tbillyield"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. nGGCY
+#: analysis.src
+msgctxt "ANALYSIS_Tbillyield"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. YGJqm
+#: analysis.src
+msgctxt "ANALYSIS_Tbillyield"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. 4zABS
+#: analysis.src
+msgctxt "ANALYSIS_Tbillyield"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. 5eSCG
+#: analysis.src
+msgctxt "ANALYSIS_Tbillyield"
+msgid "Price"
+msgstr "Kurs"
+
+#. VkHpw
+#: analysis.src
+msgctxt "ANALYSIS_Tbillyield"
+msgid "The price"
+msgstr "Der Kurs"
+
+#. EqFnk
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid ""
+"Returns the price per $100 face value of a security with an odd first period"
+msgstr ""
+"Liefert den Kurs pro 100 Währungseinheiten Nennwert eines Wertpapiers mit "
+"einem unregelmäßigen ersten Zinstermin"
+
+#. iWwx7
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. 76Zwh
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. FCAtj
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. tYZZt
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. uBtHy
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "Issue"
+msgstr "Ausgabe"
+
+#. RBg5M
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "The issue date"
+msgstr "Das Ausgabedatum des Wertpapiers"
+
+#. Eq4nW
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "First coupon"
+msgstr "Erster Zinstermin"
+
+#. qPv58
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "The first coupon date"
+msgstr "Der Datum des ersten Zinstermins"
+
+#. e6HE5
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "Rate"
+msgstr "Zins"
+
+#. h6Gu6
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "The rate"
+msgstr "Der Nominalzins"
+
+#. gkvEE
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "Yield"
+msgstr "Rendite"
+
+#. 5EvGf
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "The yield"
+msgstr "Die Rendite"
+
+#. UsRTH
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "Redemption"
+msgstr "Rückzahlung"
+
+#. ZzgKB
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "The redemption value"
+msgstr "Der Rückzahlungswert"
+
+#. DAKmU
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. BNhiF
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. kkghz
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "Basis"
+msgstr "Basis"
+
+#. JEgfs
+#: analysis.src
+msgctxt "ANALYSIS_Oddfprice"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. z5Eww
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "Returns the yield of a security with an odd first period"
+msgstr ""
+"Liefert die Rendite eines Wertpapiers mit einem unregelmäßigen ersten "
+"Zinstermin"
+
+#. 9rFfq
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. tyFut
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. FtBAo
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. DEBJg
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. EAihU
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "Issue"
+msgstr "Ausgabe"
+
+#. Vi83F
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "The issue date"
+msgstr "Das Ausgabedatum des Wertpapiers"
+
+#. W6oCi
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "First coupon"
+msgstr "Erster Zinstermin"
+
+#. B8LJA
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "The first coupon date"
+msgstr "Der Datum des ersten Zinstermins"
+
+#. Az44N
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "Rate"
+msgstr "Zins"
+
+#. hnFB2
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "The rate"
+msgstr "Der Nominalzins"
+
+#. cHzGL
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "Price"
+msgstr "Kurs"
+
+#. CE5La
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "The price"
+msgstr "Der Kurs"
+
+#. LXekY
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "Redemption"
+msgstr "Rückzahlung"
+
+#. hi8zV
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "The redemption value"
+msgstr "Der Rückzahlungswert"
+
+#. apH6n
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. UWAyT
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. 5aWHP
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "Basis"
+msgstr "Basis"
+
+#. vkSMh
+#: analysis.src
+msgctxt "ANALYSIS_Oddfyield"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. iBp3t
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid ""
+"Returns the price per $100 face value of a security with an odd last period"
+msgstr ""
+"Liefert den Kurs pro 100 Währungseinheiten Nennwert eines Wertpapiers mit "
+"einem unregelmäßigen letzten Zinstermin"
+
+#. AsioE
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. EX8ig
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. rRQsG
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. gCGUZ
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. JFwHq
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "Last interest"
+msgstr "Letzter Zinstermin"
+
+#. R4Q2a
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "The last interest date"
+msgstr "Der Letzte Zinstermin"
+
+#. aZ3YY
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "Rate"
+msgstr "Zins"
+
+#. KB2rU
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "The rate"
+msgstr "Der Nominalzins"
+
+#. GDUzx
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "Yield"
+msgstr "Rendite"
+
+#. avZVs
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "The yield"
+msgstr "Die Rendite"
+
+#. MWCc6
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "Redemption"
+msgstr "Rückzahlung"
+
+#. hzzyo
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "The redemption value"
+msgstr "Der Rückzahlungswert"
+
+#. Sr3Rp
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. ENFos
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. DDiUc
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "Basis"
+msgstr "Basis"
+
+#. nvo2f
+#: analysis.src
+msgctxt "ANALYSIS_Oddlprice"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. DZoFd
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "Returns the yield of a security with an odd last period"
+msgstr ""
+"Liefert die Rendite eines Wertpapiers mit einem unregelmäßigen letzten "
+"Zinstermin"
+
+#. jX4YX
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. jRgpu
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. rgPDC
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. 8sSPm
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. ipMJJ
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "Last interest"
+msgstr "Letzter Zinstermin"
+
+#. Dj2hq
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "The last interest date"
+msgstr "Der Letzte Zinstermin"
+
+#. EUGax
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "Rate"
+msgstr "Zins"
+
+#. KS3CY
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "The rate"
+msgstr "Der Nominalzins"
+
+#. CpQMi
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "Price"
+msgstr "Kurs"
+
+#. xXRpv
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "The price"
+msgstr "Der Kurs"
+
+#. VrTsn
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "Redemption"
+msgstr "Rückzahlung"
+
+#. ZibYN
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "The redemption value"
+msgstr "Der Rückzahlungswert"
+
+#. 5QDbS
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. vWmtG
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. XAtLq
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "Basis"
+msgstr "Basis"
+
+#. ALuqu
+#: analysis.src
+msgctxt "ANALYSIS_Oddlyield"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. DTKfi
+#: analysis.src
+msgctxt "ANALYSIS_Xirr"
+msgid ""
+"Returns the internal rate of return for a non-periodic schedule of payments"
+msgstr ""
+"Liefert den internen Zinsfuß einer Reihe nicht periodisch anfallender "
+"Zahlungen"
+
+#. NQwoD
+#: analysis.src
+msgctxt "ANALYSIS_Xirr"
+msgid "Values"
+msgstr "Werte"
+
+#. 43s42
+#: analysis.src
+msgctxt "ANALYSIS_Xirr"
+msgid "The values"
+msgstr "Die Werte"
+
+#. nEjNY
+#: analysis.src
+msgctxt "ANALYSIS_Xirr"
+msgid "Dates"
+msgstr "Zeitpunkte"
+
+#. T8Cgb
+#: analysis.src
+msgctxt "ANALYSIS_Xirr"
+msgid "The dates"
+msgstr "Die Zeitpunkte"
+
+#. vgfoR
+#: analysis.src
+msgctxt "ANALYSIS_Xirr"
+msgid "Guess"
+msgstr "Schätzwert"
+
+#. bwH8A
+#: analysis.src
+msgctxt "ANALYSIS_Xirr"
+msgid "The guess"
+msgstr "Der Schätzwert"
+
+#. umfBr
+#: analysis.src
+msgctxt "ANALYSIS_Xnpv"
+msgid "Returns the net present value for a non-periodic schedule of payments"
+msgstr ""
+"Liefert den Kapitalwert einer Reihe nicht periodisch anfallender Zahlungen"
+
+#. BjrcH
+#: analysis.src
+msgctxt "ANALYSIS_Xnpv"
+msgid "Rate"
+msgstr "Zins"
+
+#. 5kCmJ
+#: analysis.src
+msgctxt "ANALYSIS_Xnpv"
+msgid "The rate"
+msgstr "Der Nominalzins"
+
+#. KBxE5
+#: analysis.src
+msgctxt "ANALYSIS_Xnpv"
+msgid "Values"
+msgstr "Werte"
+
+#. HjdY8
+#: analysis.src
+msgctxt "ANALYSIS_Xnpv"
+msgid "The values"
+msgstr "Die Werte"
+
+#. DFXQE
+#: analysis.src
+msgctxt "ANALYSIS_Xnpv"
+msgid "Dates"
+msgstr "Zeitpunkte"
+
+#. WcoB9
+#: analysis.src
+msgctxt "ANALYSIS_Xnpv"
+msgid "The dates"
+msgstr "Die Zeitpunkte"
+
+#. iA7PV
+#: analysis.src
+msgctxt "ANALYSIS_Intrate"
+msgid "Returns the interest rate for a fully invested security"
+msgstr "Liefert den Zinssatz eines voll investierten Wertpapiers"
+
+#. QSbCe
+#: analysis.src
+msgctxt "ANALYSIS_Intrate"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. AKaKd
+#: analysis.src
+msgctxt "ANALYSIS_Intrate"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. rxPUy
+#: analysis.src
+msgctxt "ANALYSIS_Intrate"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. Zhgii
+#: analysis.src
+msgctxt "ANALYSIS_Intrate"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. KYJxC
+#: analysis.src
+msgctxt "ANALYSIS_Intrate"
+msgid "Investment"
+msgstr "Anlage"
+
+#. FRKeF
+#: analysis.src
+msgctxt "ANALYSIS_Intrate"
+msgid "The investment"
+msgstr "Die Anlage"
+
+#. DwCEw
+#: analysis.src
+msgctxt "ANALYSIS_Intrate"
+msgid "Redemption"
+msgstr "Rückzahlung"
+
+#. 7xDcc
+#: analysis.src
+msgctxt "ANALYSIS_Intrate"
+msgid "The redemption value"
+msgstr "Der Rückzahlungswert"
+
+#. GRAqN
+#: analysis.src
+msgctxt "ANALYSIS_Intrate"
+msgid "Basis"
+msgstr "Basis"
+
+#. NcGeu
+#: analysis.src
+msgctxt "ANALYSIS_Intrate"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. aqna7
+#: analysis.src
+msgctxt "ANALYSIS_Coupncd"
+msgid "Returns the first coupon date after the settlement date"
+msgstr "Liefert das Datum des ersten Zinstermins nach dem Abrechungstermin"
+
+#. bMgbM
+#: analysis.src
+msgctxt "ANALYSIS_Coupncd"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. hNzBw
+#: analysis.src
+msgctxt "ANALYSIS_Coupncd"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. YwN3F
+#: analysis.src
+msgctxt "ANALYSIS_Coupncd"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. QgyqZ
+#: analysis.src
+msgctxt "ANALYSIS_Coupncd"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. 4kfKL
+#: analysis.src
+msgctxt "ANALYSIS_Coupncd"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. sTEGC
+#: analysis.src
+msgctxt "ANALYSIS_Coupncd"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. erfuq
+#: analysis.src
+msgctxt "ANALYSIS_Coupncd"
+msgid "Basis"
+msgstr "Basis"
+
+#. HpL82
+#: analysis.src
+msgctxt "ANALYSIS_Coupncd"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. xUc5u
+#: analysis.src
+msgctxt "ANALYSIS_Coupdays"
+msgid ""
+"Returns the number of days in the coupon period containing the settlement "
+"date"
+msgstr ""
+"Liefert die Anzahl Tage der Zinsperiode, die den Abrechnungstermin "
+"einschließt"
+
+#. EEKAN
+#: analysis.src
+msgctxt "ANALYSIS_Coupdays"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. yDhqa
+#: analysis.src
+msgctxt "ANALYSIS_Coupdays"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. DFuYG
+#: analysis.src
+msgctxt "ANALYSIS_Coupdays"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. HUSS4
+#: analysis.src
+msgctxt "ANALYSIS_Coupdays"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. k9BFq
+#: analysis.src
+msgctxt "ANALYSIS_Coupdays"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. FNC2C
+#: analysis.src
+msgctxt "ANALYSIS_Coupdays"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. kLBFE
+#: analysis.src
+msgctxt "ANALYSIS_Coupdays"
+msgid "Basis"
+msgstr "Basis"
+
+#. YDwAe
+#: analysis.src
+msgctxt "ANALYSIS_Coupdays"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. MVE6E
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaysnc"
+msgid ""
+"Returns the number of days from the settlement date to the next coupon date"
+msgstr ""
+"Liefert die Anzahl der Tage vom Abrechnungstermin bis zum nächsten "
+"Zinstermin"
+
+#. 658AF
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaysnc"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. aFCv6
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaysnc"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. oD5EE
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaysnc"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. AAZAF
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaysnc"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. QWSfa
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaysnc"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. BqJcZ
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaysnc"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. PdsBs
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaysnc"
+msgid "Basis"
+msgstr "Basis"
+
+#. BSHmm
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaysnc"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. qYaB6
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaybs"
+msgid ""
+"Returns the number of days from the beginning of the coupon period to the "
+"settlement date"
+msgstr ""
+"Liefert die Anzahl der Tage vom Anfang des Zinstermins bis zum "
+"Abrechnungstermin"
+
+#. 27AAB
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaybs"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. bHLcV
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaybs"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. v7tF8
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaybs"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. QADAB
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaybs"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. ZHGGZ
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaybs"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. QpvLy
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaybs"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. Twk6G
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaybs"
+msgid "Basis"
+msgstr "Basis"
+
+#. mDrBv
+#: analysis.src
+msgctxt "ANALYSIS_Coupdaybs"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. aCBKW
+#: analysis.src
+msgctxt "ANALYSIS_Couppcd"
+msgid "Returns the last coupon date preceding the settlement date"
+msgstr "Liefert das Datum des letzten Zinstermins vor dem Abrechnungsdatum"
+
+#. 6vJVp
+#: analysis.src
+msgctxt "ANALYSIS_Couppcd"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. Q7Wbc
+#: analysis.src
+msgctxt "ANALYSIS_Couppcd"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. 5Yh9i
+#: analysis.src
+msgctxt "ANALYSIS_Couppcd"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. CF4QT
+#: analysis.src
+msgctxt "ANALYSIS_Couppcd"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. bMH2E
+#: analysis.src
+msgctxt "ANALYSIS_Couppcd"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. CYukW
+#: analysis.src
+msgctxt "ANALYSIS_Couppcd"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. GR5uD
+#: analysis.src
+msgctxt "ANALYSIS_Couppcd"
+msgid "Basis"
+msgstr "Basis"
+
+#. wRSRG
+#: analysis.src
+msgctxt "ANALYSIS_Couppcd"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. RVPya
+#: analysis.src
+msgctxt "ANALYSIS_Coupnum"
+msgid ""
+"Returns the number of coupons payable between the settlement and maturity "
+"dates"
+msgstr ""
+"Liefert die Anzahl der Zinstermine zwischen Abrechnungs- und "
+"Fälligkeitsdatum"
+
+#. RFtMC
+#: analysis.src
+msgctxt "ANALYSIS_Coupnum"
+msgid "Settlement"
+msgstr "Abrechnung"
+
+#. 5QUEA
+#: analysis.src
+msgctxt "ANALYSIS_Coupnum"
+msgid "The settlement"
+msgstr ""
+"Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet "
+"werden"
+
+#. W9xqG
+#: analysis.src
+msgctxt "ANALYSIS_Coupnum"
+msgid "Maturity"
+msgstr "Fälligkeit"
+
+#. 4PEWh
+#: analysis.src
+msgctxt "ANALYSIS_Coupnum"
+msgid "The maturity"
+msgstr "Das Fälligkeitsdatum"
+
+#. t9cVU
+#: analysis.src
+msgctxt "ANALYSIS_Coupnum"
+msgid "Frequency"
+msgstr "Häufigkeit"
+
+#. DTAQB
+#: analysis.src
+msgctxt "ANALYSIS_Coupnum"
+msgid "The frequency"
+msgstr "Die Anzahl der Zinszahlungen"
+
+#. mfc9J
+#: analysis.src
+msgctxt "ANALYSIS_Coupnum"
+msgid "Basis"
+msgstr "Basis"
+
+#. gDPws
+#: analysis.src
+msgctxt "ANALYSIS_Coupnum"
+msgid "The basis"
+msgstr "Legt fest, wie das Jahr zu berechnen ist"
+
+#. bJemX
+#: analysis.src
+msgctxt "ANALYSIS_Fvschedule"
+msgid ""
+"Returns the future value of the initial principal after a series of compound"
+" interest rates are applied"
+msgstr ""
+"Liefert den aufgezinsten Wert des Anfangskapitals für eine Reihe periodisch "
+"unterschiedlicher Zinssätze"
+
+#. yj5Bt
+#: analysis.src
+msgctxt "ANALYSIS_Fvschedule"
+msgid "Principal"
+msgstr "Kapital"
+
+#. mc5HE
+#: analysis.src
+msgctxt "ANALYSIS_Fvschedule"
+msgid "The principal"
+msgstr "Das Kapital"
+
+#. iqeP5
+#: analysis.src
+msgctxt "ANALYSIS_Fvschedule"
+msgid "Schedule"
+msgstr "Zinsen"
+
+#. JDWWT
+#: analysis.src
+msgctxt "ANALYSIS_Fvschedule"
+msgid "The schedule"
+msgstr "Die Zinsen"
+
+#. 6ijkz
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Workday"
+msgid "WORKDAY"
+msgstr "ARBEITSTAG"
+
+#. AfWsA
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Yearfrac"
+msgid "YEARFRAC"
+msgstr "BRTEILJAHRE"
+
+#. RVnvf
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Edate"
+msgid "EDATE"
+msgstr "EDATUM"
+
+#. PbFwe
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Weeknum"
+msgid "WEEKNUM"
+msgstr "KALENDERWOCHE"
+
+#. 3QYmb
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Eomonth"
+msgid "EOMONTH"
+msgstr "MONATSENDE"
+
+#. 6Gdze
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Networkdays"
+msgid "NETWORKDAYS"
+msgstr "NETTOARBEITSTAGE"
+
+#. DBAVH
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Amordegrc"
+msgid "AMORDEGRC"
+msgstr "AMORDEGRK"
+
+#. BiHTo
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Amorlinc"
+msgid "AMORLINC"
+msgstr "AMORLINEARK"
+
+#. DhBxE
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Accrint"
+msgid "ACCRINT"
+msgstr "AUFGELZINS"
+
+#. mwXCA
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Accrintm"
+msgid "ACCRINTM"
+msgstr "AUFGELZINSF"
+
+#. PzgsR
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Received"
+msgid "RECEIVED"
+msgstr "AUSZAHLUNG"
+
+#. EnPnX
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Disc"
+msgid "DISC"
+msgstr "DISAGIO"
+
+#. AJG3L
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Duration"
+msgid "DURATION"
+msgstr "LAUFZEIT"
+
+#. CxHZa
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Effect"
+msgid "EFFECT"
+msgstr "EFFEKTIV"
+
+#. UFAq3
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Cumprinc"
+msgid "CUMPRINC"
+msgstr "KUMKAPITAL"
+
+#. uD4Vz
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Cumipmt"
+msgid "CUMIPMT"
+msgstr "KUMZINSZ"
+
+#. eK9A4
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Price"
+msgid "PRICE"
+msgstr "KURS"
+
+#. 84H8U
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Pricedisc"
+msgid "PRICEDISC"
+msgstr "KURSDISAGIO"
+
+#. SwPPC
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Pricemat"
+msgid "PRICEMAT"
+msgstr "KURSFÄLLIG"
+
+#. 9gM6A
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Mduration"
+msgid "MDURATION"
+msgstr "MDURATION"
+
+#. qJ6pm
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Nominal"
+msgid "NOMINAL"
+msgstr "NOMINAL"
+
+#. UuQZn
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Dollarfr"
+msgid "DOLLARFR"
+msgstr "NOTIERUNGBRU"
+
+#. HC3sJ
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Dollarde"
+msgid "DOLLARDE"
+msgstr "NOTIERUNGDEZ"
+
+#. avnCE
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Yield"
+msgid "YIELD"
+msgstr "RENDITE"
+
+#. rDqBC
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Yielddisc"
+msgid "YIELDDISC"
+msgstr "RENDITEDIS"
+
+#. s8YNp
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Yieldmat"
+msgid "YIELDMAT"
+msgstr "RENDITEFÄLL"
+
+#. jrsqc
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Tbilleq"
+msgid "TBILLEQ"
+msgstr "TBILLÄQUIV"
+
+#. 3nkLF
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Tbillprice"
+msgid "TBILLPRICE"
+msgstr "TBILLKURS"
+
+#. 9Hqcq
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Tbillyield"
+msgid "TBILLYIELD"
+msgstr "TBILLRENDITE"
+
+#. j3fbB
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Oddfprice"
+msgid "ODDFPRICE"
+msgstr "UNREGERKURS"
+
+#. ZMFvE
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Oddfyield"
+msgid "ODDFYIELD"
+msgstr "UNREGERREND"
+
+#. uZWVW
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Oddlprice"
+msgid "ODDLPRICE"
+msgstr "UNREGLEKURS"
+
+#. fxNpT
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Oddlyield"
+msgid "ODDLYIELD"
+msgstr "UNREGLEREND"
+
+#. GwWGa
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Xirr"
+msgid "XIRR"
+msgstr "XINTZINSFUSS"
+
+#. FFtJx
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Xnpv"
+msgid "XNPV"
+msgstr "XKAPITALWERT"
+
+#. 2B9f5
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Intrate"
+msgid "INTRATE"
+msgstr "ZINSSATZ"
+
+#. 3GuwG
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Coupncd"
+msgid "COUPNCD"
+msgstr "ZINSTERMNZ"
+
+#. QeAEY
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Coupdays"
+msgid "COUPDAYS"
+msgstr "ZINSTERMTAGE"
+
+#. Lq4dr
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Coupdaysnc"
+msgid "COUPDAYSNC"
+msgstr "ZINSTERMTAGNZ"
+
+#. qtDUP
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Coupdaybs"
+msgid "COUPDAYBS"
+msgstr "ZINSTERMTAGVA"
+
+#. FAwmX
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Couppcd"
+msgid "COUPPCD"
+msgstr "ZINSTERMVZ"
+
+#. 6Xh9e
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Coupnum"
+msgid "COUPNUM"
+msgstr "ZINSTERMZAHL"
+
+#. bLz5m
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Fvschedule"
+msgid "FVSCHEDULE"
+msgstr "ZW2"
+
+#. fUGco
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Iseven"
+msgid "ISEVEN"
+msgstr "ISTGERADE"
+
+#. FBUvG
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Isodd"
+msgid "ISODD"
+msgstr "ISTUNGERADE"
+
+#. hFNy7
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Gcd"
+msgid "GCD"
+msgstr "GGT"
+
+#. TCtJN
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Lcm"
+msgid "LCM"
+msgstr "KGV"
+
+#. erEG4
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Multinomial"
+msgid "MULTINOMIAL"
+msgstr "POLYNOMIAL"
+
+#. CE7MF
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Seriessum"
+msgid "SERIESSUM"
+msgstr "POTENZREIHE"
+
+#. uYhca
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Quotient"
+msgid "QUOTIENT"
+msgstr "QUOTIENT"
+
+#. 9ckWv
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Mround"
+msgid "MROUND"
+msgstr "VRUNDEN"
+
+#. QG9wZ
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Sqrtpi"
+msgid "SQRTPI"
+msgstr "WURZELPI"
+
+#. PdYhv
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Randbetween"
+msgid "RANDBETWEEN"
+msgstr "ZUFALLSBEREICH"
+
+#. EWZAR
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Besseli"
+msgid "BESSELI"
+msgstr "BESSELI"
+
+#. CjTjy
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Besselj"
+msgid "BESSELJ"
+msgstr "BESSELJ"
+
+#. Z3VFR
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Besselk"
+msgid "BESSELK"
+msgstr "BESSELK"
+
+#. rekfF
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Bessely"
+msgid "BESSELY"
+msgstr "BESSELY"
+
+#. pNT4R
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Bin2Dec"
+msgid "BIN2DEC"
+msgstr "BININDEZ"
+
+#. F8YRr
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Bin2Hex"
+msgid "BIN2HEX"
+msgstr "BININHEX"
+
+#. Eazmz
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Bin2Oct"
+msgid "BIN2OCT"
+msgstr "BININOKT"
+
+#. tu3oD
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Delta"
+msgid "DELTA"
+msgstr "DELTA"
+
+#. xZ9JA
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Dec2Bin"
+msgid "DEC2BIN"
+msgstr "DEZINBIN"
+
+#. WpHqM
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Dec2Hex"
+msgid "DEC2HEX"
+msgstr "DEZINHEX"
+
+#. vKjMV
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Dec2Oct"
+msgid "DEC2OCT"
+msgstr "DEZINOKT"
+
+#. BTvQw
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Erf"
+msgid "ERF"
+msgstr "GAUSSFEHLER"
+
+#. LBssK
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Erfc"
+msgid "ERFC"
+msgstr "GAUSSFKOMPL"
+
+#. BF4hQ
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Gestep"
+msgid "GESTEP"
+msgstr "GGANZZAHL"
+
+#. WpRkG
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Hex2Bin"
+msgid "HEX2BIN"
+msgstr "HEXINBIN"
+
+#. Pv82t
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Hex2Dec"
+msgid "HEX2DEC"
+msgstr "HEXINDEZ"
+
+#. Y9YjX
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Hex2Oct"
+msgid "HEX2OCT"
+msgstr "HEXINOKT"
+
+#. ZBD5F
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imabs"
+msgid "IMABS"
+msgstr "IMABS"
+
+#. BAByk
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imaginary"
+msgid "IMAGINARY"
+msgstr "IMAGINÄRTEIL"
+
+#. 2uNWF
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Impower"
+msgid "IMPOWER"
+msgstr "IMPOTENZ"
+
+#. rYyTW
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imargument"
+msgid "IMARGUMENT"
+msgstr "IMARGUMENT"
+
+#. mqoCG
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imcos"
+msgid "IMCOS"
+msgstr "IMCOS"
+
+#. Gg6SX
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imdiv"
+msgid "IMDIV"
+msgstr "IMDIV"
+
+#. awcit
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imexp"
+msgid "IMEXP"
+msgstr "IMEXP"
+
+#. 4Bwdp
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imconjugate"
+msgid "IMCONJUGATE"
+msgstr "IMKONJUGIERT"
+
+#. M6eFM
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imln"
+msgid "IMLN"
+msgstr "IMLN"
+
+#. fqZYW
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imlog10"
+msgid "IMLOG10"
+msgstr "IMLOG10"
+
+#. WHtaY
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imlog2"
+msgid "IMLOG2"
+msgstr "IMLOG2"
+
+#. TVDb3
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Improduct"
+msgid "IMPRODUCT"
+msgstr "IMPRODUKT"
+
+#. sjBzU
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imreal"
+msgid "IMREAL"
+msgstr "IMREALTEIL"
+
+#. 5er6D
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imsin"
+msgid "IMSIN"
+msgstr "IMSIN"
+
+#. UjErA
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imsub"
+msgid "IMSUB"
+msgstr "IMSUB"
+
+#. tWMXp
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imsum"
+msgid "IMSUM"
+msgstr "IMSUMME"
+
+#. eeACY
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imsqrt"
+msgid "IMSQRT"
+msgstr "IMWURZEL"
+
+#. F8G2A
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imtan"
+msgid "IMTAN"
+msgstr "IMTAN"
+
+#. LAvtq
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imsec"
+msgid "IMSEC"
+msgstr "IMSEC"
+
+#. z2LA2
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imcsc"
+msgid "IMCSC"
+msgstr "IMCOSEC"
+
+#. QMh3f
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imcot"
+msgid "IMCOT"
+msgstr "IMCOT"
+
+#. dDt5m
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imsinh"
+msgid "IMSINH"
+msgstr "IMSINHYP"
+
+#. AbhV7
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imcosh"
+msgid "IMCOSH"
+msgstr "IMCOSHYP"
+
+#. uAUF5
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imsech"
+msgid "IMSECH"
+msgstr "IMSECHYP"
+
+#. U5b99
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Imcsch"
+msgid "IMCSCH"
+msgstr "IMCOSECHYP"
+
+#. CF5gh
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Complex"
+msgid "COMPLEX"
+msgstr "KOMPLEXE"
+
+#. TT4GS
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Oct2Bin"
+msgid "OCT2BIN"
+msgstr "OKTINBIN"
+
+#. JdMvF
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Oct2Dec"
+msgid "OCT2DEC"
+msgstr "OKTINDEZ"
+
+#. uiNSk
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Oct2Hex"
+msgid "OCT2HEX"
+msgstr "OKTINHEX"
+
+#. UoAt5
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Convert"
+msgid "CONVERT"
+msgstr "UMRECHNEN"
+
+#. sNrDC
+#: analysis_funcnames.src
+msgctxt "ANALYSIS_FUNCNAME_Factdouble"
+msgid "FACTDOUBLE"
+msgstr "ZWEIFAKULTÄT"
+
+#. GpdwB
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "Pricing of a barrier option"
+msgstr "Preisgestaltung einer Barrier-Option"
+
+#. G9CqA
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "spot"
+msgstr "Startwert"
+
+#. griJk
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "Price/value of the underlying asset"
+msgstr "Preis/Wert des Basiswertes"
+
+#. kdEJ9
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "vol"
+msgstr "Volatilität"
+
+#. mkRVX
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "Annual volatility of the underlying asset"
+msgstr "Jährliche Volatilität des Basiswertes"
+
+#. rj3my
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "r"
+msgstr "Zins"
+
+#. 5ycmU
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "Interest rate (continuously compounded)"
+msgstr "Zinssatz (stetige Verzinsung)"
+
+#. k7WX6
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "rf"
+msgstr "Ausländischer Zins"
+
+#. PKubC
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "Foreign interest rate (continuously compounded)"
+msgstr "Ausländischer Zinssatz (stetige Verzinsung)"
+
+#. X7tiE
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "T"
+msgstr "Laufzeit"
+
+#. EDrkw
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "Time to maturity of the option in years"
+msgstr "Laufzeit der Option in Jahren"
+
+#. 8XwjD
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "strike"
+msgstr "Strike"
+
+#. M2EPW
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "Strike level of the option"
+msgstr "Strike-Wert der Option"
+
+#. PHSND
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "barrier_low"
+msgstr "Untere_Barriere"
+
+#. yDAAU
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "Lower barrier (set to 0 for no lower barrier)"
+msgstr "Untere Barriere (0 für keine untere Barriere)"
+
+#. qZ7BT
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "barrier_up"
+msgstr "Obere_Barriere"
+
+#. BucTp
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "Upper barrier (set to 0 for no upper barrier)"
+msgstr "Obere Barriere (0 für keine obere Barriere)"
+
+#. bBuCG
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "rebate"
+msgstr "Rabatt"
+
+#. vUB3C
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "Amount of money paid at maturity if barrier was hit"
+msgstr "Fälliger Geldbetrag, falls Schranke erreicht wird"
+
+#. dPfG2
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "put/call"
+msgstr "Kauf/Verkauf"
+
+#. 4LDhv
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "String to define if the option is a (p)ut or a (c)all"
+msgstr ""
+"Festzulegen, ob die Option eine (p) Put- oder eine (c) Call-Option ist"
+
+#. FzQLf
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "knock in/out"
+msgstr "Knock-In/Out"
+
+#. RquEA
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "String to define if the option is of type knock-(i)n or knock-(o)ut"
+msgstr ""
+"Festzulegen, ob die Option eine (i) Knock-In- oder (o) Knock-Out-Option ist"
+
+#. mNNwJ
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "barrier_type"
+msgstr "Barrier-Typ"
+
+#. adNji
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid ""
+"String to define whether the barrier is observed (c)ontinuously or only at "
+"the (e)nd/maturity"
+msgstr ""
+"Festzulegen, ob eine Barriere (K)ontinuierlich oder nur am (E)nde "
+"Berücksichtigung findet"
+
+#. bMmAA
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid "greek"
+msgstr "Griechisch"
+
+#. bawL6
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptBarrier"
+msgid ""
+"Optional parameter, if left out then the function simply returns the option "
+"price; if set, the function returns price sensitivities (Greeks) to one of "
+"the input parameters; possible values are (d)elta, (g)amma, (t)heta, v(e)ga,"
+" v(o)lga, v(a)nna, (r)ho, rho(f)"
+msgstr ""
+"Optionaler Parameter, ohne liefert die Funktion den einfachen Optionspreis; "
+"mit liefert die Funktion einen von einem der folgenden Parameter "
+"(griechisch) abhängigen Preis; mögliche Werte sind (D)elta, (G)amma, "
+"(T)heta, V(e)ga, V(o)lga, v(a)nna, (R)ho, Rho(f)"
+
+#. nggAA
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "Pricing of a touch/no-touch option"
+msgstr "Preisgestaltung einer Touch/No-Touch Option"
+
+#. G4FoH
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "spot"
+msgstr "Startwert"
+
+#. k45Ku
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "Price/value of the underlying asset"
+msgstr "Preis/Wert des Basiswertes"
+
+#. bxicn
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "vol"
+msgstr "Volatilität"
+
+#. XzXoA
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "Annual volatility of the underlying asset"
+msgstr "Jährliche Volatilität des Basiswertes"
+
+#. vFcRp
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "r"
+msgstr "Zins"
+
+#. a2VQD
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "Interest rate (continuously compounded)"
+msgstr "Zinssatz (stetige Verzinsung)"
+
+#. NphFs
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "rf"
+msgstr "Ausländischer Zins"
+
+#. nDCzr
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "Foreign interest rate (continuously compounded)"
+msgstr "Ausländischer Zinssatz (stetige Verzinsung)"
+
+#. TsCN5
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "T"
+msgstr "Laufzeit"
+
+#. rfjRD
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "Time to maturity of the option in years"
+msgstr "Laufzeit der Option in Jahren"
+
+#. iRUEL
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "barrier_low"
+msgstr "Untere_Barriere"
+
+#. zmuoi
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "Lower barrier (set to 0 for no lower barrier)"
+msgstr "Untere Barriere (0 für keine untere Barriere)"
+
+#. PACi3
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "barrier_up"
+msgstr "Obere_Barriere"
+
+#. o525W
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "Upper barrier (set to 0 for no upper barrier)"
+msgstr "Obere Barriere (0 für keine obere Barriere)"
+
+#. WSDbG
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "foreign/domestic"
+msgstr "aus-/inländisch"
+
+#. 7R46A
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid ""
+"String to define if the option pays one unit of (d)omestic currency (cash or"
+" nothing) or (f)oreign currency (asset or nothing)"
+msgstr ""
+"Festzulegen, ob die Option eine Einheit einer (i)nländischen (Bargeld oder "
+"nichts) oder (a)usländischen Währung (Fremdwährung oder nichts) ist"
+
+#. UBbza
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "knock in/out"
+msgstr "Knock-In/Out"
+
+#. A8faz
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid ""
+"String to define if the option is of type knock-(i)n (touch) or knock-(o)ut "
+"(no-touch)"
+msgstr ""
+"Legt fest, ob die Option eine (i) Knock-In- oder (o) Knock-Out-Option ist"
+
+#. 5EdZP
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "barrier_type"
+msgstr "Barriereart"
+
+#. mAcT6
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid ""
+"String to define whether the barrier is observed (c)ontinuously or only at "
+"the (e)nd/maturity"
+msgstr ""
+"Festzulegen, ob eine Barriere (K)ontinuierlich oder nur am (E)nde "
+"Berücksichtigung findet"
+
+#. DQHSE
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid "greek"
+msgstr "Griechisch"
+
+#. EPFrM
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptTouch"
+msgid ""
+"Optional parameter, if left out then the function simply returns the option "
+"price; if set, the function returns price sensitivities (Greeks) to one of "
+"the input parameters; possible values are (d)elta, (g)amma, (t)heta, v(e)ga,"
+" v(o)lga, v(a)nna, (r)ho, rho(f)"
+msgstr ""
+"Optionaler Parameter, ohne liefert die Funktion den einfachen Optionspreis; "
+"mit liefert die Funktion einen von einem der folgenden Parameter "
+"(griechisch) abhängigen Preis; mögliche Werte sind (D)elta, (G)amma, "
+"(T)heta, V(e)ga, V(o)lga, v(a)nna, (R)ho, Rho(f)"
+
+#. sPkFe
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbHit"
+msgid ""
+"Probability that an asset hits a barrier assuming it follows dS/S = mu dt + "
+"vol dW"
+msgstr ""
+"Wahrscheinlichkeit, dass ein Wert eine Barriere trifft, sofern er dS/S = mu "
+"dt + Vol dW erfüllt"
+
+#. qzeHP
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbHit"
+msgid "spot"
+msgstr "Startwert"
+
+#. hBkLM
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbHit"
+msgid "Price/value S of the underlying asset"
+msgstr "Preis/Wert des Basiswertes"
+
+#. EMAZ3
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbHit"
+msgid "vol"
+msgstr "Vol"
+
+#. 74JKC
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbHit"
+msgid "Annual volatility of the underlying asset"
+msgstr "Jährliche Volatilität des Basiswertes"
+
+#. 86Zqn
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbHit"
+msgid "drift"
+msgstr "Veränderung"
+
+#. qsmwN
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbHit"
+msgid "Parameter mu in dS/S = mu dt + vol dW"
+msgstr "Parameter mu in dS/S = mu dt + Vol dW"
+
+#. BxesB
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbHit"
+msgid "T"
+msgstr "Laufzeit"
+
+#. uzAtG
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbHit"
+msgid "Time to maturity"
+msgstr "Laufzeit"
+
+#. CJBBH
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbHit"
+msgid "barrier_low"
+msgstr "Untere_Barriere"
+
+#. CfPbF
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbHit"
+msgid "Lower barrier (set to 0 for no lower barrier)"
+msgstr "Untere Barriere (0 für keine untere Barriere)"
+
+#. 9cRwz
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbHit"
+msgid "barrier_up"
+msgstr "Obere_Barriere"
+
+#. xLZJL
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbHit"
+msgid "Upper barrier (set to 0 for no upper barrier)"
+msgstr "Obere Barriere (0 für keine obere Barriere)"
+
+#. EGDE8
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid ""
+"Probability that an asset will at maturity end up between two barrier "
+"levels, assuming it follows dS/S = mu dt + vol dW (if the last two optional "
+"parameters (strike, put/call) are specified, the probability of S_T in "
+"[strike, upper barrier] for a call and S_T in [lower barrier, strike] for a "
+"put will be returned)"
+msgstr ""
+"Wahrscheinlichkeit, dass ein Wert am Laufzeitende zwischen zwei Barrieren "
+"landet, sofern er dS/S = mu dt + Vol dW erfüllt (wenn die beiden letzten "
+"optionalen Parameter (Strike, Put/Call) definiert sind, wird die "
+"Wahrscheinlichkeit für S_T [Strike, obere Barriere] für einen Call und S_T "
+"[untere Barriere, Strike] für ein Put zurückgegeben)"
+
+#. hCYDy
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "spot"
+msgstr "Startwert"
+
+#. WsfBx
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "Price/value of the asset"
+msgstr "Preis/Wert des Wertes"
+
+#. MPbAe
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "vol"
+msgstr "Vol"
+
+#. LS34G
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "Annual volatility of the asset"
+msgstr "Jährliche Volatilität des Wertes"
+
+#. oscBj
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "drift"
+msgstr "Veränderung"
+
+#. b9uKH
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "Parameter mu from dS/S = mu dt + vol dW"
+msgstr "Parameter mu in dS/S = mu dt + Vol dW"
+
+#. EAhiT
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "T"
+msgstr "Laufzeit"
+
+#. EbYRY
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "Time to maturity in years"
+msgstr "Laufzeit in Jahren"
+
+#. CD9Zf
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "barrier_low"
+msgstr "Untere_Barriere"
+
+#. AMhM4
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "Lower barrier (set to 0 for no lower barrier)"
+msgstr "Untere Barriere (0 für keine untere Barriere)"
+
+#. AnqpW
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "barrier_up"
+msgstr "Obere_Barriere"
+
+#. XeFcH
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "Upper barrier (set to 0 for no upper barrier)"
+msgstr "Obere Barriere (0 für keine obere Barriere)"
+
+#. h5bwM
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "put/call"
+msgstr "Kauf/Verkauf"
+
+#. 25asq
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "Optional (p)ut/(c)all indicator"
+msgstr "Optionaler Kauf (p) / Verkauf (c) Indikator"
+
+#. bUudC
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "strike"
+msgstr "Strike"
+
+#. DyhDw
+#: pricing.src
+msgctxt "PRICING_FUNCDESC_OptProbInMoney"
+msgid "Optional strike level"
+msgstr "Optionaler Strike-Wert"
+
+#. 8xTrH
+#: pricing.src
+msgctxt "PRICING_FUNCNAME_OptBarrier"
+msgid "OPT_BARRIER"
+msgstr "OPT_BARRIER"
+
+#. 5xNGn
+#: pricing.src
+msgctxt "PRICING_FUNCNAME_OptTouch"
+msgid "OPT_TOUCH"
+msgstr "OPT_TOUCH"
+
+#. pnGGe
+#: pricing.src
+msgctxt "PRICING_FUNCNAME_OptProbHit"
+msgid "OPT_PROB_HIT"
+msgstr "OPT_PROB_HIT"
+
+#. s75E5
+#: pricing.src
+msgctxt "PRICING_FUNCNAME_OptProbInMoney"
+msgid "OPT_PROB_INMONEY"
+msgstr "OPT_PROB_INMONEY"
+
+#. VGRBw
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid "Calculates the number of weeks in a specific period"
+msgstr "Berechnet die Anzahl der Wochen in einem bestimmten Zeitraum"
+
+#. GzBRZ
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid "Start date"
+msgstr "Startdatum"
+
+#. cP4gN
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid "First day of the period"
+msgstr "Erster Tag des Zeitraums"
+
+#. CbDGV
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid "End date"
+msgstr "Enddatum"
+
+#. NJwqc
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid "Last day of the period"
+msgstr "Letzter Tag des Zeitraums"
+
+#. J6GA2
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid "Type"
+msgstr "Typ"
+
+#. TaWZM
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffWeeks"
+msgid ""
+"Type of calculation: Type=0 means the time interval, Type=1 means calendar "
+"weeks."
+msgstr ""
+"Art der Berechnung: Art=0 für Wochenanzahl im Intervall, Art=1 für "
+"Kalenderwochen."
+
+#. MhuHk
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid "Determines the number of months in a specific period."
+msgstr "Berechnet die Anzahl der Monate in einem bestimmten Zeitraum."
+
+#. CWPgV
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid "Start date"
+msgstr "Startdatum"
+
+#. joP95
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid "First day of the period."
+msgstr "Erster Tag des Zeitraums."
+
+#. MPAeA
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid "End date"
+msgstr "Enddatum"
+
+#. GRW2z
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid "Last day of the period."
+msgstr "Letzter Tag des Zeitraums."
+
+#. FG6Yn
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid "Type"
+msgstr "Typ"
+
+#. Rui9R
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffMonths"
+msgid ""
+"Type of calculation: Type=0 means the time interval, Type=1 means calendar "
+"months."
+msgstr ""
+"Art der Berechnung: Art=0 für Monatsanzahl im Intervall, Art=1 für "
+"Kalendermonate."
+
+#. GdYZ5
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid "Calculates the number of years in a specific period."
+msgstr "Berechnet die Anzahl der Jahre in einem bestimmten Zeitraum."
+
+#. Ep8if
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid "Start date"
+msgstr "Startdatum"
+
+#. 86b9L
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid "First day of the period"
+msgstr "Erster Tag des Zeitraums"
+
+#. LMX7Q
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid "End date"
+msgstr "Enddatum"
+
+#. mcrms
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid "Last day of the period"
+msgstr "Letzter Tag des Zeitraums"
+
+#. erjJb
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid "Type"
+msgstr "Typ"
+
+#. V2Af2
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DiffYears"
+msgid ""
+"Type of calculation: Type=0 means the time interval, Type=1 means calendar "
+"years."
+msgstr ""
+"Art der Berechnung: Art=0 für Jahresanzahl im Intervall, Art=1 für "
+"Kalenderjahre."
+
+#. s8rqv
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_IsLeapYear"
+msgid ""
+"Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE)."
+msgstr ""
+"Gibt 1 (WAHR) zurück, wenn das angegebene Datum in einem Schaltjahr liegt, "
+"sonst 0 (FALSCH)."
+
+#. mgbkL
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_IsLeapYear"
+msgid "Date"
+msgstr "Datum"
+
+#. 3MCbg
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_IsLeapYear"
+msgid "Any day in the desired year"
+msgstr "Ein beliebiger Tag im gewünschten Jahr"
+
+#. 3NAxZ
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DaysInMonth"
+msgid ""
+"Returns the number of days of the month in which the date entered occurs"
+msgstr ""
+"Gibt die Anzahl der Tage des Monats zurück, in dem das angegebene Datum "
+"liegt"
+
+#. cCoZL
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DaysInMonth"
+msgid "Date"
+msgstr "Datum"
+
+#. BdBqM
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DaysInMonth"
+msgid "Any day in the desired month"
+msgstr "Ein beliebiger Tag im gewünschten Monat"
+
+#. CJAFG
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DaysInYear"
+msgid ""
+"Returns the number of days of the year in which the date entered occurs."
+msgstr ""
+"Gibt die Anzahl der Tage des Jahres zurück, in dem das angegebene Datum "
+"liegt."
+
+#. HUPEP
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DaysInYear"
+msgid "Date"
+msgstr "Datum"
+
+#. pKgJp
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_DaysInYear"
+msgid "Any day in the desired year"
+msgstr "Ein beliebiger Tag im gewünschten Jahr"
+
+#. i22CF
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_WeeksInYear"
+msgid ""
+"Returns the number of weeks of the year in which the date entered occurs"
+msgstr ""
+"Gibt die Anzahl der Wochen des Jahres zurück, in dem das angegebene Datum "
+"liegt"
+
+#. dKBwR
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_WeeksInYear"
+msgid "Date"
+msgstr "Datum"
+
+#. hULbr
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_WeeksInYear"
+msgid "Any day in the desired year"
+msgstr "Ein beliebiger Tag im gewünschten Jahr"
+
+#. U4M9a
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_Rot13"
+msgid "Encrypts or decrypts a text using the ROT13 algorithm"
+msgstr ""
+"Verschlüsselt oder entschlüsselt einen Text mit Hilfe des ROT13-Algorithmus"
+
+#. dZ8dq
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_Rot13"
+msgid "Text"
+msgstr "Text"
+
+#. jhFkb
+#: datefunc.src
+msgctxt "DATE_FUNCDESC_Rot13"
+msgid "Text to be encrypted or text already encrypted"
+msgstr "Zu verschlüsselnder oder schon verschlüsselter Text"
+
+#. Hb9ck
+#: datefunc.src
+msgctxt "DATE_FUNCNAME_DiffWeeks"
+msgid "WEEKS"
+msgstr "WOCHEN"
+
+#. jCkdR
+#: datefunc.src
+msgctxt "DATE_FUNCNAME_DiffMonths"
+msgid "MONTHS"
+msgstr "MONATE"
+
+#. rqGRw
+#: datefunc.src
+msgctxt "DATE_FUNCNAME_DiffYears"
+msgid "YEARS"
+msgstr "JAHRE"
+
+#. rUFQG
+#: datefunc.src
+msgctxt "DATE_FUNCNAME_IsLeapYear"
+msgid "ISLEAPYEAR"
+msgstr "ISTSCHALTJAHR"
+
+#. GFwc8
+#: datefunc.src
+msgctxt "DATE_FUNCNAME_DaysInMonth"
+msgid "DAYSINMONTH"
+msgstr "TAGEIMMONAT"
+
+#. JAngX
+#: datefunc.src
+msgctxt "DATE_FUNCNAME_DaysInYear"
+msgid "DAYSINYEAR"
+msgstr "TAGEIMJAHR"
+
+#. t2xw6
+#: datefunc.src
+msgctxt "DATE_FUNCNAME_WeeksInYear"
+msgid "WEEKSINYEAR"
+msgstr "WOCHENIMJAHR"
+
+#. 38V94
+#: datefunc.src
+msgctxt "DATE_FUNCNAME_Rot13"
+msgid "ROT13"
+msgstr "ROT13"
diff --git a/source/de/scaddins/source/analysis.po b/source/de/scaddins/source/analysis.po
deleted file mode 100644
index 49a9ac5aa4d..00000000000
--- a/source/de/scaddins/source/analysis.po
+++ /dev/null
@@ -1,6893 +0,0 @@
-#. extracted from scaddins/source/analysis
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-20 13:14+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492694079.000000\n"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Workday\n"
-"Returns the serial number of the date before or after a specified number of workdays\n"
-"itemlist.text"
-msgid "Returns the serial number of the date before or after a specified number of workdays"
-msgstr "Liefert die fortlaufende Zahl des Datums, das vor oder nach einer bestimmten Anzahl von Arbeitstagen liegt."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Workday\n"
-"Start date\n"
-"itemlist.text"
-msgid "Start date"
-msgstr "Startdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Workday\n"
-"The start date\n"
-"itemlist.text"
-msgid "The start date"
-msgstr "Das Startdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Workday\n"
-"Days\n"
-"itemlist.text"
-msgid "Days"
-msgstr "Tage"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Workday\n"
-"The number of workdays before or after the start date\n"
-"itemlist.text"
-msgid "The number of workdays before or after the start date"
-msgstr "Anzahl der Arbeitstage vor oder nach dem Startdatum."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Workday\n"
-"Holidays\n"
-"itemlist.text"
-msgid "Holidays"
-msgstr "Freie Tage"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Workday\n"
-"List of date values of days off (vacation, holidays, etc.)\n"
-"itemlist.text"
-msgid "List of date values of days off (vacation, holidays, etc.)"
-msgstr "Liste mit Datumswerten freier Tage (Urlaub, Feiertage, usw.)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yearfrac\n"
-"Returns the number of years (including fractional part) between two dates\n"
-"itemlist.text"
-msgid "Returns the number of years (including fractional part) between two dates"
-msgstr "Gibt die Anzahl der Jahre (einschließlich Bruchteil) zwischen zwei Daten zurück"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yearfrac\n"
-"Start date\n"
-"itemlist.text"
-msgid "Start date"
-msgstr "Startdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yearfrac\n"
-"The start date\n"
-"itemlist.text"
-msgid "The start date"
-msgstr "Das Startdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yearfrac\n"
-"End date\n"
-"itemlist.text"
-msgid "End date"
-msgstr "Enddatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yearfrac\n"
-"The end date\n"
-"itemlist.text"
-msgid "The end date"
-msgstr "Das Enddatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yearfrac\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yearfrac\n"
-"Basis indicates the day-count convention to use in the calculation\n"
-"itemlist.text"
-msgid "Basis indicates the day-count convention to use in the calculation"
-msgstr "Die Basis gibt die Tageszählungs-Konvention an, die für die Berechnung verwendet wird."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Edate\n"
-"Returns the serial number of the date that is a specified number of months before or after the start date\n"
-"itemlist.text"
-msgid "Returns the serial number of the date that is a specified number of months before or after the start date"
-msgstr "Liefert die fortlaufende Zahl des Datums, das eine bestimmte Anzahl Monate vor bzw. nach dem Startdatum liegt"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Edate\n"
-"Start date\n"
-"itemlist.text"
-msgid "Start date"
-msgstr "Startdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Edate\n"
-"The start date\n"
-"itemlist.text"
-msgid "The start date"
-msgstr "Das Startdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Edate\n"
-"Months\n"
-"itemlist.text"
-msgid "Months"
-msgstr "Monate"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Edate\n"
-"Number of months before or after the start date\n"
-"itemlist.text"
-msgid "Number of months before or after the start date"
-msgstr "Anzahl der Monate vor oder nach dem Startdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Weeknum\n"
-"Returns the number of the calendar week in which the specified date occurs.\n"
-"This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead.\n"
-"itemlist.text"
-msgid ""
-"Returns the number of the calendar week in which the specified date occurs.\n"
-"This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead."
-msgstr ""
-"Gibt die Zahl der Kalenderwoche zurück, in der das angegebene Datum liegt.\n"
-"Diese Funktion existiert für die Kompatibilität zu älteren Microsoft Excel-Dokumenten, für neue Dokumente verwenden Sie stattdessen KALENDERWOCHE."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Weeknum\n"
-"Date\n"
-"itemlist.text"
-msgid "Date"
-msgstr "Datum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Weeknum\n"
-"The date or date serial number\n"
-"itemlist.text"
-msgid "The date or date serial number"
-msgstr "Das Datum oder die Datumszahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Weeknum\n"
-"Return type\n"
-"itemlist.text"
-msgid "Return type"
-msgstr "Rückgabetyp"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Weeknum\n"
-"Indicates the first day of the week (1 = Sunday, 2 = Monday)\n"
-"itemlist.text"
-msgid "Indicates the first day of the week (1 = Sunday, 2 = Monday)"
-msgstr "Legt den ersten Tag der Woche fest (1 = Sonntag, 2 = Montag)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Eomonth\n"
-"Returns the serial number of the last day of the month that comes a certain number of months before or after the start date\n"
-"itemlist.text"
-msgid "Returns the serial number of the last day of the month that comes a certain number of months before or after the start date"
-msgstr "Liefert die fortlaufende Zahl des Datums, das den letzten Tag des Monats repräsentiert, der eine bestimmte Anzahl von Monaten vor oder nach dem Ausgangsdatum liegt"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Eomonth\n"
-"Start date\n"
-"itemlist.text"
-msgid "Start date"
-msgstr "Startdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Eomonth\n"
-"The start date\n"
-"itemlist.text"
-msgid "The start date"
-msgstr "Das Startdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Eomonth\n"
-"Months\n"
-"itemlist.text"
-msgid "Months"
-msgstr "Monate"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Eomonth\n"
-"Number of months before or after the start date\n"
-"itemlist.text"
-msgid "Number of months before or after the start date"
-msgstr "Anzahl der Monate vor oder nach dem Startdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Networkdays\n"
-"Returns the number of workdays between two dates.\n"
-"This function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead.\n"
-"itemlist.text"
-msgid ""
-"Returns the number of workdays between two dates.\n"
-"This function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead."
-msgstr ""
-"Gibt eine Anzahl an Werktagen zwischen zwei Daten zurück.\n"
-"Diese Funktion existiert für die Kompatibilität zu älteren Microsoft Excel-Dokumenten, für neue Dokumente verwenden Sie stattdessen NETTOARBEITSTAGE."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Networkdays\n"
-"Start date\n"
-"itemlist.text"
-msgid "Start date"
-msgstr "Startdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Networkdays\n"
-"The start date\n"
-"itemlist.text"
-msgid "The start date"
-msgstr "Das Startdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Networkdays\n"
-"End date\n"
-"itemlist.text"
-msgid "End date"
-msgstr "Enddatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Networkdays\n"
-"The end date\n"
-"itemlist.text"
-msgid "The end date"
-msgstr "Das Enddatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Networkdays\n"
-"Holidays\n"
-"itemlist.text"
-msgid "Holidays"
-msgstr "Freie Tage"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Networkdays\n"
-"List of date values representing days off (vacation, holidays, etc.)\n"
-"itemlist.text"
-msgid "List of date values representing days off (vacation, holidays, etc.)"
-msgstr "Liste mit Datumswerten, welche die freien Tage (Urlaub, Feiertage, usw.) darstellt"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Iseven\n"
-"Returns the value 'true' if the number is even\n"
-"itemlist.text"
-msgid "Returns the value 'true' if the number is even"
-msgstr "Gibt den Wert 'WAHR' zurück, wenn die Zahl gerade ist."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Iseven\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Iseven\n"
-"The number\n"
-"itemlist.text"
-msgid "The number"
-msgstr "Die Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Isodd\n"
-"Returns the value 'true' if the number is odd\n"
-"itemlist.text"
-msgid "Returns the value 'true' if the number is odd"
-msgstr "Gibt den Wert 'WAHR' zurück, wenn die Zahl ungerade ist."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Isodd\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Isodd\n"
-"The number\n"
-"itemlist.text"
-msgid "The number"
-msgstr "Die Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Multinomial\n"
-"Returns the multinomial coefficient of a set of numbers\n"
-"itemlist.text"
-msgid "Returns the multinomial coefficient of a set of numbers"
-msgstr "Berechnet den Polynomialkoeffizienten einer Gruppe von Zahlen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Multinomial\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Multinomial\n"
-"Number or list of numbers for which you want the multinomial coefficient\n"
-"itemlist.text"
-msgid "Number or list of numbers for which you want the multinomial coefficient"
-msgstr "Zahl oder Liste von Zahlen, deren Polynomialkoeffizienten bestimmt werden soll"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Seriessum\n"
-"Returns the sum of a power series\n"
-"itemlist.text"
-msgid "Returns the sum of a power series"
-msgstr "Berechnet die Summe von Potenzen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Seriessum\n"
-"X\n"
-"itemlist.text"
-msgid "X"
-msgstr "X"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Seriessum\n"
-"The independent variable of the power series\n"
-"itemlist.text"
-msgid "The independent variable of the power series"
-msgstr "Unabhängige Variable der Potenzreihe"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Seriessum\n"
-"N\n"
-"itemlist.text"
-msgid "N"
-msgstr "N"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Seriessum\n"
-"The initial power to which x is to be raised\n"
-"itemlist.text"
-msgid "The initial power to which x is to be raised"
-msgstr "Anfangspotenz, in die X erhoben werden soll"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Seriessum\n"
-"M\n"
-"itemlist.text"
-msgid "M"
-msgstr "M"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Seriessum\n"
-"The increment by which to increase n for each term in the series\n"
-"itemlist.text"
-msgid "The increment by which to increase n for each term in the series"
-msgstr "Erhöhung, um die N in jedem Glied der Reihe zunehmen soll"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Seriessum\n"
-"Coefficients\n"
-"itemlist.text"
-msgid "Coefficients"
-msgstr "Koeffizienten"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Seriessum\n"
-"Set of coefficients by which each successive power of the variable x is multiplied\n"
-"itemlist.text"
-msgid "Set of coefficients by which each successive power of the variable x is multiplied"
-msgstr "Gruppe von Koeffizienten, mit denen aufeinander folgende Potenzen der Variablen x multipliziert werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Quotient\n"
-"Returns the integer portion of a division\n"
-"itemlist.text"
-msgid "Returns the integer portion of a division"
-msgstr "Berechnet den ganzzahligen Anteil einer Division"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Quotient\n"
-"Numerator\n"
-"itemlist.text"
-msgid "Numerator"
-msgstr "Zähler"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Quotient\n"
-"The dividend\n"
-"itemlist.text"
-msgid "The dividend"
-msgstr "Der Dividend"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Quotient\n"
-"Denominator\n"
-"itemlist.text"
-msgid "Denominator"
-msgstr "Nenner"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Quotient\n"
-"The divisor\n"
-"itemlist.text"
-msgid "The divisor"
-msgstr "Der Divisor"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mround\n"
-"Returns a number rounded to a specified multiple\n"
-"itemlist.text"
-msgid "Returns a number rounded to a specified multiple"
-msgstr "Liefert eine auf das Vielfache gerundete Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mround\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mround\n"
-"The number to round off\n"
-"itemlist.text"
-msgid "The number to round off"
-msgstr "Die zu rundende Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mround\n"
-"Multiple\n"
-"itemlist.text"
-msgid "Multiple"
-msgstr "Mehrfach"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mround\n"
-"The multiple to which you want to round number\n"
-"itemlist.text"
-msgid "The multiple to which you want to round number"
-msgstr "Der Wert, auf dessen Vielfaches gerundet werden soll"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Sqrtpi\n"
-"Returns the square root of a number which has been multiplied by pi\n"
-"itemlist.text"
-msgid "Returns the square root of a number which has been multiplied by pi"
-msgstr "Berechnet die Quadratwurzel aus einer mit Pi multiplizierten Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Sqrtpi\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Sqrtpi\n"
-"The number by which pi is multiplied\n"
-"itemlist.text"
-msgid "The number by which pi is multiplied"
-msgstr "Die Zahl, mit der Pi multipliziert wird"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Randbetween\n"
-"Returns a random integer between the numbers you specify\n"
-"itemlist.text"
-msgid "Returns a random integer between the numbers you specify"
-msgstr "Liefert eine zufällige ganze Zahl aus dem angegebenen Bereich"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Randbetween\n"
-"Bottom\n"
-"itemlist.text"
-msgid "Bottom"
-msgstr "Kleinste Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Randbetween\n"
-"The smallest integer returned\n"
-"itemlist.text"
-msgid "The smallest integer returned"
-msgstr "Die kleinste ganze Zahl, die zurück gegeben werden soll"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Randbetween\n"
-"Top\n"
-"itemlist.text"
-msgid "Top"
-msgstr "Größte Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Randbetween\n"
-"The largest integer returned\n"
-"itemlist.text"
-msgid "The largest integer returned"
-msgstr "Die größte ganze Zahl, die zurück gegeben werden soll"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Gcd\n"
-"Returns the greatest common divisor.\n"
-"This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead.\n"
-"itemlist.text"
-msgid ""
-"Returns the greatest common divisor.\n"
-"This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead."
-msgstr ""
-"Gibt den größten gemeinsamen Teiler zurück.\n"
-"Diese Funktion existiert für die Kompatibilität zu älteren Microsoft Excel-Dokumenten, für neue Dokumente verwenden Sie stattdessen GGT."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Gcd\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Gcd\n"
-"Number or list of numbers\n"
-"itemlist.text"
-msgid "Number or list of numbers"
-msgstr "Zahl oder Liste von Zahlen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Lcm\n"
-"Returns the least common multiple.\n"
-"This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead.\n"
-"itemlist.text"
-msgid ""
-"Returns the least common multiple.\n"
-"This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead."
-msgstr ""
-"Gibt das kleinste gemeinsame Vielfache zurück.\n"
-"Diese Funktion existiert für die Kompatibilität zu älteren Microsoft Excel-Dokumenten, für neue Dokumente verwenden Sie stattdessen KGV."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Lcm\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Lcm\n"
-"Number or list of numbers\n"
-"itemlist.text"
-msgid "Number or list of numbers"
-msgstr "Zahl oder Liste von Zahlen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besseli\n"
-"Returns the modified Bessel function In(x)\n"
-"itemlist.text"
-msgid "Returns the modified Bessel function In(x)"
-msgstr "Berechnet die modifizierte Besselfunktion In(x)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besseli\n"
-"X\n"
-"itemlist.text"
-msgid "X"
-msgstr "X"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besseli\n"
-"The value at which the function is to be evaluated\n"
-"itemlist.text"
-msgid "The value at which the function is to be evaluated"
-msgstr "Der Wert, für den die Funktion berechnet werden soll"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besseli\n"
-"N\n"
-"itemlist.text"
-msgid "N"
-msgstr "N"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besseli\n"
-"The order of the Bessel function\n"
-"itemlist.text"
-msgid "The order of the Bessel function"
-msgstr "Ordnung der Besselfunktion"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besselj\n"
-"Returns the Bessel function Jn(x)\n"
-"itemlist.text"
-msgid "Returns the Bessel function Jn(x)"
-msgstr "Berechnet die Besselfunktion Jn(x)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besselj\n"
-"X\n"
-"itemlist.text"
-msgid "X"
-msgstr "X"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besselj\n"
-"The value at which the function is to be evaluated\n"
-"itemlist.text"
-msgid "The value at which the function is to be evaluated"
-msgstr "Der Wert, für den die Funktion berechnet werden soll"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besselj\n"
-"N\n"
-"itemlist.text"
-msgid "N"
-msgstr "N"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besselj\n"
-"The order of the Bessel function\n"
-"itemlist.text"
-msgid "The order of the Bessel function"
-msgstr "Ordnung der Besselfunktion"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besselk\n"
-"Returns the Bessel function Kn(x)\n"
-"itemlist.text"
-msgid "Returns the Bessel function Kn(x)"
-msgstr "Berechnet die modifizierte Besselfunktion Kn(x)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besselk\n"
-"X\n"
-"itemlist.text"
-msgid "X"
-msgstr "X"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besselk\n"
-"The value at which the function is to be evaluated\n"
-"itemlist.text"
-msgid "The value at which the function is to be evaluated"
-msgstr "Der Wert, für den die Funktion berechnet werden soll"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besselk\n"
-"N\n"
-"itemlist.text"
-msgid "N"
-msgstr "N"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Besselk\n"
-"The order of the Bessel function\n"
-"itemlist.text"
-msgid "The order of the Bessel function"
-msgstr "Ordnung der Besselfunktion"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bessely\n"
-"Returns the Bessel function Yn(x)\n"
-"itemlist.text"
-msgid "Returns the Bessel function Yn(x)"
-msgstr "Berechnet die Besselfunktion Yn(x)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bessely\n"
-"X\n"
-"itemlist.text"
-msgid "X"
-msgstr "X"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bessely\n"
-"The value at which the function is to be evaluated\n"
-"itemlist.text"
-msgid "The value at which the function is to be evaluated"
-msgstr "Der Wert, für den die Funktion berechnet werden soll"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bessely\n"
-"N\n"
-"itemlist.text"
-msgid "N"
-msgstr "N"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bessely\n"
-"The order of the Bessel function\n"
-"itemlist.text"
-msgid "The order of the Bessel function"
-msgstr "Ordnung der Besselfunktion"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bin2Oct\n"
-"Converts a binary number to an octal number\n"
-"itemlist.text"
-msgid "Converts a binary number to an octal number"
-msgstr "Wandelt eine Binärzahl in eine Oktalzahl um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bin2Oct\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bin2Oct\n"
-"The binary number to be converted (as text)\n"
-"itemlist.text"
-msgid "The binary number to be converted (as text)"
-msgstr "Die zu konvertierende Binärzahl (als Text)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bin2Oct\n"
-"Places\n"
-"itemlist.text"
-msgid "Places"
-msgstr "Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bin2Oct\n"
-"Number of places used\n"
-"itemlist.text"
-msgid "Number of places used"
-msgstr "Anzahl der verwendeten Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bin2Dec\n"
-"Converts a binary number to a decimal number\n"
-"itemlist.text"
-msgid "Converts a binary number to a decimal number"
-msgstr "Wandelt eine Binärzahl in eine Dezimalzahl um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bin2Dec\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bin2Dec\n"
-"The binary number to be converted (as text)\n"
-"itemlist.text"
-msgid "The binary number to be converted (as text)"
-msgstr "Die zu konvertierende Binärzahl (als Text)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bin2Hex\n"
-"Converts a binary number to a hexadecimal number\n"
-"itemlist.text"
-msgid "Converts a binary number to a hexadecimal number"
-msgstr "Wandelt eine Binärzahl in eine Hexadezimalzahl um."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bin2Hex\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bin2Hex\n"
-"The binary number to be converted (as text)\n"
-"itemlist.text"
-msgid "The binary number to be converted (as text)"
-msgstr "Die zu konvertierende Binärzahl (als Text)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bin2Hex\n"
-"Places\n"
-"itemlist.text"
-msgid "Places"
-msgstr "Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Bin2Hex\n"
-"Number of places used.\n"
-"itemlist.text"
-msgid "Number of places used."
-msgstr "Anzahl der verwendeten Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oct2Bin\n"
-"Converts an octal number to a binary number\n"
-"itemlist.text"
-msgid "Converts an octal number to a binary number"
-msgstr "Wandelt eine Oktalzahl in eine Binärzahl um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oct2Bin\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oct2Bin\n"
-"The octal number to be converted (as text)\n"
-"itemlist.text"
-msgid "The octal number to be converted (as text)"
-msgstr "Die zu konvertierende Oktalzahl (als Text)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oct2Bin\n"
-"Places\n"
-"itemlist.text"
-msgid "Places"
-msgstr "Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oct2Bin\n"
-"Number of places used\n"
-"itemlist.text"
-msgid "Number of places used"
-msgstr "Anzahl der verwendeten Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oct2Dec\n"
-"Converts an octal number to a decimal number\n"
-"itemlist.text"
-msgid "Converts an octal number to a decimal number"
-msgstr "Wandelt eine Oktalzahl in eine Dezimalzahl um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oct2Dec\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oct2Dec\n"
-"The octal number to be converted (as text)\n"
-"itemlist.text"
-msgid "The octal number to be converted (as text)"
-msgstr "Die zu konvertierende Oktalzahl (als Text)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oct2Hex\n"
-"Converts an octal number to a hexadecimal number\n"
-"itemlist.text"
-msgid "Converts an octal number to a hexadecimal number"
-msgstr "Wandelt eine Oktalzahl in eine Hexadezimalzahl um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oct2Hex\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oct2Hex\n"
-"The octal number to be converted (as text)\n"
-"itemlist.text"
-msgid "The octal number to be converted (as text)"
-msgstr "Die zu konvertierende Oktalzahl (als Text)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oct2Hex\n"
-"Places\n"
-"itemlist.text"
-msgid "Places"
-msgstr "Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oct2Hex\n"
-"Number of places used\n"
-"itemlist.text"
-msgid "Number of places used"
-msgstr "Anzahl der verwendeten Stellen."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Bin\n"
-"Converts a decimal number to a binary number\n"
-"itemlist.text"
-msgid "Converts a decimal number to a binary number"
-msgstr "Wandelt eine Dezimalzahl in eine Binärzahl um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Bin\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Bin\n"
-"The decimal integer to be converted\n"
-"itemlist.text"
-msgid "The decimal integer to be converted"
-msgstr "Die zu konvertierende ganze Dezimalzahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Bin\n"
-"Places\n"
-"itemlist.text"
-msgid "Places"
-msgstr "Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Bin\n"
-"Number of places used\n"
-"itemlist.text"
-msgid "Number of places used"
-msgstr "Anzahl der verwendeten Stellen."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Hex\n"
-"Converts a decimal number to a hexadecimal number\n"
-"itemlist.text"
-msgid "Converts a decimal number to a hexadecimal number"
-msgstr "Wandelt eine Dezimalzahl in eine Hexadezimalzahl um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Hex\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Hex\n"
-"The decimal integer to be converted\n"
-"itemlist.text"
-msgid "The decimal integer to be converted"
-msgstr "Die zu konvertierende ganze Dezimalzahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Hex\n"
-"Places\n"
-"itemlist.text"
-msgid "Places"
-msgstr "Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Hex\n"
-"Number of places used\n"
-"itemlist.text"
-msgid "Number of places used"
-msgstr "Anzahl der verwendeten Stellen."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Oct\n"
-"Converts a decimal number into an octal number\n"
-"itemlist.text"
-msgid "Converts a decimal number into an octal number"
-msgstr "Wandelt eine Dezimalzahl in eine Oktalzahl um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Oct\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Oct\n"
-"The decimal number\n"
-"itemlist.text"
-msgid "The decimal number"
-msgstr "Die Dezimalzahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Oct\n"
-"Places\n"
-"itemlist.text"
-msgid "Places"
-msgstr "Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dec2Oct\n"
-"Number of places used\n"
-"itemlist.text"
-msgid "Number of places used"
-msgstr "Anzahl der verwendeten Stellen."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Hex2Bin\n"
-"Converts a hexadecimal number to a binary number\n"
-"itemlist.text"
-msgid "Converts a hexadecimal number to a binary number"
-msgstr "Wandelt eine Hexadezimalzahl in eine Binärzahl um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Hex2Bin\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Hex2Bin\n"
-"The hexadecimal number to be converted (as text)\n"
-"itemlist.text"
-msgid "The hexadecimal number to be converted (as text)"
-msgstr "Die zu konvertierende Hexadezimalzahl (als Text)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Hex2Bin\n"
-"Places\n"
-"itemlist.text"
-msgid "Places"
-msgstr "Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Hex2Bin\n"
-"Number of places used\n"
-"itemlist.text"
-msgid "Number of places used"
-msgstr "Anzahl der verwendeten Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Hex2Dec\n"
-"Converts a hexadecimal number to a decimal number\n"
-"itemlist.text"
-msgid "Converts a hexadecimal number to a decimal number"
-msgstr "Wandelt eine Hexadezimalzahl in eine Dezimalzahl um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Hex2Dec\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Hex2Dec\n"
-"The hexadecimal number to be converted (as text)\n"
-"itemlist.text"
-msgid "The hexadecimal number to be converted (as text)"
-msgstr "Die zu konvertierende Hexadezimalzahl (als Text)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Hex2Oct\n"
-"Converts a hexadecimal number to an octal number\n"
-"itemlist.text"
-msgid "Converts a hexadecimal number to an octal number"
-msgstr "Wandelt eine Hexadezimalzahl in eine Oktalzahl um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Hex2Oct\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Hex2Oct\n"
-"The hexadecimal number to be converted (as text)\n"
-"itemlist.text"
-msgid "The hexadecimal number to be converted (as text)"
-msgstr "Die zu konvertierende Hexadezimalzahl (als Text)"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Hex2Oct\n"
-"Places\n"
-"itemlist.text"
-msgid "Places"
-msgstr "Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Hex2Oct\n"
-"Number of places used\n"
-"itemlist.text"
-msgid "Number of places used"
-msgstr "Anzahl der verwendeten Stellen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Delta\n"
-"Tests whether two values are equal\n"
-"itemlist.text"
-msgid "Tests whether two values are equal"
-msgstr "Überprüft, ob zwei Werte gleich sind"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Delta\n"
-"Number 1\n"
-"itemlist.text"
-msgid "Number 1"
-msgstr "1. Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Delta\n"
-"The first number\n"
-"itemlist.text"
-msgid "The first number"
-msgstr "Die erste Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Delta\n"
-"Number 2\n"
-"itemlist.text"
-msgid "Number 2"
-msgstr "2. Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Delta\n"
-"The second number\n"
-"itemlist.text"
-msgid "The second number"
-msgstr "Die zweite Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Erf\n"
-"Returns the error function\n"
-"itemlist.text"
-msgid "Returns the error function"
-msgstr "Liefert die Gauß'sche Fehlerfunktion"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Erf\n"
-"Lower limit\n"
-"itemlist.text"
-msgid "Lower limit"
-msgstr "Untergrenze"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Erf\n"
-"The lower limit for integration\n"
-"itemlist.text"
-msgid "The lower limit for integration"
-msgstr "Untergrenze zur Integration"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Erf\n"
-"Upper limit\n"
-"itemlist.text"
-msgid "Upper limit"
-msgstr "Obergrenze"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Erf\n"
-"The upper limit for integration\n"
-"itemlist.text"
-msgid "The upper limit for integration"
-msgstr "Obergrenze zur Integration."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Erfc\n"
-"Returns the complementary error function\n"
-"itemlist.text"
-msgid "Returns the complementary error function"
-msgstr "Gibt das Komplement zur Gauß'schen Fehlerfunktion zurück"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Erfc\n"
-"Lower limit\n"
-"itemlist.text"
-msgid "Lower limit"
-msgstr "Untergrenze"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Erfc\n"
-"The lower limit for integration\n"
-"itemlist.text"
-msgid "The lower limit for integration"
-msgstr "Untergrenze zur Integration"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Gestep\n"
-"Tests whether a number is greater than a threshold value\n"
-"itemlist.text"
-msgid "Tests whether a number is greater than a threshold value"
-msgstr "Überprüft, ob eine Zahl größer als ein Schwellenwert ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Gestep\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Gestep\n"
-"The value to test against step\n"
-"itemlist.text"
-msgid "The value to test against step"
-msgstr "An Schwellenwert zu überprüfender Wert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Gestep\n"
-"Step\n"
-"itemlist.text"
-msgid "Step"
-msgstr "Schwellenwert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Gestep\n"
-"The threshold value\n"
-"itemlist.text"
-msgid "The threshold value"
-msgstr "Der Schwellenwert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Factdouble\n"
-"Returns the double factorial of Number\n"
-"itemlist.text"
-msgid "Returns the double factorial of Number"
-msgstr "Liefert die Fakultät zu Zahl mit der Schrittlänge 2"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Factdouble\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Factdouble\n"
-"The number\n"
-"itemlist.text"
-msgid "The number"
-msgstr "Die Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imabs\n"
-"Returns the absolute value (modulus) of a complex number\n"
-"itemlist.text"
-msgid "Returns the absolute value (modulus) of a complex number"
-msgstr "Gibt den Betrag (Modulo) einer komplexen Zahl zurück"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imabs\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imabs\n"
-"The complex number\n"
-"itemlist.text"
-msgid "The complex number"
-msgstr "Die Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imaginary\n"
-"Returns the imaginary coefficient of a complex number\n"
-"itemlist.text"
-msgid "Returns the imaginary coefficient of a complex number"
-msgstr "Liefert den Imaginärteil einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imaginary\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imaginary\n"
-"The complex number\n"
-"itemlist.text"
-msgid "The complex number"
-msgstr "Die komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Impower\n"
-"Returns a complex number raised to a real power\n"
-"itemlist.text"
-msgid "Returns a complex number raised to a real power"
-msgstr "Potenziert eine komplexe Zahl mit einer ganzen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Impower\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Impower\n"
-"The complex number\n"
-"itemlist.text"
-msgid "The complex number"
-msgstr "Die komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Impower\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Impower\n"
-"Power to which the complex number is raised\n"
-"itemlist.text"
-msgid "Power to which the complex number is raised"
-msgstr "Exponent, mit dem die komplexe Zahl potenziert wird"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imargument\n"
-"Returns the argument theta, an angle expressed in radians\n"
-"itemlist.text"
-msgid "Returns the argument theta, an angle expressed in radians"
-msgstr "Liefert den Winkel im Bogenmaß zur Darstellung der komplexen Zahl in trigonometrischer Schreibweise"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imargument\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imargument\n"
-"A complex number\n"
-"itemlist.text"
-msgid "A complex number"
-msgstr "Eine komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcos\n"
-"Returns the cosine of a complex number\n"
-"itemlist.text"
-msgid "Returns the cosine of a complex number"
-msgstr "Liefert den Kosinus einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcos\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcos\n"
-"A complex number\n"
-"itemlist.text"
-msgid "A complex number"
-msgstr "Eine komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imdiv\n"
-"Returns the quotient of two complex numbers\n"
-"itemlist.text"
-msgid "Returns the quotient of two complex numbers"
-msgstr "Liefert den Quotient zweier komplexer Zahlen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imdiv\n"
-"Numerator\n"
-"itemlist.text"
-msgid "Numerator"
-msgstr "Zähler"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imdiv\n"
-"The dividend\n"
-"itemlist.text"
-msgid "The dividend"
-msgstr "Der Dividend"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imdiv\n"
-"Denominator\n"
-"itemlist.text"
-msgid "Denominator"
-msgstr "Nenner"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imdiv\n"
-"The divisor\n"
-"itemlist.text"
-msgid "The divisor"
-msgstr "Die Zahl, durch die geteilt werden soll"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imexp\n"
-"Returns the algebraic form of the exponential of a complex number\n"
-"itemlist.text"
-msgid "Returns the algebraic form of the exponential of a complex number"
-msgstr "Liefert die algebraische Form einer in exponentieller Darstellung vorliegenden komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imexp\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imexp\n"
-"The complex number\n"
-"itemlist.text"
-msgid "The complex number"
-msgstr "Die komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imconjugate\n"
-"Returns the complex conjugate of a complex number\n"
-"itemlist.text"
-msgid "Returns the complex conjugate of a complex number"
-msgstr "Liefert das konjugiert Komplexe zu einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imconjugate\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imconjugate\n"
-"The complex number\n"
-"itemlist.text"
-msgid "The complex number"
-msgstr "Die komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imln\n"
-"Returns the natural logarithm of a complex number\n"
-"itemlist.text"
-msgid "Returns the natural logarithm of a complex number"
-msgstr "Liefert den natürlichen Logarithmus einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imln\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imln\n"
-"The complex number\n"
-"itemlist.text"
-msgid "The complex number"
-msgstr "Die komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imlog10\n"
-"Returns the base-10 logarithm of a complex number\n"
-"itemlist.text"
-msgid "Returns the base-10 logarithm of a complex number"
-msgstr "Liefert den Logarithmus zur Basis 10 einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imlog10\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imlog10\n"
-"The complex number\n"
-"itemlist.text"
-msgid "The complex number"
-msgstr "Die komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imlog2\n"
-"Returns the base-2 logarithm of a complex number\n"
-"itemlist.text"
-msgid "Returns the base-2 logarithm of a complex number"
-msgstr "Liefert den Logarithmus zur Basis 2 einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imlog2\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imlog2\n"
-"The complex number\n"
-"itemlist.text"
-msgid "The complex number"
-msgstr "Die komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Improduct\n"
-"Returns the product of several complex numbers\n"
-"itemlist.text"
-msgid "Returns the product of several complex numbers"
-msgstr "Liefert das Produkt mehrerer komplexer Zahlen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Improduct\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Improduct\n"
-"The first complex number\n"
-"itemlist.text"
-msgid "The first complex number"
-msgstr "Die erste komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Improduct\n"
-"Another complex number\n"
-"itemlist.text"
-msgid "Another complex number"
-msgstr "Weitere komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imreal\n"
-"Returns the real coefficient of a complex number\n"
-"itemlist.text"
-msgid "Returns the real coefficient of a complex number"
-msgstr "Liefert den Realteil einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imreal\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imreal\n"
-"The complex number\n"
-"itemlist.text"
-msgid "The complex number"
-msgstr "Die komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsin\n"
-"Returns the sine of a complex number\n"
-"itemlist.text"
-msgid "Returns the sine of a complex number"
-msgstr "Liefert den Sinus einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsin\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsin\n"
-"The complex number\n"
-"itemlist.text"
-msgid "The complex number"
-msgstr "Die komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsub\n"
-"Returns the difference of two complex numbers\n"
-"itemlist.text"
-msgid "Returns the difference of two complex numbers"
-msgstr "Liefert die Differenz zweier komplexer Zahlen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsub\n"
-"Complex number 1\n"
-"itemlist.text"
-msgid "Complex number 1"
-msgstr "Komplexe Zahl 1"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsub\n"
-"Complex number 2\n"
-"itemlist.text"
-msgid "Complex number 2"
-msgstr "Komplexe Zahl 2"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsqrt\n"
-"Returns the square root of a complex number\n"
-"itemlist.text"
-msgid "Returns the square root of a complex number"
-msgstr "Liefert die Quadratwurzel einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsqrt\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsqrt\n"
-"The complex number\n"
-"itemlist.text"
-msgid "The complex number"
-msgstr "Die komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsum\n"
-"Returns the sum of complex numbers\n"
-"itemlist.text"
-msgid "Returns the sum of complex numbers"
-msgstr "Liefert die Summe komplexer Zahlen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsum\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsum\n"
-"The complex number\n"
-"itemlist.text"
-msgid "The complex number"
-msgstr "Die komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imtan\n"
-"Returns the tangent of a complex number\n"
-"itemlist.text"
-msgid "Returns the tangent of a complex number"
-msgstr "Liefert den Tangens einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imtan\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imtan\n"
-"A complex number\n"
-"itemlist.text"
-msgid "A complex number"
-msgstr "Eine komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsec\n"
-"Returns the secant of a complex number\n"
-"itemlist.text"
-msgid "Returns the secant of a complex number"
-msgstr "Liefert den Sekans einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsec\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsec\n"
-"A complex number\n"
-"itemlist.text"
-msgid "A complex number"
-msgstr "Eine komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcsc\n"
-"Returns the cosecant of a complex number\n"
-"itemlist.text"
-msgid "Returns the cosecant of a complex number"
-msgstr "Liefert den Kosekans einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcsc\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcsc\n"
-"A complex number\n"
-"itemlist.text"
-msgid "A complex number"
-msgstr "Eine komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcot\n"
-"Returns the cotangent of a complex number\n"
-"itemlist.text"
-msgid "Returns the cotangent of a complex number"
-msgstr "Liefert den Kotangens einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcot\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcot\n"
-"A complex number\n"
-"itemlist.text"
-msgid "A complex number"
-msgstr "Eine komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsinh\n"
-"Returns the hyperbolic sine of a complex number\n"
-"itemlist.text"
-msgid "Returns the hyperbolic sine of a complex number"
-msgstr "Liefert den Sinus Hyperbolicus einer komplexen Zahl."
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsinh\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsinh\n"
-"A complex number\n"
-"itemlist.text"
-msgid "A complex number"
-msgstr "Eine komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcosh\n"
-"Returns the hyperbolic cosine of a complex number\n"
-"itemlist.text"
-msgid "Returns the hyperbolic cosine of a complex number"
-msgstr "Liefert den Kosinus Hyperbolicus einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcosh\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcosh\n"
-"A complex number\n"
-"itemlist.text"
-msgid "A complex number"
-msgstr "Eine komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsech\n"
-"Returns the hyperbolic secant of a complex number\n"
-"itemlist.text"
-msgid "Returns the hyperbolic secant of a complex number"
-msgstr "Liefert den Sekans Hyperbolicus einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsech\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imsech\n"
-"A complex number\n"
-"itemlist.text"
-msgid "A complex number"
-msgstr "Eine komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcsch\n"
-"Returns the hyperbolic cosecant of a complex number\n"
-"itemlist.text"
-msgid "Returns the hyperbolic cosecant of a complex number"
-msgstr "Liefert den Kosekans Hyperbolicus einer komplexen Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcsch\n"
-"Complex number\n"
-"itemlist.text"
-msgid "Complex number"
-msgstr "Komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Imcsch\n"
-"A complex number\n"
-"itemlist.text"
-msgid "A complex number"
-msgstr "Eine komplexe Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Complex\n"
-"Converts real and imaginary coefficients into a complex number\n"
-"itemlist.text"
-msgid "Converts real and imaginary coefficients into a complex number"
-msgstr "Wandelt den Real- und Imaginärteil in eine komplexe Zahl um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Complex\n"
-"Real num\n"
-"itemlist.text"
-msgid "Real num"
-msgstr "Realteil"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Complex\n"
-"The real coefficient\n"
-"itemlist.text"
-msgid "The real coefficient"
-msgstr "Der Realteil"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Complex\n"
-"I num\n"
-"itemlist.text"
-msgid "I num"
-msgstr "Imaginärteil"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Complex\n"
-"The imaginary coefficient\n"
-"itemlist.text"
-msgid "The imaginary coefficient"
-msgstr "Der Imaginärteil"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Complex\n"
-"Suffix\n"
-"itemlist.text"
-msgid "Suffix"
-msgstr "Suffix"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Complex\n"
-"The suffix\n"
-"itemlist.text"
-msgid "The suffix"
-msgstr "Der Suffix"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Convert\n"
-"Converts a number from one measurement system to another\n"
-"itemlist.text"
-msgid "Converts a number from one measurement system to another"
-msgstr "Wandelt eine Zahl von einem Maßsystem in ein anderes um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Convert\n"
-"Number\n"
-"itemlist.text"
-msgid "Number"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Convert\n"
-"The number\n"
-"itemlist.text"
-msgid "The number"
-msgstr "Die Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Convert\n"
-"From unit\n"
-"itemlist.text"
-msgid "From unit"
-msgstr "Von-Maßeinheit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Convert\n"
-"Unit of measure for number\n"
-"itemlist.text"
-msgid "Unit of measure for number"
-msgstr "Maßeinheit der Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Convert\n"
-"To unit\n"
-"itemlist.text"
-msgid "To unit"
-msgstr "In-Maßeinheit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Convert\n"
-"Unit of measure for the result\n"
-"itemlist.text"
-msgid "Unit of measure for the result"
-msgstr "Maßeinheit des Ergebnisses"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"Returns the prorated linear depreciation of an asset for each accounting period\n"
-"itemlist.text"
-msgid "Returns the prorated linear depreciation of an asset for each accounting period"
-msgstr "Liefert den für eine Abrechnungsperiode anzusetzenden Abschreibungsbetrag auf Basis des französischen Buchführungssystems"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"Cost\n"
-"itemlist.text"
-msgid "Cost"
-msgstr "Kosten"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"Cost of the asset\n"
-"itemlist.text"
-msgid "Cost of the asset"
-msgstr "Anschaffungskosten des Anlageguts"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"Date purchased\n"
-"itemlist.text"
-msgid "Date purchased"
-msgstr "Anschaffungsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"Purchase date of the asset\n"
-"itemlist.text"
-msgid "Purchase date of the asset"
-msgstr "Anschaffungsdatum des Anlagegutes"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"First period\n"
-"itemlist.text"
-msgid "First period"
-msgstr "Erste Periode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"Date the first period ends\n"
-"itemlist.text"
-msgid "Date the first period ends"
-msgstr "Datum des Endes der ersten Periode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"Salvage\n"
-"itemlist.text"
-msgid "Salvage"
-msgstr "Restwert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"Salvage value of an asset at the end of its life\n"
-"itemlist.text"
-msgid "Salvage value of an asset at the end of its life"
-msgstr "Restwert des Anlagegutes am Ende der Nutzungsdauer"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"Period\n"
-"itemlist.text"
-msgid "Period"
-msgstr "Periode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"The period\n"
-"itemlist.text"
-msgid "The period"
-msgstr "Die Periode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Rate"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"The rate of depreciation\n"
-"itemlist.text"
-msgid "The rate of depreciation"
-msgstr "Der Abschreibungssatz"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amordegrc\n"
-"The year basis to be used\n"
-"itemlist.text"
-msgid "The year basis to be used"
-msgstr "Zu verwendende Jahresbasis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"Returns the prorated linear depreciation of an asset for each accounting period\n"
-"itemlist.text"
-msgid "Returns the prorated linear depreciation of an asset for each accounting period"
-msgstr "Liefert den für eine Abrechnungsperiode anzusetzenden Abschreibungsbetrag auf Basis des französischen Buchführungssystems"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"Cost\n"
-"itemlist.text"
-msgid "Cost"
-msgstr "Kosten"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"Cost of the asset\n"
-"itemlist.text"
-msgid "Cost of the asset"
-msgstr "Anschaffungskosten des Anlageguts"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"Date purchased\n"
-"itemlist.text"
-msgid "Date purchased"
-msgstr "Anschaffungsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"Purchase date of the asset\n"
-"itemlist.text"
-msgid "Purchase date of the asset"
-msgstr "Anschaffungsdatum des Anlagegutes"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"First period\n"
-"itemlist.text"
-msgid "First period"
-msgstr "Erste Periode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"The date the first period ends\n"
-"itemlist.text"
-msgid "The date the first period ends"
-msgstr "Datum des Endes der ersten Periode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"Salvage\n"
-"itemlist.text"
-msgid "Salvage"
-msgstr "Restwert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"The salvage value of an asset at the end of its life\n"
-"itemlist.text"
-msgid "The salvage value of an asset at the end of its life"
-msgstr "Der Restwert des Anlagegutes am Ende der Nutzungsdauer"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"Period\n"
-"itemlist.text"
-msgid "Period"
-msgstr "Periode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"The period\n"
-"itemlist.text"
-msgid "The period"
-msgstr "Die Periode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Rate"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"The rate of depreciation\n"
-"itemlist.text"
-msgid "The rate of depreciation"
-msgstr "Der Abschreibungssatz"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Amorlinc\n"
-"The year basis to be used\n"
-"itemlist.text"
-msgid "The year basis to be used"
-msgstr "Die zu verwendende Jahresbasis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"Returns the accrued interest for a security that pays periodic interest\n"
-"itemlist.text"
-msgid "Returns the accrued interest for a security that pays periodic interest"
-msgstr "Berechnet die aufgelaufenen Zinsen (Stückzinsen) eines Wertpapieres mit periodischer Zinszahlung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"Issue\n"
-"itemlist.text"
-msgid "Issue"
-msgstr "Ausgabe"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"Issue date of the security\n"
-"itemlist.text"
-msgid "Issue date of the security"
-msgstr "Ausgabedatum des Wertpapiers"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"First interest\n"
-"itemlist.text"
-msgid "First interest"
-msgstr "Erster Zinstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"First interest date of the security\n"
-"itemlist.text"
-msgid "First interest date of the security"
-msgstr "Erster Zinstermin des Wertpapiers"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"The rate\n"
-"itemlist.text"
-msgid "The rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"Par\n"
-"itemlist.text"
-msgid "Par"
-msgstr "Nennwert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"The par value\n"
-"itemlist.text"
-msgid "The par value"
-msgstr "Der Nennwert des Wertpapiers"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrint\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrintm\n"
-"Returns the accrued interest for a security that pays interest at maturity\n"
-"itemlist.text"
-msgid "Returns the accrued interest for a security that pays interest at maturity"
-msgstr "Berechnet die aufgelaufenen Zinsen eines Wertpapieres, die bei Fälligkeit ausgezahlt werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrintm\n"
-"Issue\n"
-"itemlist.text"
-msgid "Issue"
-msgstr "Ausgabe"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrintm\n"
-"The issue date\n"
-"itemlist.text"
-msgid "The issue date"
-msgstr "Das Ausgabedatum des Wertpapiers"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrintm\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrintm\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrintm\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrintm\n"
-"The rate\n"
-"itemlist.text"
-msgid "The rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrintm\n"
-"Par\n"
-"itemlist.text"
-msgid "Par"
-msgstr "Nennwert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrintm\n"
-"The par value\n"
-"itemlist.text"
-msgid "The par value"
-msgstr "Der Nennwert des Wertpapiers"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrintm\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Accrintm\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Received\n"
-"Returns the amount paid out at maturity for a fully invested security\n"
-"itemlist.text"
-msgid "Returns the amount paid out at maturity for a fully invested security"
-msgstr "Liefert den Auszahlungsbetrag eines voll investierten Wertpapiers am Fälligkeitstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Received\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Received\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Received\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Received\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Received\n"
-"Investment\n"
-"itemlist.text"
-msgid "Investment"
-msgstr "Anlage"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Received\n"
-"The investment\n"
-"itemlist.text"
-msgid "The investment"
-msgstr "Die Anlage"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Received\n"
-"Discount\n"
-"itemlist.text"
-msgid "Discount"
-msgstr "Disagio"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Received\n"
-"The discount\n"
-"itemlist.text"
-msgid "The discount"
-msgstr "Das Disagio"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Received\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Received\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Disc\n"
-"Returns the discount rate for a security\n"
-"itemlist.text"
-msgid "Returns the discount rate for a security"
-msgstr "Liefert den prozentualen Abschlag eines Wertpapiers"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Disc\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Disc\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Disc\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Disc\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Disc\n"
-"Price\n"
-"itemlist.text"
-msgid "Price"
-msgstr "Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Disc\n"
-"The price\n"
-"itemlist.text"
-msgid "The price"
-msgstr "Der Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Disc\n"
-"Redemption\n"
-"itemlist.text"
-msgid "Redemption"
-msgstr "Rückzahlung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Disc\n"
-"The redemption value\n"
-"itemlist.text"
-msgid "The redemption value"
-msgstr "Der Rückzahlungswert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Disc\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Disc\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Duration\n"
-"Returns the annual Macaulay duration of a security with periodic interest payments\n"
-"itemlist.text"
-msgid "Returns the annual Macaulay duration of a security with periodic interest payments"
-msgstr "Liefert die jährliche Macaulay Laufzeit eines Wertpapiers mit periodischer Zinszahlung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Duration\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Duration\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Duration\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Duration\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Duration\n"
-"Coupon\n"
-"itemlist.text"
-msgid "Coupon"
-msgstr "Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Duration\n"
-"The coupon rate\n"
-"itemlist.text"
-msgid "The coupon rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Duration\n"
-"Yield\n"
-"itemlist.text"
-msgid "Yield"
-msgstr "Rendite"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Duration\n"
-"The yield\n"
-"itemlist.text"
-msgid "The yield"
-msgstr "Die Rendite"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Duration\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Duration\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Duration\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Duration\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Effect\n"
-"Returns the effective annual interest rate\n"
-"itemlist.text"
-msgid "Returns the effective annual interest rate"
-msgstr "Liefert die jährliche Effektivverzinsung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Effect\n"
-"Nominal rate\n"
-"itemlist.text"
-msgid "Nominal rate"
-msgstr "Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Effect\n"
-"The nominal rate\n"
-"itemlist.text"
-msgid "The nominal rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Effect\n"
-"Npery\n"
-"itemlist.text"
-msgid "Npery"
-msgstr "Perioden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Effect\n"
-"The periods\n"
-"itemlist.text"
-msgid "The periods"
-msgstr "Die Perioden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumprinc\n"
-"Returns the cumulative principal on a loan to be paid between two periods\n"
-"itemlist.text"
-msgid "Returns the cumulative principal on a loan to be paid between two periods"
-msgstr "Liefert die aufgelaufene Tilgung eines Darlehens, die zwischen zwei Perioden zu zahlen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumprinc\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumprinc\n"
-"The rate\n"
-"itemlist.text"
-msgid "The rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumprinc\n"
-"Nper\n"
-"itemlist.text"
-msgid "Nper"
-msgstr "Perioden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumprinc\n"
-"Number of payment periods\n"
-"itemlist.text"
-msgid "Number of payment periods"
-msgstr "Anzahl der Zahlungsperioden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumprinc\n"
-"Pv\n"
-"itemlist.text"
-msgid "Pv"
-msgstr "Barwert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumprinc\n"
-"The present value\n"
-"itemlist.text"
-msgid "The present value"
-msgstr "Der Gegenstandswert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumprinc\n"
-"Start period\n"
-"itemlist.text"
-msgid "Start period"
-msgstr "Startperiode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumprinc\n"
-"The start period\n"
-"itemlist.text"
-msgid "The start period"
-msgstr "Die Startperiode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumprinc\n"
-"End period\n"
-"itemlist.text"
-msgid "End period"
-msgstr "Endperiode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumprinc\n"
-"The end period\n"
-"itemlist.text"
-msgid "The end period"
-msgstr "Die Endperiode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumprinc\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumprinc\n"
-"The type of maturity\n"
-"itemlist.text"
-msgid "The type of maturity"
-msgstr "Die Art der Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumipmt\n"
-"Returns the cumulative interest to be paid between two periods\n"
-"itemlist.text"
-msgid "Returns the cumulative interest to be paid between two periods"
-msgstr "Liefert die kumulierten Zinsen, die zwischen zwei Perioden zu zahlen sind"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumipmt\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumipmt\n"
-"The rate\n"
-"itemlist.text"
-msgid "The rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumipmt\n"
-"Nper\n"
-"itemlist.text"
-msgid "Nper"
-msgstr "Perioden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumipmt\n"
-"Number of payment periods\n"
-"itemlist.text"
-msgid "Number of payment periods"
-msgstr "Anzahl der Zahlungsperioden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumipmt\n"
-"Pv\n"
-"itemlist.text"
-msgid "Pv"
-msgstr "Barwert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumipmt\n"
-"The present value\n"
-"itemlist.text"
-msgid "The present value"
-msgstr "Der Gegenstandswert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumipmt\n"
-"Start period\n"
-"itemlist.text"
-msgid "Start period"
-msgstr "Startperiode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumipmt\n"
-"The start period\n"
-"itemlist.text"
-msgid "The start period"
-msgstr "Die Startperiode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumipmt\n"
-"End period\n"
-"itemlist.text"
-msgid "End period"
-msgstr "Endperiode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumipmt\n"
-"The end period\n"
-"itemlist.text"
-msgid "The end period"
-msgstr "Die Endperiode"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumipmt\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Art"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Cumipmt\n"
-"The type of maturity\n"
-"itemlist.text"
-msgid "The type of maturity"
-msgstr "Die Art der Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"Returns the price per 100 currency units face value of a security that pays periodic interest\n"
-"itemlist.text"
-msgid "Returns the price per 100 currency units face value of a security that pays periodic interest"
-msgstr "Liefert den Kurs pro 100 Währungseinheiten Nennwert eines Wertpapiers, das periodische Zinsen auszahlt"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"The rate\n"
-"itemlist.text"
-msgid "The rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"Yield\n"
-"itemlist.text"
-msgid "Yield"
-msgstr "Rendite"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"The yield\n"
-"itemlist.text"
-msgid "The yield"
-msgstr "Die Rendite"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"Redemption\n"
-"itemlist.text"
-msgid "Redemption"
-msgstr "Rückzahlung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"The redemption value\n"
-"itemlist.text"
-msgid "The redemption value"
-msgstr "Der Rückzahlungswert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Price\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricedisc\n"
-"Returns the price per 100 currency units face value of a discounted security\n"
-"itemlist.text"
-msgid "Returns the price per 100 currency units face value of a discounted security"
-msgstr "Liefert den Kurs pro 100 Währungseinheiten Nennwert eines unverzinslichen Wertpapiers"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricedisc\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricedisc\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricedisc\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricedisc\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricedisc\n"
-"Discount\n"
-"itemlist.text"
-msgid "Discount"
-msgstr "Disagio"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricedisc\n"
-"The discount\n"
-"itemlist.text"
-msgid "The discount"
-msgstr "Das Disagio"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricedisc\n"
-"Redemption\n"
-"itemlist.text"
-msgid "Redemption"
-msgstr "Rückzahlung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricedisc\n"
-"The redemption value\n"
-"itemlist.text"
-msgid "The redemption value"
-msgstr "Der Rückzahlungswert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricedisc\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricedisc\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricemat\n"
-"Returns the price per 100 currency units face value of a security that pays interest at maturity\n"
-"itemlist.text"
-msgid "Returns the price per 100 currency units face value of a security that pays interest at maturity"
-msgstr "Liefert den Kurs pro 100 Währungseinheiten Nennwert eines Wertpapiers, das Zinsen am Fälligkeitsdatum auszahlt"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricemat\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricemat\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricemat\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricemat\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricemat\n"
-"Issue\n"
-"itemlist.text"
-msgid "Issue"
-msgstr "Ausgabe"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricemat\n"
-"The issue date\n"
-"itemlist.text"
-msgid "The issue date"
-msgstr "Das Ausgabedatum des Wertpapiers"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricemat\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricemat\n"
-"The rate\n"
-"itemlist.text"
-msgid "The rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricemat\n"
-"Yield\n"
-"itemlist.text"
-msgid "Yield"
-msgstr "Rendite"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricemat\n"
-"The yield\n"
-"itemlist.text"
-msgid "The yield"
-msgstr "Die Rendite"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricemat\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Pricemat\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mduration\n"
-"Returns the Macaulay modified duration for a security with an assumed par value of 100 currency units\n"
-"itemlist.text"
-msgid "Returns the Macaulay modified duration for a security with an assumed par value of 100 currency units"
-msgstr "Liefert die modifizierte Macaulay-Duration eines Wertpapiers mit 100 Währungseinheiten Nennwert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mduration\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mduration\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mduration\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mduration\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mduration\n"
-"Coupon\n"
-"itemlist.text"
-msgid "Coupon"
-msgstr "Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mduration\n"
-"The coupon rate\n"
-"itemlist.text"
-msgid "The coupon rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mduration\n"
-"Yield\n"
-"itemlist.text"
-msgid "Yield"
-msgstr "Rendite"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mduration\n"
-"The yield\n"
-"itemlist.text"
-msgid "The yield"
-msgstr "Die Rendite"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mduration\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mduration\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mduration\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Mduration\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Nominal\n"
-"Returns the annual nominal interest rate\n"
-"itemlist.text"
-msgid "Returns the annual nominal interest rate"
-msgstr "Liefert die jährliche Nominalverzinsung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Nominal\n"
-"Effective rate\n"
-"itemlist.text"
-msgid "Effective rate"
-msgstr "Effektiver Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Nominal\n"
-"The effective interest rate\n"
-"itemlist.text"
-msgid "The effective interest rate"
-msgstr "Die effektive Zinsrate"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Nominal\n"
-"Npery\n"
-"itemlist.text"
-msgid "Npery"
-msgstr "Perioden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Nominal\n"
-"The periods\n"
-"itemlist.text"
-msgid "The periods"
-msgstr "Die Perioden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dollarfr\n"
-"Converts a price expressed as a decimal into a price expressed as a fraction\n"
-"itemlist.text"
-msgid "Converts a price expressed as a decimal into a price expressed as a fraction"
-msgstr "Konvertiert eine Notierung in dezimaler Schreibweise in eine gemischten Dezimalbruch"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dollarfr\n"
-"Decimal dollar\n"
-"itemlist.text"
-msgid "Decimal dollar"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dollarfr\n"
-"The decimal number\n"
-"itemlist.text"
-msgid "The decimal number"
-msgstr "Die Dezimalzahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dollarfr\n"
-"Fraction\n"
-"itemlist.text"
-msgid "Fraction"
-msgstr "Bruch"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dollarfr\n"
-"The divisor\n"
-"itemlist.text"
-msgid "The divisor"
-msgstr "Die Zahl, durch die geteilt werden soll"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dollarde\n"
-"Converts a price expressed as a fraction into a price expressed as a decimal\n"
-"itemlist.text"
-msgid "Converts a price expressed as a fraction into a price expressed as a decimal"
-msgstr "Konvertiert eine Notierung, die als Dezimalbruch angegeben ist, in eine Dezimalzahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dollarde\n"
-"Fractional dollar\n"
-"itemlist.text"
-msgid "Fractional dollar"
-msgstr "Zahl"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dollarde\n"
-"The number as a fraction\n"
-"itemlist.text"
-msgid "The number as a fraction"
-msgstr "Die Zahl als Bruch"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dollarde\n"
-"Fraction\n"
-"itemlist.text"
-msgid "Fraction"
-msgstr "Bruch"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Dollarde\n"
-"The divisor\n"
-"itemlist.text"
-msgid "The divisor"
-msgstr "Die Zahl, durch die geteilt werden soll"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"Returns the yield on a security that pays periodic interest\n"
-"itemlist.text"
-msgid "Returns the yield on a security that pays periodic interest"
-msgstr "Liefert die Rendite eines Wertpapiers, das periodisch Zinsen auszahlt"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"The rate\n"
-"itemlist.text"
-msgid "The rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"Price\n"
-"itemlist.text"
-msgid "Price"
-msgstr "Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"The price\n"
-"itemlist.text"
-msgid "The price"
-msgstr "Der Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"Redemption\n"
-"itemlist.text"
-msgid "Redemption"
-msgstr "Rückzahlung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"The redemption value\n"
-"itemlist.text"
-msgid "The redemption value"
-msgstr "Der Rückzahlungswert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yield\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yielddisc\n"
-"Returns the annual yield for a discounted security\n"
-"itemlist.text"
-msgid "Returns the annual yield for a discounted security"
-msgstr "Liefert die jährliche Rendite eines diskontierten Wertpapiers"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yielddisc\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yielddisc\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yielddisc\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yielddisc\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yielddisc\n"
-"Price\n"
-"itemlist.text"
-msgid "Price"
-msgstr "Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yielddisc\n"
-"The price\n"
-"itemlist.text"
-msgid "The price"
-msgstr "Der Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yielddisc\n"
-"Redemption\n"
-"itemlist.text"
-msgid "Redemption"
-msgstr "Rückzahlung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yielddisc\n"
-"The redemption value\n"
-"itemlist.text"
-msgid "The redemption value"
-msgstr "Der Rückzahlungswert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yielddisc\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yielddisc\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yieldmat\n"
-"Returns the annual yield of a security that pays interest at maturity\n"
-"itemlist.text"
-msgid "Returns the annual yield of a security that pays interest at maturity"
-msgstr "Liefert die jährliche Rendite eines Wertpapiers, das Zinsen am Fälligkeitsdatum auszahlt"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yieldmat\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yieldmat\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yieldmat\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yieldmat\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yieldmat\n"
-"Issue\n"
-"itemlist.text"
-msgid "Issue"
-msgstr "Ausgabe"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yieldmat\n"
-"The issue date\n"
-"itemlist.text"
-msgid "The issue date"
-msgstr "Das Ausgabedatum des Wertpapiers"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yieldmat\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yieldmat\n"
-"The rate\n"
-"itemlist.text"
-msgid "The rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yieldmat\n"
-"Price\n"
-"itemlist.text"
-msgid "Price"
-msgstr "Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yieldmat\n"
-"The price\n"
-"itemlist.text"
-msgid "The price"
-msgstr "Der Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yieldmat\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Yieldmat\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbilleq\n"
-"Returns the bond-equivalent yield for a treasury bill\n"
-"itemlist.text"
-msgid "Returns the bond-equivalent yield for a treasury bill"
-msgstr "Rechnet die Verzinsung eines Schatzwechsels in die für Anleihen übliche einfache jährliche Verzinsung um"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbilleq\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbilleq\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbilleq\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbilleq\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbilleq\n"
-"Discount\n"
-"itemlist.text"
-msgid "Discount"
-msgstr "Disagio"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbilleq\n"
-"The discount rate\n"
-"itemlist.text"
-msgid "The discount rate"
-msgstr "Das Disagio"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillprice\n"
-"Returns the price of 100 currency units face value for a treasury bill\n"
-"itemlist.text"
-msgid "Returns the price of 100 currency units face value for a treasury bill"
-msgstr "Liefert den Kurs pro 100 Währungseinheiten Nennwert eines Schatzwechsels"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillprice\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillprice\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillprice\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillprice\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillprice\n"
-"Discount\n"
-"itemlist.text"
-msgid "Discount"
-msgstr "Disagio"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillprice\n"
-"The discount rate\n"
-"itemlist.text"
-msgid "The discount rate"
-msgstr "Das Disagio"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillyield\n"
-"Returns the yield for a treasury bill\n"
-"itemlist.text"
-msgid "Returns the yield for a treasury bill"
-msgstr "Liefert die Rendite eines Schatzwechsels"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillyield\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillyield\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillyield\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillyield\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillyield\n"
-"Price\n"
-"itemlist.text"
-msgid "Price"
-msgstr "Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Tbillyield\n"
-"The price\n"
-"itemlist.text"
-msgid "The price"
-msgstr "Der Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"Returns the price per $100 face value of a security with an odd first period\n"
-"itemlist.text"
-msgid "Returns the price per $100 face value of a security with an odd first period"
-msgstr "Liefert den Kurs pro 100 Währungseinheiten Nennwert eines Wertpapiers mit einem unregelmäßigen ersten Zinstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"Issue\n"
-"itemlist.text"
-msgid "Issue"
-msgstr "Ausgabe"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"The issue date\n"
-"itemlist.text"
-msgid "The issue date"
-msgstr "Das Ausgabedatum des Wertpapiers"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"First coupon\n"
-"itemlist.text"
-msgid "First coupon"
-msgstr "Erster Zinstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"The first coupon date\n"
-"itemlist.text"
-msgid "The first coupon date"
-msgstr "Der Datum des ersten Zinstermins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"The rate\n"
-"itemlist.text"
-msgid "The rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"Yield\n"
-"itemlist.text"
-msgid "Yield"
-msgstr "Rendite"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"The yield\n"
-"itemlist.text"
-msgid "The yield"
-msgstr "Die Rendite"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"Redemption\n"
-"itemlist.text"
-msgid "Redemption"
-msgstr "Rückzahlung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"The redemption value\n"
-"itemlist.text"
-msgid "The redemption value"
-msgstr "Der Rückzahlungswert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfprice\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"Returns the yield of a security with an odd first period\n"
-"itemlist.text"
-msgid "Returns the yield of a security with an odd first period"
-msgstr "Liefert die Rendite eines Wertpapiers mit einem unregelmäßigen ersten Zinstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"Issue\n"
-"itemlist.text"
-msgid "Issue"
-msgstr "Ausgabe"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"The issue date\n"
-"itemlist.text"
-msgid "The issue date"
-msgstr "Das Ausgabedatum des Wertpapiers"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"First coupon\n"
-"itemlist.text"
-msgid "First coupon"
-msgstr "Erster Zinstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"The first coupon date\n"
-"itemlist.text"
-msgid "The first coupon date"
-msgstr "Der Datum des ersten Zinstermins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"The rate\n"
-"itemlist.text"
-msgid "The rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"Price\n"
-"itemlist.text"
-msgid "Price"
-msgstr "Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"The price\n"
-"itemlist.text"
-msgid "The price"
-msgstr "Der Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"Redemption\n"
-"itemlist.text"
-msgid "Redemption"
-msgstr "Rückzahlung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"The redemption value\n"
-"itemlist.text"
-msgid "The redemption value"
-msgstr "Der Rückzahlungswert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddfyield\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"Returns the price per $100 face value of a security with an odd last period\n"
-"itemlist.text"
-msgid "Returns the price per $100 face value of a security with an odd last period"
-msgstr "Liefert den Kurs pro 100 Währungseinheiten Nennwert eines Wertpapiers mit einem unregelmäßigen letzten Zinstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"Last interest\n"
-"itemlist.text"
-msgid "Last interest"
-msgstr "Letzter Zinstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"The last interest date\n"
-"itemlist.text"
-msgid "The last interest date"
-msgstr "Der Letzte Zinstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"The rate\n"
-"itemlist.text"
-msgid "The rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"Yield\n"
-"itemlist.text"
-msgid "Yield"
-msgstr "Rendite"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"The yield\n"
-"itemlist.text"
-msgid "The yield"
-msgstr "Die Rendite"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"Redemption\n"
-"itemlist.text"
-msgid "Redemption"
-msgstr "Rückzahlung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"The redemption value\n"
-"itemlist.text"
-msgid "The redemption value"
-msgstr "Der Rückzahlungswert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlprice\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"Returns the yield of a security with an odd last period\n"
-"itemlist.text"
-msgid "Returns the yield of a security with an odd last period"
-msgstr "Liefert die Rendite eines Wertpapiers mit einem unregelmäßigen letzten Zinstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"Last interest\n"
-"itemlist.text"
-msgid "Last interest"
-msgstr "Letzter Zinstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"The last interest date\n"
-"itemlist.text"
-msgid "The last interest date"
-msgstr "Der Letzte Zinstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"The rate\n"
-"itemlist.text"
-msgid "The rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"Price\n"
-"itemlist.text"
-msgid "Price"
-msgstr "Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"The price\n"
-"itemlist.text"
-msgid "The price"
-msgstr "Der Kurs"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"Redemption\n"
-"itemlist.text"
-msgid "Redemption"
-msgstr "Rückzahlung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"The redemption value\n"
-"itemlist.text"
-msgid "The redemption value"
-msgstr "Der Rückzahlungswert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Oddlyield\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xirr\n"
-"Returns the internal rate of return for a non-periodic schedule of payments\n"
-"itemlist.text"
-msgid "Returns the internal rate of return for a non-periodic schedule of payments"
-msgstr "Liefert den internen Zinsfuß einer Reihe nicht periodisch anfallender Zahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xirr\n"
-"Values\n"
-"itemlist.text"
-msgid "Values"
-msgstr "Werte"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xirr\n"
-"The values\n"
-"itemlist.text"
-msgid "The values"
-msgstr "Die Werte"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xirr\n"
-"Dates\n"
-"itemlist.text"
-msgid "Dates"
-msgstr "Zeitpunkte"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xirr\n"
-"The dates\n"
-"itemlist.text"
-msgid "The dates"
-msgstr "Die Zeitpunkte"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xirr\n"
-"Guess\n"
-"itemlist.text"
-msgid "Guess"
-msgstr "Schätzwert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xirr\n"
-"The guess\n"
-"itemlist.text"
-msgid "The guess"
-msgstr "Der Schätzwert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xnpv\n"
-"Returns the net present value for a non-periodic schedule of payments\n"
-"itemlist.text"
-msgid "Returns the net present value for a non-periodic schedule of payments"
-msgstr "Liefert den Kapitalwert einer Reihe nicht periodisch anfallender Zahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xnpv\n"
-"Rate\n"
-"itemlist.text"
-msgid "Rate"
-msgstr "Zins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xnpv\n"
-"The rate\n"
-"itemlist.text"
-msgid "The rate"
-msgstr "Der Nominalzins"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xnpv\n"
-"Values\n"
-"itemlist.text"
-msgid "Values"
-msgstr "Werte"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xnpv\n"
-"The values\n"
-"itemlist.text"
-msgid "The values"
-msgstr "Die Werte"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xnpv\n"
-"Dates\n"
-"itemlist.text"
-msgid "Dates"
-msgstr "Zeitpunkte"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Xnpv\n"
-"The dates\n"
-"itemlist.text"
-msgid "The dates"
-msgstr "Die Zeitpunkte"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Intrate\n"
-"Returns the interest rate for a fully invested security\n"
-"itemlist.text"
-msgid "Returns the interest rate for a fully invested security"
-msgstr "Liefert den Zinssatz eines voll investierten Wertpapiers"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Intrate\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Intrate\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Intrate\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Intrate\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Intrate\n"
-"Investment\n"
-"itemlist.text"
-msgid "Investment"
-msgstr "Anlage"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Intrate\n"
-"The investment\n"
-"itemlist.text"
-msgid "The investment"
-msgstr "Die Anlage"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Intrate\n"
-"Redemption\n"
-"itemlist.text"
-msgid "Redemption"
-msgstr "Rückzahlung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Intrate\n"
-"The redemption value\n"
-"itemlist.text"
-msgid "The redemption value"
-msgstr "Der Rückzahlungswert"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Intrate\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Intrate\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupncd\n"
-"Returns the first coupon date after the settlement date\n"
-"itemlist.text"
-msgid "Returns the first coupon date after the settlement date"
-msgstr "Liefert das Datum des ersten Zinstermins nach dem Abrechungstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupncd\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupncd\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupncd\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupncd\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupncd\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupncd\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupncd\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupncd\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdays\n"
-"Returns the number of days in the coupon period containing the settlement date\n"
-"itemlist.text"
-msgid "Returns the number of days in the coupon period containing the settlement date"
-msgstr "Liefert die Anzahl Tage der Zinsperiode, die den Abrechnungstermin einschließt"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdays\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdays\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdays\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdays\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdays\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdays\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdays\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdays\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaysnc\n"
-"Returns the number of days from the settlement date to the next coupon date\n"
-"itemlist.text"
-msgid "Returns the number of days from the settlement date to the next coupon date"
-msgstr "Liefert die Anzahl der Tage vom Abrechnungstermin bis zum nächsten Zinstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaysnc\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaysnc\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaysnc\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaysnc\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaysnc\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaysnc\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaysnc\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaysnc\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaybs\n"
-"Returns the number of days from the beginning of the coupon period to the settlement date\n"
-"itemlist.text"
-msgid "Returns the number of days from the beginning of the coupon period to the settlement date"
-msgstr "Liefert die Anzahl der Tage vom Anfang des Zinstermins bis zum Abrechnungstermin"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaybs\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaybs\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaybs\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaybs\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaybs\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaybs\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaybs\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupdaybs\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Couppcd\n"
-"Returns the last coupon date preceding the settlement date\n"
-"itemlist.text"
-msgid "Returns the last coupon date preceding the settlement date"
-msgstr "Liefert das Datum des letzten Zinstermins vor dem Abrechnungsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Couppcd\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Couppcd\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Couppcd\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Couppcd\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Couppcd\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Couppcd\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Couppcd\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Couppcd\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupnum\n"
-"Returns the number of coupons payable between the settlement and maturity dates\n"
-"itemlist.text"
-msgid "Returns the number of coupons payable between the settlement and maturity dates"
-msgstr "Liefert die Anzahl der Zinstermine zwischen Abrechnungs- und Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupnum\n"
-"Settlement\n"
-"itemlist.text"
-msgid "Settlement"
-msgstr "Abrechnung"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupnum\n"
-"The settlement\n"
-"itemlist.text"
-msgid "The settlement"
-msgstr "Das Abrechnungsdatum, an dem die bis dahin aufgelaufenen Zinsen berechnet werden"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupnum\n"
-"Maturity\n"
-"itemlist.text"
-msgid "Maturity"
-msgstr "Fälligkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupnum\n"
-"The maturity\n"
-"itemlist.text"
-msgid "The maturity"
-msgstr "Das Fälligkeitsdatum"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupnum\n"
-"Frequency\n"
-"itemlist.text"
-msgid "Frequency"
-msgstr "Häufigkeit"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupnum\n"
-"The frequency\n"
-"itemlist.text"
-msgid "The frequency"
-msgstr "Die Anzahl der Zinszahlungen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupnum\n"
-"Basis\n"
-"itemlist.text"
-msgid "Basis"
-msgstr "Basis"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Coupnum\n"
-"The basis\n"
-"itemlist.text"
-msgid "The basis"
-msgstr "Legt fest, wie das Jahr zu berechnen ist"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Fvschedule\n"
-"Returns the future value of the initial principal after a series of compound interest rates are applied\n"
-"itemlist.text"
-msgid "Returns the future value of the initial principal after a series of compound interest rates are applied"
-msgstr "Liefert den aufgezinsten Wert des Anfangskapitals für eine Reihe periodisch unterschiedlicher Zinssätze"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Fvschedule\n"
-"Principal\n"
-"itemlist.text"
-msgid "Principal"
-msgstr "Kapital"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Fvschedule\n"
-"The principal\n"
-"itemlist.text"
-msgid "The principal"
-msgstr "Das Kapital"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Fvschedule\n"
-"Schedule\n"
-"itemlist.text"
-msgid "Schedule"
-msgstr "Zinsen"
-
-#: analysis.src
-msgctxt ""
-"analysis.src\n"
-"ANALYSIS_Fvschedule\n"
-"The schedule\n"
-"itemlist.text"
-msgid "The schedule"
-msgstr "Die Zinsen"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Workday\n"
-"string.text"
-msgid "WORKDAY"
-msgstr "ARBEITSTAG"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Yearfrac\n"
-"string.text"
-msgid "YEARFRAC"
-msgstr "BRTEILJAHRE"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Edate\n"
-"string.text"
-msgid "EDATE"
-msgstr "EDATUM"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Weeknum\n"
-"string.text"
-msgid "WEEKNUM"
-msgstr "KALENDERWOCHE"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Eomonth\n"
-"string.text"
-msgid "EOMONTH"
-msgstr "MONATSENDE"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Networkdays\n"
-"string.text"
-msgid "NETWORKDAYS"
-msgstr "NETTOARBEITSTAGE"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Amordegrc\n"
-"string.text"
-msgid "AMORDEGRC"
-msgstr "AMORDEGRK"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Amorlinc\n"
-"string.text"
-msgid "AMORLINC"
-msgstr "AMORLINEARK"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Accrint\n"
-"string.text"
-msgid "ACCRINT"
-msgstr "AUFGELZINS"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Accrintm\n"
-"string.text"
-msgid "ACCRINTM"
-msgstr "AUFGELZINSF"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Received\n"
-"string.text"
-msgid "RECEIVED"
-msgstr "AUSZAHLUNG"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Disc\n"
-"string.text"
-msgid "DISC"
-msgstr "DISAGIO"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Duration\n"
-"string.text"
-msgid "DURATION"
-msgstr "LAUFZEIT"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Effect\n"
-"string.text"
-msgid "EFFECT"
-msgstr "EFFEKTIV"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Cumprinc\n"
-"string.text"
-msgid "CUMPRINC"
-msgstr "KUMKAPITAL"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Cumipmt\n"
-"string.text"
-msgid "CUMIPMT"
-msgstr "KUMZINSZ"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Price\n"
-"string.text"
-msgid "PRICE"
-msgstr "KURS"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Pricedisc\n"
-"string.text"
-msgid "PRICEDISC"
-msgstr "KURSDISAGIO"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Pricemat\n"
-"string.text"
-msgid "PRICEMAT"
-msgstr "KURSFÄLLIG"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Mduration\n"
-"string.text"
-msgid "MDURATION"
-msgstr "MDURATION"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Nominal\n"
-"string.text"
-msgid "NOMINAL"
-msgstr "NOMINAL"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Dollarfr\n"
-"string.text"
-msgid "DOLLARFR"
-msgstr "NOTIERUNGBRU"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Dollarde\n"
-"string.text"
-msgid "DOLLARDE"
-msgstr "NOTIERUNGDEZ"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Yield\n"
-"string.text"
-msgid "YIELD"
-msgstr "RENDITE"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Yielddisc\n"
-"string.text"
-msgid "YIELDDISC"
-msgstr "RENDITEDIS"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Yieldmat\n"
-"string.text"
-msgid "YIELDMAT"
-msgstr "RENDITEFÄLL"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Tbilleq\n"
-"string.text"
-msgid "TBILLEQ"
-msgstr "TBILLÄQUIV"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Tbillprice\n"
-"string.text"
-msgid "TBILLPRICE"
-msgstr "TBILLKURS"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Tbillyield\n"
-"string.text"
-msgid "TBILLYIELD"
-msgstr "TBILLRENDITE"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Oddfprice\n"
-"string.text"
-msgid "ODDFPRICE"
-msgstr "UNREGERKURS"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Oddfyield\n"
-"string.text"
-msgid "ODDFYIELD"
-msgstr "UNREGERREND"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Oddlprice\n"
-"string.text"
-msgid "ODDLPRICE"
-msgstr "UNREGLEKURS"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Oddlyield\n"
-"string.text"
-msgid "ODDLYIELD"
-msgstr "UNREGLEREND"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Xirr\n"
-"string.text"
-msgid "XIRR"
-msgstr "XINTZINSFUSS"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Xnpv\n"
-"string.text"
-msgid "XNPV"
-msgstr "XKAPITALWERT"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Intrate\n"
-"string.text"
-msgid "INTRATE"
-msgstr "ZINSSATZ"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Coupncd\n"
-"string.text"
-msgid "COUPNCD"
-msgstr "ZINSTERMNZ"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Coupdays\n"
-"string.text"
-msgid "COUPDAYS"
-msgstr "ZINSTERMTAGE"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Coupdaysnc\n"
-"string.text"
-msgid "COUPDAYSNC"
-msgstr "ZINSTERMTAGNZ"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Coupdaybs\n"
-"string.text"
-msgid "COUPDAYBS"
-msgstr "ZINSTERMTAGVA"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Couppcd\n"
-"string.text"
-msgid "COUPPCD"
-msgstr "ZINSTERMVZ"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Coupnum\n"
-"string.text"
-msgid "COUPNUM"
-msgstr "ZINSTERMZAHL"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Fvschedule\n"
-"string.text"
-msgid "FVSCHEDULE"
-msgstr "ZW2"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Iseven\n"
-"string.text"
-msgid "ISEVEN"
-msgstr "ISTGERADE"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Isodd\n"
-"string.text"
-msgid "ISODD"
-msgstr "ISTUNGERADE"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Gcd\n"
-"string.text"
-msgid "GCD"
-msgstr "GGT"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Lcm\n"
-"string.text"
-msgid "LCM"
-msgstr "KGV"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Multinomial\n"
-"string.text"
-msgid "MULTINOMIAL"
-msgstr "POLYNOMIAL"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Seriessum\n"
-"string.text"
-msgid "SERIESSUM"
-msgstr "POTENZREIHE"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Quotient\n"
-"string.text"
-msgid "QUOTIENT"
-msgstr "QUOTIENT"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Mround\n"
-"string.text"
-msgid "MROUND"
-msgstr "VRUNDEN"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Sqrtpi\n"
-"string.text"
-msgid "SQRTPI"
-msgstr "WURZELPI"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Randbetween\n"
-"string.text"
-msgid "RANDBETWEEN"
-msgstr "ZUFALLSBEREICH"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Besseli\n"
-"string.text"
-msgid "BESSELI"
-msgstr "BESSELI"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Besselj\n"
-"string.text"
-msgid "BESSELJ"
-msgstr "BESSELJ"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Besselk\n"
-"string.text"
-msgid "BESSELK"
-msgstr "BESSELK"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Bessely\n"
-"string.text"
-msgid "BESSELY"
-msgstr "BESSELY"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Bin2Dec\n"
-"string.text"
-msgid "BIN2DEC"
-msgstr "BININDEZ"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Bin2Hex\n"
-"string.text"
-msgid "BIN2HEX"
-msgstr "BININHEX"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Bin2Oct\n"
-"string.text"
-msgid "BIN2OCT"
-msgstr "BININOKT"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Delta\n"
-"string.text"
-msgid "DELTA"
-msgstr "DELTA"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Dec2Bin\n"
-"string.text"
-msgid "DEC2BIN"
-msgstr "DEZINBIN"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Dec2Hex\n"
-"string.text"
-msgid "DEC2HEX"
-msgstr "DEZINHEX"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Dec2Oct\n"
-"string.text"
-msgid "DEC2OCT"
-msgstr "DEZINOKT"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Erf\n"
-"string.text"
-msgid "ERF"
-msgstr "GAUSSFEHLER"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Erfc\n"
-"string.text"
-msgid "ERFC"
-msgstr "GAUSSFKOMPL"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Gestep\n"
-"string.text"
-msgid "GESTEP"
-msgstr "GGANZZAHL"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Hex2Bin\n"
-"string.text"
-msgid "HEX2BIN"
-msgstr "HEXINBIN"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Hex2Dec\n"
-"string.text"
-msgid "HEX2DEC"
-msgstr "HEXINDEZ"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Hex2Oct\n"
-"string.text"
-msgid "HEX2OCT"
-msgstr "HEXINOKT"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imabs\n"
-"string.text"
-msgid "IMABS"
-msgstr "IMABS"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imaginary\n"
-"string.text"
-msgid "IMAGINARY"
-msgstr "IMAGINÄRTEIL"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Impower\n"
-"string.text"
-msgid "IMPOWER"
-msgstr "IMPOTENZ"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imargument\n"
-"string.text"
-msgid "IMARGUMENT"
-msgstr "IMARGUMENT"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imcos\n"
-"string.text"
-msgid "IMCOS"
-msgstr "IMCOS"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imdiv\n"
-"string.text"
-msgid "IMDIV"
-msgstr "IMDIV"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imexp\n"
-"string.text"
-msgid "IMEXP"
-msgstr "IMEXP"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imconjugate\n"
-"string.text"
-msgid "IMCONJUGATE"
-msgstr "IMKONJUGIERT"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imln\n"
-"string.text"
-msgid "IMLN"
-msgstr "IMLN"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imlog10\n"
-"string.text"
-msgid "IMLOG10"
-msgstr "IMLOG10"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imlog2\n"
-"string.text"
-msgid "IMLOG2"
-msgstr "IMLOG2"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Improduct\n"
-"string.text"
-msgid "IMPRODUCT"
-msgstr "IMPRODUKT"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imreal\n"
-"string.text"
-msgid "IMREAL"
-msgstr "IMREALTEIL"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imsin\n"
-"string.text"
-msgid "IMSIN"
-msgstr "IMSIN"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imsub\n"
-"string.text"
-msgid "IMSUB"
-msgstr "IMSUB"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imsum\n"
-"string.text"
-msgid "IMSUM"
-msgstr "IMSUMME"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imsqrt\n"
-"string.text"
-msgid "IMSQRT"
-msgstr "IMWURZEL"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imtan\n"
-"string.text"
-msgid "IMTAN"
-msgstr "IMTAN"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imsec\n"
-"string.text"
-msgid "IMSEC"
-msgstr "IMSEC"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imcsc\n"
-"string.text"
-msgid "IMCSC"
-msgstr "IMCOSEC"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imcot\n"
-"string.text"
-msgid "IMCOT"
-msgstr "IMCOT"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imsinh\n"
-"string.text"
-msgid "IMSINH"
-msgstr "IMSINHYP"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imcosh\n"
-"string.text"
-msgid "IMCOSH"
-msgstr "IMCOSHYP"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imsech\n"
-"string.text"
-msgid "IMSECH"
-msgstr "IMSECHYP"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Imcsch\n"
-"string.text"
-msgid "IMCSCH"
-msgstr "IMCOSECHYP"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Complex\n"
-"string.text"
-msgid "COMPLEX"
-msgstr "KOMPLEXE"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Oct2Bin\n"
-"string.text"
-msgid "OCT2BIN"
-msgstr "OKTINBIN"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Oct2Dec\n"
-"string.text"
-msgid "OCT2DEC"
-msgstr "OKTINDEZ"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Oct2Hex\n"
-"string.text"
-msgid "OCT2HEX"
-msgstr "OKTINHEX"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Convert\n"
-"string.text"
-msgid "CONVERT"
-msgstr "UMRECHNEN"
-
-#: analysis_funcnames.src
-msgctxt ""
-"analysis_funcnames.src\n"
-"ANALYSIS_FUNCNAME_Factdouble\n"
-"string.text"
-msgid "FACTDOUBLE"
-msgstr "ZWEIFAKULTÄT"
diff --git a/source/de/scaddins/source/datefunc.po b/source/de/scaddins/source/datefunc.po
deleted file mode 100644
index 85eb1931bf8..00000000000
--- a/source/de/scaddins/source/datefunc.po
+++ /dev/null
@@ -1,405 +0,0 @@
-#. extracted from scaddins/source/datefunc
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-20 09:13+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492679626.000000\n"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffWeeks\n"
-"Calculates the number of weeks in a specific period\n"
-"itemlist.text"
-msgid "Calculates the number of weeks in a specific period"
-msgstr "Berechnet die Anzahl der Wochen in einem bestimmten Zeitraum"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffWeeks\n"
-"Start date\n"
-"itemlist.text"
-msgid "Start date"
-msgstr "Startdatum"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffWeeks\n"
-"First day of the period\n"
-"itemlist.text"
-msgid "First day of the period"
-msgstr "Erster Tag des Zeitraums"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffWeeks\n"
-"End date\n"
-"itemlist.text"
-msgid "End date"
-msgstr "Enddatum"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffWeeks\n"
-"Last day of the period\n"
-"itemlist.text"
-msgid "Last day of the period"
-msgstr "Letzter Tag des Zeitraums"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffWeeks\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Typ"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffWeeks\n"
-"Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks.\n"
-"itemlist.text"
-msgid "Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks."
-msgstr "Art der Berechnung: Art=0 für Wochenanzahl im Intervall, Art=1 für Kalenderwochen."
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffMonths\n"
-"Determines the number of months in a specific period.\n"
-"itemlist.text"
-msgid "Determines the number of months in a specific period."
-msgstr "Berechnet die Anzahl der Monate in einem bestimmten Zeitraum."
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffMonths\n"
-"Start date\n"
-"itemlist.text"
-msgid "Start date"
-msgstr "Startdatum"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffMonths\n"
-"First day of the period.\n"
-"itemlist.text"
-msgid "First day of the period."
-msgstr "Erster Tag des Zeitraums."
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffMonths\n"
-"End date\n"
-"itemlist.text"
-msgid "End date"
-msgstr "Enddatum"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffMonths\n"
-"Last day of the period.\n"
-"itemlist.text"
-msgid "Last day of the period."
-msgstr "Letzter Tag des Zeitraums."
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffMonths\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Typ"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffMonths\n"
-"Type of calculation: Type=0 means the time interval, Type=1 means calendar months.\n"
-"itemlist.text"
-msgid "Type of calculation: Type=0 means the time interval, Type=1 means calendar months."
-msgstr "Art der Berechnung: Art=0 für Monatsanzahl im Intervall, Art=1 für Kalendermonate."
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffYears\n"
-"Calculates the number of years in a specific period.\n"
-"itemlist.text"
-msgid "Calculates the number of years in a specific period."
-msgstr "Berechnet die Anzahl der Jahre in einem bestimmten Zeitraum."
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffYears\n"
-"Start date\n"
-"itemlist.text"
-msgid "Start date"
-msgstr "Startdatum"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffYears\n"
-"First day of the period\n"
-"itemlist.text"
-msgid "First day of the period"
-msgstr "Erster Tag des Zeitraums"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffYears\n"
-"End date\n"
-"itemlist.text"
-msgid "End date"
-msgstr "Enddatum"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffYears\n"
-"Last day of the period\n"
-"itemlist.text"
-msgid "Last day of the period"
-msgstr "Letzter Tag des Zeitraums"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffYears\n"
-"Type\n"
-"itemlist.text"
-msgid "Type"
-msgstr "Typ"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DiffYears\n"
-"Type of calculation: Type=0 means the time interval, Type=1 means calendar years.\n"
-"itemlist.text"
-msgid "Type of calculation: Type=0 means the time interval, Type=1 means calendar years."
-msgstr "Art der Berechnung: Art=0 für Jahresanzahl im Intervall, Art=1 für Kalenderjahre."
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_IsLeapYear\n"
-"Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE).\n"
-"itemlist.text"
-msgid "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE)."
-msgstr "Gibt 1 (WAHR) zurück, wenn das angegebene Datum in einem Schaltjahr liegt, sonst 0 (FALSCH)."
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_IsLeapYear\n"
-"Date\n"
-"itemlist.text"
-msgid "Date"
-msgstr "Datum"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_IsLeapYear\n"
-"Any day in the desired year\n"
-"itemlist.text"
-msgid "Any day in the desired year"
-msgstr "Ein beliebiger Tag im gewünschten Jahr"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DaysInMonth\n"
-"Returns the number of days of the month in which the date entered occurs\n"
-"itemlist.text"
-msgid "Returns the number of days of the month in which the date entered occurs"
-msgstr "Gibt die Anzahl der Tage des Monats zurück, in dem das angegebene Datum liegt"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DaysInMonth\n"
-"Date\n"
-"itemlist.text"
-msgid "Date"
-msgstr "Datum"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DaysInMonth\n"
-"Any day in the desired month\n"
-"itemlist.text"
-msgid "Any day in the desired month"
-msgstr "Ein beliebiger Tag im gewünschten Monat"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DaysInYear\n"
-"Returns the number of days of the year in which the date entered occurs.\n"
-"itemlist.text"
-msgid "Returns the number of days of the year in which the date entered occurs."
-msgstr "Gibt die Anzahl der Tage des Jahres zurück, in dem das angegebene Datum liegt."
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DaysInYear\n"
-"Date\n"
-"itemlist.text"
-msgid "Date"
-msgstr "Datum"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_DaysInYear\n"
-"Any day in the desired year\n"
-"itemlist.text"
-msgid "Any day in the desired year"
-msgstr "Ein beliebiger Tag im gewünschten Jahr"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_WeeksInYear\n"
-"Returns the number of weeks of the year in which the date entered occurs\n"
-"itemlist.text"
-msgid "Returns the number of weeks of the year in which the date entered occurs"
-msgstr "Gibt die Anzahl der Wochen des Jahres zurück, in dem das angegebene Datum liegt"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_WeeksInYear\n"
-"Date\n"
-"itemlist.text"
-msgid "Date"
-msgstr "Datum"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_WeeksInYear\n"
-"Any day in the desired year\n"
-"itemlist.text"
-msgid "Any day in the desired year"
-msgstr "Ein beliebiger Tag im gewünschten Jahr"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_Rot13\n"
-"Encrypts or decrypts a text using the ROT13 algorithm\n"
-"itemlist.text"
-msgid "Encrypts or decrypts a text using the ROT13 algorithm"
-msgstr "Verschlüsselt oder entschlüsselt einen Text mit Hilfe des ROT13-Algorithmus"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_Rot13\n"
-"Text\n"
-"itemlist.text"
-msgid "Text"
-msgstr "Text"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCDESC_Rot13\n"
-"Text to be encrypted or text already encrypted\n"
-"itemlist.text"
-msgid "Text to be encrypted or text already encrypted"
-msgstr "Zu verschlüsselnder oder schon verschlüsselter Text"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCNAME_DiffWeeks\n"
-"string.text"
-msgid "WEEKS"
-msgstr "WOCHEN"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCNAME_DiffMonths\n"
-"string.text"
-msgid "MONTHS"
-msgstr "MONATE"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCNAME_DiffYears\n"
-"string.text"
-msgid "YEARS"
-msgstr "JAHRE"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCNAME_IsLeapYear\n"
-"string.text"
-msgid "ISLEAPYEAR"
-msgstr "ISTSCHALTJAHR"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCNAME_DaysInMonth\n"
-"string.text"
-msgid "DAYSINMONTH"
-msgstr "TAGEIMMONAT"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCNAME_DaysInYear\n"
-"string.text"
-msgid "DAYSINYEAR"
-msgstr "TAGEIMJAHR"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCNAME_WeeksInYear\n"
-"string.text"
-msgid "WEEKSINYEAR"
-msgstr "WOCHENIMJAHR"
-
-#: datefunc.src
-msgctxt ""
-"datefunc.src\n"
-"DATE_FUNCNAME_Rot13\n"
-"string.text"
-msgid "ROT13"
-msgstr "ROT13"
diff --git a/source/de/scaddins/source/pricing.po b/source/de/scaddins/source/pricing.po
deleted file mode 100644
index 774b74da4fa..00000000000
--- a/source/de/scaddins/source/pricing.po
+++ /dev/null
@@ -1,769 +0,0 @@
-#. extracted from scaddins/source/pricing
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-04-20 09:18+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1492679891.000000\n"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"Pricing of a barrier option\n"
-"itemlist.text"
-msgid "Pricing of a barrier option"
-msgstr "Preisgestaltung einer Barrier-Option"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"spot\n"
-"itemlist.text"
-msgid "spot"
-msgstr "Startwert"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"Price/value of the underlying asset\n"
-"itemlist.text"
-msgid "Price/value of the underlying asset"
-msgstr "Preis/Wert des Basiswertes"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"vol\n"
-"itemlist.text"
-msgid "vol"
-msgstr "Volatilität"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"Annual volatility of the underlying asset\n"
-"itemlist.text"
-msgid "Annual volatility of the underlying asset"
-msgstr "Jährliche Volatilität des Basiswertes"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"r\n"
-"itemlist.text"
-msgid "r"
-msgstr "Zins"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"Interest rate (continuously compounded)\n"
-"itemlist.text"
-msgid "Interest rate (continuously compounded)"
-msgstr "Zinssatz (stetige Verzinsung)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"rf\n"
-"itemlist.text"
-msgid "rf"
-msgstr "Ausländischer Zins"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"Foreign interest rate (continuously compounded)\n"
-"itemlist.text"
-msgid "Foreign interest rate (continuously compounded)"
-msgstr "Ausländischer Zinssatz (stetige Verzinsung)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"T\n"
-"itemlist.text"
-msgid "T"
-msgstr "Laufzeit"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"Time to maturity of the option in years\n"
-"itemlist.text"
-msgid "Time to maturity of the option in years"
-msgstr "Laufzeit der Option in Jahren"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"strike\n"
-"itemlist.text"
-msgid "strike"
-msgstr "Strike"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"Strike level of the option\n"
-"itemlist.text"
-msgid "Strike level of the option"
-msgstr "Strike-Wert der Option"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"barrier_low\n"
-"itemlist.text"
-msgid "barrier_low"
-msgstr "Untere_Barriere"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"Lower barrier (set to 0 for no lower barrier)\n"
-"itemlist.text"
-msgid "Lower barrier (set to 0 for no lower barrier)"
-msgstr "Untere Barriere (0 für keine untere Barriere)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"barrier_up\n"
-"itemlist.text"
-msgid "barrier_up"
-msgstr "Obere_Barriere"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"Upper barrier (set to 0 for no upper barrier)\n"
-"itemlist.text"
-msgid "Upper barrier (set to 0 for no upper barrier)"
-msgstr "Obere Barriere (0 für keine obere Barriere)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"rebate\n"
-"itemlist.text"
-msgid "rebate"
-msgstr "Rabatt"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"Amount of money paid at maturity if barrier was hit\n"
-"itemlist.text"
-msgid "Amount of money paid at maturity if barrier was hit"
-msgstr "Fälliger Geldbetrag, falls Schranke erreicht wird"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"put/call\n"
-"itemlist.text"
-msgid "put/call"
-msgstr "Kauf/Verkauf"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"String to define if the option is a (p)ut or a (c)all\n"
-"itemlist.text"
-msgid "String to define if the option is a (p)ut or a (c)all"
-msgstr "Festzulegen, ob die Option eine (p) Put- oder eine (c) Call-Option ist"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"knock in/out\n"
-"itemlist.text"
-msgid "knock in/out"
-msgstr "Knock-In/Out"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"String to define if the option is of type knock-(i)n or knock-(o)ut\n"
-"itemlist.text"
-msgid "String to define if the option is of type knock-(i)n or knock-(o)ut"
-msgstr "Festzulegen, ob die Option eine (i) Knock-In- oder (o) Knock-Out-Option ist"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"barrier_type\n"
-"itemlist.text"
-msgid "barrier_type"
-msgstr "Barrier-Typ"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"String to define whether the barrier is observed (c)ontinuously or only at the (e)nd/maturity\n"
-"itemlist.text"
-msgid "String to define whether the barrier is observed (c)ontinuously or only at the (e)nd/maturity"
-msgstr "Festzulegen, ob eine Barriere (K)ontinuierlich oder nur am (E)nde Berücksichtigung findet"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"greek\n"
-"itemlist.text"
-msgid "greek"
-msgstr "Griechisch"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptBarrier\n"
-"Optional parameter, if left out then the function simply returns the option price; if set, the function returns price sensitivities (Greeks) to one of the input parameters; possible values are (d)elta, (g)amma, (t)heta, v(e)ga, v(o)lga, v(a)nna, (r)ho, rho(f)\n"
-"itemlist.text"
-msgid "Optional parameter, if left out then the function simply returns the option price; if set, the function returns price sensitivities (Greeks) to one of the input parameters; possible values are (d)elta, (g)amma, (t)heta, v(e)ga, v(o)lga, v(a)nna, (r)ho, rho(f)"
-msgstr "Optionaler Parameter, ohne liefert die Funktion den einfachen Optionspreis; mit liefert die Funktion einen von einem der folgenden Parameter (griechisch) abhängigen Preis; mögliche Werte sind (D)elta, (G)amma, (T)heta, V(e)ga, V(o)lga, v(a)nna, (R)ho, Rho(f)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"Pricing of a touch/no-touch option\n"
-"itemlist.text"
-msgid "Pricing of a touch/no-touch option"
-msgstr "Preisgestaltung einer Touch/No-Touch Option"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"spot\n"
-"itemlist.text"
-msgid "spot"
-msgstr "Startwert"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"Price/value of the underlying asset\n"
-"itemlist.text"
-msgid "Price/value of the underlying asset"
-msgstr "Preis/Wert des Basiswertes"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"vol\n"
-"itemlist.text"
-msgid "vol"
-msgstr "Volatilität"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"Annual volatility of the underlying asset\n"
-"itemlist.text"
-msgid "Annual volatility of the underlying asset"
-msgstr "Jährliche Volatilität des Basiswertes"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"r\n"
-"itemlist.text"
-msgid "r"
-msgstr "Zins"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"Interest rate (continuously compounded)\n"
-"itemlist.text"
-msgid "Interest rate (continuously compounded)"
-msgstr "Zinssatz (stetige Verzinsung)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"rf\n"
-"itemlist.text"
-msgid "rf"
-msgstr "Ausländischer Zins"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"Foreign interest rate (continuously compounded)\n"
-"itemlist.text"
-msgid "Foreign interest rate (continuously compounded)"
-msgstr "Ausländischer Zinssatz (stetige Verzinsung)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"T\n"
-"itemlist.text"
-msgid "T"
-msgstr "Laufzeit"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"Time to maturity of the option in years\n"
-"itemlist.text"
-msgid "Time to maturity of the option in years"
-msgstr "Laufzeit der Option in Jahren"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"barrier_low\n"
-"itemlist.text"
-msgid "barrier_low"
-msgstr "Untere_Barriere"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"Lower barrier (set to 0 for no lower barrier)\n"
-"itemlist.text"
-msgid "Lower barrier (set to 0 for no lower barrier)"
-msgstr "Untere Barriere (0 für keine untere Barriere)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"barrier_up\n"
-"itemlist.text"
-msgid "barrier_up"
-msgstr "Obere_Barriere"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"Upper barrier (set to 0 for no upper barrier)\n"
-"itemlist.text"
-msgid "Upper barrier (set to 0 for no upper barrier)"
-msgstr "Obere Barriere (0 für keine obere Barriere)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"foreign/domestic\n"
-"itemlist.text"
-msgid "foreign/domestic"
-msgstr "aus-/inländisch"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"String to define if the option pays one unit of (d)omestic currency (cash or nothing) or (f)oreign currency (asset or nothing)\n"
-"itemlist.text"
-msgid "String to define if the option pays one unit of (d)omestic currency (cash or nothing) or (f)oreign currency (asset or nothing)"
-msgstr "Festzulegen, ob die Option eine Einheit einer (i)nländischen (Bargeld oder nichts) oder (a)usländischen Währung (Fremdwährung oder nichts) ist"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"knock in/out\n"
-"itemlist.text"
-msgid "knock in/out"
-msgstr "Knock-In/Out"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"String to define if the option is of type knock-(i)n (touch) or knock-(o)ut (no-touch)\n"
-"itemlist.text"
-msgid "String to define if the option is of type knock-(i)n (touch) or knock-(o)ut (no-touch)"
-msgstr "Legt fest, ob die Option eine (i) Knock-In- oder (o) Knock-Out-Option ist"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"barrier_type\n"
-"itemlist.text"
-msgid "barrier_type"
-msgstr "Barriereart"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"String to define whether the barrier is observed (c)ontinuously or only at the (e)nd/maturity\n"
-"itemlist.text"
-msgid "String to define whether the barrier is observed (c)ontinuously or only at the (e)nd/maturity"
-msgstr "Festzulegen, ob eine Barriere (K)ontinuierlich oder nur am (E)nde Berücksichtigung findet"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"greek\n"
-"itemlist.text"
-msgid "greek"
-msgstr "Griechisch"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptTouch\n"
-"Optional parameter, if left out then the function simply returns the option price; if set, the function returns price sensitivities (Greeks) to one of the input parameters; possible values are (d)elta, (g)amma, (t)heta, v(e)ga, v(o)lga, v(a)nna, (r)ho, rho(f)\n"
-"itemlist.text"
-msgid "Optional parameter, if left out then the function simply returns the option price; if set, the function returns price sensitivities (Greeks) to one of the input parameters; possible values are (d)elta, (g)amma, (t)heta, v(e)ga, v(o)lga, v(a)nna, (r)ho, rho(f)"
-msgstr "Optionaler Parameter, ohne liefert die Funktion den einfachen Optionspreis; mit liefert die Funktion einen von einem der folgenden Parameter (griechisch) abhängigen Preis; mögliche Werte sind (D)elta, (G)amma, (T)heta, V(e)ga, V(o)lga, v(a)nna, (R)ho, Rho(f)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbHit\n"
-"Probability that an asset hits a barrier assuming it follows dS/S = mu dt + vol dW\n"
-"itemlist.text"
-msgid "Probability that an asset hits a barrier assuming it follows dS/S = mu dt + vol dW"
-msgstr "Wahrscheinlichkeit, dass ein Wert eine Barriere trifft, sofern er dS/S = mu dt + Vol dW erfüllt"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbHit\n"
-"spot\n"
-"itemlist.text"
-msgid "spot"
-msgstr "Startwert"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbHit\n"
-"Price/value S of the underlying asset\n"
-"itemlist.text"
-msgid "Price/value S of the underlying asset"
-msgstr "Preis/Wert des Basiswertes"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbHit\n"
-"vol\n"
-"itemlist.text"
-msgid "vol"
-msgstr "Vol"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbHit\n"
-"Annual volatility of the underlying asset\n"
-"itemlist.text"
-msgid "Annual volatility of the underlying asset"
-msgstr "Jährliche Volatilität des Basiswertes"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbHit\n"
-"drift\n"
-"itemlist.text"
-msgid "drift"
-msgstr "Veränderung"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbHit\n"
-"Parameter mu in dS/S = mu dt + vol dW\n"
-"itemlist.text"
-msgid "Parameter mu in dS/S = mu dt + vol dW"
-msgstr "Parameter mu in dS/S = mu dt + Vol dW"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbHit\n"
-"T\n"
-"itemlist.text"
-msgid "T"
-msgstr "Laufzeit"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbHit\n"
-"Time to maturity\n"
-"itemlist.text"
-msgid "Time to maturity"
-msgstr "Laufzeit"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbHit\n"
-"barrier_low\n"
-"itemlist.text"
-msgid "barrier_low"
-msgstr "Untere_Barriere"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbHit\n"
-"Lower barrier (set to 0 for no lower barrier)\n"
-"itemlist.text"
-msgid "Lower barrier (set to 0 for no lower barrier)"
-msgstr "Untere Barriere (0 für keine untere Barriere)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbHit\n"
-"barrier_up\n"
-"itemlist.text"
-msgid "barrier_up"
-msgstr "Obere_Barriere"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbHit\n"
-"Upper barrier (set to 0 for no upper barrier)\n"
-"itemlist.text"
-msgid "Upper barrier (set to 0 for no upper barrier)"
-msgstr "Obere Barriere (0 für keine obere Barriere)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"Probability that an asset will at maturity end up between two barrier levels, assuming it follows dS/S = mu dt + vol dW (if the last two optional parameters (strike, put/call) are specified, the probability of S_T in [strike, upper barrier] for a call and S_T in [lower barrier, strike] for a put will be returned)\n"
-"itemlist.text"
-msgid "Probability that an asset will at maturity end up between two barrier levels, assuming it follows dS/S = mu dt + vol dW (if the last two optional parameters (strike, put/call) are specified, the probability of S_T in [strike, upper barrier] for a call and S_T in [lower barrier, strike] for a put will be returned)"
-msgstr "Wahrscheinlichkeit, dass ein Wert am Laufzeitende zwischen zwei Barrieren landet, sofern er dS/S = mu dt + Vol dW erfüllt (wenn die beiden letzten optionalen Parameter (Strike, Put/Call) definiert sind, wird die Wahrscheinlichkeit für S_T [Strike, obere Barriere] für einen Call und S_T [untere Barriere, Strike] für ein Put zurückgegeben)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"spot\n"
-"itemlist.text"
-msgid "spot"
-msgstr "Startwert"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"Price/value of the asset\n"
-"itemlist.text"
-msgid "Price/value of the asset"
-msgstr "Preis/Wert des Wertes"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"vol\n"
-"itemlist.text"
-msgid "vol"
-msgstr "Vol"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"Annual volatility of the asset\n"
-"itemlist.text"
-msgid "Annual volatility of the asset"
-msgstr "Jährliche Volatilität des Wertes"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"drift\n"
-"itemlist.text"
-msgid "drift"
-msgstr "Veränderung"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"Parameter mu from dS/S = mu dt + vol dW\n"
-"itemlist.text"
-msgid "Parameter mu from dS/S = mu dt + vol dW"
-msgstr "Parameter mu in dS/S = mu dt + Vol dW"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"T\n"
-"itemlist.text"
-msgid "T"
-msgstr "Laufzeit"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"Time to maturity in years\n"
-"itemlist.text"
-msgid "Time to maturity in years"
-msgstr "Laufzeit in Jahren"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"barrier_low\n"
-"itemlist.text"
-msgid "barrier_low"
-msgstr "Untere_Barriere"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"Lower barrier (set to 0 for no lower barrier)\n"
-"itemlist.text"
-msgid "Lower barrier (set to 0 for no lower barrier)"
-msgstr "Untere Barriere (0 für keine untere Barriere)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"barrier_up\n"
-"itemlist.text"
-msgid "barrier_up"
-msgstr "Obere_Barriere"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"Upper barrier (set to 0 for no upper barrier)\n"
-"itemlist.text"
-msgid "Upper barrier (set to 0 for no upper barrier)"
-msgstr "Obere Barriere (0 für keine obere Barriere)"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"put/call\n"
-"itemlist.text"
-msgid "put/call"
-msgstr "Kauf/Verkauf"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"Optional (p)ut/(c)all indicator\n"
-"itemlist.text"
-msgid "Optional (p)ut/(c)all indicator"
-msgstr "Optionaler Kauf (p) / Verkauf (c) Indikator"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"strike\n"
-"itemlist.text"
-msgid "strike"
-msgstr "Strike"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCDESC_OptProbInMoney\n"
-"Optional strike level\n"
-"itemlist.text"
-msgid "Optional strike level"
-msgstr "Optionaler Strike-Wert"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCNAME_OptBarrier\n"
-"string.text"
-msgid "OPT_BARRIER"
-msgstr "OPT_BARRIER"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCNAME_OptTouch\n"
-"string.text"
-msgid "OPT_TOUCH"
-msgstr "OPT_TOUCH"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCNAME_OptProbHit\n"
-"string.text"
-msgid "OPT_PROB_HIT"
-msgstr "OPT_PROB_HIT"
-
-#: pricing.src
-msgctxt ""
-"pricing.src\n"
-"PRICING_FUNCNAME_OptProbInMoney\n"
-"string.text"
-msgid "OPT_PROB_INMONEY"
-msgstr "OPT_PROB_INMONEY"
diff --git a/source/de/sccomp/source/solver.po b/source/de/sccomp/messages.po
index 7b738f56a96..25243b9fffc 100644
--- a/source/de/sccomp/source/solver.po
+++ b/source/de/sccomp/messages.po
@@ -1,4 +1,4 @@
-#. extracted from sccomp/source/solver
+#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
@@ -12,102 +12,78 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1401737313.000000\n"
+#. whDxm
#: solver.src
-msgctxt ""
-"solver.src\n"
-"RID_SOLVER_COMPONENT\n"
-"string.text"
+msgctxt "RID_SOLVER_COMPONENT"
msgid "%PRODUCTNAME Linear Solver"
msgstr "%PRODUCTNAME Linearer Solver"
+#. PD5QV
#: solver.src
-msgctxt ""
-"solver.src\n"
-"RID_COINMP_SOLVER_COMPONENT\n"
-"string.text"
+msgctxt "RID_COINMP_SOLVER_COMPONENT"
msgid "%PRODUCTNAME CoinMP Linear Solver"
msgstr "%PRODUCTNAME CoinMP Linear Solver"
+#. 8TGKo
#: solver.src
-msgctxt ""
-"solver.src\n"
-"RID_PROPERTY_NONNEGATIVE\n"
-"string.text"
+msgctxt "RID_PROPERTY_NONNEGATIVE"
msgid "Assume variables as non-negative"
msgstr "Variable Zellen nicht negativ"
+#. CCyGh
#: solver.src
-msgctxt ""
-"solver.src\n"
-"RID_PROPERTY_INTEGER\n"
-"string.text"
+msgctxt "RID_PROPERTY_INTEGER"
msgid "Assume variables as integer"
msgstr "Variable Zellen ganzzahlig"
+#. gEZ74
#: solver.src
-msgctxt ""
-"solver.src\n"
-"RID_PROPERTY_TIMEOUT\n"
-"string.text"
+msgctxt "RID_PROPERTY_TIMEOUT"
msgid "Solving time limit (seconds)"
msgstr "Zeitlimit (Sekunden)"
+#. efNFB
#: solver.src
-msgctxt ""
-"solver.src\n"
-"RID_PROPERTY_EPSILONLEVEL\n"
-"string.text"
+msgctxt "RID_PROPERTY_EPSILONLEVEL"
msgid "Epsilon level (0-3)"
msgstr "Epsilon Level (0-3)"
+#. yh5Ap
#: solver.src
-msgctxt ""
-"solver.src\n"
-"RID_PROPERTY_LIMITBBDEPTH\n"
-"string.text"
+msgctxt "RID_PROPERTY_LIMITBBDEPTH"
msgid "Limit branch-and-bound depth"
msgstr "Branch-and-Bound-Tiefe begrenzen"
+#. 4JZXv
#: solver.src
-msgctxt ""
-"solver.src\n"
-"RID_ERROR_NONLINEAR\n"
-"string.text"
+msgctxt "RID_ERROR_NONLINEAR"
msgid "The model is not linear."
msgstr "Das Modell ist nicht linear."
+#. GRnPv
#: solver.src
-msgctxt ""
-"solver.src\n"
-"RID_ERROR_EPSILONLEVEL\n"
-"string.text"
+msgctxt "RID_ERROR_EPSILONLEVEL"
msgid "The epsilon level is invalid."
msgstr "Der Epsilon-Level ist ungültig."
+#. ZoHHM
#: solver.src
-msgctxt ""
-"solver.src\n"
-"RID_ERROR_INFEASIBLE\n"
-"string.text"
+msgctxt "RID_ERROR_INFEASIBLE"
msgid "The model is infeasible. Check limiting conditions."
msgstr "Das Modell ist unlösbar. Prüfen Sie die Nebenbedingungen."
+#. iGYmo
#: solver.src
-msgctxt ""
-"solver.src\n"
-"RID_ERROR_UNBOUNDED\n"
-"string.text"
+msgctxt "RID_ERROR_UNBOUNDED"
msgid "The model is unbounded."
msgstr "Das Modell ist unbeschränkt."
+#. QQZXV
#: solver.src
-msgctxt ""
-"solver.src\n"
-"RID_ERROR_TIMEOUT\n"
-"string.text"
+msgctxt "RID_ERROR_TIMEOUT"
msgid "The time limit was reached."
msgstr "Das Zeitlimit wurde erreicht."
diff --git a/source/de/sd/messages.po b/source/de/sd/messages.po
new file mode 100644
index 00000000000..05dd3cf7a5a
--- /dev/null
+++ b/source/de/sd/messages.po
@@ -0,0 +1,7016 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-04-12 14:14+0200\n"
+"PO-Revision-Date: 2017-04-15 03:49+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1492228183.000000\n"
+
+#. DKw6n
+#: glob.src
+msgctxt "STR_LAYER_BCKGRND"
+msgid "Background"
+msgstr "Hintergrund"
+
+#. qGFWm
+#: glob.src
+msgctxt "STR_LAYER_BCKGRNDOBJ"
+msgid "Background objects"
+msgstr "Hintergrundobjekte"
+
+#. j9GG4
+#: glob.src
+msgctxt "STR_LAYER_LAYOUT"
+msgid "Layout"
+msgstr "Layout"
+
+#. nU2g2
+#: glob.src
+msgctxt "STR_LAYER_CONTROLS"
+msgid "Controls"
+msgstr "Steuerelemente"
+
+#. zQSpC
+#: glob.src
+msgctxt "STR_LAYER_MEASURELINES"
+msgid "Dimension Lines"
+msgstr "Maßlinien"
+
+#. z4wq5
+#: glob.src
+msgctxt "STR_PAGE"
+msgid "Slide"
+msgstr "Folie"
+
+#. TTD8A
+#: glob.src
+msgctxt "STR_PAGE_NAME"
+msgid "Page"
+msgstr "Folie"
+
+#. p8GEE
+#: glob.src
+msgctxt "STR_SLIDE_NAME"
+msgid "Slide"
+msgstr "Folie"
+
+#. r3w8y
+#: glob.src
+msgctxt "STR_MASTERSLIDE_NAME"
+msgid "Master Slide"
+msgstr "Folienmaster"
+
+#. C3zZM
+#: glob.src
+msgctxt "STR_MASTERPAGE_NAME"
+msgid "Master Page"
+msgstr "Folienmaster"
+
+#. PacSi
+#: glob.src
+msgctxt "STR_NOTES"
+msgid "(Notes)"
+msgstr "(Notizen)"
+
+#. hBB6T
+#: glob.src
+msgctxt "STR_HANDOUT"
+msgid "Handouts"
+msgstr "Handzettel"
+
+#. ZC2XQ
+#: glob.src
+msgctxt "STR_PRESOBJ_MPTITLE"
+msgid "Click to edit the title text format"
+msgstr "Format des Titeltextes durch Klicken bearbeiten"
+
+#. bekYz
+#: glob.src
+msgctxt "STR_PRESOBJ_MPOUTLINE"
+msgid "Click to edit the outline text format"
+msgstr "Format des Gliederungstextes durch Klicken bearbeiten"
+
+#. QHBwE
+#: glob.src
+msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
+msgid "Second Outline Level"
+msgstr "Zweite Gliederungsebene"
+
+#. Lf8oo
+#: glob.src
+msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
+msgid "Third Outline Level"
+msgstr "Dritte Gliederungsebene"
+
+#. n3fVM
+#: glob.src
+msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
+msgid "Fourth Outline Level"
+msgstr "Vierte Gliederungsebene"
+
+#. DsABM
+#: glob.src
+msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
+msgid "Fifth Outline Level"
+msgstr "Fünfte Gliederungsebene"
+
+#. CG6UM
+#: glob.src
+msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
+msgid "Sixth Outline Level"
+msgstr "Sechste Gliederungsebene"
+
+#. 45DF3
+#: glob.src
+msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
+msgid "Seventh Outline Level"
+msgstr "Siebte Gliederungsebene"
+
+#. msbUt
+#: glob.src
+msgctxt "STR_PRESOBJ_MPNOTESTITLE"
+msgid "Click to move the slide"
+msgstr "Folie mittels Klicken verschieben"
+
+#. CuXWS
+#: glob.src
+msgctxt "STR_PRESOBJ_MPNOTESTEXT"
+msgid "Click to edit the notes format"
+msgstr "Format der Notizen mittels Klicken bearbeiten"
+
+#. oBXBx
+#: glob.src
+msgctxt "STR_PRESOBJ_TITLE"
+msgid "Click to add Title"
+msgstr "Titel durch Klicken hinzufügen"
+
+#. HVQNr
+#: glob.src
+msgctxt "STR_PRESOBJ_OUTLINE"
+msgid "Click to add Text"
+msgstr "Text durch Klicken hinzufügen"
+
+#. NUirL
+#: glob.src
+msgctxt "STR_PRESOBJ_TEXT"
+msgid "Click to add Text"
+msgstr "Text durch Klicken hinzufügen"
+
+#. 2u7FR
+#: glob.src
+msgctxt "STR_PRESOBJ_NOTESTEXT"
+msgid "Click to add Notes"
+msgstr "Notizen durch Klicken hinzufügen"
+
+#. ZqPtT
+#: glob.src
+msgctxt "STR_PRESOBJ_GRAPHIC"
+msgid "Double-click to add an Image"
+msgstr "Bild durch Doppelklicken hinzufügen"
+
+#. HGVA3
+#: glob.src
+msgctxt "STR_PRESOBJ_OBJECT"
+msgid "Double-click to add an Object"
+msgstr "Objekt durch Doppelklicken hinzufügen"
+
+#. XjW6w
+#: glob.src
+msgctxt "STR_PRESOBJ_CHART"
+msgid "Double-click to add a Chart"
+msgstr "Diagramm durch Doppelklicken hinzufügen"
+
+#. eKgCA
+#: glob.src
+msgctxt "STR_PRESOBJ_ORGCHART"
+msgid "Double-click to add an Organization Chart"
+msgstr "Organisationsdiagramm durch Doppelklicken hinzufügen"
+
+#. wW4E4
+#: glob.src
+msgctxt "STR_PRESOBJ_TABLE"
+msgid "Double-click to add a Spreadsheet"
+msgstr "Tabelle durch Doppelklicken hinzufügen"
+
+#. nBtJo
+#: glob.src
+msgctxt "STR_LAYOUT_DEFAULT_NAME"
+msgid "Default"
+msgstr "Standard"
+
+#. rEPYV
+#: glob.src
+msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
+msgid "Title"
+msgstr "Titel"
+
+#. tRuKR
+#: glob.src
+msgctxt "STR_STANDARD_STYLESHEET_NAME"
+msgid "Default"
+msgstr "Standard"
+
+#. pxfDw
+#: glob.src
+msgctxt "STR_UNDO_MOVEPAGES"
+msgid "Move slides"
+msgstr "Folien verschieben"
+
+#. CAZTE
+#: glob.src
+msgctxt "STR_POOLSHEET_MEASURE"
+msgid "Dimension Line"
+msgstr "Maßlinie"
+
+#. btJeg
+#: glob.src
+msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
+msgid "Object with no fill and no line"
+msgstr "Objekt ohne Füllung und Linie"
+
+#. K4RLP
+#: glob.src
+msgctxt "STR_POOLSHEET_OBJWITHARROW"
+msgid "Object with arrow"
+msgstr "Objekt mit Pfeilspitze"
+
+#. Dozwf
+#: glob.src
+msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
+msgid "Object with shadow"
+msgstr "Objekt mit Schatten"
+
+#. pA7rP
+#: glob.src
+msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
+msgid "Object without fill"
+msgstr "Objekt ohne Füllung"
+
+#. YCmiq
+#: glob.src
+msgctxt "STR_POOLSHEET_TEXT"
+msgid "Text"
+msgstr "Text"
+
+#. uedGs
+#: glob.src
+msgctxt "STR_POOLSHEET_TEXTBODY"
+msgid "Text body"
+msgstr "Textkörper"
+
+#. VwMDn
+#: glob.src
+msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
+msgid "Text body justified"
+msgstr "Textkörper Blocksatz"
+
+#. iBECA
+#: glob.src
+msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
+msgid "First line indent"
+msgstr "Einzug erste Zeile"
+
+#. macRF
+#: glob.src
+msgctxt "STR_POOLSHEET_TITLE"
+msgid "Title"
+msgstr "Titel"
+
+#. gu2vE
+#: glob.src
+msgctxt "STR_POOLSHEET_TITLE1"
+msgid "Title1"
+msgstr "Titel1"
+
+#. H3WPt
+#: glob.src
+msgctxt "STR_POOLSHEET_TITLE2"
+msgid "Title2"
+msgstr "Titel2"
+
+#. Bykd3
+#: glob.src
+msgctxt "STR_POOLSHEET_HEADLINE"
+msgid "Heading"
+msgstr "Überschrift"
+
+#. UZmtN
+#: glob.src
+msgctxt "STR_POOLSHEET_HEADLINE1"
+msgid "Heading1"
+msgstr "Überschrift1"
+
+#. uEPoF
+#: glob.src
+msgctxt "STR_POOLSHEET_HEADLINE2"
+msgid "Heading2"
+msgstr "Überschrift2"
+
+#. 5dvZu
+#: glob.src
+msgctxt "STR_PSEUDOSHEET_TITLE"
+msgid "Title"
+msgstr "Titel"
+
+#. zn6qa
+#: glob.src
+msgctxt "STR_PSEUDOSHEET_SUBTITLE"
+msgid "Subtitle"
+msgstr "Untertitel"
+
+#. JVyHE
+#: glob.src
+msgctxt "STR_PSEUDOSHEET_OUTLINE"
+msgid "Outline"
+msgstr "Gliederung"
+
+#. riaKo
+#: glob.src
+msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
+msgid "Background objects"
+msgstr "Hintergrundobjekte"
+
+#. EEEk3
+#: glob.src
+msgctxt "STR_PSEUDOSHEET_BACKGROUND"
+msgid "Background"
+msgstr "Hintergrund"
+
+#. EdWfd
+#: glob.src
+msgctxt "STR_PSEUDOSHEET_NOTES"
+msgid "Notes"
+msgstr "Notizen"
+
+#. FQqif
+#: glob.src
+msgctxt "STR_POWERPOINT_IMPORT"
+msgid "PowerPoint Import"
+msgstr "PowerPoint Import"
+
+#. BG67G
+#: glob.src
+msgctxt "STR_LOAD_DOC"
+msgid "Load Document"
+msgstr "Dokument laden"
+
+#. kjKWf
+#: glob.src
+msgctxt "STR_SAVE_DOC"
+msgid "Save Document"
+msgstr "Dokument speichern"
+
+#. uvDNG
+#: glob.src
+msgctxt "RID_SD_ERRHDL"
+msgid "File format error found at $(ARG1)(row,col)."
+msgstr "Formatfehler an Position $(ARG1)(Zeile,Spalte) in der Datei entdeckt."
+
+#. cXzDt
+#: glob.src
+msgctxt "RID_SD_ERRHDL"
+msgid ""
+"Format error discovered in the file in sub-document $(ARG1) at position "
+"$(ARG2)(row,col)."
+msgstr ""
+"Formatfehler in Teildokument $(ARG1) an Position $(ARG2)(Zeile,Spalte) in "
+"der Datei entdeckt."
+
+#. VCFFA
+#: glob.src
+msgctxt "STR_POOLSHEET_BANDED_CELL"
+msgid "Banding cell"
+msgstr "Alternierende Zelle"
+
+#. FBzD4
+#: glob.src
+msgctxt "STR_POOLSHEET_HEADER"
+msgid "Header"
+msgstr "Kopfzeile"
+
+#. kut56
+#: glob.src
+msgctxt "STR_POOLSHEET_TOTAL"
+msgid "Total line"
+msgstr "Summenzeile"
+
+#. 4UBCG
+#: glob.src
+msgctxt "STR_POOLSHEET_FIRST_COLUMN"
+msgid "First column"
+msgstr "Erste Spalte"
+
+#. f3Zfa
+#: glob.src
+msgctxt "STR_POOLSHEET_LAST_COLUMN"
+msgid "Last column"
+msgstr "Letzte Spalte"
+
+#. qYJvL
+#: glob.src
+msgctxt "STR_ENTER_PIN"
+msgid "Enter PIN:"
+msgstr "PIN eingeben:"
+
+#. FVvMx
+#: glob.src
+msgctxt "STR_DEAUTHORISE_CLIENT"
+msgid "Remove client authorisation"
+msgstr "Client-Berechtigung entfernen"
+
+#. HAeDt
+#: glob.src
+msgctxt "STR_SHRINK_FONT_SIZE"
+msgid "Shrink font size"
+msgstr "Schriftgröße verkleinern"
+
+#. 7uDfu
+#: glob.src
+msgctxt "STR_GROW_FONT_SIZE"
+msgid "Grow font size"
+msgstr "Schriftgröße vergrößern"
+
+#. KAsTD
+#: annotations.src
+msgctxt "STR_ANNOTATION_TODAY"
+msgid "Today,"
+msgstr "Heute,"
+
+#. DEYnN
+#: annotations.src
+msgctxt "STR_ANNOTATION_YESTERDAY"
+msgid "Yesterday,"
+msgstr "Gestern,"
+
+#. bh3FZ
+#: annotations.src
+msgctxt "STR_ANNOTATION_NOAUTHOR"
+msgid "(no author)"
+msgstr "(kein Autor)"
+
+#. AvNV8
+#: annotations.src
+msgctxt "STR_ANNOTATION_WRAP_FORWARD"
+msgid ""
+"%PRODUCTNAME Impress reached the end of the presentation. Do you want to "
+"continue at the beginning?"
+msgstr ""
+"%PRODUCTNAME Impress das Ende der Präsentation erreicht. Möchten Sie am "
+"Anfang fortsetzen?"
+
+#. P5gKe
+#: annotations.src
+msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
+msgid ""
+"%PRODUCTNAME Impress reached the beginning of the presentation. Do you want "
+"to continue at the end?"
+msgstr ""
+"%PRODUCTNAME Impress hat den Anfang der Präsentation erreicht. Möchten Sie "
+"am Ende fortsetzen?"
+
+#. KGmdL
+#: annotations.src
+msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
+msgid ""
+"%PRODUCTNAME Draw reached the end of the document. Do you want to continue "
+"at the beginning?"
+msgstr ""
+"%PRODUCTNAME Draw hat das Ende des Dokuments erreicht. Möchten Sie am Anfang"
+" fortsetzen?"
+
+#. oEn6r
+#: annotations.src
+msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
+msgid ""
+"%PRODUCTNAME Draw reached the beginning of the document. Do you want to "
+"continue at the end?"
+msgstr ""
+"%PRODUCTNAME Draw hat den Anfang des Dokuments erreicht. Möchten Sie am Ende"
+" fortsetzen?"
+
+#. eP7Vm
+#: annotations.src
+msgctxt "STR_ANNOTATION_UNDO_INSERT"
+msgid "Insert Comment"
+msgstr "Kommentar einfügen"
+
+#. s4c9W
+#: annotations.src
+msgctxt "STR_ANNOTATION_UNDO_DELETE"
+msgid "Delete Comment(s)"
+msgstr "Kommentar(e) löschen"
+
+#. bxiPE
+#: annotations.src
+msgctxt "STR_ANNOTATION_UNDO_MOVE"
+msgid "Move Comment"
+msgstr "Kommentar verschieben"
+
+#. hQbpd
+#: annotations.src
+msgctxt "STR_ANNOTATION_UNDO_EDIT"
+msgid "Edit Comment"
+msgstr "Kommentar bearbeiten"
+
+#. g6k7E
+#: annotations.src
+msgctxt "STR_ANNOTATION_REPLY"
+msgid "Reply to %1"
+msgstr "An %1 antworten"
+
+#. xCRmu
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
+msgid "%PRODUCTNAME %s"
+msgstr "%PRODUCTNAME %s"
+
+#. haABz
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
+msgid "Print"
+msgstr "Drucken"
+
+#. 6KbnP
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
+msgid "Document"
+msgstr "Dokument"
+
+#. WDjkB
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
+msgid "Slides"
+msgstr "Folien"
+
+#. wFuXP
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
+msgid "Handouts"
+msgstr "Handzettel"
+
+#. Fg5nZ
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
+msgid "Notes"
+msgstr "Notizen"
+
+#. L8LvB
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
+msgid "Outline"
+msgstr "Gliederung"
+
+#. RYQUG
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
+msgid "Slides per page"
+msgstr "Folien pro Seite"
+
+#. Apz5m
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "According to layout"
+msgstr "Je nach Anordnung"
+
+#. FBUYC
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "1"
+msgstr "1"
+
+#. EHHWd
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "2"
+msgstr "2"
+
+#. UF5Xv
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "3"
+msgstr "3"
+
+#. 2VEN3
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "4"
+msgstr "4"
+
+#. fZdRe
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "6"
+msgstr "6"
+
+#. NjtiN
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
+msgid "9"
+msgstr "9"
+
+#. ywaBJ
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
+msgid "Order"
+msgstr "Reihenfolge"
+
+#. rEFBA
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
+msgid "Left to right, then down"
+msgstr "Von links nach rechts, dann nach unten"
+
+#. 2ZwsC
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
+msgid "Top to bottom, then right"
+msgstr "Von oben nach unten, dann nach rechts"
+
+#. BFEFJ
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
+msgid "~Contents"
+msgstr "~Inhalt"
+
+#. AdWKp
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
+msgid "~Slide name"
+msgstr "~Folienname"
+
+#. GkLky
+#: DocumentRenderer.src
+msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
+msgid "P~age name"
+msgstr "Folien~name"
+
+#. EFkVE
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
+msgid "~Date and time"
+msgstr "Da~tum und Uhrzeit"
+
+#. ZcDFL
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
+msgid "Hidden pages"
+msgstr "Ausgeblendeten Seiten"
+
+#. CSUbC
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
+msgid "Color"
+msgstr "Farbe"
+
+#. peBEn
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
+msgid "Original colors"
+msgstr "Originalfarben"
+
+#. hoEiK
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
+msgid "Grayscale"
+msgstr "Graustufen"
+
+#. 9aSXC
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
+msgid "Black & white"
+msgstr "Schwarzweiß"
+
+#. WmYKp
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
+msgid "~Size"
+msgstr "~Größe"
+
+#. v8qMM
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
+msgid "Original size"
+msgstr "Originalgröße"
+
+#. BSDgB
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
+msgid "Fit to printable page"
+msgstr "In druckbaren Bereich einpassen"
+
+#. gNu4J
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
+msgid "Distribute on multiple sheets of paper"
+msgstr "Auf mehrere Druckseiten verteilen"
+
+#. f5XRs
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
+msgid "Tile sheet of paper with repeated slides"
+msgstr "Druckseite mit wiederholten Folien füllen"
+
+#. 3Gp62
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
+msgid "Original size"
+msgstr "Originalgröße"
+
+#. FEjyA
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
+msgid "Fit to printable page"
+msgstr "In druckbaren Bereich einpassen"
+
+#. Dz5yF
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
+msgid "Distribute on multiple sheets of paper"
+msgstr "Auf mehrere Druckseiten verteilen"
+
+#. 6YzMK
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
+msgid "Tile sheet of paper with repeated pages"
+msgstr "Druckseite mit wiederholten Seiten füllen"
+
+#. qDGVE
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
+msgid "Brochure"
+msgstr "Broschüre"
+
+#. K7m8L
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
+msgid "Page sides"
+msgstr "Seitenränder"
+
+#. 8AzJi
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
+msgid "Include"
+msgstr "Einschließen"
+
+#. zRbyF
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
+msgid "All pages"
+msgstr "Alle Seiten"
+
+#. Dv7rf
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
+msgid "Front sides / right pages"
+msgstr "Vorderseiten / rechte Seiten"
+
+#. y4PeC
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
+msgid "Back sides / left pages"
+msgstr "Rückseiten / linke Seiten"
+
+#. AEeCf
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
+msgid "~Use only paper tray from printer preferences"
+msgstr "Nur den Papierschacht der Druckereinstellungen ~benutzen"
+
+#. WFksd
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
+msgid "Print range"
+msgstr "Druckbereich"
+
+#. 2etKA
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
+msgid "~All slides"
+msgstr "~Alle Folien"
+
+#. EBVcP
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
+msgid "~Slides"
+msgstr "~Folien"
+
+#. FAD4X
+#: DocumentRenderer.src
+msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
+msgid "Se~lection"
+msgstr "Aus~wahl"
+
+#. JLquV
+#: DocumentRenderer.src
+msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
+msgid "~All pages"
+msgstr "A~lle Folien"
+
+#. nMGDV
+#: DocumentRenderer.src
+msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
+msgid "Pa~ges"
+msgstr "~Seiten"
+
+#. rf7BE
+#: DocumentRenderer.src
+msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
+msgid "Se~lection"
+msgstr "Aus~wahl"
+
+#. EV4W5
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
+msgid "none"
+msgstr "Keine"
+
+#. 9izAz
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
+msgid "Until next click"
+msgstr "Bis zum nächsten Klick"
+
+#. oEQ7B
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
+msgid "Until end of slide"
+msgstr "Bis zum Ende der Folie"
+
+#. Lf9gB
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
+msgid "Direction:"
+msgstr "Richtung:"
+
+#. xxDXG
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
+msgid "Zoom:"
+msgstr "Maßstab:"
+
+#. SvBeK
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
+msgid "Spokes:"
+msgstr "Speichen:"
+
+#. eJ4qZ
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
+msgid "First color:"
+msgstr "Erste Farbe:"
+
+#. CSbCE
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
+msgid "Second color:"
+msgstr "Zweite Farbe:"
+
+#. cZUiD
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
+msgid "Fill color:"
+msgstr "Füllfarbe:"
+
+#. U5ZDL
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
+msgid "Style:"
+msgstr "Stil:"
+
+#. vKLER
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
+msgid "Font:"
+msgstr "Schriftart:"
+
+#. Fdsks
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
+msgid "Font color:"
+msgstr "Schriftfarbe:"
+
+#. nT7dm
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
+msgid "Style:"
+msgstr "Stil:"
+
+#. q24Fe
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
+msgid "Typeface:"
+msgstr "Schriftart:"
+
+#. nAqeR
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
+msgid "Line color:"
+msgstr "Linienfarbe:"
+
+#. w7G4Q
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
+msgid "Font size:"
+msgstr "Schriftgröße:"
+
+#. R3GgU
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
+msgid "Size:"
+msgstr "Größe:"
+
+#. YEwoz
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
+msgid "Amount:"
+msgstr "Menge:"
+
+#. wiQPZ
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
+msgid "Color:"
+msgstr "Farbe:"
+
+#. f5u6C
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
+msgid "(No sound)"
+msgstr "(Ohne Klang)"
+
+#. N7jGX
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
+msgid "(Stop previous sound)"
+msgstr "(Vorherigen Klang Anhalten)"
+
+#. vasqr
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
+msgid "Other sound..."
+msgstr "Anderer Klang..."
+
+#. CjvLY
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_SAMPLE"
+msgid "Sample"
+msgstr "Beispiel"
+
+#. CdYt2
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_TRIGGER"
+msgid "Trigger"
+msgstr "Auslöser"
+
+#. dVJoV
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
+msgid ""
+"First select the slide element and then click 'Add...' to add an animation "
+"effect."
+msgstr ""
+"Erst ein Element auf dieser Folie auswählen und dann auf 'Hinzufügen...' "
+"klicken, um die Animation hinzuzufügen."
+
+#. Evkrq
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_USERPATH"
+msgid "User paths"
+msgstr "Benutzerdefinierte Pfade"
+
+#. EcciE
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
+msgid "Entrance: %1"
+msgstr "Eingang: %1"
+
+#. Zydrz
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
+msgid "Emphasis: %1"
+msgstr "Betont: %1"
+
+#. kW2DL
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_EXIT"
+msgid "Exit: %1"
+msgstr "Ausgang: %1"
+
+#. iKFbF
+#: CustomAnimation.src
+msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
+msgid "Motion Paths: %1"
+msgstr "Animationspfade: %1"
+
+#. Ep4QY
+#: CustomAnimation.src
+msgctxt "STR_SLIDETRANSITION_NONE"
+msgid "None"
+msgstr "Keine"
+
+#. BA5TS
+#: res_bmp.src
+msgctxt "RID_GRAPHICSTYLEFAMILY"
+msgid "All Styles"
+msgstr "Alle Vorlagen"
+
+#. LgxjD
+#: res_bmp.src
+msgctxt "RID_GRAPHICSTYLEFAMILY"
+msgid "Hidden Styles"
+msgstr "Verborgene Vorlagen"
+
+#. gfQvA
+#: res_bmp.src
+msgctxt "RID_GRAPHICSTYLEFAMILY"
+msgid "Applied Styles"
+msgstr "Verwendete Vorlagen"
+
+#. KY3qY
+#: res_bmp.src
+msgctxt "RID_GRAPHICSTYLEFAMILY"
+msgid "Custom Styles"
+msgstr "Benutzervorlagen"
+
+#. FcnEj
+#: res_bmp.src
+msgctxt "RID_PRESENTATIONSTYLEFAMILY"
+msgid "All Styles"
+msgstr "Alle Vorlagen"
+
+#. 6DEqj
+#: res_bmp.src
+msgctxt "RID_PRESENTATIONSTYLEFAMILY"
+msgid "Hidden Styles"
+msgstr "Verborgene Vorlagen"
+
+#. pPiWM
+#: sdstring.src
+msgctxt "STR_SAR_WRAP_FORWARD"
+msgid ""
+"%PRODUCTNAME Impress has searched to the end of the presentation. Do you "
+"want to continue at the beginning?"
+msgstr ""
+"%PRODUCTNAME Impress hat bis zum Ende der Präsentation gesucht. Möchten Sie "
+"die Suche am Anfang fortsetzen?"
+
+#. buKAC
+#: sdstring.src
+msgctxt "STR_SAR_WRAP_BACKWARD"
+msgid ""
+"%PRODUCTNAME Impress has searched to the beginning of the presentation. Do "
+"you want to continue at the end?"
+msgstr ""
+"%PRODUCTNAME Impress hat bis zum Anfang der Präsentation gesucht. Möchten "
+"Sie die Suche am Ende fortsetzen?"
+
+#. iiE2i
+#: sdstring.src
+msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
+msgid ""
+"%PRODUCTNAME Draw has searched to the end of the document. Do you want to "
+"continue at the beginning?"
+msgstr ""
+"%PRODUCTNAME Draw hat bis zum Ende des Dokuments gesucht. Möchten Sie die "
+"Suche am Anfang fortsetzen?"
+
+#. RAhiP
+#: sdstring.src
+msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
+msgid ""
+"%PRODUCTNAME Draw has searched to the beginning of the document. Do you want"
+" to continue at the end?"
+msgstr ""
+"%PRODUCTNAME Draw hat bis zum Anfang des Dokuments gesucht. Möchten Sie die "
+"Suche am Ende fortsetzen?"
+
+#. sPESr
+#: strings.src
+msgctxt "STR_DRAW_TOOLBOX"
+msgid "Drawings Toolbar"
+msgstr "Symbolleiste Zeichnung"
+
+#. p7KhE
+#: strings.src
+msgctxt "STR_SLIDE_TOOLBOX"
+msgid "Slide Bar"
+msgstr "Symbolleiste Folie"
+
+#. EboBw
+#: strings.src
+msgctxt "STR_OUTLINE_TOOLBOX"
+msgid "Outline Bar"
+msgstr "Symbolleiste Umrandung"
+
+#. Aa5hu
+#: strings.src
+msgctxt "STR_DRAW_OBJ_TOOLBOX"
+msgid "Draw Object Bar"
+msgstr "Symbolleiste Zeichenobjekte"
+
+#. CTG5M
+#: strings.src
+msgctxt "STR_GRAPHIC_OBJ_TOOLBOX"
+msgid "Draw Object Bar/Image"
+msgstr "Symbolleiste Zeichenobjekte/Bild"
+
+#. xcx52
+#: strings.src
+msgctxt "STR_DRAW_OPTIONS_TOOLBOX"
+msgid "Options Bar"
+msgstr "Symbolleiste Optionen"
+
+#. TQqr5
+#: strings.src
+msgctxt "STR_DRAW_COMMONTASK_TOOLBOX"
+msgid "Presentation"
+msgstr "Präsentation"
+
+#. J8gi7
+#: strings.src
+msgctxt "STR_SLIDE_OBJ_TOOLBOX"
+msgid "Slide Object Bar"
+msgstr "Symbolleiste Folienobjekte"
+
+#. SzuYE
+#: strings.src
+msgctxt "STR_GLUEPOINTS_TOOLBOX"
+msgid "Glue Point Object Bar"
+msgstr "Symbolleiste Klebepunktobjekte"
+
+#. NFaVj
+#: strings.src
+msgctxt "STR_DRAW_TEXT_TOOLBOX"
+msgid "Text Object Bar"
+msgstr "Symbolleiste Textobjekte"
+
+#. ij5Ag
+#: strings.src
+msgctxt "STR_NULL"
+msgid "None"
+msgstr "Kein"
+
+#. zEak7
+#: strings.src
+msgctxt "STR_INSERTPAGE"
+msgid "Insert Slide"
+msgstr "Folie einfügen"
+
+#. dHm9F
+#: strings.src
+msgctxt "STR_INSERTLAYER"
+msgid "Insert Layer"
+msgstr "Ebene einfügen"
+
+#. 5GmYw
+#: strings.src
+msgctxt "STR_MODIFYLAYER"
+msgid "Modify Layer"
+msgstr "Ebene ändern"
+
+#. aDABw
+#: strings.src
+msgctxt "STR_UNDO_SLIDE_PARAMS"
+msgid "Slide parameter"
+msgstr "Folien Parameter"
+
+#. 6ZECs
+#: strings.src
+msgctxt "STR_UNDO_CUT"
+msgid "Cut"
+msgstr "Ausschneiden"
+
+#. U2cGh
+#: strings.src
+msgctxt "STR_UNDO_REPLACE"
+msgid "Replace"
+msgstr "Ersetzen"
+
+#. eh6CM
+#: strings.src
+msgctxt "STR_UNDO_DRAGDROP"
+msgid "Drag and Drop"
+msgstr "Ziehen-und-Ablegen"
+
+#. 3FHKw
+#: strings.src
+msgctxt "STR_INSERTGRAPHIC"
+msgid "Insert Image"
+msgstr "Bild einfügen"
+
+#. 47BGD
+#: strings.src
+msgctxt "STR_UNDO_BEZCLOSE"
+msgid "Close Polygon"
+msgstr "Polygon schließen"
+
+#. ARAxt
+#: strings.src
+msgctxt "STR_SLIDE_SORTER_MODE"
+msgid "Slide Sorter"
+msgstr "Foliensortierung"
+
+#. xpwgF
+#: strings.src
+msgctxt "STR_NORMAL_MODE"
+msgid "Normal"
+msgstr "Normal"
+
+#. b6RB4
+#: strings.src
+msgctxt "STR_SLIDE_MASTER_MODE"
+msgid "Slide Master"
+msgstr "Folienmaster"
+
+#. qBuHh
+#: strings.src
+msgctxt "STR_OUTLINE_MODE"
+msgid "Outline"
+msgstr "Gliederung"
+
+#. kYbwc
+#: strings.src
+msgctxt "STR_NOTES_MODE"
+msgid "Notes"
+msgstr "Notizen"
+
+#. msfrP
+#: strings.src
+msgctxt "STR_NOTES_MASTER_MODE"
+msgid "Notes Master"
+msgstr "Notizenmaster"
+
+#. BD6Dv
+#: strings.src
+msgctxt "STR_HANDOUT_MASTER_MODE"
+msgid "Handout"
+msgstr "Handzettel"
+
+#. GtVe6
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_NONE"
+msgid "Blank Slide"
+msgstr "Leere Folie"
+
+#. o4jkH
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_ONLY_TITLE"
+msgid "Title Only"
+msgstr "Nur Titel"
+
+#. yEaXc
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_ONLY_TEXT"
+msgid "Centered Text"
+msgstr "Zentrierter Text"
+
+#. vC7LB
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_TITLE"
+msgid "Title Slide"
+msgstr "Titelfolie"
+
+#. CZCWE
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_CONTENT"
+msgid "Title, Content"
+msgstr "Titel, Inhalt"
+
+#. D2n4r
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_2CONTENT"
+msgid "Title and 2 Content"
+msgstr "Titel und 2 Inhalte"
+
+#. gJvEw
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_CONTENT_2CONTENT"
+msgid "Title, Content and 2 Content"
+msgstr "Titel, Inhalt und 2 Inhalte"
+
+#. BygEm
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_2CONTENT_CONTENT"
+msgid "Title, 2 Content and Content"
+msgstr "Titel, 2 Inhalte und Inhalt"
+
+#. e3iAd
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_2CONTENT_OVER_CONTENT"
+msgid "Title, 2 Content over Content"
+msgstr "Titel, 2 Inhalte über Inhalt"
+
+#. D9Ra9
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_CONTENT_OVER_CONTENT"
+msgid "Title, Content over Content"
+msgstr "Titel, Inhalt über Inhalt"
+
+#. jnnLj
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_4CONTENT"
+msgid "Title, 4 Content"
+msgstr "Titel, 4 Inhalte"
+
+#. Bhnxh
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_6CONTENT"
+msgid "Title, 6 Content"
+msgstr "Titel, 6 Inhalte"
+
+#. G9mLN
+#: strings.src
+msgctxt "STR_AL_TITLE_VERT_OUTLINE"
+msgid "Title, Vertical Text"
+msgstr "Titel, vertikaler Text"
+
+#. GsGaq
+#: strings.src
+msgctxt "STR_AL_TITLE_VERT_OUTLINE_CLIPART"
+msgid "Title, Vertical Text, Clipart"
+msgstr "Titel, vertikaler Text, Clipart"
+
+#. QvDtk
+#: strings.src
+msgctxt "STR_AL_VERT_TITLE_TEXT_CHART"
+msgid "Vertical Title, Text, Chart"
+msgstr "Vertikaler Titel, Text, Diagramm"
+
+#. bEiKk
+#: strings.src
+msgctxt "STR_AL_VERT_TITLE_VERT_OUTLINE"
+msgid "Vertical Title, Vertical Text"
+msgstr "Vertikaler Titel, vertikaler Text"
+
+#. CAeFA
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_HANDOUT1"
+msgid "One Slide"
+msgstr "Eine Folie"
+
+#. kGsfV
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_HANDOUT2"
+msgid "Two Slides"
+msgstr "Zwei Folien"
+
+#. P3K6D
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_HANDOUT3"
+msgid "Three Slides"
+msgstr "Drei Folien"
+
+#. eMsDY
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_HANDOUT4"
+msgid "Four Slides"
+msgstr "Vier Folien"
+
+#. 69B5i
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_HANDOUT6"
+msgid "Six Slides"
+msgstr "Sechs Folien"
+
+#. FeJFF
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_HANDOUT9"
+msgid "Nine Slides"
+msgstr "Neun Folien"
+
+#. zUxcK
+#: strings.src
+msgctxt "STR_DISPLAYMODE_EDITMODES"
+msgid "Edit Modes"
+msgstr "Bearbeitungsmodi"
+
+#. owAG2
+#: strings.src
+msgctxt "STR_DISPLAYMODE_MASTERMODES"
+msgid "Master Modes"
+msgstr "Mastermodi"
+
+#. khJZE
+#: strings.src
+msgctxt "STR_AUTOLAYOUT_NOTES"
+msgid "Notes"
+msgstr "Notizen"
+
+#. 4sRi2
+#: strings.src
+msgctxt "STR_TRANSFORM"
+msgid "Transform"
+msgstr "Transformieren"
+
+#. 3rF5y
+#: strings.src
+msgctxt "STR_LINEEND"
+msgid "Line Ends"
+msgstr "Linienende"
+
+#. dJQdj
+#: strings.src
+msgctxt "STR_DESC_LINEEND"
+msgid "Please enter a name for the new arrowhead:"
+msgstr "Geben Sie hier bitte den Namen für die neue Linienspitze ein:"
+
+#. 7y2Si
+#: strings.src
+msgctxt "STR_WARN_NAME_DUPLICATE"
+msgid ""
+"The name chosen already exists. \n"
+"Please enter another name."
+msgstr ""
+"Der von Ihnen eingegebene Name ist schon vorhanden. \n"
+"Geben Sie bitte einen anderen Namen ein."
+
+#. arAaK
+#: strings.src
+msgctxt "STR_UNDO_ANIMATION"
+msgid "Animation parameters"
+msgstr "Animationsparameter"
+
+#. i3rkJ
+#: strings.src
+msgctxt "STR_EXPORT_HTML_NAME"
+msgid "Web Page"
+msgstr "Webseite"
+
+#. DCRRn
+#: strings.src
+msgctxt "STR_UNDO_COPYOBJECTS"
+msgid "Duplicate"
+msgstr "Vervielfältigen"
+
+#. NaQdx
+#: strings.src
+msgctxt "STR_TITLE_NAMEGROUP"
+msgid "Name Object"
+msgstr "Objekt benennen"
+
+#. hBgQg
+#: strings.src
+msgctxt "STR_DESC_NAMEGROUP"
+msgid "Name"
+msgstr "Name"
+
+#. YSZad
+#: strings.src
+msgctxt "STR_WARN_PAGE_EXISTS"
+msgid ""
+"The slide name already exists or is invalid. Please enter another name."
+msgstr ""
+"Der Folienname ist schon vorhanden oder ungültig. Geben Sie bitte einen "
+"anderen Namen ein."
+
+#. ryfEt
+#: strings.src
+msgctxt "STR_SNAPDLG_SETLINE"
+msgid "Edit Snap Line"
+msgstr "Fanglinie bearbeiten"
+
+#. 3c3Hh
+#: strings.src
+msgctxt "STR_SNAPDLG_SETPOINT"
+msgid "Edit Snap Point"
+msgstr "Fangpunkt bearbeiten"
+
+#. FWWHm
+#: strings.src
+msgctxt "STR_POPUP_EDIT_SNAPLINE"
+msgid "Edit Snap Line..."
+msgstr "Fanglinie bearbeiten..."
+
+#. njFAd
+#: strings.src
+msgctxt "STR_POPUP_EDIT_SNAPPOINT"
+msgid "Edit Snap Point..."
+msgstr "Fangpunkt bearbeiten..."
+
+#. UwBFu
+#: strings.src
+msgctxt "STR_POPUP_DELETE_SNAPLINE"
+msgid "Delete Snap Line"
+msgstr "Fanglinie löschen"
+
+#. BBU6u
+#: strings.src
+msgctxt "STR_POPUP_DELETE_SNAPPOINT"
+msgid "Delete Snap Point"
+msgstr "Fangpunkt löschen"
+
+#. BmRfY
+#: strings.src
+msgctxt "STR_IMPRESS"
+msgid "StarImpress 4.0"
+msgstr "StarImpress 4.0"
+
+#. aAbqr
+#: strings.src
+msgctxt "STR_LAYER"
+msgid "Layer"
+msgstr "Ebene"
+
+#. Lwrnm
+#: strings.src
+msgctxt "STR_UNDO_DELETEPAGES"
+msgid "Delete slides"
+msgstr "Folien löschen"
+
+#. EQUBZ
+#: strings.src
+msgctxt "STR_UNDO_INSERTPAGES"
+msgid "Insert slides"
+msgstr "Folien einfügen"
+
+#. McvuV
+#: strings.src
+msgctxt "STR_ASK_DELETE_LAYER"
+msgid ""
+"Are you sure you want to delete the level \"$\"?\n"
+"Note: All objects on this level will be deleted!"
+msgstr ""
+"Möchten Sie die Ebene \"$\" wirklich löschen?\n"
+"Hinweis: alle Objekte auf dieser Ebene werden ebenfalls gelöscht!"
+
+#. EcYBg
+#: strings.src
+msgctxt "STR_ASK_DELETE_ALL_PICTURES"
+msgid "Do you really want to delete all images?"
+msgstr "Sollen wirklich alle Bilder gelöscht werden?"
+
+#. 43diA
+#: strings.src
+msgctxt "STR_UNDO_CHANGE_TITLE_AND_LAYOUT"
+msgid "Modify title and outline"
+msgstr "Titel und Gliederung ändern"
+
+#. 6zCeF
+#: strings.src
+msgctxt "STR_WAV_FILE"
+msgid "Audio"
+msgstr "Audio"
+
+#. EtkBb
+#: strings.src
+msgctxt "STR_MIDI_FILE"
+msgid "MIDI"
+msgstr "MIDI"
+
+#. ZKZvo
+#: strings.src
+msgctxt "STR_AU_FILE"
+msgid "Sun/NeXT Audio"
+msgstr "Sun/NeXT Audio"
+
+#. BySwC
+#: strings.src
+msgctxt "STR_VOC_FILE"
+msgid "Creative Labs Audio"
+msgstr "Creative Labs Audio"
+
+#. CVtFB
+#: strings.src
+msgctxt "STR_AIFF_FILE"
+msgid "Apple/SGI Audio"
+msgstr "Apple/SGI Audio"
+
+#. qBF5W
+#: strings.src
+msgctxt "STR_SVX_FILE"
+msgid "Amiga SVX Audio"
+msgstr "Amiga SVX Audio"
+
+#. x7GnC
+#: strings.src
+msgctxt "STR_SD_PAGE"
+msgid "Slide"
+msgstr "Folie"
+
+#. Myh6k
+#: strings.src
+msgctxt "STR_SD_PAGE_COUNT"
+msgid "Slide %1 of %2"
+msgstr "Folie %1 von %2"
+
+#. NakLD
+#: strings.src
+msgctxt "STR_SD_PAGE_COUNT_CUSTOM"
+msgid "Slide %1 of %2 (%3)"
+msgstr "Folie %1 von %2 (%3)"
+
+#. F8m2G
+#: strings.src
+msgctxt "STR_ALL_FILES"
+msgid "All files"
+msgstr "Alle Dateien"
+
+#. jgmq4
+#: strings.src
+msgctxt "STR_UNDO_INSERT_TEXTFRAME"
+msgid "Insert text frame"
+msgstr "Textrahmen einfügen"
+
+#. KW7A3
+#: strings.src
+msgctxt "STR_ACTION_NOTPOSSIBLE"
+msgid ""
+"This function cannot be run \n"
+"with the selected objects."
+msgstr ""
+"Die Funktion kann mit den ausgewählten \n"
+"Objekten nicht ausgeführt werden."
+
+#. Sfjvn
+#: strings.src
+msgctxt "STR_DLG_INSERT_PAGES_FROM_FILE"
+msgid "Insert File"
+msgstr "Datei einfügen"
+
+#. TKeex
+#: strings.src
+msgctxt "STR_READ_DATA_ERROR"
+msgid "The file could not be loaded!"
+msgstr "Die Datei konnte nicht geladen werden!"
+
+#. 8CYyq
+#: strings.src
+msgctxt "STR_SCALE_OBJECTS"
+msgid ""
+"The page size of the target document is different than the source document.\n"
+"\n"
+"Do you want to scale the copied objects to fit the new page size?"
+msgstr ""
+"Die Seitengröße des Zieldokuments unterscheidet sich vom Quelldokument.\n"
+"\n"
+"Möchten Sie die kopierten Objekte skalieren, damit sie in die neue Seitengröße passen?"
+
+#. NzFb7
+#: strings.src
+msgctxt "STR_CREATE_PAGES"
+msgid "Create Slides"
+msgstr "Folien erstellen"
+
+#. ckve2
+#: strings.src
+msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
+msgid "Modify page format"
+msgstr "Seitenformat ändern"
+
+#. FDTtA
+#: strings.src
+msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
+msgid "Modify page margins"
+msgstr "Seitenränder ändern"
+
+#. H6ceS
+#: strings.src
+msgctxt "STR_EDIT_OBJ"
+msgid "~Edit"
+msgstr "~Bearbeiten"
+
+#. 3ikze
+#: strings.src
+msgctxt "STR_DELETE_PAGES"
+msgid "Delete Slides"
+msgstr "Folien löschen"
+
+#. xbTgp
+#: strings.src
+msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
+msgid "The document format could not be set on the specified printer."
+msgstr "Das Dokumentformat konnte am Drucker nicht eingestellt werden."
+
+#. s6Pco
+#: strings.src
+msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
+msgid "Image file cannot be opened"
+msgstr "Bilddatei kann nicht geöffnet werden"
+
+#. PKXVG
+#: strings.src
+msgctxt "STR_IMPORT_GRFILTER_IOERROR"
+msgid "Image file cannot be read"
+msgstr "Bilddatei kann nicht gelesen werden"
+
+#. Wnx5i
+#: strings.src
+msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
+msgid "Unknown image format"
+msgstr "Unbekanntes Bildformat"
+
+#. GH2S7
+#: strings.src
+msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
+msgid "This image file version is not supported"
+msgstr "Die Version der Bilddatei wird nicht unterstützt"
+
+#. uqpAS
+#: strings.src
+msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
+msgid "Image filter not found"
+msgstr "Bildfilter nicht gefunden"
+
+#. qdeHG
+#: strings.src
+msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
+msgid "Not enough memory to import image"
+msgstr "Nicht genügend Arbeitsspeicher zum Importieren des Bildes"
+
+#. BdsAg
+#: strings.src
+msgctxt "STR_OBJECTS"
+msgid "Objects"
+msgstr "Objekte"
+
+#. SDm68
+#: strings.src
+msgctxt "STR_END_SPELLING"
+msgid "Spellcheck of entire document has been completed."
+msgstr "Die Rechtschreibprüfung für dieses Dokument ist abgeschlossen."
+
+#. gefTJ
+#: strings.src
+msgctxt "STR_END_SPELLING_OBJ"
+msgid "The spellcheck for the selected objects has been completed."
+msgstr ""
+"Die Rechtschreibprüfung für die ausgewählten Objekte ist abgeschlossen."
+
+#. aeQeS
+#: strings.src
+msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
+msgid "Convert selected object to curve?"
+msgstr "Soll das ausgewählte Objekt in eine Kurve umgewandelt werden?"
+
+#. wLsLp
+#: strings.src
+msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
+msgid "Modify presentation object '$'"
+msgstr "Präsentationsobjekt '$' ändern"
+
+#. s8VC9
+#: strings.src
+msgctxt "STR_UNDO_MODIFY_PAGE"
+msgid "Slide layout"
+msgstr "Folienlayout"
+
+#. BFzyf
+#: strings.src
+msgctxt "STR_UNDO_INSERT_FILE"
+msgid "Insert file"
+msgstr "Datei einfügen"
+
+#. WGRwQ
+#: strings.src
+msgctxt "STR_UNDO_INSERT_SPECCHAR"
+msgid "Insert special character"
+msgstr "Sonderzeichen einfügen"
+
+#. NFpGf
+#: strings.src
+msgctxt "STR_UNDO_SET_PRESLAYOUT"
+msgid "Apply presentation layout"
+msgstr "Präsentationslayout zuweisen"
+
+#. ZMS5R
+#: strings.src
+msgctxt "STR_PLAY"
+msgid "~Play"
+msgstr "Ab~spielen"
+
+#. mZfMV
+#: strings.src
+msgctxt "STR_STOP"
+msgid "Sto~p"
+msgstr "A~nhalten"
+
+#. XFDFX
+#: strings.src
+msgctxt "STR_UNDO_ORIGINALSIZE"
+msgid "Original Size"
+msgstr "Originalgröße"
+
+#. nwDUz
+#: strings.src
+msgctxt "STR_WARN_SCALE_FAIL"
+msgid ""
+"The specified scale is invalid.\n"
+"Do you want to enter a new one?"
+msgstr ""
+"Der eingegebene Maßstab ist ungültig.\n"
+"Möchten Sie einen neuen eingeben?"
+
+#. aZBvQ
+#: strings.src
+msgctxt "STR_CLICK_ACTION_NONE"
+msgid "No action"
+msgstr "Keine Aktion"
+
+#. Cd6E6
+#: strings.src
+msgctxt "STR_CLICK_ACTION_PREVPAGE"
+msgid "Go to previous slide"
+msgstr "Sprung zur vorhergehenden Folie"
+
+#. MafdG
+#: strings.src
+msgctxt "STR_CLICK_ACTION_NEXTPAGE"
+msgid "Go to next slide"
+msgstr "Sprung zur nächsten Folie"
+
+#. s5NSC
+#: strings.src
+msgctxt "STR_CLICK_ACTION_FIRSTPAGE"
+msgid "Go to first slide"
+msgstr "Sprung zur ersten Folie"
+
+#. 6orJ5
+#: strings.src
+msgctxt "STR_CLICK_ACTION_LASTPAGE"
+msgid "Go to last slide"
+msgstr "Sprung zur letzten Folie"
+
+#. ddBWz
+#: strings.src
+msgctxt "STR_CLICK_ACTION_BOOKMARK"
+msgid "Go to page or object"
+msgstr "Sprung zu Folie oder Objekt"
+
+#. TMn3K
+#: strings.src
+msgctxt "STR_CLICK_ACTION_DOCUMENT"
+msgid "Go to document"
+msgstr "Sprung zu Dokument"
+
+#. 3h9F4
+#: strings.src
+msgctxt "STR_CLICK_ACTION_SOUND"
+msgid "Play audio"
+msgstr "Audio abspielen"
+
+#. FtLYt
+#: strings.src
+msgctxt "STR_CLICK_ACTION_VERB"
+msgid "Start object action"
+msgstr "Objektaktion ausführen"
+
+#. aND4z
+#: strings.src
+msgctxt "STR_CLICK_ACTION_PROGRAM"
+msgid "Run program"
+msgstr "Programm ausführen"
+
+#. CZRYF
+#: strings.src
+msgctxt "STR_CLICK_ACTION_MACRO"
+msgid "Run macro"
+msgstr "Makro ausführen"
+
+#. HqCxG
+#: strings.src
+msgctxt "STR_CLICK_ACTION_STOPPRESENTATION"
+msgid "Exit presentation"
+msgstr "Präsentation beenden"
+
+#. DoKpk
+#: strings.src
+msgctxt "STR_EFFECTDLG_JUMP"
+msgid "Target"
+msgstr "Sprungziel"
+
+#. TCCEB
+#: strings.src
+msgctxt "STR_EFFECTDLG_ACTION"
+msgid "Act~ion"
+msgstr "Akt~ion"
+
+#. KJhf2
+#: strings.src
+msgctxt "STR_EFFECTDLG_SOUND"
+msgid "Audio"
+msgstr "Audio"
+
+#. QPjoC
+#: strings.src
+msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
+msgid "Slide / Object"
+msgstr "Folie / Objekt"
+
+#. DqwAr
+#: strings.src
+msgctxt "STR_EFFECTDLG_DOCUMENT"
+msgid "Document"
+msgstr "Dokument"
+
+#. V3zWJ
+#: strings.src
+msgctxt "STR_EFFECTDLG_PROGRAM"
+msgid "Program"
+msgstr "Programm"
+
+#. EdABV
+#: strings.src
+msgctxt "STR_EFFECTDLG_MACRO"
+msgid "Macro"
+msgstr "Makro"
+
+#. DhF9g
+#: strings.src
+msgctxt "STR_INSERT_TEXT"
+msgid "Insert Text"
+msgstr "Text einfügen"
+
+#. CwkNR
+#: strings.src
+msgctxt "STR_SLIDE_SINGULAR"
+msgid " Slide"
+msgstr " Folie"
+
+#. qyV5c
+#: strings.src
+msgctxt "STR_SLIDE_PLURAL"
+msgid " Slides"
+msgstr " Folien"
+
+#. jqb8e
+#: strings.src
+msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
+msgid "Load Slide Design"
+msgstr "Folienvorlage laden"
+
+#. A6KgG
+#: strings.src
+msgctxt "STR_DRAGTYPE_URL"
+msgid "Insert as Hyperlink"
+msgstr "Als Hyperlink einfügen"
+
+#. VB7Zq
+#: strings.src
+msgctxt "STR_DRAGTYPE_EMBEDDED"
+msgid "Insert as Copy"
+msgstr "Als Kopie einfügen"
+
+#. aAqZD
+#: strings.src
+msgctxt "STR_DRAGTYPE_LINK"
+msgid "Insert as Link"
+msgstr "Als Verknüpfung einfügen"
+
+#. HxEp8
+#: strings.src
+msgctxt "STR_GLUE_ESCDIR_SMART"
+msgid "Smart"
+msgstr "Smart"
+
+#. XUxUz
+#: strings.src
+msgctxt "STR_GLUE_ESCDIR_LEFT"
+msgid "Left"
+msgstr "Links"
+
+#. cmeRq
+#: strings.src
+msgctxt "STR_GLUE_ESCDIR_RIGHT"
+msgid "Right"
+msgstr "Rechts"
+
+#. LRG3Z
+#: strings.src
+msgctxt "STR_GLUE_ESCDIR_TOP"
+msgid "Top"
+msgstr "Oben"
+
+#. VP34S
+#: strings.src
+msgctxt "STR_GLUE_ESCDIR_BOTTOM"
+msgid "Bottom"
+msgstr "Unten"
+
+#. bVVKo
+#: strings.src
+msgctxt "STR_GLUE_ESCDIR_LO"
+msgid "Top Left?"
+msgstr "Links oben?"
+
+#. vc2Yo
+#: strings.src
+msgctxt "STR_GLUE_ESCDIR_LU"
+msgid "Bottom Left?"
+msgstr "Links unten?"
+
+#. MMimZ
+#: strings.src
+msgctxt "STR_GLUE_ESCDIR_RO"
+msgid "Top Right?"
+msgstr "Rechts oben?"
+
+#. FvbbG
+#: strings.src
+msgctxt "STR_GLUE_ESCDIR_RU"
+msgid "Bottom Right?"
+msgstr "Rechts unten?"
+
+#. G6VnG
+#: strings.src
+msgctxt "STR_GLUE_ESCDIR_HORZ"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#. dREDm
+#: strings.src
+msgctxt "STR_GLUE_ESCDIR_VERT"
+msgid "Vertical"
+msgstr "Vertikal"
+
+#. pM95w
+#: strings.src
+msgctxt "STR_GLUE_ESCDIR_ALL"
+msgid "All?"
+msgstr "Alle?"
+
+#. iFawt
+#: strings.src
+msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
+msgid "This action can't be run in the live mode."
+msgstr "Diese Aktion kann nicht im Livemodus ausgeführt werden."
+
+#. oLTpq
+#: strings.src
+msgctxt "STR_PUBLISH_BACK"
+msgid "Back"
+msgstr "Zurück"
+
+#. tDRYt
+#: strings.src
+msgctxt "STR_PUBLISH_NEXT"
+msgid "Continue"
+msgstr "Weiter"
+
+#. zh6Ad
+#: strings.src
+msgctxt "STR_PUBLISH_OUTLINE"
+msgid "Overview"
+msgstr "Übersicht"
+
+#. B6jDL
+#: strings.src
+msgctxt "STR_EYEDROPPER"
+msgid "Color Replacer"
+msgstr "Pipette"
+
+#. 9SRMu
+#: strings.src
+msgctxt "STR_UNDO_MORPHING"
+msgid "Cross-fading"
+msgstr "Überblenden"
+
+#. beapn
+#: strings.src
+msgctxt "STR_UNDO_COLORRESOLUTION"
+msgid "Color resolution"
+msgstr "Farbauflösung"
+
+#. PaTdN
+#: strings.src
+msgctxt "STR_UNDO_EXPAND_PAGE"
+msgid "Expand Slide"
+msgstr "Folie erweitern"
+
+#. kmkAp
+#: strings.src
+msgctxt "STR_UNDO_SUMMARY_PAGE"
+msgid "Table of Contents Slide"
+msgstr "Inhaltsverzeichnis-Folie"
+
+#. m5tvp
+#: strings.src
+msgctxt "STR_TWAIN_NO_SOURCE_UNX"
+msgid "No SANE source is available at the moment."
+msgstr "Zur Zeit ist leider keine SANE-Quelle verfügbar."
+
+#. EW8j8
+#: strings.src
+msgctxt "STR_TWAIN_NO_SOURCE"
+msgid "At present, no TWAIN source is available."
+msgstr "Zur Zeit ist leider keine TWAIN-Quelle verfügbar."
+
+#. nsjMC
+#: strings.src
+msgctxt "STR_FIX"
+msgid "Fixed"
+msgstr "Fix"
+
+#. m94yg
+#: strings.src
+msgctxt "STR_VAR"
+msgid "Variable"
+msgstr "Variabel"
+
+#. eDfmL
+#: strings.src
+msgctxt "STR_STANDARD_NORMAL"
+msgid "Standard"
+msgstr "Standard"
+
+#. iPFdc
+#: strings.src
+msgctxt "STR_STANDARD_SMALL"
+msgid "Standard (short)"
+msgstr "Standard (kurz)"
+
+#. f5DSg
+#: strings.src
+msgctxt "STR_STANDARD_BIG"
+msgid "Standard (long)"
+msgstr "Standard (lang)"
+
+#. 8d95x
+#: strings.src
+msgctxt "STR_FILEFORMAT_NAME_EXT"
+msgid "File name"
+msgstr "Dateiname"
+
+#. uguk9
+#: strings.src
+msgctxt "STR_FILEFORMAT_FULLPATH"
+msgid "Path/File name"
+msgstr "Pfad/Dateiname"
+
+#. cZzcW
+#: strings.src
+msgctxt "STR_FILEFORMAT_PATH"
+msgid "Path"
+msgstr "Pfad"
+
+#. spGHx
+#: strings.src
+msgctxt "STR_FILEFORMAT_NAME"
+msgid "File name without extension"
+msgstr "Dateiname ohne Erweiterung"
+
+#. M4uEt
+#: strings.src
+msgctxt "STR_NEW_CUSTOMSHOW"
+msgid "New Custom Slide Show"
+msgstr "Neue individuelle Bildschirmpräsentation"
+
+#. FDwKp
+#: strings.src
+msgctxt "STR_COPY_CUSTOMSHOW"
+msgid "Copy "
+msgstr "Kopie "
+
+#. YFFzz
+#: strings.src
+msgctxt "STR_IMPRESS_DOCUMENT"
+msgid "Presentation"
+msgstr "Präsentation"
+
+#. w2viE
+#: strings.src
+msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
+msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
+msgstr "%PRODUCTNAME %PRODUCTVERSION Präsentation"
+
+#. zjo84
+#: strings.src
+msgctxt "STR_GRAPHIC_DOCUMENT"
+msgid "Drawing"
+msgstr "Zeichnung"
+
+#. Erp4a
+#: strings.src
+msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60"
+msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
+msgstr "%PRODUCTNAME %PRODUCTVERSION Zeichnung"
+
+#. 9G2Ea
+#: strings.src
+msgctxt "STR_BREAK_METAFILE"
+msgid "Ungroup Metafile(s)..."
+msgstr "MetaFile(s) aufbrechen..."
+
+#. hACxz
+#: strings.src
+msgctxt "STR_BREAK_FAIL"
+msgid "It was not possible to ungroup all drawing objects."
+msgstr "Es konnten nicht alle Zeichnungsobjekte aufgebrochen werden."
+
+#. GhvSg
+#: strings.src
+msgctxt "STR_PUBDLG_SAMENAME"
+msgid ""
+"A design already exists with this name.\n"
+"Do you want to replace it?"
+msgstr ""
+"Es existiert bereits ein Design mit diesem Namen.\n"
+"Soll es überschrieben werden?"
+
+#. bnA2v
+#: strings.src
+msgctxt "STR_HTMLATTR_TEXT"
+msgid "Text"
+msgstr "Text"
+
+#. AyWNY
+#: strings.src
+msgctxt "STR_HTMLATTR_LINK"
+msgid "Hyperlink"
+msgstr "Hyperlink"
+
+#. GAFdD
+#: strings.src
+msgctxt "STR_HTMLATTR_VLINK"
+msgid "Visited link"
+msgstr "Besuchte Verknüpfung"
+
+#. TceZ2
+#: strings.src
+msgctxt "STR_HTMLATTR_ALINK"
+msgid "Active link"
+msgstr "Aktive Verknüpfung"
+
+#. XULM8
+#: strings.src
+msgctxt "STR_HTMLEXP_NOTES"
+msgid "Notes"
+msgstr "Notizen"
+
+#. XFffn
+#: strings.src
+msgctxt "STR_HTMLEXP_CONTENTS"
+msgid "Table of contents"
+msgstr "Inhaltsverzeichnis"
+
+#. TBLHL
+#: strings.src
+msgctxt "STR_HTMLEXP_CLICKSTART"
+msgid "Click here to start"
+msgstr "Zum Starten hier klicken"
+
+#. BVDhX
+#: strings.src
+msgctxt "STR_HTMLEXP_AUTHOR"
+msgid "Author"
+msgstr "Autor"
+
+#. bFCzy
+#: strings.src
+msgctxt "STR_HTMLEXP_EMAIL"
+msgid "E-mail"
+msgstr "E-Mail"
+
+#. pArSC
+#: strings.src
+msgctxt "STR_HTMLEXP_HOMEPAGE"
+msgid "Homepage"
+msgstr "Homepage"
+
+#. ohEA7
+#: strings.src
+msgctxt "STR_HTMLEXP_INFO"
+msgid "Further information"
+msgstr "Weitere Informationen"
+
+#. AeG6C
+#: strings.src
+msgctxt "STR_HTMLEXP_DOWNLOAD"
+msgid "Download presentation"
+msgstr "Präsentationsquelle herunterladen"
+
+#. 22D9n
+#: strings.src
+msgctxt "STR_HTMLEXP_NOFRAMES"
+msgid "Unfortunately your browser does not support floating frames."
+msgstr "Ihr Browser unterstützt leider keine schwebenden Rahmen."
+
+#. x7CBF
+#: strings.src
+msgctxt "STR_HTMLEXP_FIRSTPAGE"
+msgid "First page"
+msgstr "Erste Seite"
+
+#. 8tJHf
+#: strings.src
+msgctxt "STR_HTMLEXP_LASTPAGE"
+msgid "Last page"
+msgstr "Letzte Seite"
+
+#. czpEK
+#: strings.src
+msgctxt "STR_HTMLEXP_SETTEXT"
+msgid "Text"
+msgstr "Text"
+
+#. ULfrK
+#: strings.src
+msgctxt "STR_HTMLEXP_SETGRAPHIC"
+msgid "Image"
+msgstr "Bild"
+
+#. KC9RC
+#: strings.src
+msgctxt "STR_HTMLEXP_OUTLINE"
+msgid "With contents"
+msgstr "Mit Inhalt"
+
+#. 6bNhQ
+#: strings.src
+msgctxt "STR_HTMLEXP_NOOUTLINE"
+msgid "Without contents"
+msgstr "Ohne Inhalt"
+
+#. cWcCG
+#: strings.src
+msgctxt "STR_WEBVIEW_SAVE"
+msgid "To given page"
+msgstr "Zur angegebenen Seite"
+
+#. xG6qd
+#: strings.src
+msgctxt "STR_UNDO_VECTORIZE"
+msgid "Convert bitmap to polygon"
+msgstr "Bitmap in Polygon umwandeln"
+
+#. ENANv
+#: strings.src
+msgctxt "STR_PRES_SOFTEND"
+msgid "Click to exit presentation..."
+msgstr "Bitte klicken Sie, um die Präsentation zu beenden..."
+
+#. EzUVJ
+#: strings.src
+msgctxt "STR_PRES_PAUSE"
+msgid "Pause..."
+msgstr "Pause..."
+
+#. ATzDT
+#: strings.src
+msgctxt "STR_DRAW_GRAF_TOOLBOX"
+msgid "Image Object Bar"
+msgstr "Symbolleiste Bildobjekt"
+
+#. wXCu2
+#: strings.src
+msgctxt "STR_UNDO_APPLY_3D_FAVOURITE"
+msgid "Apply 3D favorite"
+msgstr "3D Favorit zuweisen"
+
+#. bACAt
+#: strings.src
+msgctxt "STR_UNDO_GRAFFILTER"
+msgid "Image filter"
+msgstr "Bildfilter"
+
+#. AGE8e
+#: strings.src
+msgctxt "STR_WARNING_NOSOUNDFILE"
+msgid ""
+"The file %\n"
+"is not a valid audio file !"
+msgstr ""
+"Die Datei %\n"
+"ist keine gültige Audiodatei!"
+
+#. SRWpo
+#: strings.src
+msgctxt "STR_UNDO_CONVERT_TO_METAFILE"
+msgid "Convert to metafile"
+msgstr "Konvertieren zu MetaFile"
+
+#. BqqGF
+#: strings.src
+msgctxt "STR_UNDO_CONVERT_TO_BITMAP"
+msgid "Convert to bitmap"
+msgstr "Konvertieren zu Bitmap"
+
+#. Fs7id
+#: strings.src
+msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE"
+msgid "Cannot create the file $(URL1)."
+msgstr "Die Datei $(URL1) konnte nicht erzeugt werden."
+
+#. ZF3X5
+#: strings.src
+msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE"
+msgid "Could not open the file $(URL1)."
+msgstr "Die Datei $(URL1) konnte nicht geöffnet werden."
+
+#. rEAXk
+#: strings.src
+msgctxt "STR_HTMLEXP_ERROR_COPY_FILE"
+msgid "The file $(URL1) could not be copied to $(URL2)"
+msgstr "Die Datei $(URL1) konnte nicht nach $(URL2) kopiert werden"
+
+#. EjZhv
+#: strings.src
+msgctxt "STR_PAGE_BACKGROUND_TITLE"
+msgid "Page Settings"
+msgstr "Seiteneinstellungen"
+
+#. xqXh3
+#: strings.src
+msgctxt "STR_PAGE_BACKGROUND_TXT"
+msgid "Background settings for all pages?"
+msgstr "Hintergrundeinstellungen für alle Seiten?"
+
+#. KVfUE
+#: strings.src
+msgctxt "STR_STATUSBAR_MASTERPAGE"
+msgid "Slide Master name. Right-click for list and double-click for dialog."
+msgstr ""
+"Name des Folienmasters. Rechtsklick zeigt die Liste und Doppelklick den "
+"Dialog."
+
+#. HcDvJ
+#: strings.src
+msgctxt "STR_TITLE_RENAMESLIDE"
+msgid "Rename Slide"
+msgstr "Folie umbenennen"
+
+#. FUm5F
+#: strings.src
+msgctxt "STR_DESC_RENAMESLIDE"
+msgid "Name"
+msgstr "Name"
+
+#. rWiXQ
+#: strings.src
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
+msgid "Title Area for AutoLayouts"
+msgstr "Titelbereich für AutoLayouts"
+
+#. i4T9w
+#: strings.src
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE"
+msgid "Object Area for AutoLayouts"
+msgstr "Objektbereich für AutoLayouts"
+
+#. vS6wi
+#: strings.src
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_FOOTER"
+msgid "Footer Area"
+msgstr "Fußzeilenbereich"
+
+#. xFBgg
+#: strings.src
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
+msgid "Header Area"
+msgstr "Kopfzeilenbereich"
+
+#. 8JGJD
+#: strings.src
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME"
+msgid "Date Area"
+msgstr "Datumsbereich"
+
+#. oNFN3
+#: strings.src
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE"
+msgid "Slide Number Area"
+msgstr "Foliennummernbereich"
+
+#. GisCz
+#: strings.src
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER"
+msgid "Page Number Area"
+msgstr "Seitennummernbereich"
+
+#. rvtjX
+#: strings.src
+msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
+msgid "<header>"
+msgstr "<Kopfzeile>"
+
+#. RoVvC
+#: strings.src
+msgctxt "STR_FIELD_PLACEHOLDER_FOOTER"
+msgid "<footer>"
+msgstr "<Fußzeile>"
+
+#. RXzA4
+#: strings.src
+msgctxt "STR_FIELD_PLACEHOLDER_DATETIME"
+msgid "<date/time>"
+msgstr "<Datum/Uhrzeit>"
+
+#. TuP6n
+#: strings.src
+msgctxt "STR_FIELD_PLACEHOLDER_NUMBER"
+msgid "<number>"
+msgstr "<Foliennummer>"
+
+#. CCuCb
+#: strings.src
+msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
+msgid "<count>"
+msgstr "<Anzahl>"
+
+#. TDgFU
+#: strings.src
+msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME"
+msgid "<slide-name>"
+msgstr "<Folienname>"
+
+#. j8btB
+#: strings.src
+msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME"
+msgid "<page-name>"
+msgstr "<Seitenname>"
+
+#. ao6iR
+#: strings.src
+msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES"
+msgid "Notes Area"
+msgstr "Bereich für Notizen"
+
+#. EEf4k
+#: strings.src
+msgctxt "STR_UNDO_HANGULHANJACONVERSION"
+msgid "Hangul/Hanja Conversion"
+msgstr "Hangul/Hanja Konvertierung"
+
+#. RDARn
+#: strings.src
+msgctxt "STR_LEFT_PANE_IMPRESS_TITLE"
+msgid "Slides"
+msgstr "Folien"
+
+#. CU9DK
+#: strings.src
+msgctxt "STR_LEFT_PANE_DRAW_TITLE"
+msgid "Pages"
+msgstr "Folien"
+
+#. C7hf2
+#: strings.src
+msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION"
+msgid "Preview not available"
+msgstr "Vorschau nicht verfügbar"
+
+#. bAJoa
+#: strings.src
+msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION"
+msgid "Preparing preview"
+msgstr "Erzeuge Vorschau"
+
+#. nDrpm
+#: strings.src
+msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE"
+msgid "Layouts"
+msgstr "Layouts"
+
+#. peCQY
+#: strings.src
+msgctxt "STR_GRAPHICS_STYLE_FAMILY"
+msgid "Drawing Styles"
+msgstr "Zeichenvorlagen"
+
+#. tR4CL
+#: strings.src
+msgctxt "STR_PRESENTATIONS_STYLE_FAMILY"
+msgid "Presentation Styles"
+msgstr "Präsentationsvorlagen"
+
+#. oyUYa
+#: strings.src
+msgctxt "STR_CELL_STYLE_FAMILY"
+msgid "Cell Styles"
+msgstr "Zellvorlagen"
+
+#. dqvxZ
+#: strings.src
+msgctxt "STR_NAVIGATOR_SHOW_NAMED_SHAPES"
+msgid "Named shapes"
+msgstr "Benannte Formen"
+
+#. GwNKU
+#: strings.src
+msgctxt "STR_NAVIGATOR_SHOW_ALL_SHAPES"
+msgid "All shapes"
+msgstr "Alle Formen"
+
+#. BQmNo
+#: strings.src
+msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME"
+msgid "Shape %1"
+msgstr "Form %1"
+
+#. HNzpc
+#: strings.src
+msgctxt "STR_SET_BACKGROUND_PICTURE"
+msgid "Set Background Image for Slide ..."
+msgstr "Hintergrundbild der Folie festlegen..."
+
+#. ibpDR
+#: strings.src
+msgctxt "RID_ANNOTATIONS_START"
+msgid "Comments"
+msgstr "Kommentare"
+
+#. 76dF3
+#: strings.src
+msgctxt "STR_RESET_LAYOUT"
+msgid "Reset Slide Layout"
+msgstr "Folienlayout zurücksetzen"
+
+#. EB6XY
+#: strings.src
+msgctxt "STR_INSERT_TABLE"
+msgid "Insert Table"
+msgstr "Tabelle einfügen"
+
+#. koDfS
+#: strings.src
+msgctxt "STR_INSERT_CHART"
+msgid "Insert Chart"
+msgstr "Diagramm einfügen"
+
+#. re2hh
+#: strings.src
+msgctxt "STR_INSERT_PICTURE"
+msgid "Insert Image"
+msgstr "Bild einfügen"
+
+#. iBBLh
+#: strings.src
+msgctxt "STR_INSERT_MOVIE"
+msgid "Insert Audio or Video"
+msgstr "Audio oder Video einfügen"
+
+#. m8crC
+#: strings.src
+msgctxt "STRING_DRAG_AND_DROP_PAGES"
+msgid "Drag and Drop Pages"
+msgstr "Seiten Ziehen-und-Ablegen"
+
+#. CAGzA
+#: strings.src
+msgctxt "STRING_DRAG_AND_DROP_SLIDES"
+msgid "Drag and Drop Slides"
+msgstr "Folien Ziehen-und-Ablegen"
+
+#. 2mDn4
+#: strings.src
+msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING"
+msgid "Please add Images to the Album."
+msgstr "Bitte fügen Sie Bilder zu dem Album hinzu."
+
+#. jbPEH
+#: strings.src
+msgctxt "STR_PHOTO_ALBUM_TEXTBOX"
+msgid "Text Slide"
+msgstr "Textfolie"
+
+#. snt4v
+#: strings.src
+msgctxt "STR_INSERT_3D_MODEL_TITLE"
+msgid "Insert 3D Model"
+msgstr "3D-Modell einfügen"
+
+#. UyohF
+#: strings.src
+msgctxt "STR_INSERT_3D_MODEL_ALL_SUPPORTED_FORMATS"
+msgid "All supported formats"
+msgstr "Alle unterstützten Formate"
+
+#. QY89q
+#: strings.src
+msgctxt "STR_OBJECTS_TREE"
+msgid "Page Tree"
+msgstr "Seitenbaum"
+
+#. 5FSEq
+#: strings.src
+msgctxt "STR_OVERWRITE_WARNING"
+msgid ""
+"The local target directory '%FILENAME' is not empty. Some files might be "
+"overwritten. Do you want to continue?"
+msgstr ""
+"Das lokale Verzeichnis '%FILENAME' ist nicht leer. Einige Dateien könnten "
+"überschrieben werden. Möchten Sie fortfahren?"
+
+#. SqorT
+#: toolbox.src
+msgctxt "RID_DRAW_VIEWER_TOOLBOX"
+msgid "Function Bar (viewing mode)"
+msgstr "Symbolleiste Funktionen (Lesemodus)"
+
+#. NMTpu
+#: toolbox.src
+msgctxt "RID_DRAW_MEDIA_TOOLBOX"
+msgid "Media Playback"
+msgstr "Medienwiedergabe"
+
+#. Q76cw
+#: toolbox.src
+msgctxt "RID_DRAW_TABLE_TOOLBOX"
+msgid "Table"
+msgstr "Tabelle"
+
+#. E9zvq
+#: accessibility.src
+msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
+msgid "Drawing View"
+msgstr "Zeichnungsansicht"
+
+#. Fi6GE
+#: accessibility.src
+msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
+msgid "This is where you create and edit drawings."
+msgstr "Hier können Sie Zeichnungen erzeugen und bearbeiten."
+
+#. GfnmX
+#: accessibility.src
+msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
+msgid "Drawing View"
+msgstr "Zeichnungsansicht"
+
+#. SWtFN
+#: accessibility.src
+msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
+msgid "This is where you create and edit slides."
+msgstr "Hier können Sie Folien erzeugen und bearbeiten."
+
+#. YCVqM
+#: accessibility.src
+msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
+msgid "Outline View"
+msgstr "Gliederungsansicht"
+
+#. feLwF
+#: accessibility.src
+msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
+msgid "This is where you enter or edit text in list form."
+msgstr ""
+"Hier können Sie Text in der Gliederungsansicht eingeben und bearbeiten."
+
+#. k2hXi
+#: accessibility.src
+msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
+msgid "Slides View"
+msgstr "Folienansicht"
+
+#. A22hR
+#: accessibility.src
+msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
+msgid "This is where you sort slides."
+msgstr "Hier können Sie Folien sortieren."
+
+#. vyX8L
+#: accessibility.src
+msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
+msgid "Notes View"
+msgstr "Notizansicht"
+
+#. Syiwi
+#: accessibility.src
+msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
+msgid "This is where you enter and view notes."
+msgstr "Hier können Sie Notizen eingeben und bearbeiten."
+
+#. qr5ov
+#: accessibility.src
+msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
+msgid "Handout View"
+msgstr "Handzettelansicht"
+
+#. 9EyMA
+#: accessibility.src
+msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
+msgid "This is where you decide on the layout for handouts."
+msgstr "Hier können Sie das Layout der Handzettel festlegen."
+
+#. Ycpb4
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_TITLE_N"
+msgid "PresentationTitle"
+msgstr "Präsentation Titel"
+
+#. 4WCzf
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_OUTLINER_N"
+msgid "PresentationOutliner"
+msgstr "Präsentation Gliederung"
+
+#. cBoMF
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
+msgid "PresentationSubtitle"
+msgstr "Präsentation Untertitel"
+
+#. 8KV99
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_PAGE_N"
+msgid "PresentationPage"
+msgstr "Präsentation Seite"
+
+#. R6kyg
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_NOTES_N"
+msgid "PresentationNotes"
+msgstr "Präsentation Notizen"
+
+#. X8c9Z
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_HANDOUT_N"
+msgid "Handout"
+msgstr "Handzettel"
+
+#. FeAdu
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
+msgid "UnknownAccessiblePresentationShape"
+msgstr "Unbekannte Zugänglichkeits-Präsentationsform"
+
+#. ogNjh
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_TITLE_D"
+msgid "PresentationTitleShape"
+msgstr "Präsentation Titelform"
+
+#. bFvTq
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_OUTLINER_D"
+msgid "PresentationOutlinerShape"
+msgstr "Präsentation Gliederungsform"
+
+#. wAE9M
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
+msgid "PresentationSubtitleShape"
+msgstr "Präsentation Untertitelform"
+
+#. RYA3y
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_PAGE_D"
+msgid "PresentationPageShape"
+msgstr "Präsentation Seitenform"
+
+#. VVZyE
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_NOTES_D"
+msgid "PresentationNotesShape"
+msgstr "Präsentation Notizenform"
+
+#. Pqhhf
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_HANDOUT_D"
+msgid "PresentationHandoutShape"
+msgstr "Präsentation Handzettelform"
+
+#. KzpQq
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
+msgid "Unknown accessible presentation shape"
+msgstr "Unbekannte Zugänglichkeits-Präsentationsform"
+
+#. sA8of
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_FOOTER_N"
+msgid "PresentationFooter"
+msgstr "Präsentation Fußzeile"
+
+#. 4YzQz
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_FOOTER_D"
+msgid "PresentationFooterShape"
+msgstr "Präsentation Fußzeilenform"
+
+#. KAC6Z
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_HEADER_N"
+msgid "PresentationHeader"
+msgstr "Präsentation Kopfzeile"
+
+#. zpVS7
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_HEADER_D"
+msgid "PresentationHeaderShape"
+msgstr "Präsentation Kopfzeilenform"
+
+#. EfHeH
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_DATE_N"
+msgid "PresentationDateAndTime"
+msgstr "Präsentation Datum und Zeit"
+
+#. 7Dbde
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_DATE_D"
+msgid "PresentationDateAndTimeShape"
+msgstr "Präsentation Datum- und Zeitform"
+
+#. WosPZ
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_NUMBER_N"
+msgid "PresentationPageNumber"
+msgstr "Präsentation Seitennummer"
+
+#. q7Hqe
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_NUMBER_D"
+msgid "PresentationPageNumberShape"
+msgstr "Präsentation Seitennummernform"
+
+#. kCGsH
+#: accessibility.src
+msgctxt "SID_SD_A11Y_D_PRESENTATION"
+msgid "%PRODUCTNAME Presentation"
+msgstr "%PRODUCTNAME Präsentation"
+
+#. ubJop
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
+msgid "Title"
+msgstr "Titel"
+
+#. Va4KF
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
+msgid "Outliner"
+msgstr "Gliederung"
+
+#. 6FKRE
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
+msgid "Subtitle"
+msgstr "Untertitel"
+
+#. eSBEi
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
+msgid "Page"
+msgstr "Seite"
+
+#. WEaeZ
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
+msgid "Notes"
+msgstr "Notizen"
+
+#. buhox
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
+msgid "Handout"
+msgstr "Handzettel"
+
+#. 4xBQg
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
+msgid "Unknown Accessible Presentation Shape"
+msgstr "Unbekannte Zugänglichkeits-Präsentationsform"
+
+#. CGegB
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
+msgid "Footer"
+msgstr "Fußzeile"
+
+#. SrrR4
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
+msgid "Header"
+msgstr "Kopfzeile"
+
+#. CCwKy
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
+msgid "Date"
+msgstr "Datum"
+
+#. EFmn4
+#: accessibility.src
+msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
+msgid "Number"
+msgstr "Anzahl"
+
+#. wFpMQ
+#: accessibility.src
+msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
+msgid "(read-only)"
+msgstr "(schreibgeschützt)"
+
+#. xNozF
+#: breakdialog.ui
+msgctxt "breakdialog|BreakDialog"
+msgid "Break"
+msgstr "Pause"
+
+#. reFAv
+#: breakdialog.ui
+msgctxt "breakdialog|label1"
+msgid "Processing metafile:"
+msgstr "Bearbeitete Metadatei:"
+
+#. 4SJMQ
+#: breakdialog.ui
+msgctxt "breakdialog|label2"
+msgid "Broken down metaobjects:"
+msgstr "Metaobjekte aufgebrochen:"
+
+#. FAC8K
+#: breakdialog.ui
+msgctxt "breakdialog|label3"
+msgid "Inserted drawing objects:"
+msgstr "Zeichnungsobjekte eingefügt:"
+
+#. 7gBGN
+#: bulletsandnumbering.ui
+msgctxt "bulletsandnumbering|BulletsAndNumberingDialog"
+msgid "Bullets and Numbering"
+msgstr "Aufzählungszeichen und Nummerierung"
+
+#. XWsAH
+#: bulletsandnumbering.ui
+msgctxt "bulletsandnumbering|reset"
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#. uGcS7
+#: bulletsandnumbering.ui
+msgctxt "bulletsandnumbering|bullets"
+msgid "Bullets"
+msgstr "Aufzählungszeichen"
+
+#. RvqrE
+#: bulletsandnumbering.ui
+msgctxt "bulletsandnumbering|singlenum"
+msgid "Numbering"
+msgstr "Nummerierung"
+
+#. hW6yn
+#: bulletsandnumbering.ui
+msgctxt "bulletsandnumbering|graphics"
+msgid "Image"
+msgstr "Bild"
+
+#. zVTFe
+#: bulletsandnumbering.ui
+msgctxt "bulletsandnumbering|position"
+msgid "Position"
+msgstr "Position"
+
+#. nFfDs
+#: bulletsandnumbering.ui
+msgctxt "bulletsandnumbering|customize"
+msgid "Customize"
+msgstr "Benutzerdefiniert"
+
+#. ta9cx
+#: copydlg.ui
+msgctxt "copydlg|DuplicateDialog"
+msgid "Duplicate"
+msgstr "Vervielfältigen"
+
+#. FuEEG
+#: copydlg.ui
+msgctxt "copydlg|default"
+msgid "_Default"
+msgstr "Standar_d"
+
+#. HhrrQ
+#: copydlg.ui
+msgctxt "copydlg|label4"
+msgid "Number of _copies:"
+msgstr "Anzahl an _Kopien:"
+
+#. 3fqDJ
+#: copydlg.ui
+msgctxt "copydlg|viewdata|tooltip_text"
+msgid "Values from Selection"
+msgstr "Werte aus Auswahl"
+
+#. UxvBf
+#: copydlg.ui
+msgctxt "copydlg|viewdata-atkobject"
+msgid "Values from Selection"
+msgstr "Werte von Auswahl übernehmen"
+
+#. 27j9Q
+#: copydlg.ui
+msgctxt "copydlg|label5"
+msgid "_X axis:"
+msgstr "_X-Achse:"
+
+#. G5trD
+#: copydlg.ui
+msgctxt "copydlg|label6"
+msgid "_Y axis:"
+msgstr "_Y-Achse:"
+
+#. gHkmD
+#: copydlg.ui
+msgctxt "copydlg|label7"
+msgid "_Angle:"
+msgstr "_Drehwinkel:"
+
+#. Mb9Gs
+#: copydlg.ui
+msgctxt "copydlg|label1"
+msgid "Placement"
+msgstr "Verschiebung"
+
+#. 3Dyw2
+#: copydlg.ui
+msgctxt "copydlg|label8"
+msgid "_Width:"
+msgstr "_Breite:"
+
+#. YuAHc
+#: copydlg.ui
+msgctxt "copydlg|label9"
+msgid "_Height:"
+msgstr "Höh_e:"
+
+#. Jvt8m
+#: copydlg.ui
+msgctxt "copydlg|label2"
+msgid "Enlargement"
+msgstr "Vergrößerung"
+
+#. ENMbc
+#: copydlg.ui
+msgctxt "copydlg|label10"
+msgid "_Start:"
+msgstr "_Beginn:"
+
+#. Z6aqk
+#: copydlg.ui
+msgctxt "copydlg|endlabel"
+msgid "_End:"
+msgstr "E_nde:"
+
+#. F3A93
+#: copydlg.ui
+msgctxt "copydlg|label3"
+msgid "Colors"
+msgstr "Farben"
+
+#. Y4vXd
+#: crossfadedialog.ui
+msgctxt "crossfadedialog|CrossFadeDialog"
+msgid "Cross-fading"
+msgstr "Überblenden"
+
+#. FXGbk
+#: crossfadedialog.ui
+msgctxt "crossfadedialog|orientation"
+msgid "Same orientation"
+msgstr "Gleiche Ausrichtung"
+
+#. SmBMK
+#: crossfadedialog.ui
+msgctxt "crossfadedialog|attributes"
+msgid "Cross-fade attributes"
+msgstr "Attributierung überblenden"
+
+#. CehQE
+#: crossfadedialog.ui
+msgctxt "crossfadedialog|label2"
+msgid "Increments:"
+msgstr "Schritte:"
+
+#. MnqQG
+#: crossfadedialog.ui
+msgctxt "crossfadedialog|label1"
+msgid "Settings"
+msgstr "Einstellungen"
+
+#. 9Ga7E
+#: dlgsnap.ui
+msgctxt "dlgsnap|SnapObjectDialog"
+msgid "New Snap Object"
+msgstr "Neues Fangobjekt"
+
+#. GSJeV
+#: dlgsnap.ui
+msgctxt "dlgsnap|xlabel"
+msgid "_X:"
+msgstr "_X:"
+
+#. AAfto
+#: dlgsnap.ui
+msgctxt "dlgsnap|ylabel"
+msgid "_Y:"
+msgstr "_Y:"
+
+#. pMnkL
+#: dlgsnap.ui
+msgctxt "dlgsnap|label1"
+msgid "Position"
+msgstr "Position"
+
+#. i4QCv
+#: dlgsnap.ui
+msgctxt "dlgsnap|point"
+msgid "_Point"
+msgstr "_Punkt"
+
+#. k2rmV
+#: dlgsnap.ui
+msgctxt "dlgsnap|vert"
+msgid "_Vertical"
+msgstr "_Vertikal"
+
+#. tHFwv
+#: dlgsnap.ui
+msgctxt "dlgsnap|horz"
+msgid "Hori_zontal"
+msgstr "_Horizontal"
+
+#. Dd9fb
+#: dlgsnap.ui
+msgctxt "dlgsnap|label2"
+msgid "Type"
+msgstr "Art"
+
+#. MuBBG
+#: drawchardialog.ui
+msgctxt "drawchardialog|DrawCharDialog"
+msgid "Character"
+msgstr "Zeichen"
+
+#. GsQBk
+#: drawchardialog.ui
+msgctxt "drawchardialog|RID_SVXPAGE_CHAR_NAME"
+msgid "Fonts"
+msgstr "Schriftarten"
+
+#. 7LgAf
+#: drawchardialog.ui
+msgctxt "drawchardialog|RID_SVXPAGE_CHAR_EFFECTS"
+msgid "Font Effects"
+msgstr "Schrifteffekte"
+
+#. uyNUG
+#: drawchardialog.ui
+msgctxt "drawchardialog|RID_SVXPAGE_CHAR_POSITION"
+msgid "Position"
+msgstr "Position"
+
+#. Anre2
+#: drawchardialog.ui
+msgctxt "drawchardialog|RID_SVXPAGE_BACKGROUND"
+msgid "Highlighting"
+msgstr "Hervorhebung"
+
+#. FEPCP
+#: drawpagedialog.ui
+msgctxt "drawpagedialog|DrawPageDialog"
+msgid "Page Setup"
+msgstr "Seite einrichten"
+
+#. Py4db
+#: drawpagedialog.ui
+msgctxt "drawpagedialog|RID_SVXPAGE_PAGE"
+msgid "Page"
+msgstr "Seite"
+
+#. sn2YQ
+#: drawpagedialog.ui
+msgctxt "drawpagedialog|RID_SVXPAGE_AREA"
+msgid "Background"
+msgstr "Hintergrund"
+
+#. hNhCi
+#: drawpagedialog.ui
+msgctxt "drawpagedialog|RID_SVXPAGE_TRANSPARENCE"
+msgid "Transparency"
+msgstr "Transparenz"
+
+#. cKCg3
+#: drawparadialog.ui
+msgctxt "drawparadialog|DrawParagraphPropertiesDialog"
+msgid "Paragraph"
+msgstr "Absatz"
+
+#. EPEQn
+#: drawparadialog.ui
+msgctxt "drawparadialog|labelTP_PARA_STD"
+msgid "Indents & Spacing"
+msgstr "Einzüge & Abstände"
+
+#. xDCfw
+#: drawparadialog.ui
+msgctxt "drawparadialog|labelTP_PARA_ASIAN"
+msgid "Asian Typography"
+msgstr "Asiatische Schreibweise"
+
+#. HwdCp
+#: drawparadialog.ui
+msgctxt "drawparadialog|labelTP_TABULATOR"
+msgid "Tabs"
+msgstr "Tabulatoren"
+
+#. QSCGY
+#: drawparadialog.ui
+msgctxt "drawparadialog|labelTP_PARA_ALIGN"
+msgid "Alignment"
+msgstr "Ausrichtung"
+
+#. 7Ccny
+#: drawparadialog.ui
+msgctxt "drawparadialog|labelNUMBERING"
+msgid "Numbering"
+msgstr "Nummerierung"
+
+#. zqFBj
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|DrawPRTLDialog"
+msgid "Presentation Layout"
+msgstr "Präsentationslayout"
+
+#. qhGQW
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_LINE"
+msgid "Line"
+msgstr "Linie"
+
+#. GLDvd
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_AREA"
+msgid "Area"
+msgstr "Fläche"
+
+#. tFpbE
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_SHADOW"
+msgid "Shadow"
+msgstr "Schatten"
+
+#. RMDPW
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_TRANSPARENCE"
+msgid "Transparency"
+msgstr "Transparenz"
+
+#. iqPq5
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_CHAR_NAME"
+msgid "Font"
+msgstr "Schriftart"
+
+#. NLcur
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_CHAR_EFFECTS"
+msgid "Font Effects"
+msgstr "Schrifteffekte"
+
+#. NmgGX
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_STD_PARAGRAPH"
+msgid "Indents & Spacing"
+msgstr "Einzüge & Abstände"
+
+#. hQgNU
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_TEXTATTR"
+msgid "Text"
+msgstr "Text"
+
+#. Gs6YK
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_PICK_BULLET"
+msgid "Bullets"
+msgstr "Aufzählungszeichen"
+
+#. X7bEg
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_PICK_SINGLE_NUM"
+msgid "Numbering"
+msgstr "Nummerierung"
+
+#. MoKr2
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_PICK_BMP"
+msgid "Image"
+msgstr "Bild"
+
+#. ANGDj
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_NUM_OPTIONS"
+msgid "Customize"
+msgstr "Anpassen"
+
+#. 32Vhx
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_ALIGN_PARAGRAPH"
+msgid "Alignment"
+msgstr "Ausrichtung"
+
+#. 9DBTB
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_PARA_ASIAN"
+msgid "Asian Typography"
+msgstr "Asiatische Schreibweise"
+
+#. bNzxC
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_TABULATOR"
+msgid "Tabs"
+msgstr "Tabulatoren"
+
+#. 8Rrok
+#: drawprtldialog.ui
+msgctxt "drawprtldialog|RID_SVXPAGE_BACKGROUND"
+msgid "Highlighting"
+msgstr "Hervorhebung"
+
+#. w9EdD
+#: insertlayer.ui
+msgctxt "insertlayer|InsertLayerDialog"
+msgid "Insert Layer"
+msgstr "Ebene einfügen"
+
+#. kWarA
+#: insertlayer.ui
+msgctxt "insertlayer|label4"
+msgid "_Name"
+msgstr "_Name"
+
+#. hCTSd
+#: insertlayer.ui
+msgctxt "insertlayer|label5"
+msgid "_Title"
+msgstr "_Titel"
+
+#. g2K4k
+#: insertlayer.ui
+msgctxt "insertlayer|description"
+msgid "_Description"
+msgstr "_Beschreibung"
+
+#. DTUy2
+#: insertlayer.ui
+msgctxt "insertlayer|visible"
+msgid "_Visible"
+msgstr "_Sichtbar"
+
+#. BtGRo
+#: insertlayer.ui
+msgctxt "insertlayer|printable"
+msgid "_Printable"
+msgstr "_Druckbar"
+
+#. E6EKN
+#: insertlayer.ui
+msgctxt "insertlayer|locked"
+msgid "_Locked"
+msgstr "_Gesperrt"
+
+#. dCRtD
+#: insertslidesdialog.ui
+msgctxt "insertslidesdialog|InsertSlidesDialog"
+msgid "Insert Slides/Objects"
+msgstr "Folien/Objekte einfügen"
+
+#. FsBqJ
+#: insertslidesdialog.ui
+msgctxt "insertslidesdialog|backgrounds"
+msgid "Delete unused backg_rounds"
+msgstr "_Nicht verwendete Hintergründe löschen"
+
+#. ixGB4
+#: insertslidesdialog.ui
+msgctxt "insertslidesdialog|links"
+msgid "_Link"
+msgstr "_Verknüpfung"
+
+#. 4X9cK
+#: namedesign.ui
+msgctxt "namedesign|NameDesignDialog"
+msgid "Name HTML Design"
+msgstr "Name für HTML-Design"
+
+#. n8Ekd
+#: paranumberingtab.ui
+msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
+msgid "R_estart at this paragraph"
+msgstr "An d_iesem Absatz neu beginnen"
+
+#. bEHD3
+#: paranumberingtab.ui
+msgctxt "paranumberingtab|checkbuttonCB_NUMBER_NEW_START"
+msgid "S_tart with:"
+msgstr "_Beginnen mit:"
+
+#. ADSMk
+#: paranumberingtab.ui
+msgctxt "paranumberingtab|label1"
+msgid "Paragraph Numbering"
+msgstr "Absatznummerierung"
+
+#. oaAFF
+#: printeroptions.ui
+msgctxt "printeroptions|printname"
+msgid "Page name"
+msgstr "Folienname"
+
+#. d6mPb
+#: printeroptions.ui
+msgctxt "printeroptions|printdatetime"
+msgid "Date and time"
+msgstr "Datum und Uhrzeit"
+
+#. M6JQf
+#: printeroptions.ui
+msgctxt "printeroptions|label4"
+msgid "Contents"
+msgstr "Inhalt"
+
+#. jChew
+#: printeroptions.ui
+msgctxt "printeroptions|originalcolors"
+msgid "Original size"
+msgstr "Originalgröße"
+
+#. U9CjW
+#: printeroptions.ui
+msgctxt "printeroptions|grayscale"
+msgid "Grayscale"
+msgstr "Graustufen"
+
+#. BHn6R
+#: printeroptions.ui
+msgctxt "printeroptions|blackandwhite"
+msgid "Black & white"
+msgstr "Schwarzweiß"
+
+#. uFDfh
+#: printeroptions.ui
+msgctxt "printeroptions|label5"
+msgid "Color"
+msgstr "Farbe"
+
+#. 39bX5
+#: printeroptions.ui
+msgctxt "printeroptions|originalsize"
+msgid "Original size"
+msgstr "Originalgröße"
+
+#. EJatZ
+#: printeroptions.ui
+msgctxt "printeroptions|fittoprintable"
+msgid "Fit to printable page"
+msgstr "In druckbaren Bereich einpassen"
+
+#. H5yQb
+#: printeroptions.ui
+msgctxt "printeroptions|distributeonmultiple"
+msgid "Distribute on multiple sheets of paper"
+msgstr "Auf mehrere Druckseiten verteilen"
+
+#. ovzyE
+#: printeroptions.ui
+msgctxt "printeroptions|tilesheet"
+msgid "Tile sheet of paper with repeated pages"
+msgstr "Druckseite mit wiederholten Seiten füllen"
+
+#. PDCpR
+#: printeroptions.ui
+msgctxt "printeroptions|label6"
+msgid "Size"
+msgstr "Größe"
+
+#. jEQdJ
+#: queryunlinkimagedialog.ui
+msgctxt "queryunlinkimagedialog|QueryUnlinkImageDialog"
+msgid "Release image's link?"
+msgstr "Bildverknüpfungen lösen?"
+
+#. AwuFo
+#: queryunlinkimagedialog.ui
+msgctxt "queryunlinkimagedialog|QueryUnlinkImageDialog"
+msgid "This image is linked to a document."
+msgstr "Dieses Bild verlinkt zu einem Dokument."
+
+#. E9tAG
+#: queryunlinkimagedialog.ui
+msgctxt "queryunlinkimagedialog|QueryUnlinkImageDialog"
+msgid "Do you want to unlink the image in order to edit it?"
+msgstr "Möchten Sie die Verknüpfung zum Bild lösen, um es zu bearbeiten?"
+
+#. 2o27n
+#: tabledesigndialog.ui
+msgctxt "tabledesigndialog|TableDesignDialog"
+msgid "Table Design"
+msgstr "Tabellendesign"
+
+#. AB8GH
+#: tabledesigndialog.ui
+msgctxt "tabledesigndialog|UseFirstRowStyle"
+msgid "_Header row"
+msgstr "_Kopfzeile"
+
+#. fpBTF
+#: tabledesigndialog.ui
+msgctxt "tabledesigndialog|UseLastRowStyle"
+msgid "Tot_al row"
+msgstr "Er_gebniszeile"
+
+#. BGEGa
+#: tabledesigndialog.ui
+msgctxt "tabledesigndialog|UseBandingRowStyle"
+msgid "_Banded rows"
+msgstr "Wechselnde _Zeilen"
+
+#. fmaCv
+#: tabledesigndialog.ui
+msgctxt "tabledesigndialog|UseFirstColumnStyle"
+msgid "Fi_rst column"
+msgstr "_Erste Spalte"
+
+#. GCvME
+#: tabledesigndialog.ui
+msgctxt "tabledesigndialog|UseLastColumnStyle"
+msgid "_Last column"
+msgstr "_Letzte Spalte"
+
+#. FWEjf
+#: tabledesigndialog.ui
+msgctxt "tabledesigndialog|UseBandingColumnStyle"
+msgid "Ba_nded columns"
+msgstr "Wechselnde _Spalten"
+
+#. wEVvC
+#: vectorize.ui
+msgctxt "vectorize|VectorizeDialog"
+msgid "Convert to Polygon"
+msgstr "In Polygon umwandeln"
+
+#. GjSvT
+#: vectorize.ui
+msgctxt "vectorize|preview"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. 4LBUQ
+#: vectorize.ui
+msgctxt "vectorize|label2"
+msgid "Number of colors:"
+msgstr "Anzahl der Farben:"
+
+#. Fzf9L
+#: vectorize.ui
+msgctxt "vectorize|label3"
+msgid "Point reduction:"
+msgstr "Punkt-Reduktion:"
+
+#. 2xaFF
+#: vectorize.ui
+msgctxt "vectorize|tilesft"
+msgid "Tile size:"
+msgstr "Kachelgröße:"
+
+#. 2jDqG
+#: vectorize.ui
+msgctxt "vectorize|fillholes"
+msgid "_Fill holes"
+msgstr "_Löcher füllen"
+
+#. ZmPtn
+#: vectorize.ui
+msgctxt "vectorize|label5"
+msgid "Source image:"
+msgstr "Ursprungsbild:"
+
+#. HYpvA
+#: vectorize.ui
+msgctxt "vectorize|label6"
+msgid "Vectorized image:"
+msgstr "Vektorgrafik:"
+
+#. oQWMw
+#: annotationmenu.ui
+msgctxt "annotationmenu|reply"
+msgid "_Reply"
+msgstr "_Antworten"
+
+#. ARitJ
+#: annotationmenu.ui
+msgctxt "annotationmenu|bold"
+msgid "_Bold"
+msgstr "_Fett"
+
+#. m4i4o
+#: annotationmenu.ui
+msgctxt "annotationmenu|italic"
+msgid "_Italic"
+msgstr "_Kursiv"
+
+#. tEaek
+#: annotationmenu.ui
+msgctxt "annotationmenu|underline"
+msgid "_Underline"
+msgstr "_Unterstreichen"
+
+#. JC7Pp
+#: annotationmenu.ui
+msgctxt "annotationmenu|strike"
+msgid "_Strikethrough"
+msgstr "_Durchgestrichen"
+
+#. 6fQx8
+#: annotationmenu.ui
+msgctxt "annotationmenu|copy"
+msgid "_Copy"
+msgstr "_Kopieren"
+
+#. QGpCH
+#: annotationmenu.ui
+msgctxt "annotationmenu|paste"
+msgid "_Paste"
+msgstr "E_infügen"
+
+#. rtez6
+#: annotationmenu.ui
+msgctxt "annotationmenu|delete"
+msgid "_Delete Comment"
+msgstr "Kommentar _löschen"
+
+#. gAzBF
+#: annotationmenu.ui
+msgctxt "annotationmenu|deleteby"
+msgid "Delete All Comments b_y %1"
+msgstr "Alle Kommentare _von %1 löschen"
+
+#. VUb8r
+#: annotationmenu.ui
+msgctxt "annotationmenu|deleteall"
+msgid "Delete _All Comments"
+msgstr "_Alle Kommentare löschen"
+
+#. vGSve
+#: annotationtagmenu.ui
+msgctxt "annotationtagmenu|reply"
+msgid "_Reply"
+msgstr "_Antworten"
+
+#. z4GFf
+#: annotationtagmenu.ui
+msgctxt "annotationtagmenu|delete"
+msgid "_Delete Comment"
+msgstr "Kommentar _löschen"
+
+#. qtvyS
+#: annotationtagmenu.ui
+msgctxt "annotationtagmenu|deleteby"
+msgid "Delete All Comments b_y %1"
+msgstr "Alle Kommentare _von %1 löschen"
+
+#. fByWA
+#: annotationtagmenu.ui
+msgctxt "annotationtagmenu|deleteall"
+msgid "Delete _All Comments"
+msgstr "_Alle Kommentare löschen"
+
+#. 8BrX8
+#: currentmastermenu.ui
+msgctxt "currentmastermenu|applyall"
+msgid "_Apply to All Slides"
+msgstr "_Für alle Folien übernehmen"
+
+#. 3sqfF
+#: currentmastermenu.ui
+msgctxt "currentmastermenu|applyselect"
+msgid "Apply to _Selected Slides"
+msgstr "Für aus_gewählte Folien übernehmen"
+
+#. hxmNR
+#: currentmastermenu.ui
+msgctxt "currentmastermenu|edit"
+msgid "_Edit Master..."
+msgstr "Master _bearbeiten..."
+
+#. cwNbj
+#: currentmastermenu.ui
+msgctxt "currentmastermenu|delete"
+msgid "D_elete Master"
+msgstr "Master _löschen"
+
+#. 6nNHe
+#: currentmastermenu.ui
+msgctxt "currentmastermenu|large"
+msgid "Show _Large Preview"
+msgstr "Große _Vorschau anzeigen"
+
+#. kUpxX
+#: currentmastermenu.ui
+msgctxt "currentmastermenu|small"
+msgid "Show S_mall Preview"
+msgstr "_Kleine Vorschau anzeigen"
+
+#. PbBwr
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|prop_label1"
+msgid "_Direction:"
+msgstr "_Richtung:"
+
+#. 4Q3Gy
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|smooth_start"
+msgid "Accelerated start"
+msgstr "Beschleunigter Start"
+
+#. C7CRJ
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|smooth_end"
+msgid "Decelerated end"
+msgstr "Verlangsamtes Ende"
+
+#. n6GjH
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|label3"
+msgid "Settings"
+msgstr "Einstellungen"
+
+#. 2tdGG
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|aeffect_label"
+msgid "A_fter animation:"
+msgstr "_Nach der Animation:"
+
+#. uMyFB
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|sound_label"
+msgid "_Sound:"
+msgstr "_Klang:"
+
+#. zeE4a
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|text_animation_label"
+msgid "_Text animation:"
+msgstr "_Textanimation:"
+
+#. DUrNg
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|dim_color_label"
+msgid "Di_m color:"
+msgstr "_Farbe abblenden:"
+
+#. fA4rX
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|text_delay_label"
+msgid "delay between characters"
+msgstr "Verzögerung zwischen Zeichen"
+
+#. mimJe
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|aeffect_list"
+msgid "Don't dim"
+msgstr "Nicht abblenden"
+
+#. Aj8J7
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|aeffect_list"
+msgid "Dim with color"
+msgstr "Mit Farbe abblenden"
+
+#. RiGMP
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|aeffect_list"
+msgid "Hide after animation"
+msgstr "Nach Animation ausblenden"
+
+#. ephP9
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|aeffect_list"
+msgid "Hide on next animation"
+msgstr "Mit nächster Animation ausblenden"
+
+#. 7k6dN
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|text_animation_list"
+msgid "All at once"
+msgstr "Gemeinsam"
+
+#. qcpqM
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|text_animation_list"
+msgid "Word by word"
+msgstr "Wortweise"
+
+#. DUoYo
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|text_animation_list"
+msgid "Letter by letter"
+msgstr "Zeichenweise"
+
+#. vF4Wp
+#: customanimationeffecttab.ui
+msgctxt "customanimationeffecttab|label4"
+msgid "Enhancement"
+msgstr "Erweiterung"
+
+#. icBD4
+#: customanimationproperties.ui
+msgctxt "customanimationproperties|CustomAnimationProperties"
+msgid "Effect Options"
+msgstr "Effektoptionen"
+
+#. ECVxK
+#: customanimationproperties.ui
+msgctxt "customanimationproperties|effect"
+msgid "Effect"
+msgstr "Effekt"
+
+#. hH7CP
+#: customanimationproperties.ui
+msgctxt "customanimationproperties|timing"
+msgid "Timing"
+msgstr "Anzeigedauer"
+
+#. JSeoo
+#: customanimationproperties.ui
+msgctxt "customanimationproperties|textanim"
+msgid "Text Animation"
+msgstr "Lauftext"
+
+#. nRqGR
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|add_effect|tooltip_text"
+msgid "Add Effect"
+msgstr "Effekt hinzufügen"
+
+#. vitMM
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|remove_effect|tooltip_text"
+msgid "Remove Effect"
+msgstr "Effekt entfernen"
+
+#. 3wHRp
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|move_up|tooltip_text"
+msgid "Move Up"
+msgstr "Nach oben verschieben"
+
+#. jEksa
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|move_down|tooltip_text"
+msgid "Move Down"
+msgstr "Nach unten verschieben"
+
+#. wCc89
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|categorylabel"
+msgid "Category:"
+msgstr "Kategorie:"
+
+#. EHRAp
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|effectlabel"
+msgid "Effect:"
+msgstr "Effekt:"
+
+#. jQcZZ
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|categorylb"
+msgid "Entrance"
+msgstr "Eingang"
+
+#. 2qTvP
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|categorylb"
+msgid "Emphasis"
+msgstr "Betonung"
+
+#. TZeh8
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|categorylb"
+msgid "Exit"
+msgstr "Beenden"
+
+#. N8Xvu
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|categorylb"
+msgid "Motion Paths"
+msgstr "Animationspfade"
+
+#. qDYCQ
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|categorylb"
+msgid "Misc Effects"
+msgstr "Verschiedene Effekte"
+
+#. GDYfC
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|start_effect"
+msgid "_Start:"
+msgstr "_Starten:"
+
+#. 8AUq9
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|effect_property"
+msgid "_Direction:"
+msgstr "_Richtung:"
+
+#. QWndb
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|effect_duration"
+msgid "D_uration:"
+msgstr "_Dauer:"
+
+#. DhPiJ
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|start_effect_list"
+msgid "On click"
+msgstr "Beim Klicken"
+
+#. FNFGr
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|start_effect_list"
+msgid "With previous"
+msgstr "Mit Vorheriger"
+
+#. dCfj4
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|start_effect_list"
+msgid "After previous"
+msgstr "Nach Vorheriger"
+
+#. mMYic
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|more_properties|tooltip_text"
+msgid "Options"
+msgstr "Optionen"
+
+#. 2cGAb
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|delay_label"
+msgid "_Delay:"
+msgstr "_Verzögerung:"
+
+#. 87FEz
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|delay_value"
+msgid "0.0"
+msgstr "0,0"
+
+#. FgkKZ
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|effect_label"
+msgid "Effect"
+msgstr "Effekt"
+
+#. J2bC5
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|auto_preview"
+msgid "Automatic Preview"
+msgstr "Automatische Vorschau"
+
+#. KP8UC
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|play"
+msgid "Play"
+msgstr "Start"
+
+#. Bn67v
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|play|tooltip_text"
+msgid "Preview Effect"
+msgstr "Effektvorschau"
+
+#. LBEzG
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|box1_label"
+msgid "Animation Deck"
+msgstr "Animationsbereich"
+
+#. bUvjt
+#: customanimationspanel.ui
+msgctxt "customanimationspanel|custom_animation_list_label"
+msgid "Animation List"
+msgstr "Liste der Animationen"
+
+#. VDZpG
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|add_effect|tooltip_text"
+msgid "Add Effect"
+msgstr "Effekt hinzufügen"
+
+#. 4gN4o
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|remove_effect|tooltip_text"
+msgid "Remove Effect"
+msgstr "Effekt entfernen"
+
+#. PoVC2
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|move_up|tooltip_text"
+msgid "Move Up"
+msgstr "Nach oben verschieben"
+
+#. KowEk
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|move_down|tooltip_text"
+msgid "Move Down"
+msgstr "Nach unten verschieben"
+
+#. 4WN7L
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|start_effect"
+msgid "_Start:"
+msgstr "_Beginn:"
+
+#. sMXaB
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|effect_property"
+msgid "_Direction:"
+msgstr "_Richtung:"
+
+#. XkJCD
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|start_effect_list"
+msgid "On click"
+msgstr "Beim Klicken"
+
+#. di25V
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|start_effect_list"
+msgid "With previous"
+msgstr "Mit Vorheriger"
+
+#. 4cUNK
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|start_effect_list"
+msgid "After previous"
+msgstr "Nach Vorheriger"
+
+#. TLiDp
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|categorylabel"
+msgid "Category:"
+msgstr "Kategorie:"
+
+#. RnZgW
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|categorylb"
+msgid "Entrance"
+msgstr "Eingang"
+
+#. hPeoQ
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|categorylb"
+msgid "Emphasis"
+msgstr "Betonung"
+
+#. ZXQSM
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|categorylb"
+msgid "Exit"
+msgstr "Beenden"
+
+#. zGyq6
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|categorylb"
+msgid "Motion Paths"
+msgstr "Animationspfade"
+
+#. d3vzS
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|categorylb"
+msgid "Misc Effects"
+msgstr "Verschiedene Effekte"
+
+#. asjAw
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|effect_duration"
+msgid "D_uration:"
+msgstr "_Dauer:"
+
+#. BVA2X
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|anim_duration|tooltip_text"
+msgid "Select the speed of the Animation."
+msgstr "Wählen Sie die Geschwindigkeit der Animation."
+
+#. hzMKc
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|delay_label"
+msgid "_Delay:"
+msgstr "_Verzögerung:"
+
+#. 25vMN
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|delay_value"
+msgid "0.0"
+msgstr "0,0"
+
+#. VwCKo
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|effectlabel"
+msgid "Effect:"
+msgstr "Effekt:"
+
+#. EHa95
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|auto_preview"
+msgid "Automatic Preview"
+msgstr "Automatische Vorschau"
+
+#. pvFbs
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|play"
+msgid "Play"
+msgstr "Wiedergeben"
+
+#. sDBdY
+#: customanimationspanelhorizontal.ui
+msgctxt "customanimationspanelhorizontal|play|tooltip_text"
+msgid "Preview Effect"
+msgstr "Effektvorschau"
+
+#. rYtTX
+#: customanimationtexttab.ui
+msgctxt "customanimationtexttab|group_text_label"
+msgid "_Group text:"
+msgstr "Texte _gruppieren:"
+
+#. ujWxH
+#: customanimationtexttab.ui
+msgctxt "customanimationtexttab|auto_after"
+msgid "_Automatically after:"
+msgstr "A_utomatisch nach:"
+
+#. KEqJZ
+#: customanimationtexttab.ui
+msgctxt "customanimationtexttab|group_text_list"
+msgid "As one object"
+msgstr "Als einzelnes Objekt"
+
+#. BAUhG
+#: customanimationtexttab.ui
+msgctxt "customanimationtexttab|group_text_list"
+msgid "All paragraphs at once"
+msgstr "Alle Absätze auf einmal"
+
+#. A64BF
+#: customanimationtexttab.ui
+msgctxt "customanimationtexttab|group_text_list"
+msgid "By 1st level paragraphs"
+msgstr "Nach 1. Abschnittsebene"
+
+#. ggJkd
+#: customanimationtexttab.ui
+msgctxt "customanimationtexttab|group_text_list"
+msgid "By 2nd level paragraphs"
+msgstr "Nach 2. Abschnittsebene"
+
+#. 6gKbP
+#: customanimationtexttab.ui
+msgctxt "customanimationtexttab|group_text_list"
+msgid "By 3rd level paragraphs"
+msgstr "Nach 3. Abschnittsebene"
+
+#. GNWBw
+#: customanimationtexttab.ui
+msgctxt "customanimationtexttab|group_text_list"
+msgid "By 4th level paragraphs"
+msgstr "Nach 4. Abschnittsebene"
+
+#. AjqaJ
+#: customanimationtexttab.ui
+msgctxt "customanimationtexttab|group_text_list"
+msgid "By 5th level paragraphs"
+msgstr "Nach 5. Abschnittsebene"
+
+#. LDD3y
+#: customanimationtexttab.ui
+msgctxt "customanimationtexttab|animate_shape"
+msgid "Animate attached _shape"
+msgstr "Angefügte _Form animieren"
+
+#. ir4kZ
+#: customanimationtexttab.ui
+msgctxt "customanimationtexttab|reverse_order"
+msgid "_In reverse order"
+msgstr "_In umgekehrter Reihenfolge"
+
+#. QGBar
+#: customanimationtimingtab.ui
+msgctxt "customanimationtimingtab|start_label"
+msgid "_Start:"
+msgstr "_Starten:"
+
+#. vpsTM
+#: customanimationtimingtab.ui
+msgctxt "customanimationtimingtab|delay_label"
+msgid "_Delay:"
+msgstr "_Verzögerung:"
+
+#. 4nFBf
+#: customanimationtimingtab.ui
+msgctxt "customanimationtimingtab|duration_label"
+msgid "D_uration:"
+msgstr "_Dauer:"
+
+#. LaaB7
+#: customanimationtimingtab.ui
+msgctxt "customanimationtimingtab|repeat_label"
+msgid "_Repeat:"
+msgstr "_Wiederholung:"
+
+#. jYfdE
+#: customanimationtimingtab.ui
+msgctxt "customanimationtimingtab|start_list"
+msgid "On click"
+msgstr "Beim Klicken"
+
+#. b2hFe
+#: customanimationtimingtab.ui
+msgctxt "customanimationtimingtab|start_list"
+msgid "With previous"
+msgstr "Mit Vorheriger"
+
+#. uDNCT
+#: customanimationtimingtab.ui
+msgctxt "customanimationtimingtab|start_list"
+msgid "After previous"
+msgstr "Nach Vorheriger"
+
+#. SXXYo
+#: customanimationtimingtab.ui
+msgctxt "customanimationtimingtab|anim_duration|tooltip_text"
+msgid "Select the speed of the Animation."
+msgstr "Wählen Sie die Geschwindigkeit der Animation."
+
+#. rvdMd
+#: customanimationtimingtab.ui
+msgctxt "customanimationtimingtab|rewind"
+msgid "Rewind _when done playing"
+msgstr "Nach der _Wiedergabe zurückspulen"
+
+#. CwXRW
+#: customanimationtimingtab.ui
+msgctxt "customanimationtimingtab|rb_click_sequence"
+msgid "_Animate as part of click sequence"
+msgstr "Animation als Teil der _Klickreihenfolge"
+
+#. CQiDM
+#: customanimationtimingtab.ui
+msgctxt "customanimationtimingtab|rb_interactive"
+msgid "Start _effect on click of:"
+msgstr "_Effekt starten beim Klicken auf:"
+
+#. fLVeN
+#: customanimationtimingtab.ui
+msgctxt "customanimationtimingtab|label11"
+msgid "Trigger"
+msgstr "Auslöser"
+
+#. noDNw
+#: customslideshows.ui
+msgctxt "customslideshows|CustomSlideShows"
+msgid "Custom Slide Shows"
+msgstr "Individuelle Bildschirmpräsentationen"
+
+#. yaQvx
+#: customslideshows.ui
+msgctxt "customslideshows|copy"
+msgid "Cop_y"
+msgstr "_Kopieren"
+
+#. URCgE
+#: customslideshows.ui
+msgctxt "customslideshows|startshow"
+msgid "_Start"
+msgstr "_Starten"
+
+#. FFUWq
+#: customslideshows.ui
+msgctxt "customslideshows|usecustomshows"
+msgid "_Use custom slide show"
+msgstr "_Individuelle Bildschirmpräsentation benutzen"
+
+#. KmamJ
+#: definecustomslideshow.ui
+msgctxt "definecustomslideshow|DefineCustomSlideShow"
+msgid "Define Custom Slide Show"
+msgstr "Individuelle Bildschirmpräsentation definieren"
+
+#. mhsyF
+#: definecustomslideshow.ui
+msgctxt "definecustomslideshow|label1"
+msgid "_Name:"
+msgstr "_Name:"
+
+#. HB63C
+#: definecustomslideshow.ui
+msgctxt "definecustomslideshow|label2"
+msgid "_Existing slides:"
+msgstr "_Bestehende Folien:"
+
+#. BhVRw
+#: definecustomslideshow.ui
+msgctxt "definecustomslideshow|label3"
+msgid "_Selected slides:"
+msgstr "_Ausgewählte Folien:"
+
+#. Xfj8D
+#: definecustomslideshow.ui
+msgctxt "definecustomslideshow|add"
+msgid ">>"
+msgstr ">>"
+
+#. nrzGP
+#: definecustomslideshow.ui
+msgctxt "definecustomslideshow|remove"
+msgid "<<"
+msgstr "<<"
+
+#. jRSBW
+#: dlgfield.ui
+msgctxt "dlgfield|EditFieldsDialog"
+msgid "Edit Field"
+msgstr "Feldbefehl bearbeiten"
+
+#. pRhTV
+#: dlgfield.ui
+msgctxt "dlgfield|fixedRB"
+msgid "_Fixed"
+msgstr "_Fest"
+
+#. VKhAG
+#: dlgfield.ui
+msgctxt "dlgfield|varRB"
+msgid "_Variable"
+msgstr "_Variable"
+
+#. RAGYv
+#: dlgfield.ui
+msgctxt "dlgfield|label1"
+msgid "Field Type"
+msgstr "Feldtyp"
+
+#. yAfjz
+#: dlgfield.ui
+msgctxt "dlgfield|label2"
+msgid "_Language:"
+msgstr "_Sprache:"
+
+#. fmuQT
+#: dlgfield.ui
+msgctxt "dlgfield|label3"
+msgid "F_ormat"
+msgstr "F_ormat"
+
+#. hvE3N
+#: dockinganimation.ui
+msgctxt "dockinganimation|DockingAnimation"
+msgid "Animation"
+msgstr "Animation"
+
+#. TAAAC
+#: dockinganimation.ui
+msgctxt "dockinganimation|box|tooltip_text"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. daSn5
+#: dockinganimation.ui
+msgctxt "dockinganimation|loopcount|tooltip_text"
+msgid "Loop Count"
+msgstr "Anzahl an Wiederholungen"
+
+#. FHA4N
+#: dockinganimation.ui
+msgctxt "dockinganimation|loopcount"
+msgid "Max."
+msgstr "Max."
+
+#. SqcwJ
+#: dockinganimation.ui
+msgctxt "dockinganimation|duration|tooltip_text"
+msgid "Duration"
+msgstr "Dauer"
+
+#. B5sxX
+#: dockinganimation.ui
+msgctxt "dockinganimation|numbitmap|tooltip_text"
+msgid "Image Number"
+msgstr "Bildnummer"
+
+#. ACaXa
+#: dockinganimation.ui
+msgctxt "dockinganimation|first|tooltip_text"
+msgid "First Image"
+msgstr "Erste Bild"
+
+#. UBvzL
+#: dockinganimation.ui
+msgctxt "dockinganimation|prev|tooltip_text"
+msgid "Backwards"
+msgstr "Zurück"
+
+#. TcVGb
+#: dockinganimation.ui
+msgctxt "dockinganimation|stop|tooltip_text"
+msgid "Stop"
+msgstr "Stopp"
+
+#. BSGMb
+#: dockinganimation.ui
+msgctxt "dockinganimation|next|tooltip_text"
+msgid "Play"
+msgstr "Start"
+
+#. QBaGj
+#: dockinganimation.ui
+msgctxt "dockinganimation|last|tooltip_text"
+msgid "Last Image"
+msgstr "Letztes Bild"
+
+#. 963iG
+#: dockinganimation.ui
+msgctxt "dockinganimation|group"
+msgid "Group object"
+msgstr "Gruppenobjekt"
+
+#. Cn8go
+#: dockinganimation.ui
+msgctxt "dockinganimation|bitmap"
+msgid "Bitmap object"
+msgstr "Bitmapobjekt"
+
+#. TjdBX
+#: dockinganimation.ui
+msgctxt "dockinganimation|alignmentft"
+msgid "Alignment"
+msgstr "Ausrichtung"
+
+#. Njtua
+#: dockinganimation.ui
+msgctxt "dockinganimation|alignment"
+msgid "Top Left"
+msgstr "Links oben"
+
+#. sPkEs
+#: dockinganimation.ui
+msgctxt "dockinganimation|alignment"
+msgid "Left"
+msgstr "Links"
+
+#. ew2UB
+#: dockinganimation.ui
+msgctxt "dockinganimation|alignment"
+msgid "Bottom Left"
+msgstr "Links unten"
+
+#. wYgBb
+#: dockinganimation.ui
+msgctxt "dockinganimation|alignment"
+msgid "Top"
+msgstr "Oben"
+
+#. 7NwKN
+#: dockinganimation.ui
+msgctxt "dockinganimation|alignment"
+msgid "Centered"
+msgstr "Mittig"
+
+#. fdbVN
+#: dockinganimation.ui
+msgctxt "dockinganimation|alignment"
+msgid "Bottom"
+msgstr "Unten"
+
+#. Lk6BJ
+#: dockinganimation.ui
+msgctxt "dockinganimation|alignment"
+msgid "Top Right"
+msgstr "Rechts oben"
+
+#. GTwHD
+#: dockinganimation.ui
+msgctxt "dockinganimation|alignment"
+msgid "Right"
+msgstr "Rechts"
+
+#. f6c2X
+#: dockinganimation.ui
+msgctxt "dockinganimation|alignment"
+msgid "Bottom Right"
+msgstr "Rechts unten"
+
+#. ACGAo
+#: dockinganimation.ui
+msgctxt "dockinganimation|label1"
+msgid "Animation group"
+msgstr "Animationsgruppe"
+
+#. Bu3De
+#: dockinganimation.ui
+msgctxt "dockinganimation|getone|tooltip_text"
+msgid "Apply Object"
+msgstr "Objekt anwenden"
+
+#. f6tL5
+#: dockinganimation.ui
+msgctxt "dockinganimation|getall|tooltip_text"
+msgid "Apply Objects Individually"
+msgstr "Objekt individuell anwenden"
+
+#. VGN4f
+#: dockinganimation.ui
+msgctxt "dockinganimation|label3"
+msgid "Number"
+msgstr "Zahl"
+
+#. 8kUXo
+#: dockinganimation.ui
+msgctxt "dockinganimation|delone|tooltip_text"
+msgid "Delete Current Image"
+msgstr "Aktuelles Bild löschen"
+
+#. riYDF
+#: dockinganimation.ui
+msgctxt "dockinganimation|delall|tooltip_text"
+msgid "Delete All Images"
+msgstr "Alle Bilder löschen"
+
+#. QGvVC
+#: dockinganimation.ui
+msgctxt "dockinganimation|label2"
+msgid "Image"
+msgstr "Bild"
+
+#. WYZGD
+#: dockinganimation.ui
+msgctxt "dockinganimation|create"
+msgid "Create"
+msgstr "Erstellen"
+
+#. VYjBF
+#: effectmenu.ui
+msgctxt "effectmenu|onclick"
+msgid "Start On _Click"
+msgstr "Beim _Klicken"
+
+#. 65V7C
+#: effectmenu.ui
+msgctxt "effectmenu|withprev"
+msgid "Start _With Previous"
+msgstr "Mit _Vorheriger"
+
+#. 6CACD
+#: effectmenu.ui
+msgctxt "effectmenu|afterprev"
+msgid "Start _After Previous"
+msgstr "_Nach Vorheriger"
+
+#. CY3rG
+#: effectmenu.ui
+msgctxt "effectmenu|options"
+msgid "_Effect Options..."
+msgstr "_Effektoptionen..."
+
+#. FeJyb
+#: effectmenu.ui
+msgctxt "effectmenu|timing"
+msgid "_Timing..."
+msgstr "_Anzeigedauer..."
+
+#. CpukX
+#: effectmenu.ui
+msgctxt "effectmenu|remove"
+msgid "_Remove"
+msgstr "_Entfernen"
+
+#. DXV9V
+#: fontsizemenu.ui
+msgctxt "fontsizemenu|25"
+msgid "Tiny"
+msgstr "Winzig"
+
+#. KeRNm
+#: fontsizemenu.ui
+msgctxt "fontsizemenu|50"
+msgid "Smaller"
+msgstr "Kleiner"
+
+#. 6WKBZ
+#: fontsizemenu.ui
+msgctxt "fontsizemenu|150"
+msgid "Larger"
+msgstr "Größer"
+
+#. BWQbN
+#: fontsizemenu.ui
+msgctxt "fontsizemenu|400"
+msgid "Extra Large"
+msgstr "Sehr groß"
+
+#. dgg5q
+#: fontstylemenu.ui
+msgctxt "fontstylemenu|bold"
+msgid "Bold"
+msgstr "Fett"
+
+#. HgpdJ
+#: fontstylemenu.ui
+msgctxt "fontstylemenu|italic"
+msgid "Italic"
+msgstr "Kursiv"
+
+#. A5UUL
+#: fontstylemenu.ui
+msgctxt "fontstylemenu|underline"
+msgid "Underlined"
+msgstr "Unterstrichen"
+
+#. BnypD
+#: headerfooterdialog.ui
+msgctxt "headerfooterdialog|HeaderFooterDialog"
+msgid "Header and Footer"
+msgstr "Kopf- und Fußzeile"
+
+#. HmAnf
+#: headerfooterdialog.ui
+msgctxt "headerfooterdialog|apply_all"
+msgid "Appl_y to All"
+msgstr "Auf alle an_wenden"
+
+#. WcG5C
+#: headerfooterdialog.ui
+msgctxt "headerfooterdialog|slides"
+msgid "Slides"
+msgstr "Folien"
+
+#. 4dtgk
+#: headerfooterdialog.ui
+msgctxt "headerfooterdialog|notes"
+msgid "Notes and Handouts"
+msgstr "Notizblätter und Handzettel"
+
+#. BgFsS
+#: headerfootertab.ui
+msgctxt "headerfootertab|header_cb"
+msgid "Heade_r"
+msgstr "_Kopfzeile"
+
+#. Qktzq
+#: headerfootertab.ui
+msgctxt "headerfootertab|header_label"
+msgid "Header _text:"
+msgstr "Kopfzeilen_text:"
+
+#. ruQCk
+#: headerfootertab.ui
+msgctxt "headerfootertab|datetime_cb"
+msgid "_Date and time"
+msgstr "_Datum und Uhrzeit"
+
+#. LDq83
+#: headerfootertab.ui
+msgctxt "headerfootertab|rb_fixed"
+msgid "Fi_xed"
+msgstr "_Fest"
+
+#. Zch2Q
+#: headerfootertab.ui
+msgctxt "headerfootertab|rb_auto"
+msgid "_Variable"
+msgstr "_Variabel"
+
+#. iDwM5
+#: headerfootertab.ui
+msgctxt "headerfootertab|language_label"
+msgid "_Language:"
+msgstr "_Sprache:"
+
+#. mDMwW
+#: headerfootertab.ui
+msgctxt "headerfootertab|language_label1"
+msgid "_Format:"
+msgstr "_Format:"
+
+#. htD4f
+#: headerfootertab.ui
+msgctxt "headerfootertab|footer_cb"
+msgid "_Footer"
+msgstr "F_ußzeile"
+
+#. oA3mG
+#: headerfootertab.ui
+msgctxt "headerfootertab|footer_label"
+msgid "F_ooter text:"
+msgstr "Fußzeilen_text:"
+
+#. UERZK
+#: headerfootertab.ui
+msgctxt "headerfootertab|slide_number"
+msgid "_Slide number"
+msgstr "Folien_nummer"
+
+#. ZmRZp
+#: headerfootertab.ui
+msgctxt "headerfootertab|include_label"
+msgid "Include on Slide"
+msgstr "Auf Folie zeigen"
+
+#. QNb8r
+#: headerfootertab.ui
+msgctxt "headerfootertab|not_on_title"
+msgid "Do _not show on the first slide"
+msgstr "Auf der _ersten Folie nicht anzeigen"
+
+#. jjanG
+#: headerfootertab.ui
+msgctxt "headerfootertab|replacement_a"
+msgid "_Page Number"
+msgstr "_Foliennummer"
+
+#. x4Ffp
+#: headerfootertab.ui
+msgctxt "headerfootertab|replacement_b"
+msgid "Include on page"
+msgstr "Auf Folie zeigen"
+
+#. JxDBz
+#: insertslides.ui
+msgctxt "insertslides|InsertSlidesDialog"
+msgid "Insert Slides"
+msgstr "Folien einfügen"
+
+#. UmNCb
+#: insertslides.ui
+msgctxt "insertslides|before"
+msgid "_Before"
+msgstr "_Vor"
+
+#. DBp4R
+#: insertslides.ui
+msgctxt "insertslides|after"
+msgid "A_fter"
+msgstr "_Nach"
+
+#. p39eR
+#: insertslides.ui
+msgctxt "insertslides|label1"
+msgid "Position"
+msgstr "Position"
+
+#. CvneF
+#: interactiondialog.ui
+msgctxt "interactiondialog|InteractionDialog"
+msgid "Interaction"
+msgstr "Interaktion"
+
+#. 9P7Tz
+#: interactionpage.ui
+msgctxt "interactionpage|label2"
+msgid "Action at mouse click:"
+msgstr "Aktion bei Mausklick:"
+
+#. ECoVa
+#: interactionpage.ui
+msgctxt "interactionpage|fttree"
+msgid "Target:"
+msgstr "Ziel:"
+
+#. MZvua
+#: interactionpage.ui
+msgctxt "interactionpage|label1"
+msgid "Interaction"
+msgstr "Interaktion"
+
+#. iDK6N
+#: interactionpage.ui
+msgctxt "interactionpage|browse"
+msgid "_Browse..."
+msgstr "_Durchsuchen..."
+
+#. xDPqu
+#: interactionpage.ui
+msgctxt "interactionpage|find"
+msgid "_Find"
+msgstr "_Suchen"
+
+#. WCrdD
+#: interactionpage.ui
+msgctxt "interactionpage|sound-atkobject"
+msgid "Path Name"
+msgstr "Pfadname"
+
+#. Ed2VQ
+#: layoutmenu.ui
+msgctxt "layoutmenu|apply"
+msgid "Apply to _Selected Slides"
+msgstr "Für aus_gewählte Folien übernehmen"
+
+#. r6oAh
+#: layoutmenu.ui
+msgctxt "layoutmenu|insert"
+msgid "_Insert Slide"
+msgstr "Folie _einfügen"
+
+#. uydrR
+#: masterlayoutdlg.ui
+msgctxt "masterlayoutdlg|MasterLayoutDialog"
+msgid "Master Elements"
+msgstr "Masterelemente"
+
+#. 2kiHn
+#: masterlayoutdlg.ui
+msgctxt "masterlayoutdlg|header"
+msgid "_Header"
+msgstr "_Kopfzeile"
+
+#. iccus
+#: masterlayoutdlg.ui
+msgctxt "masterlayoutdlg|datetime"
+msgid "_Date/time"
+msgstr "_Datum/Uhrzeit"
+
+#. SFrZg
+#: masterlayoutdlg.ui
+msgctxt "masterlayoutdlg|footer"
+msgid "_Footer"
+msgstr "F_ußzeile"
+
+#. AyWZh
+#: masterlayoutdlg.ui
+msgctxt "masterlayoutdlg|pagenumber"
+msgid "_Page number"
+msgstr "_Foliennummer"
+
+#. DEikC
+#: masterlayoutdlg.ui
+msgctxt "masterlayoutdlg|slidenumber"
+msgid "_Slide number"
+msgstr "_Foliennummer"
+
+#. StLxB
+#: masterlayoutdlg.ui
+msgctxt "masterlayoutdlg|Placeholders"
+msgid "Placeholders"
+msgstr "Platzhalter"
+
+#. 69Akr
+#: mastermenu.ui
+msgctxt "mastermenu|applyall"
+msgid "_Apply to All Slides"
+msgstr "_Für alle Folien übernehmen"
+
+#. VRgjP
+#: mastermenu.ui
+msgctxt "mastermenu|applyselect"
+msgid "Apply to _Selected Slides"
+msgstr "Für aus_gewählte Folien übernehmen"
+
+#. JqkU5
+#: mastermenu.ui
+msgctxt "mastermenu|large"
+msgid "Show _Large Preview"
+msgstr "Große _Vorschau anzeigen"
+
+#. hTJCE
+#: mastermenu.ui
+msgctxt "mastermenu|small"
+msgid "Show S_mall Preview"
+msgstr "_Kleine Vorschau anzeigen"
+
+#. 3rY8r
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|documents|tooltip_text"
+msgid "Document"
+msgstr "Dokument"
+
+#. wavgT
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|documents-atkobject"
+msgid "Active Window"
+msgstr "Aktives Fenster"
+
+#. LKqE8
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|first|tooltip_text"
+msgid "First Slide"
+msgstr "Erste Folie"
+
+#. NWPFk
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|previous|tooltip_text"
+msgid "Previous Slide"
+msgstr "Vorherige Folie"
+
+#. bkvQE
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|next|tooltip_text"
+msgid "Next Slide"
+msgstr "Nächste Folie"
+
+#. FVSHF
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|last|tooltip_text"
+msgid "Last Slide"
+msgstr "Letzte Folie"
+
+#. mHVom
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|dragmode|tooltip_text"
+msgid "Drag Mode"
+msgstr "Ziehmodus"
+
+#. Qb5a9
+#: navigatorpanel.ui
+msgctxt "navigatorpanel|shapes|tooltip_text"
+msgid "Show Shapes"
+msgstr "Formen anzeigen"
+
+#. EoBrh
+#: notebookbar.ui
+msgctxt "notebookbar|FileLabel"
+msgid "File"
+msgstr "Datei"
+
+#. XpFCo
+#: notebookbar.ui
+msgctxt "notebookbar|FormatPaintbrush"
+msgid "Clone"
+msgstr "Übertragen"
+
+#. QcYXo
+#: notebookbar.ui
+msgctxt "notebookbar|numberbullet|tooltip_text"
+msgid "Bullets and Numbering"
+msgstr "Aufzählungszeichen und Nummerierung"
+
+#. QxLnC
+#: notebookbar.ui
+msgctxt "notebookbar|indent|tooltip_text"
+msgid "Indent"
+msgstr "Einzug"
+
+#. txzyy
+#: notebookbar.ui
+msgctxt "notebookbar|increaseindent|tooltip_text"
+msgid "Increase Indent"
+msgstr "Einzug vergrößern"
+
+#. CyGC9
+#: notebookbar.ui
+msgctxt "notebookbar|decreaseindent|tooltip_text"
+msgid "Decrease Indent"
+msgstr "Einzug verkleinern"
+
+#. pQhrE
+#: notebookbar.ui
+msgctxt "notebookbar|horizontalalignment|tooltip_text"
+msgid "Horizontal Alignment"
+msgstr "Horizontale Ausrichtung"
+
+#. pKdF8
+#: notebookbar.ui
+msgctxt "notebookbar|ImpressLabel"
+msgid "Home"
+msgstr "Start"
+
+#. 5Ew33
+#: notebookbar.ui
+msgctxt "notebookbar|InsertAVMedia|tooltip_text"
+msgid "Insert Audio or Video"
+msgstr "Audio/Video einfügen"
+
+#. DEvJL
+#: notebookbar.ui
+msgctxt "notebookbar|InsertSymbol"
+msgid "Symbol"
+msgstr "Symbol"
+
+#. bQvBw
+#: notebookbar.ui
+msgctxt "notebookbar|InsertLabel"
+msgid "Insert"
+msgstr "Einfügen"
+
+#. useAS
+#: notebookbar.ui
+msgctxt "notebookbar|TransitionsLabel"
+msgid "Transitions"
+msgstr "Übergänge"
+
+#. AgCgR
+#: notebookbar.ui
+msgctxt "notebookbar|AnimationLabel"
+msgid "Animation"
+msgstr "Animation"
+
+#. 7NdiW
+#: notebookbar.ui
+msgctxt "notebookbar|SlideShowLabel"
+msgid "Slide Show"
+msgstr "Diaschau"
+
+#. XFsDt
+#: notebookbar.ui
+msgctxt "notebookbar|SpellOnline"
+msgid "Auto Spellcheck"
+msgstr "Automatische Rechtschreibprüfung"
+
+#. Yopi7
+#: notebookbar.ui
+msgctxt "notebookbar|ReviewLabel"
+msgid "Review"
+msgstr "Überprüfen"
+
+#. GUvDo
+#: notebookbar.ui
+msgctxt "notebookbar|GridVisible"
+msgid "Grid"
+msgstr "Gitter"
+
+#. wDGSi
+#: notebookbar.ui
+msgctxt "notebookbar|ViewLabel"
+msgid "View"
+msgstr "Ansicht"
+
+#. CMhFV
+#: notebookbar.ui
+msgctxt "notebookbar|TableLabel"
+msgid "Table"
+msgstr "Tabelle"
+
+#. AcVNT
+#: notebookbar.ui
+msgctxt "notebookbar|ImageLabel"
+msgid "Image"
+msgstr "Bild"
+
+#. TRHHB
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|layout01"
+msgid "Blank"
+msgstr "Leer"
+
+#. 8fsnY
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|layout02"
+msgid "Title Slide"
+msgstr "Titelfolie"
+
+#. VAnE3
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|layout03"
+msgid "Title, Text"
+msgstr "Titel, Text"
+
+#. V64P7
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|layout04"
+msgid "Title, Content"
+msgstr "Titel, Inhalt"
+
+#. PAqPF
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|layout05"
+msgid "Centered Text"
+msgstr "Zentrierter Text"
+
+#. mimQW
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|hyperlink"
+msgid "Hyperlink"
+msgstr "Hyperlink"
+
+#. LbUtj
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|footnote"
+msgid "Footnote"
+msgstr "Fußnote"
+
+#. BkhhA
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|endnote"
+msgid "Endnote"
+msgstr "Endnote"
+
+#. 4uDNR
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|bookmark"
+msgid "Bookmark"
+msgstr "Lesezeichen"
+
+#. JE3bf
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|crossreference"
+msgid "Cross-Reference"
+msgstr "Querverweis"
+
+#. LMhUg
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|master01"
+msgid "Master 1"
+msgstr "Master 1"
+
+#. 4j2fv
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|master02"
+msgid "Master 2"
+msgstr "Master 2"
+
+#. Dz9y9
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|shapestyledefault"
+msgid "Default"
+msgstr "Standard"
+
+#. 7YLfF
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|shapestylenofill"
+msgid "No Fill"
+msgstr "Keine Füllung"
+
+#. ZvUBh
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|shapestyleshadow"
+msgid "With Shadow"
+msgstr "Mit Schatten"
+
+#. F32mr
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|shapestyletitle1"
+msgid "Title 1"
+msgstr "Titel 1"
+
+#. BH8CJ
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|shapestyletitle2"
+msgid "Title 2"
+msgstr "Titel 2"
+
+#. CsPMA
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|filegrouplabel"
+msgid "File"
+msgstr "Datei"
+
+#. FHC5q
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|clipboardgrouplabel"
+msgid "Clipboard"
+msgstr "Zwischenablage"
+
+#. ffHa2
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|shapestyleb"
+msgid "Style"
+msgstr "Stil"
+
+#. vmMtE
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|growb"
+msgid " "
+msgstr " "
+
+#. K4uCY
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|shrinkb"
+msgid " "
+msgstr " "
+
+#. nyg3m
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|formatgrouplabel"
+msgid "Text"
+msgstr "Text"
+
+#. cCSaA
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|startshowb"
+msgid "Start"
+msgstr "Start"
+
+#. vgG6B
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|masterb"
+msgid "Master"
+msgstr "Master"
+
+#. k69y9
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|layoutb"
+msgid "Layout"
+msgstr "Layout"
+
+#. mfi7o
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|animationb"
+msgid "Animation"
+msgstr "Animation"
+
+#. Dxvi5
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|transitionb"
+msgid "Transition"
+msgstr "Übergang"
+
+#. rGCbA
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|slidegrouplabel"
+msgid "Slide"
+msgstr "Folie"
+
+#. QdJQU
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|shapesb"
+msgid "Shapes"
+msgstr "Formen"
+
+#. geGED
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|linksb"
+msgid "Links"
+msgstr "Verknüpfungen"
+
+#. txpNZ
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|insertgrouplabel"
+msgid "Insert"
+msgstr "Einfügen"
+
+#. Du8Qw
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|imagestyleb"
+msgid "Style"
+msgstr "Stil"
+
+#. E7zcE
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|resetb"
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#. w6XXT
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapb"
+msgid "Wrap"
+msgstr "Umlauf"
+
+#. QdS8h
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|lockb"
+msgid "Lock"
+msgstr "Sperren"
+
+#. VUCKC
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|imagegrouplabel"
+msgid "Image"
+msgstr "Bild"
+
+#. tGNaF
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapoff"
+msgid "None"
+msgstr "Kein"
+
+#. MCMXX
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapideal"
+msgid "Optimal"
+msgstr "Optimal"
+
+#. EpwrB
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapon"
+msgid "Parallel"
+msgstr "Parallel"
+
+#. fAfKA
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapleft"
+msgid "Before"
+msgstr "Vor"
+
+#. H7zCN
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapright"
+msgid "After"
+msgstr "Hinter"
+
+#. PGXfq
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapthrough"
+msgid "Through"
+msgstr "Durchlauf"
+
+#. WEBWT
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|wrapcontour"
+msgid "Contour"
+msgstr "Kontur"
+
+#. d7AtT
+#: notebookbar_groups.ui
+msgctxt "notebookbar_groups|contourdialog"
+msgid "Edit Contour"
+msgstr "Kontur bearbeiten"
+
+#. JGppH
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|qickedit"
+msgid "Allow quick editing"
+msgstr "Schnellbearbeitung zulassen"
+
+#. 7zAby
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|textselected"
+msgid "Only text area selected"
+msgstr "Nur Textbereich ausgewählt"
+
+#. 9SB2g
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|label2"
+msgid "Text Objects"
+msgstr "Textobjekte"
+
+#. 7k6fG
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|startwithwizard"
+msgid "Start with _Template Selection"
+msgstr "Mit _Vorlagenauswahl starten"
+
+#. 5DjoQ
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|newdoclbl"
+msgid "New Document"
+msgstr "Neues Dokument"
+
+#. fWbDG
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|copywhenmove"
+msgid "Copy when moving"
+msgstr "Kopie beim Verschieben"
+
+#. QdHNF
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|label6"
+msgid "Unit of _measurement:"
+msgstr "_Maßeinheit:"
+
+#. S8VMD
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|tapstoplabel"
+msgid "Ta_b stops:"
+msgstr "_Tabulatoren:"
+
+#. oSmuC
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|objalwymov"
+msgid "Objects always moveable"
+msgstr "Objekte immer verschiebbar"
+
+#. npjCT
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|distrotcb"
+msgid "Do not distort objects in curve"
+msgstr "Setzen auf Kreis: nicht verzerren"
+
+#. TDrpy
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|backgroundback"
+msgid "Use background cache"
+msgstr "Hintergrundzwischenspeicher benutzen"
+
+#. psubE
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|label4"
+msgid "Settings"
+msgstr "Einstellungen"
+
+#. qimBE
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|enremotcont"
+msgid "Enable remote control"
+msgstr "Fernsteuerung aktivieren"
+
+#. EE26t
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|enprsntcons"
+msgid "Enable Presenter Console"
+msgstr "Presenter Console aktivieren"
+
+#. txHfw
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|label7"
+msgid "Presentation"
+msgstr "Präsentation"
+
+#. CrRmE
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|label8"
+msgid "_Drawing scale:"
+msgstr "Zeichn_ungsmaßstab:"
+
+#. j7n3M
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|widthlbl"
+msgid "Page _width:"
+msgstr "Folien_breite:"
+
+#. Aay7y
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|heightlbl"
+msgid "Page _height:"
+msgstr "Fol_ienhöhe:"
+
+#. E2cEn
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|label5"
+msgid "Scale"
+msgstr "Skalierung"
+
+#. 3BkYq
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|printermetrics"
+msgid "Us_e printer metrics for document formatting"
+msgstr "Druckermaße für Text_formatierung verwenden"
+
+#. EECG4
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|cbCompatibility"
+msgid "Add _spacing between paragraphs and tables (in current document)"
+msgstr "Alle Absatz- und Tabellenabstände addieren (aktuelles _Dokument)"
+
+#. PaYjQ
+#: optimpressgeneralpage.ui
+msgctxt "optimpressgeneralpage|label1"
+msgid "Compatibility"
+msgstr "Kompatibilität"
+
+#. sGCUC
+#: photoalbum.ui
+msgctxt "photoalbum|PhotoAlbumCreatorDialog"
+msgid "Create Photo Album"
+msgstr "Fotoalbum erstellen"
+
+#. 2PDAX
+#: photoalbum.ui
+msgctxt "photoalbum|create_btn"
+msgid "Insert Slides"
+msgstr "Folien einfügen"
+
+#. M7gu5
+#: photoalbum.ui
+msgctxt "photoalbum|rem_btn|tooltip_text"
+msgid "Remove Image from List"
+msgstr "Entferne Bild von der Liste"
+
+#. Xzv9L
+#: photoalbum.ui
+msgctxt "photoalbum|up_btn|tooltip_text"
+msgid "Move Image Up"
+msgstr "Bild nach oben verschieben"
+
+#. ANTjq
+#: photoalbum.ui
+msgctxt "photoalbum|down_btn|tooltip_text"
+msgid "Move Image Down"
+msgstr "Bild nach unten verschieben"
+
+#. 98Y7U
+#: photoalbum.ui
+msgctxt "photoalbum|label2"
+msgid "Preview"
+msgstr "Vorschau"
+
+#. XC4DZ
+#: photoalbum.ui
+msgctxt "photoalbum|label7"
+msgid "Slide layout:"
+msgstr "Folienlayout:"
+
+#. sEcMd
+#: photoalbum.ui
+msgctxt "photoalbum|cap_check"
+msgid "Add caption to each slide"
+msgstr "Beschriftung zu jeder Folie hinzufügen"
+
+#. qD3jg
+#: photoalbum.ui
+msgctxt "photoalbum|asr_check"
+msgid "Keep aspect ratio"
+msgstr "Seitenverhältnis beibehalten"
+
+#. bBevM
+#: photoalbum.ui
+msgctxt "photoalbum|asr_check_crop"
+msgid "Fill Screen"
+msgstr "Bildschirm füllen"
+
+#. UAHAg
+#: photoalbum.ui
+msgctxt "photoalbum|insert_as_link_check"
+msgid "Link images"
+msgstr "Bild verknüpfen"
+
+#. AnpSF
+#: photoalbum.ui
+msgctxt "photoalbum|liststore2"
+msgid "1 Image"
+msgstr "1 Bild"
+
+#. KLSzL
+#: photoalbum.ui
+msgctxt "photoalbum|liststore2"
+msgid "2 Images"
+msgstr "2 Bilder"
+
+#. QviuN
+#: photoalbum.ui
+msgctxt "photoalbum|liststore2"
+msgid "4 Images"
+msgstr "4 Bilder"
+
+#. LAEo2
+#: presentationdialog.ui
+msgctxt "presentationdialog|PresentationDialog"
+msgid "Slide Show Settings"
+msgstr "Präsentationseinstellungen"
+
+#. acmHw
+#: presentationdialog.ui
+msgctxt "presentationdialog|from"
+msgid "_From:"
+msgstr "Ab _Folie:"
+
+#. tc75b
+#: presentationdialog.ui
+msgctxt "presentationdialog|from_cb-atkobject"
+msgid "Starting slide"
+msgstr "Startfolie"
+
+#. FLsDP
+#: presentationdialog.ui
+msgctxt "presentationdialog|allslides"
+msgid "All _slides"
+msgstr "_Alle Folien"
+
+#. h3FfX
+#: presentationdialog.ui
+msgctxt "presentationdialog|customslideshow"
+msgid "_Custom slide show:"
+msgstr "_Individuelle Bildschirmpräsentationen:"
+
+#. 7vRFv
+#: presentationdialog.ui
+msgctxt "presentationdialog|label1"
+msgid "Range"
+msgstr "Umfang"
+
+#. xo7EX
+#: presentationdialog.ui
+msgctxt "presentationdialog|presdisplay_label"
+msgid "P_resentation display:"
+msgstr "P_räsentationsanzeige:"
+
+#. ECzT8
+#: presentationdialog.ui
+msgctxt "presentationdialog|externalmonitor_str"
+msgid "Display %1 (external)"
+msgstr "Anzeigen von %1 (externl)"
+
+#. xDUjL
+#: presentationdialog.ui
+msgctxt "presentationdialog|monitor_str"
+msgid "Display %1"
+msgstr "Bildschirm %1"
+
+#. DZ2HG
+#: presentationdialog.ui
+msgctxt "presentationdialog|allmonitors_str"
+msgid "All displays"
+msgstr "Alle Bildschirme"
+
+#. 65GqG
+#: presentationdialog.ui
+msgctxt "presentationdialog|external_str"
+msgid "Auto External (Display %1)"
+msgstr "Automatisch extern (Bildschirm %1)"
+
+#. m9FjZ
+#: presentationdialog.ui
+msgctxt "presentationdialog|label3"
+msgid "Multiple Displays"
+msgstr "Mehrere Bildschirme"
+
+#. bvPPh
+#: presentationdialog.ui
+msgctxt "presentationdialog|default"
+msgid "F_ull screen"
+msgstr "_Ganzer Bildschirm"
+
+#. ESNR9
+#: presentationdialog.ui
+msgctxt "presentationdialog|window"
+msgid "In a _window"
+msgstr "In Fenster"
+
+#. DAKWY
+#: presentationdialog.ui
+msgctxt "presentationdialog|auto"
+msgid "_Loop and repeat after:"
+msgstr "_Schleife und wiederholen nach:"
+
+#. FPAvh
+#: presentationdialog.ui
+msgctxt "presentationdialog|showlogo"
+msgid "Show _logo"
+msgstr "_Logo einblenden"
+
+#. vJ9Ns
+#: presentationdialog.ui
+msgctxt "presentationdialog|pauseduration|tooltip_text"
+msgid "Duration of pause"
+msgstr "Pausendauer"
+
+#. j7B8z
+#: presentationdialog.ui
+msgctxt "presentationdialog|pauseduration"
+msgid "Pause Duration"
+msgstr "Pausendauer"
+
+#. 7PBdA
+#: presentationdialog.ui
+msgctxt "presentationdialog|label2"
+msgid "Presentation Mode"
+msgstr "Präsentationsmodus"
+
+#. J9PFv
+#: presentationdialog.ui
+msgctxt "presentationdialog|manualslides"
+msgid "Change slides _manually"
+msgstr "Folienwechsel _manuell"
+
+#. e4tCG
+#: presentationdialog.ui
+msgctxt "presentationdialog|pointervisible"
+msgid "Mouse pointer _visible"
+msgstr "Maus_zeiger sichtbar"
+
+#. seTuX
+#: presentationdialog.ui
+msgctxt "presentationdialog|pointeraspen"
+msgid "Mouse pointer as _pen"
+msgstr "Mauszeiger als _Stift"
+
+#. YqoxU
+#: presentationdialog.ui
+msgctxt "presentationdialog|animationsallowed"
+msgid "_Animations allowed"
+msgstr "Animati_onen zulassen"
+
+#. ZvDVF
+#: presentationdialog.ui
+msgctxt "presentationdialog|changeslidesbyclick"
+msgid "Change slides by clic_king on background"
+msgstr "Folienwechsel bei _Klick auf Hintergrund"
+
+#. tA4uX
+#: presentationdialog.ui
+msgctxt "presentationdialog|alwaysontop"
+msgid "Presentation always _on top"
+msgstr "Bildschirmpräsentation immer im _Vordergrund"
+
+#. zdH6V
+#: presentationdialog.ui
+msgctxt "presentationdialog|label4"
+msgid "Options"
+msgstr "Optionen"
+
+#. WBz5v
+#: printeroptions.ui
+msgctxt "printeroptions|printname"
+msgid "Slide name"
+msgstr "Folienname"
+
+#. d6mPb
+#: printeroptions.ui
+msgctxt "printeroptions|printdatetime"
+msgid "Date and time"
+msgstr "Datum und Uhrzeit"
+
+#. jjciX
+#: printeroptions.ui
+msgctxt "printeroptions|printhidden"
+msgid "Hidden pages"
+msgstr "Ausgeblendete Folien"
+
+#. M6JQf
+#: printeroptions.ui
+msgctxt "printeroptions|label4"
+msgid "Contents"
+msgstr "Inhalt"
+
+#. jChew
+#: printeroptions.ui
+msgctxt "printeroptions|originalcolors"
+msgid "Original size"
+msgstr "Originalgröße"
+
+#. U9CjW
+#: printeroptions.ui
+msgctxt "printeroptions|grayscale"
+msgid "Grayscale"
+msgstr "Graustufen"
+
+#. BHn6R
+#: printeroptions.ui
+msgctxt "printeroptions|blackandwhite"
+msgid "Black & white"
+msgstr "Schwarzweiß"
+
+#. uFDfh
+#: printeroptions.ui
+msgctxt "printeroptions|label5"
+msgid "Color"
+msgstr "Farbe"
+
+#. 39bX5
+#: printeroptions.ui
+msgctxt "printeroptions|originalsize"
+msgid "Original size"
+msgstr "Originalgröße"
+
+#. EJatZ
+#: printeroptions.ui
+msgctxt "printeroptions|fittoprintable"
+msgid "Fit to printable page"
+msgstr "In druckbaren Bereich einpassen"
+
+#. H5yQb
+#: printeroptions.ui
+msgctxt "printeroptions|distributeonmultiple"
+msgid "Distribute on multiple sheets of paper"
+msgstr "Auf mehrere Druckseiten verteilen"
+
+#. MtCVV
+#: printeroptions.ui
+msgctxt "printeroptions|tilesheet"
+msgid "Tile sheet of paper with repeated slides"
+msgstr "Druckseite mit wiederholten Folien füllen"
+
+#. PDCpR
+#: printeroptions.ui
+msgctxt "printeroptions|label6"
+msgid "Size"
+msgstr "Größe"
+
+#. Cwizr
+#: prntopts.ui
+msgctxt "prntopts|pagenmcb"
+msgid "_Page name"
+msgstr "_Folienname"
+
+#. XeD9w
+#: prntopts.ui
+msgctxt "prntopts|datecb"
+msgid "D_ate"
+msgstr "_Datum"
+
+#. 4Dm6A
+#: prntopts.ui
+msgctxt "prntopts|timecb"
+msgid "Ti_me"
+msgstr "_Uhrzeit"
+
+#. dBXeA
+#: prntopts.ui
+msgctxt "prntopts|hiddenpgcb"
+msgid "H_idden pages"
+msgstr "A_usgeblendete Folien"
+
+#. XuHA2
+#: prntopts.ui
+msgctxt "prntopts|printlbl"
+msgid "Print"
+msgstr "Drucken"
+
+#. Byo4C
+#: prntopts.ui
+msgctxt "prntopts|pagedefaultrb"
+msgid "Default"
+msgstr "Standard"
+
+#. Azbxx
+#: prntopts.ui
+msgctxt "prntopts|fittopgrb"
+msgid "_Fit to page"
+msgstr "An _Seitengröße anpassen"
+
+#. 7Jqsg
+#: prntopts.ui
+msgctxt "prntopts|tilepgrb"
+msgid "_Tile pages"
+msgstr "Folien _kacheln"
+
+#. LXUhA
+#: prntopts.ui
+msgctxt "prntopts|brouchrb"
+msgid "B_rochure"
+msgstr "_Broschüre"
+
+#. DRu9w
+#: prntopts.ui
+msgctxt "prntopts|papertryfrmprntrcb"
+msgid "Paper tray from printer s_ettings"
+msgstr "Papierschacht aus _Druckereinstellung"
+
+#. QiBFz
+#: prntopts.ui
+msgctxt "prntopts|frontcb"
+msgid "Fr_ont"
+msgstr "_Vorderseite"
+
+#. RmDFe
+#: prntopts.ui
+msgctxt "prntopts|backcb"
+msgid "Ba_ck"
+msgstr "_Rückseite"
+
+#. NsWL6
+#: prntopts.ui
+msgctxt "prntopts|label3"
+msgid "Page Options"
+msgstr "Seitenoptionen"
+
+#. AEqGw
+#: prntopts.ui
+msgctxt "prntopts|drawingcb"
+msgid "Drawing"
+msgstr "Zeichnung"
+
+#. rQT7U
+#: prntopts.ui
+msgctxt "prntopts|notecb"
+msgid "Notes"
+msgstr "Notizen"
+
+#. CvxXM
+#: prntopts.ui
+msgctxt "prntopts|handoutcb"
+msgid "Handouts"
+msgstr "Handzettel"
+
+#. sGvpE
+#: prntopts.ui
+msgctxt "prntopts|outlinecb"
+msgid "Outline"
+msgstr "Umrandung"
+
+#. AjCQi
+#: prntopts.ui
+msgctxt "prntopts|contentlbl"
+msgid "Content"
+msgstr "Inhalt"
+
+#. 2psp5
+#: prntopts.ui
+msgctxt "prntopts|defaultrb"
+msgid "Default"
+msgstr "Standard"
+
+#. sFK9C
+#: prntopts.ui
+msgctxt "prntopts|grayscalerb"
+msgid "Gra_yscale"
+msgstr "_Graustufen"
+
+#. ibjkX
+#: prntopts.ui
+msgctxt "prntopts|blackwhiterb"
+msgid "Black & _white"
+msgstr "_Schwarzweiß"
+
+#. PUgsP
+#: prntopts.ui
+msgctxt "prntopts|label2"
+msgid "Quality"
+msgstr "Qualität"
+
+#. QRYoE
+#: publishingdialog.ui
+msgctxt "publishingdialog|PublishingDialog"
+msgid "HTML Export"
+msgstr "HTML-Export"
+
+#. hKYBh
+#: publishingdialog.ui
+msgctxt "publishingdialog|newDesignRadiobutton"
+msgid "New _design"
+msgstr "Neues _Design"
+
+#. SrGoC
+#: publishingdialog.ui
+msgctxt "publishingdialog|oldDesignRadiobutton"
+msgid "Existing design"
+msgstr "Existierendes Design"
+
+#. DTYoF
+#: publishingdialog.ui
+msgctxt "publishingdialog|delDesingButton"
+msgid "Delete Selected Design"
+msgstr "Ausgewähltes Design löschen"
+
+#. mEc7e
+#: publishingdialog.ui
+msgctxt "publishingdialog|descLabel"
+msgid "Select an existing design or create a new one"
+msgstr "Wählen Sie ein bestehendes Design aus oder erstellen Sie ein neues"
+
+#. cQEWT
+#: publishingdialog.ui
+msgctxt "publishingdialog|assignLabel"
+msgid "Assign Design"
+msgstr "Design zuweisen"
+
+#. 9Wotv
+#: publishingdialog.ui
+msgctxt "publishingdialog|ASPRadiobutton"
+msgid "_Active Server Pages (ASP)"
+msgstr "_Active Server Pages (ASP)"
+
+#. 62rNz
+#: publishingdialog.ui
+msgctxt "publishingdialog|perlRadiobutton"
+msgid "Perl"
+msgstr "Perl"
+
+#. 5tjnv
+#: publishingdialog.ui
+msgctxt "publishingdialog|indexTxtLabel"
+msgid "_URL for listeners:"
+msgstr "_URL für Zuhörer:"
+
+#. Z4rnL
+#: publishingdialog.ui
+msgctxt "publishingdialog|URLTxtLabel"
+msgid "URL for _presentation:"
+msgstr "URL der _Präsentation:"
+
+#. LNk9W
+#: publishingdialog.ui
+msgctxt "publishingdialog|CGITxtLabel"
+msgid "URL for _Perl scripts:"
+msgstr "URL für _Perl-Skripte:"
+
+#. yEtQi
+#: publishingdialog.ui
+msgctxt "publishingdialog|webCastLabel"
+msgid "Webcast"
+msgstr "WebCast"
+
+#. qmfBA
+#: publishingdialog.ui
+msgctxt "publishingdialog|chgDefaultRadiobutton"
+msgid "_As stated in document"
+msgstr "_Wie im Dokument angegeben"
+
+#. vuFBo
+#: publishingdialog.ui
+msgctxt "publishingdialog|chgAutoRadiobutton"
+msgid "_Automatic"
+msgstr "_Automatisch"
+
+#. 4YUzC
+#: publishingdialog.ui
+msgctxt "publishingdialog|durationTxtLabel"
+msgid "_Slide view time:"
+msgstr "_Standdauer:"
+
+#. jMsf2
+#: publishingdialog.ui
+msgctxt "publishingdialog|endlessCheckbutton"
+msgid "_Endless"
+msgstr "_Endlos"
+
+#. NFmGJ
+#: publishingdialog.ui
+msgctxt "publishingdialog|kioskLabel"
+msgid "Advance Slides"
+msgstr "Folienwechsel"
+
+#. ucqzo
+#: publishingdialog.ui
+msgctxt "publishingdialog|contentCheckbutton"
+msgid "Create title page"
+msgstr "Titelfolie erstellen"
+
+#. fuS2d
+#: publishingdialog.ui
+msgctxt "publishingdialog|notesCheckbutton"
+msgid "Show notes"
+msgstr "Notizen anzeigen"
+
+#. GNRxU
+#: publishingdialog.ui
+msgctxt "publishingdialog|htmlOptionsLabel"
+msgid "Options"
+msgstr "Optionen"
+
+#. FQFnv
+#: publishingdialog.ui
+msgctxt "publishingdialog|webCastRadiobutton"
+msgid "_WebCast"
+msgstr "_WebCast"
+
+#. CgTG4
+#: publishingdialog.ui
+msgctxt "publishingdialog|kioskRadiobutton"
+msgid "_Automatic"
+msgstr "_Automatisch"
+
+#. PSGFr
+#: publishingdialog.ui
+msgctxt "publishingdialog|singleDocumentRadiobutton"
+msgid "_Single-document HTML"
+msgstr "_Einzelnes HTML-Dokument"
+
+#. iH77N
+#: publishingdialog.ui
+msgctxt "publishingdialog|framesRadiobutton"
+msgid "Standard HTML with _frames"
+msgstr "Standard HTML mit _Frames"
+
+#. CA35b
+#: publishingdialog.ui
+msgctxt "publishingdialog|standardRadiobutton"
+msgid "Standard H_TML format"
+msgstr "Standard _HTML Format"
+
+#. 2D85A
+#: publishingdialog.ui
+msgctxt "publishingdialog|publicationLabel"
+msgid "Publication Type"
+msgstr "Ausgabeart"
+
+#. GuHwY
+#: publishingdialog.ui
+msgctxt "publishingdialog|pngRadiobutton"
+msgid "_PNG"
+msgstr "_PNG"
+
+#. Ei2dJ
+#: publishingdialog.ui
+msgctxt "publishingdialog|gifRadiobutton"
+msgid "_GIF"
+msgstr "_GIF"
+
+#. s6SqL
+#: publishingdialog.ui
+msgctxt "publishingdialog|jpgRadiobutton"
+msgid "_JPG"
+msgstr "_JPG"
+
+#. Sahg3
+#: publishingdialog.ui
+msgctxt "publishingdialog|qualityTxtLabel"
+msgid "_Quality:"
+msgstr "_Qualität:"
+
+#. WZbqb
+#: publishingdialog.ui
+msgctxt "publishingdialog|saveImgAsLabel"
+msgid "Save Images As"
+msgstr "Bild speichern unter"
+
+#. VP9BP
+#: publishingdialog.ui
+msgctxt "publishingdialog|resolution1Radiobutton"
+msgid "Low (_640 × 480 pixels)"
+msgstr "Niedrig (_640 x 480 px)"
+
+#. U7WAx
+#: publishingdialog.ui
+msgctxt "publishingdialog|resolution2Radiobutton"
+msgid "Medium (_800 × 600 pixels)"
+msgstr "Mittel (_800 x 600 px)"
+
+#. irmFn
+#: publishingdialog.ui
+msgctxt "publishingdialog|resolution3Radiobutton"
+msgid "High (_1024 × 768 pixels)"
+msgstr "Hoch (_1024 x 768 px)"
+
+#. zsvW6
+#: publishingdialog.ui
+msgctxt "publishingdialog|monitorResolutionLabel"
+msgid "Monitor Resolution"
+msgstr "Bildschirmauflösung"
+
+#. KJvxg
+#: publishingdialog.ui
+msgctxt "publishingdialog|sldSoundCheckbutton"
+msgid "_Export sounds when slide advances"
+msgstr "_Klänge beim Folienwechsel exportieren"
+
+#. itaEE
+#: publishingdialog.ui
+msgctxt "publishingdialog|hiddenSlidesCheckbutton"
+msgid "Export _hidden slides"
+msgstr "Ausgeblendete _Folien exportieren"
+
+#. EnRtp
+#: publishingdialog.ui
+msgctxt "publishingdialog|effectsLabel"
+msgid "Effects"
+msgstr "Effekte"
+
+#. 6QQcx
+#: publishingdialog.ui
+msgctxt "publishingdialog|authorTxtLabel"
+msgid "_Author:"
+msgstr "_Autor:"
+
+#. qkWFY
+#: publishingdialog.ui
+msgctxt "publishingdialog|emailTxtLabel"
+msgid "E-_mail address:"
+msgstr "E-_Mail-Adresse:"
+
+#. wvFSd
+#: publishingdialog.ui
+msgctxt "publishingdialog|wwwTxtLabel"
+msgid "Your hom_epage:"
+msgstr "Ihre _Homepage:"
+
+#. rWtUU
+#: publishingdialog.ui
+msgctxt "publishingdialog|addInformLabel"
+msgid "Additional _information:"
+msgstr "Zusätzliche _Information:"
+
+#. 4XPKu
+#: publishingdialog.ui
+msgctxt "publishingdialog|downloadCheckbutton"
+msgid "Link to a copy of the _original presentation"
+msgstr "Verknüpfung zur Kopie der _Originalpräsentation"
+
+#. SGhW4
+#: publishingdialog.ui
+msgctxt "publishingdialog|infTitlePageLabel"
+msgid "Information for the Title Page"
+msgstr "Informationen für die Titelfolie"
+
+#. fN2Qw
+#: publishingdialog.ui
+msgctxt "publishingdialog|textOnlyCheckbutton"
+msgid "_Text only"
+msgstr "Nur _Text"
+
+#. hJCd8
+#: publishingdialog.ui
+msgctxt "publishingdialog|buttonStyleLabel"
+msgid "Select Button Style"
+msgstr "Schaltflächenstil auswählen"
+
+#. ExziF
+#: publishingdialog.ui
+msgctxt "publishingdialog|docColorsRadiobutton"
+msgid "_Apply color scheme from document"
+msgstr "Farbschema aus Dokument ü_bernehmen"
+
+#. fsTQM
+#: publishingdialog.ui
+msgctxt "publishingdialog|defaultRadiobutton"
+msgid "Use _browser colors"
+msgstr "_Browser Farben verwenden"
+
+#. FtkC2
+#: publishingdialog.ui
+msgctxt "publishingdialog|userRadiobutton"
+msgid "_Use custom color scheme"
+msgstr "_Eigenes Farbschema verwenden"
+
+#. 6CoBA
+#: publishingdialog.ui
+msgctxt "publishingdialog|vLinkButton"
+msgid "_Visited Link"
+msgstr "_Besuchte Verknüpfung"
+
+#. EWurf
+#: publishingdialog.ui
+msgctxt "publishingdialog|aLinkButton"
+msgid "Active Li_nk"
+msgstr "_Aktiver Link"
+
+#. f5NJa
+#: publishingdialog.ui
+msgctxt "publishingdialog|linkButton"
+msgid "Hyper_link"
+msgstr "_Hyperlink"
+
+#. DZCug
+#: publishingdialog.ui
+msgctxt "publishingdialog|textButton"
+msgid "Text"
+msgstr "Text"
+
+#. vDEFA
+#: publishingdialog.ui
+msgctxt "publishingdialog|backButton"
+msgid "Bac_kground"
+msgstr "Hinter_grund"
+
+#. 3mrfM
+#: publishingdialog.ui
+msgctxt "publishingdialog|selectColorLabel"
+msgid "Select Color Scheme"
+msgstr "Farbschema auswählen"
+
+#. St9op
+#: publishingdialog.ui
+msgctxt "publishingdialog|lastPageButton"
+msgid "<< Back"
+msgstr "<< Zurück"
+
+#. MW3GZ
+#: publishingdialog.ui
+msgctxt "publishingdialog|nextPageButton"
+msgid "Ne_xt >>"
+msgstr "_Weiter >>"
+
+#. HWaiE
+#: publishingdialog.ui
+msgctxt "publishingdialog|finishButton"
+msgid "_Create"
+msgstr "_Fertigstellen"
+
+#. CAzyf
+#: remotedialog.ui
+msgctxt "remotedialog|RemoteDialog"
+msgid "Impress Remote"
+msgstr "Impress Fernsteuerung"
+
+#. pEkbh
+#: remotedialog.ui
+msgctxt "remotedialog|label1"
+msgid "Connections"
+msgstr "Verbindungen"
+
+#. oe6tG
+#: rotatemenu.ui
+msgctxt "rotatemenu|90"
+msgid "Quarter Spin"
+msgstr "Vierteldrehung"
+
+#. w3RpA
+#: rotatemenu.ui
+msgctxt "rotatemenu|180"
+msgid "Half Spin"
+msgstr "Halbe Drehung"
+
+#. f8XZj
+#: rotatemenu.ui
+msgctxt "rotatemenu|360"
+msgid "Full Spin"
+msgstr "Komplette Drehung"
+
+#. cnn2a
+#: rotatemenu.ui
+msgctxt "rotatemenu|720"
+msgid "Two Spins"
+msgstr "Zwei Drehungen"
+
+#. CGf8N
+#: rotatemenu.ui
+msgctxt "rotatemenu|clockwise"
+msgid "Clockwise"
+msgstr "Im Uhrzeigersinn"
+
+#. CVtGM
+#: rotatemenu.ui
+msgctxt "rotatemenu|counterclock"
+msgid "Counter-clockwise"
+msgstr "Gegen den Uhrzeigersinn"
+
+#. q5TTG
+#: scalemenu.ui
+msgctxt "scalemenu|25"
+msgid "Tiny"